diff --git a/composer.lock b/composer.lock index e257b750f2..41a8b05beb 100644 --- a/composer.lock +++ b/composer.lock @@ -131,16 +131,16 @@ }, { "name": "alchemy/embed-bundle", - "version": "2.0.8", + "version": "2.0.9", "source": { "type": "git", "url": "https://github.com/alchemy-fr/embed-bundle.git", - "reference": "cbaa5e34b7b6ccbe128f8c804649c8a3ecd1e621" + "reference": "8cdb9612a9e3edd998b68f0803eacca8e0f50775" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/alchemy-fr/embed-bundle/zipball/cbaa5e34b7b6ccbe128f8c804649c8a3ecd1e621", - "reference": "cbaa5e34b7b6ccbe128f8c804649c8a3ecd1e621", + "url": "https://api.github.com/repos/alchemy-fr/embed-bundle/zipball/8cdb9612a9e3edd998b68f0803eacca8e0f50775", + "reference": "8cdb9612a9e3edd998b68f0803eacca8e0f50775", "shasum": "" }, "require-dev": { @@ -177,7 +177,11 @@ } ], "description": "Embed resources bundle", - "time": "2019-10-09T14:34:23+00:00" + "support": { + "source": "https://github.com/alchemy-fr/embed-bundle/tree/2.0.9", + "issues": "https://github.com/alchemy-fr/embed-bundle/issues" + }, + "time": "2020-02-04T14:53:00+00:00" }, { "name": "alchemy/geonames-api-consumer", @@ -271,16 +275,16 @@ }, { "name": "alchemy/mediavorus", - "version": "0.4.9", + "version": "0.4.10", "source": { "type": "git", "url": "https://github.com/alchemy-fr/MediaVorus.git", - "reference": "1a96dc4142ff8474c11285cab9eab11df9683255" + "reference": "3e235eb1efb528aea2973c946f4bf47630b98985" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/alchemy-fr/MediaVorus/zipball/1a96dc4142ff8474c11285cab9eab11df9683255", - "reference": "1a96dc4142ff8474c11285cab9eab11df9683255", + "url": "https://api.github.com/repos/alchemy-fr/MediaVorus/zipball/3e235eb1efb528aea2973c946f4bf47630b98985", + "reference": "3e235eb1efb528aea2973c946f4bf47630b98985", "shasum": "" }, "require": { @@ -296,6 +300,7 @@ }, "require-dev": { "jms/serializer": "~0.12.0", + "phpunit/phpunit": "^4.0|^5.0", "silex/silex": "~1.0", "symfony/yaml": "~2.0" }, @@ -329,7 +334,7 @@ "keywords": [ "metadata" ], - "time": "2019-01-22T11:23:34+00:00" + "time": "2020-02-18T13:37:45+00:00" }, { "name": "alchemy/oauth2php", @@ -2856,6 +2861,7 @@ } ], "description": "Provides a simple API and specification that abstracts away the details of HTTP into a single PHP function.", + "abandoned": true, "time": "2015-05-20T03:37:09+00:00" }, { @@ -2906,6 +2912,7 @@ "Guzzle", "stream" ], + "abandoned": true, "time": "2014-10-12T19:18:40+00:00" }, { @@ -6162,7 +6169,7 @@ ], "description": "A WebProfiler for Silex", "homepage": "http://silex.sensiolabs.org/", - "abandoned": true, + "abandoned": "symfony/web-profiler-bundle", "time": "2016-01-10T11:39:13+00:00" }, { @@ -6412,6 +6419,7 @@ "profiler", "silex" ], + "abandoned": true, "time": "2016-10-26T11:08:02+00:00" }, { @@ -6454,6 +6462,7 @@ "plugin", "silex" ], + "abandoned": true, "time": "2015-11-11T07:16:28+00:00" }, { diff --git a/config/configuration.sample.yml b/config/configuration.sample.yml index e3447106e5..cf224e5e40 100644 --- a/config/configuration.sample.yml +++ b/config/configuration.sample.yml @@ -28,7 +28,8 @@ main: port: 11211 search-engine: type: phrasea - options: [] + options: + facets: [] task-manager: status: started enabled: true diff --git a/lib/Alchemy/Phrasea/Controller/Admin/SearchEngineController.php b/lib/Alchemy/Phrasea/Controller/Admin/SearchEngineController.php index 8cf04e7839..04762b3aef 100644 --- a/lib/Alchemy/Phrasea/Controller/Admin/SearchEngineController.php +++ b/lib/Alchemy/Phrasea/Controller/Admin/SearchEngineController.php @@ -13,9 +13,11 @@ namespace Alchemy\Phrasea\Controller\Admin; use Alchemy\Phrasea\Controller\Controller; use Alchemy\Phrasea\SearchEngine\Elastic\ElasticsearchSettingsFormType; use Alchemy\Phrasea\SearchEngine\Elastic\ElasticsearchOptions; +use Alchemy\Phrasea\SearchEngine\Elastic\Structure\GlobalStructure; use Symfony\Component\Form\FormInterface; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; +use databox_descriptionStructure; class SearchEngineController extends Controller { @@ -31,7 +33,19 @@ class SearchEngineController extends Controller $form->handleRequest($request); if ($form->isValid()) { - $this->saveElasticSearchOptions($form->getData()); + /** @var ElasticsearchOptions $data */ + $data = $form->getData(); + // $q = $request->request->get('elasticsearch_settings'); + $facetNames = []; // rebuild the data "_customValues/facets" list following the form order + foreach($request->request->get('elasticsearch_settings') as $name=>$value) { + $matches = null; + if(preg_match('/^facets:(.+):limit$/', $name, $matches) === 1) { + $facetNames[] = $matches[1]; + } + } + $data->reorderAggregableFields($facetNames); + + $this->saveElasticSearchOptions($data); return $this->app->redirectPath('admin_searchengine_form'); } @@ -76,6 +90,16 @@ class SearchEngineController extends Controller */ private function saveElasticSearchOptions(ElasticsearchOptions $configuration) { + // save to databoxes fields for backward compatibility (useless ?) + foreach($configuration->getAggregableFields() as $fname=>$aggregableField) { + foreach ($this->app->getDataboxes() as $databox) { + if(!is_null($f = $databox->get_meta_structure()->get_element_by_name($fname, databox_descriptionStructure::STRICT_COMPARE))) { + $f->set_aggregable($aggregableField['limit'])->save(); + } + } + } + + // save to conf $this->getConf()->set(['main', 'search-engine', 'options'], $configuration->toArray()); } @@ -85,7 +109,10 @@ class SearchEngineController extends Controller */ private function getConfigurationForm(ElasticsearchOptions $options) { - return $this->app->form(new ElasticsearchSettingsFormType(), $options, [ + /** @var GlobalStructure $g */ + $g = $this->app['search_engine.structure']; + + return $this->app->form(new ElasticsearchSettingsFormType($g, $options), $options, [ 'action' => $this->app->url('admin_searchengine_form'), ]); } diff --git a/lib/Alchemy/Phrasea/Controller/Prod/FeedController.php b/lib/Alchemy/Phrasea/Controller/Prod/FeedController.php index 2bc333f45c..39a0a8f48d 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/FeedController.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/FeedController.php @@ -19,8 +19,10 @@ use Alchemy\Phrasea\Core\PhraseaEvents; use Alchemy\Phrasea\Feed\Aggregate; use Alchemy\Phrasea\Feed\Link\AggregateLinkGenerator; use Alchemy\Phrasea\Feed\Link\FeedLinkGenerator; +use Alchemy\Phrasea\Model\Entities\Feed; use Alchemy\Phrasea\Model\Entities\FeedEntry; use Alchemy\Phrasea\Model\Entities\FeedItem; +use Alchemy\Phrasea\Model\Entities\FeedPublisher; use Alchemy\Phrasea\Model\Repositories\FeedEntryRepository; use Alchemy\Phrasea\Model\Repositories\FeedItemRepository; use Alchemy\Phrasea\Model\Repositories\FeedPublisherRepository; @@ -46,6 +48,7 @@ class FeedController extends Controller } public function createFeedEntryAction(Request $request) { + /** @var Feed $feed */ $feed = $this->getFeedRepository()->find($request->request->get('feed_id')); if (null === $feed) { @@ -53,6 +56,8 @@ class FeedController extends Controller } $user = $this->getAuthenticatedUser(); + + /** @var FeedPublisher $publisher */ $publisher = $this->getFeedPublisherRepository()->findOneBy([ 'feed' => $feed, 'user' => $user, diff --git a/lib/Alchemy/Phrasea/Controller/Prod/QueryController.php b/lib/Alchemy/Phrasea/Controller/Prod/QueryController.php index d327e860c5..8afd22d2b3 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/QueryController.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/QueryController.php @@ -433,24 +433,15 @@ class QueryController extends Controller // populates facets (aggregates) $facets = []; - // $facetClauses = []; foreach ($result->getFacets() as $facet) { $facetName = $facet['name']; if(array_key_exists($facetName, $fieldsInfosByName)) { - $f = $fieldsInfosByName[$facetName]; - $facet['label'] = $f['trans_label']; $facet['labels'] = $f['labels']; $facet['type'] = strtoupper($f['type']) . "-AGGREGATE"; $facets[] = $facet; - - // $facetClauses[] = [ - // 'type' => strtoupper($f['type']) . "-AGGREGATE", - // 'field' => $f['field'], - // 'facet' => $facet - // ]; } } diff --git a/lib/Alchemy/Phrasea/Controller/Root/AccountController.php b/lib/Alchemy/Phrasea/Controller/Root/AccountController.php index b4053a6ce1..6bf2d11f17 100644 --- a/lib/Alchemy/Phrasea/Controller/Root/AccountController.php +++ b/lib/Alchemy/Phrasea/Controller/Root/AccountController.php @@ -458,9 +458,9 @@ class AccountController extends Controller ->setZipCode($request->request->get("form_zip")) ->setPhone($request->request->get("form_phone")) ->setFax($request->request->get("form_fax")) - ->setJob($request->request->get("form_activity")) + ->setJob($request->request->get("form_function")) ->setCompany($request->request->get("form_company")) - ->setPosition($request->request->get("form_function")) + ->setPosition($request->request->get("form_activity")) ->setNotifications((Boolean) $request->request->get("mail_notifications")); $service->updateAccount($command); diff --git a/lib/Alchemy/Phrasea/Core/Event/Subscriber/FeedEntrySubscriber.php b/lib/Alchemy/Phrasea/Core/Event/Subscriber/FeedEntrySubscriber.php index 03a72a95b4..8bc7cb2b52 100644 --- a/lib/Alchemy/Phrasea/Core/Event/Subscriber/FeedEntrySubscriber.php +++ b/lib/Alchemy/Phrasea/Core/Event/Subscriber/FeedEntrySubscriber.php @@ -13,7 +13,9 @@ namespace Alchemy\Phrasea\Core\Event\Subscriber; use Alchemy\Phrasea\Core\Event\FeedEntryEvent; use Alchemy\Phrasea\Core\PhraseaEvents; +use Alchemy\Phrasea\Model\Entities\User; use Alchemy\Phrasea\Model\Entities\WebhookEvent; +use Alchemy\Phrasea\Model\Manipulator\TokenManipulator; use Alchemy\Phrasea\Notification\Receiver; use Alchemy\Phrasea\Notification\Mail\MailInfoNewPublication; @@ -53,36 +55,43 @@ class FeedEntrySubscriber extends AbstractNotificationSubscriber do { $results = $Query->limit($start, $perLoop)->execute()->get_results(); - foreach ($results as $user_to_notif) { - $mailed = false; + $users_emailed = []; // for all users + $users_to_email = []; // list only users who must be emailed (=create tokens) - if ($params['notify_email'] && $this->shouldSendNotificationFor($user_to_notif, 'eventsmanager_notify_feed')) { - $readyToSend = false; - try { - $token = $this->app['manipulator.token']->createFeedEntryToken($user_to_notif, $entry); - $url = $this->app->url('lightbox', ['LOG' => $token->getValue()]); - - $receiver = Receiver::fromUser($user_to_notif); - $readyToSend = true; - } catch (\Exception $e) { - - } - - if ($readyToSend) { - $mail = MailInfoNewPublication::create($this->app, $receiver); - $mail->setButtonUrl($url); - $mail->setAuthor($entry->getAuthorName()); - $mail->setTitle($entry->getTitle()); - - $this->deliver($mail); - $mailed = true; - } + /** @var User $user */ + foreach ($results as $user) { + $users_emailed[$user->getId()] = false; + if ($params['notify_email'] && $this->shouldSendNotificationFor($user, 'eventsmanager_notify_feed')) { + $users_to_email[$user->getId()] = $user; } - - $this->app['events-manager']->notify($user_to_notif->getId(), 'eventsmanager_notify_feed', $datas, $mailed); } + + // get many tokens in one shot + $tokens = $this->getTokenManipulator()->createFeedEntryTokens($users_to_email, $entry); + foreach($tokens as $token) { + try { + $url = $this->app->url('lightbox', ['LOG' => $token->getValue()]); + $receiver = Receiver::fromUser($token->getUser()); + + $mail = MailInfoNewPublication::create($this->app, $receiver); + $mail->setButtonUrl($url); + $mail->setAuthor($entry->getAuthorName()); + $mail->setTitle($entry->getTitle()); + + $this->deliver($mail); + $users_emailed[$token->getUser()->getId()] = true; + } + catch (\Exception $e) { + // no-op + } + } + foreach($users_emailed as $id => $emailed) { + $this->app['events-manager']->notify($id, 'eventsmanager_notify_feed', $datas, $emailed); + } + $start += $perLoop; - } while (count($results) > 0); + } + while (count($results) > 0); } public static function getSubscribedEvents() @@ -91,4 +100,12 @@ class FeedEntrySubscriber extends AbstractNotificationSubscriber PhraseaEvents::FEED_ENTRY_CREATE => 'onCreate', ]; } + + /** + * @return TokenManipulator + */ + private function getTokenManipulator() + { + return $this->app['manipulator.token']; + } } diff --git a/lib/Alchemy/Phrasea/Core/Provider/SearchEngineServiceProvider.php b/lib/Alchemy/Phrasea/Core/Provider/SearchEngineServiceProvider.php index 58f77475a1..e342bf8380 100644 --- a/lib/Alchemy/Phrasea/Core/Provider/SearchEngineServiceProvider.php +++ b/lib/Alchemy/Phrasea/Core/Provider/SearchEngineServiceProvider.php @@ -97,7 +97,7 @@ class SearchEngineServiceProvider implements ServiceProviderInterface }); $app['elasticsearch.facets_response.factory'] = $app->protect(function (array $response) use ($app) { - return new FacetsResponse(new Escaper(), $response, $app['search_engine.structure']); + return new FacetsResponse($app['elasticsearch.options'], new Escaper(), $response, $app['search_engine.structure']); }); return $app; @@ -228,7 +228,8 @@ class SearchEngineServiceProvider implements ServiceProviderInterface }); $app['elasticsearch.options'] = $app->share(function ($app) { - $options = ElasticsearchOptions::fromArray($app['conf']->get(['main', 'search-engine', 'options'], [])); + $conf = $app['conf']->get(['main', 'search-engine', 'options'], []); + $options = ElasticsearchOptions::fromArray($conf); if (empty($options->getIndexName())) { $options->setIndexName(strtolower(sprintf('phraseanet_%s', str_replace( diff --git a/lib/Alchemy/Phrasea/Core/Version.php b/lib/Alchemy/Phrasea/Core/Version.php index 374c6af2e0..c029f2be01 100644 --- a/lib/Alchemy/Phrasea/Core/Version.php +++ b/lib/Alchemy/Phrasea/Core/Version.php @@ -16,6 +16,7 @@ class Version /** * @var string */ + private $number = '4.1.0-alpha.23a'; /** diff --git a/lib/Alchemy/Phrasea/Helper/User/Edit.php b/lib/Alchemy/Phrasea/Helper/User/Edit.php index 5c760a55de..2c7513fb3f 100644 --- a/lib/Alchemy/Phrasea/Helper/User/Edit.php +++ b/lib/Alchemy/Phrasea/Helper/User/Edit.php @@ -657,8 +657,8 @@ class Edit extends \Alchemy\Phrasea\Helper\Helper ->setEmail($parm['email']) ->setAddress($parm['address']) ->setZipCode($parm['zip']) - ->setActivity($parm['function']) - ->setJob($parm['activite']) + ->setActivity($parm['activite']) + ->setJob($parm['function']) ->setCompany($parm['company']) ->setPhone($parm['telephone']) ->setFax($parm['fax']); diff --git a/lib/Alchemy/Phrasea/Model/Entities/Token.php b/lib/Alchemy/Phrasea/Model/Entities/Token.php index 576cf05d36..81c632f97d 100644 --- a/lib/Alchemy/Phrasea/Model/Entities/Token.php +++ b/lib/Alchemy/Phrasea/Model/Entities/Token.php @@ -15,7 +15,14 @@ use Doctrine\ORM\Mapping as ORM; use Gedmo\Mapping\Annotation as Gedmo; /** - * @ORM\Table(name="Tokens") + * @ORM\Table(name="Tokens", + * indexes={ + * @ORM\index(name="type", columns={"type"}), + * @ORM\index(name="created", columns={"created"}), + * @ORM\index(name="updated", columns={"updated"}), + * @ORM\index(name="expiration", columns={"expiration"}) + * } + * ) * @ORM\Entity(repositoryClass="Alchemy\Phrasea\Model\Repositories\TokenRepository") */ class Token diff --git a/lib/Alchemy/Phrasea/Model/Entities/WebhookEventPayload.php b/lib/Alchemy/Phrasea/Model/Entities/WebhookEventPayload.php index 1befac1843..141d415e22 100644 --- a/lib/Alchemy/Phrasea/Model/Entities/WebhookEventPayload.php +++ b/lib/Alchemy/Phrasea/Model/Entities/WebhookEventPayload.php @@ -30,7 +30,7 @@ class WebhookEventPayload private $id; /** - * @ORM\OneToOne(targetEntity="WebhookEventDelivery") + * @ORM\OneToOne(targetEntity="WebhookEventDelivery", inversedBy="payload") * @ORM\JoinColumn(name="delivery_id", referencedColumnName="id") */ private $delivery; diff --git a/lib/Alchemy/Phrasea/Model/Manipulator/TokenManipulator.php b/lib/Alchemy/Phrasea/Model/Manipulator/TokenManipulator.php index 2a43363693..56c4e9fc36 100644 --- a/lib/Alchemy/Phrasea/Model/Manipulator/TokenManipulator.php +++ b/lib/Alchemy/Phrasea/Model/Manipulator/TokenManipulator.php @@ -22,7 +22,6 @@ use RandomLib\Generator; class TokenManipulator implements ManipulatorInterface { const LETTERS_AND_NUMBERS = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; - const TYPE_FEED_ENTRY = 'FEED_ENTRY'; const TYPE_PASSWORD = 'password'; const TYPE_ACCOUNT_UNLOCK = 'account-unlock'; @@ -126,6 +125,38 @@ class TokenManipulator implements ManipulatorInterface return $this->create($user, self::TYPE_FEED_ENTRY, null, $entry->getId()); } + /** + * Create feedEntryTokens for many users in one shot + * + * @param User[] $users + * @param FeedEntry $entry + * @return Token[] + * @throws \Doctrine\DBAL\DBALException + */ + public function createFeedEntryTokens($users, FeedEntry $entry) + { + // $this->removeExpiredTokens(); + + $tokens = []; + foreach ($users as $user) { + $value = $this->random->generateString(32, self::LETTERS_AND_NUMBERS) . $user->getId(); + + $token = new Token(); + $token->setUser($user) + ->setType(self::TYPE_FEED_ENTRY) + ->setValue($value) + ->setExpiration(null) + ->setData($entry->getId()); + $tokens[] = $token; + + $this->om->persist($token); + } + $this->om->flush(); + $this->om->clear(); + + return $tokens; + } + /** * @param User $user * @param $data diff --git a/lib/Alchemy/Phrasea/Model/Repositories/TokenRepository.php b/lib/Alchemy/Phrasea/Model/Repositories/TokenRepository.php index ad45425f7c..8e40f9ebd8 100644 --- a/lib/Alchemy/Phrasea/Model/Repositories/TokenRepository.php +++ b/lib/Alchemy/Phrasea/Model/Repositories/TokenRepository.php @@ -72,4 +72,9 @@ class TokenRepository extends EntityRepository return $query->getResult(); } + + public function getEntityManager() + { + return parent::getEntityManager(); + } } diff --git a/lib/Alchemy/Phrasea/Out/Module/PDF.php b/lib/Alchemy/Phrasea/Out/Module/PDF.php index 7e29c3b459..e436e6ec5e 100644 --- a/lib/Alchemy/Phrasea/Out/Module/PDF.php +++ b/lib/Alchemy/Phrasea/Out/Module/PDF.php @@ -21,6 +21,7 @@ class PDF protected $pdf; const LAYOUT_FEEDBACK = 'feedback'; + const LAYOUT_FEEDBACKONLY = 'feedbackOnly'; const LAYOUT_PREVIEW = 'preview'; const LAYOUT_PREVIEWCAPTION = 'previewCaption'; const LAYOUT_PREVIEWCAPTIONTDM = 'previewCaptionTdm'; diff --git a/lib/Alchemy/Phrasea/Out/Module/PDFRecords.php b/lib/Alchemy/Phrasea/Out/Module/PDFRecords.php index 1a201a5499..8dd5dd4492 100644 --- a/lib/Alchemy/Phrasea/Out/Module/PDFRecords.php +++ b/lib/Alchemy/Phrasea/Out/Module/PDFRecords.php @@ -15,6 +15,7 @@ use Alchemy\Phrasea\Application; use Alchemy\Phrasea\Out\Tool\PhraseaPDF; use Alchemy\Phrasea\Helper\Record\Printer; use Alchemy\Phrasea\Model\Entities\ValidationParticipant; +use \IntlDateFormatter as DateFormatter; class PDFRecords extends PDF { @@ -36,6 +37,7 @@ class PDFRecords extends PDF throw new \Exception('Unknown layout'); break; case self::LAYOUT_FEEDBACK: + case self::LAYOUT_FEEDBACKONLY: case self::LAYOUT_PREVIEW: case self::LAYOUT_PREVIEWCAPTION: case self::LAYOUT_PREVIEWCAPTIONTDM: @@ -87,6 +89,9 @@ class PDFRecords extends PDF case self::LAYOUT_FEEDBACK: $this->print_preview(false, true, true); break; + case self::LAYOUT_FEEDBACKONLY: + $this->print_preview(false, false, true); + break; case self::LAYOUT_PREVIEW: $this->print_preview(false, false, false); break; @@ -349,18 +354,20 @@ class PDFRecords extends PDF $this->pdf->SetY($y + 2); foreach ($rec->get_caption()->get_fields() as $field) { - $this->pdf->SetFont(PhraseaPDF::FONT, 'B', 12); - $this->pdf->Write(5, $field->get_name() . " : "); + if ($field->get_databox_field()->get_gui_visible()) { + $this->pdf->SetFont(PhraseaPDF::FONT, 'B', 12); + $this->pdf->Write(5, $field->get_name() . " : "); - $this->pdf->SetFont(PhraseaPDF::FONT, '', 12); - $t = str_replace( - ["<", ">", "&"] - , ["<", ">", "&"] - , strip_tags($field->get_serialized_values()) - ); - $this->pdf->Write(5, $t); + $this->pdf->SetFont(PhraseaPDF::FONT, '', 12); + $t = str_replace( + ["<", ">", "&"] + , ["<", ">", "&"] + , strip_tags($field->get_serialized_values()) + ); + $this->pdf->Write(5, $t); - $this->pdf->Write(6, "\n"); + $this->pdf->Write(6, "\n"); + } } $this->pdf->SetY($this->pdf->GetY() + 10); } @@ -389,38 +396,38 @@ class PDFRecords extends PDF $this->pdf->SetY($this->pdf->GetY()+10); $this->pdf->SetFont(PhraseaPDF::FONT, 'B', 12); - $this->pdf->Write(5, $this->app->trans("print_feedback:: Document generated on : ")); + $this->pdf->Write(5, $this->app->trans("print_feedback:: Document generated on : ") . " "); $this->pdf->SetFont(PhraseaPDF::FONT, '', 12); - $this->pdf->Write(5, $this->app['date-formatter']->getDate(new \DateTime('now'))); + $this->pdf->Write(5, $this->formatDate(new \DateTime('now'))); $this->pdf->Write(12, "\n"); $this->pdf->SetFont(PhraseaPDF::FONT, 'B', 12); - $this->pdf->Write(5, $this->app->trans("print_feedback:: Feedback initiated by : ")); + $this->pdf->Write(5, $this->app->trans("print_feedback:: Feedback initiated by : ") . " "); $this->pdf->SetFont(PhraseaPDF::FONT, '', 12); - $this->pdf->Write(5, $validation->getInitiator()->getLogin()); + $this->pdf->Write(5, $this->getDisplayName($validation->getInitiator())); $this->pdf->Write(6, "\n"); $this->pdf->SetFont(PhraseaPDF::FONT, 'B', 12); - $this->pdf->Write(5, $this->app->trans("print_feedback:: Feedback initiated on : ")); + $this->pdf->Write(5, $this->app->trans("print_feedback:: Feedback initiated on : ") . " "); $this->pdf->SetFont(PhraseaPDF::FONT, '', 12); - $this->pdf->Write(5, $this->app['date-formatter']->getDate($validation->getCreated())); + $this->pdf->Write(5, $this->formatDate($validation->getCreated())); $this->pdf->Write(6, "\n"); $this->pdf->SetFont(PhraseaPDF::FONT, 'B', 12); - $this->pdf->Write(5, $this->app->trans("print_feedback:: Feedback expiring on : ")); + $this->pdf->Write(5, $this->app->trans("print_feedback:: Feedback expiring on : ") . " "); $this->pdf->SetFont(PhraseaPDF::FONT, '', 12); - $this->pdf->Write(5, $this->app['date-formatter']->getDate($validation->getExpires())); + $this->pdf->Write(5, $this->formatDate($validation->getExpires())); $this->pdf->Write(12, "\n"); $this->pdf->SetFont(PhraseaPDF::FONT, 'B', 12); - $this->pdf->Write(5, $this->app->trans("print_feedback:: Feedback " . ($validation->isFinished() ? "expired" : "active"))); + $validation->isFinished() ? $this->pdf->Write(5, $this->app->trans("print_feedback:: Feedback expired")) : $this->pdf->Write(5, $this->app->trans("print_feedback:: Feedback active")); $this->pdf->Write(12, "\n"); $this->pdf->SetFont(PhraseaPDF::FONT, 'B', 12); $this->pdf->Write(5, $this->app->trans("print_feedback:: Participants : ")); $this->pdf->SetFont(PhraseaPDF::FONT, '', 12); foreach ($validation->getParticipants() as $participant) { - $this->pdf->Write(5, "\n - " . $participant->getUser()->getLogin()); + $this->pdf->Write(5, "\n - " . $this->getDisplayName($participant->getUser())); } } } @@ -488,7 +495,7 @@ class PDFRecords extends PDF $ord = $basket->getElementByRecord($this->app, $rec)->getOrd(); $this->pdf->SetY($y); $this->pdf->SetX(10); - $this->pdf->Cell(190, $h, '#' . $ord, "", 1, "C", 0); + $this->pdf->Cell(190, $h, $ord, "", 1, "C", 0); } if ($LEFT__TEXT == "" && is_file($LEFT__IMG)) { @@ -586,37 +593,44 @@ class PDFRecords extends PDF } $this->pdf->SetXY($lmargin, $y += ( $finalHeight + 5)); + $this->pdf->SetFont(PhraseaPDF::FONT, 'B', 12); + $this->pdf->Write(5, $this->app->trans("print_feedback:: record title: ") . " "); + $this->pdf->SetFont(PhraseaPDF::FONT, '', 12); + $this->pdf->Write(5, $rec->get_title()); + $this->pdf->Write(6, "\n"); + + $this->pdf->SetFont(PhraseaPDF::FONT, 'B', 12); + $this->pdf->Write(5, $this->app->trans("print_feedback:: record id: ") . " "); + $this->pdf->SetFont(PhraseaPDF::FONT, '', 12); + $this->pdf->Write(5, $rec->getRecordId()); + $this->pdf->Write(6, "\n"); + + $this->pdf->SetFont(PhraseaPDF::FONT, 'B', 12); + $this->pdf->Write(5, $this->app->trans("print_feedback:: base name: ") . " "); + $this->pdf->SetFont(PhraseaPDF::FONT, '', 12); + $this->pdf->Write(5, $rec->getDatabox()->get_label($this->app['locale'])); + $this->pdf->Write(6, "\n"); + + $this->pdf->SetFont(PhraseaPDF::FONT, 'B', 12); + $this->pdf->Write(5, $this->app->trans("print_feedback:: originale filename: ") . " "); + $this->pdf->SetFont(PhraseaPDF::FONT, '', 12); + $this->pdf->Write(5, $rec->get_original_name()); + $this->pdf->Write(6, "\n"); + + $this->pdf->SetFont(PhraseaPDF::FONT, 'B', 12); + $this->pdf->Write(5, $this->app->trans("print_feedback:: document Uuid: ") . " "); + $this->pdf->SetFont(PhraseaPDF::FONT, '', 12); + $this->pdf->Write(5, $rec->getUUID()); + $this->pdf->Write(6, "\n"); + $nf = 0; - if ($write_caption) { - foreach ($rec->get_caption()->get_fields() as $field) { - /* @var $field caption_field */ - if ($nf > 0) { - $this->pdf->Write(6, "\n"); - } - - $this->pdf->SetFont(PhraseaPDF::FONT, 'B', 12); - $this->pdf->Write(5, $field->get_name() . " : "); - - $this->pdf->SetFont(PhraseaPDF::FONT, '', 12); - - $t = str_replace( - ["<", ">", "&"] - , ["<", ">", "&"] - , strip_tags($field->get_serialized_values()) - ); - - $this->pdf->Write(5, $t); - - $nf++; - } - } - if($basket && $validation) { /** @var ValidationParticipant $participant */ if ($nf > 0) { $this->pdf->Write(6, "\n"); } + $this->pdf->Write(12, "\n"); $this->pdf->SetFont(PhraseaPDF::FONT, 'B', 12); $this->pdf->Write(5, $this->app->trans("print_feedback:: Votes :")); $this->pdf->SetFont(PhraseaPDF::FONT, '', 12); @@ -631,7 +645,7 @@ class PDFRecords extends PDF } $validationData = $basketElement->getUserValidationDatas($participant->getUser()); - $this->pdf->Write(5, '- ' . $participant->getUser()->getLogin() . " : "); + $this->pdf->Write(5, '- ' . $this->getDisplayName($participant->getUser(), true). " : "); $r = $validationData->getAgreement(); $this->pdf->SetX(100); @@ -648,7 +662,7 @@ class PDFRecords extends PDF $this->pdf->Write(0, $this->app->trans("print_feedback:: Non")); } $this->pdf->SetTextColor(0); - $this->pdf->Write(0, " (" . $this->app['date-formatter']->getDate($validationData->getUpdated()) . ")"); + $this->pdf->Write(0, " (" . $this->formatDate($validationData->getUpdated()) . ")"); } if (($note = (string)($validationData->getNote())) !== '') { @@ -662,14 +676,114 @@ class PDFRecords extends PDF $nf++; } } + + if ($write_caption) { + $this->pdf->Write(12, "\n"); + foreach ($rec->get_caption()->get_fields() as $field) { + /* @var $field caption_field */ + + if ($field->get_databox_field()->get_gui_visible()) { + if ($nf > 0) { + $this->pdf->Write(6, "\n"); + } + + $this->pdf->SetFont(PhraseaPDF::FONT, 'B', 12); + $this->pdf->Write(5, $field->get_name() . " : "); + + $this->pdf->SetFont(PhraseaPDF::FONT, '', 12); + + $t = str_replace( + ["<", ">", "&"] + , ["<", ">", "&"] + , strip_tags($field->get_serialized_values()) + ); + + $this->pdf->Write(5, $t); + + $nf++; + } + } + } } return; } - private function formatDate(DateTime $d) + private function formatDate(\DateTime $date) { - // todo + $locale = $this->app['locale']; + + switch ($locale) { + case 'fr': + $fmt = new DateFormatter( + 'fr_FR', + DateFormatter::LONG, + DateFormatter::NONE + ); + + $date_formated = $fmt->format($date); + break; + + case 'en': + $fmt = new DateFormatter( + 'en_EN', + DateFormatter::LONG, + DateFormatter::NONE + ); + + $date_formated = $fmt->format($date); + break; + + case 'de': + $fmt = new DateFormatter( + 'de_DE', + DateFormatter::LONG, + DateFormatter::NONE + ); + + $date_formated = $fmt->format($date); + break; + + default: + $fmt = new DateFormatter( + 'en_EN', + DateFormatter::LONG, + DateFormatter::NONE , + null, + null, + 'yyyy/mm/dd' + ); + + $date_formated = $fmt->format($date); + break; + } + + return $date_formated; + } + + private function getDisplayName($user, $short = false) + { + $displayName = ''; + + if (trim($user->getLastName()) !== '' || trim($user->getFirstName()) !== '') { + $displayName = $user->getFirstName() . ('' !== $user->getFirstName() && '' !== $user->getLastName() ? ' ' : '') . $user->getLastName() ; + + if ($short) { + return $displayName; + } + } + + $email = trim($user->getEmail()); + + if ($email === '') { + $email = $user->getLogin(); + } + + if ($displayName !== '') { + return $displayName . ", " . $email; + } else { + return $email; + } } } diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticSearchEngine.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticSearchEngine.php index 63d9ec108e..2424330031 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticSearchEngine.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticSearchEngine.php @@ -668,17 +668,20 @@ class ElasticSearchEngine implements SearchEngineInterface } // fields aggregates $structure = $this->context_factory->getLimitedStructure($options); - foreach ($structure->getFacetFields() as $name => $field) { - // 2015-05-26 (mdarse) Removed databox filtering. - // It was already done by the ACL filter in the query scope, so no - // document that shouldn't be displayed can go this far. - $agg = [ - 'terms' => [ - 'field' => $field->getIndexField(true), - 'size' => $field->getFacetValuesLimit() - ] - ]; - $aggs[$name] = AggregationHelper::wrapPrivateFieldAggregation($field, $agg); + foreach($structure->getAllFields() as $name => $field) { + $size = $this->options->getAggregableFieldLimit($name); + if ($size !== databox_field::FACET_DISABLED) { + if ($size === databox_field::FACET_NO_LIMIT) { + $size = ESField::FACET_NO_LIMIT; + } + $agg = [ + 'terms' => [ + 'field' => $field->getIndexField(true), + 'size' => $size + ] + ]; + $aggs[$name] = AggregationHelper::wrapPrivateFieldAggregation($field, $agg); + } } return $aggs; diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticsearchOptions.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticsearchOptions.php index 0532f85c30..07e54449eb 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticsearchOptions.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticsearchOptions.php @@ -9,6 +9,10 @@ */ namespace Alchemy\Phrasea\SearchEngine\Elastic; +use databox_field; +use igorw; + + class ElasticsearchOptions { const POPULATE_ORDER_RID = "RECORD_ID"; @@ -35,7 +39,7 @@ class ElasticsearchOptions private $populateDirection; /** @var int[] */ - private $_customValues; + private $_customValues = []; private $activeTab; /** @@ -57,14 +61,10 @@ class ElasticsearchOptions 'populate_order' => self::POPULATE_ORDER_RID, 'populate_direction' => self::POPULATE_DIRECTION_DESC, 'activeTab' => null, + 'facets' => [] ]; - - foreach(self::getAggregableTechnicalFields() as $k => $f) { - $defaultOptions[$k.'_limit'] = 0; - } $options = array_replace($defaultOptions, $options); - $self = new self(); $self->setHost($options['host']); $self->setPort($options['port']); @@ -76,11 +76,10 @@ class ElasticsearchOptions $self->setPopulateOrder($options['populate_order']); $self->setPopulateDirection($options['populate_direction']); $self->setActiveTab($options['activeTab']); - foreach(self::getAggregableTechnicalFields() as $k => $f) { - $self->setAggregableFieldLimit($k, $options[$k.'_limit']); + foreach($options['facets'] as $fieldname=>$attributes) { + $self->setAggregableField($fieldname, $attributes); } - return $self; } @@ -99,10 +98,11 @@ class ElasticsearchOptions 'highlight' => $this->highlight, 'populate_order' => $this->populateOrder, 'populate_direction' => $this->populateDirection, - 'activeTab' => $this->activeTab + 'activeTab' => $this->activeTab, + 'facets' => [] ]; - foreach(self::getAggregableTechnicalFields() as $k => $f) { - $ret[$k.'_limit'] = $this->getAggregableFieldLimit($k); + foreach($this->getAggregableFields() as $fieldname=>$attributes) { + $ret['facets'][$fieldname] = $attributes; } return $ret; @@ -222,12 +222,51 @@ class ElasticsearchOptions public function setAggregableFieldLimit($key, $value) { - $this->_customValues[$key.'_limit'] = $value; + if(is_null($this->getAggregableField($key))) { + $this->_customValues['facets'][$key] = []; + } + $this->_customValues['facets'][$key]['limit'] = $value; + } + + public function setAggregableField($key, $attributes) + { + $this->getAggregableFields(); // ensure facets exists + $this->_customValues['facets'][$key] = $attributes; } public function getAggregableFieldLimit($key) { - return $this->_customValues[$key.'_limit']; + $facet = $this->getAggregableField($key); + return (is_array($facet) && array_key_exists('limit', $facet)) ? $facet['limit'] : databox_field::FACET_DISABLED; + } + + public function getAggregableField($key) + { + $facets = $this->getAggregableFields(); + return array_key_exists($key, $facets) ? $facets[$key] : null; + } + + /** + * @return array + */ + public function getAggregableFields() + { + if(!array_key_exists('facets', $this->_customValues) || !is_array($this->_customValues['facets'])) { + $this->_customValues['facets'] = []; + } + return $this->_customValues['facets']; + } + + // set to change the facets order during admin/form save + public function reorderAggregableFields($facetNames) + { + $newFacets = []; + foreach ($facetNames as $name) { + if(($facet = $this->getAggregableField($name)) !== null) { + $newFacets[$name] = $facet; + } + } + $this->_customValues['facets'] = $newFacets; } public function getActiveTab() @@ -241,56 +280,56 @@ class ElasticsearchOptions public function __get($key) { - if(!array_key_exists($key, $this->_customValues)) { - $this->_customValues[$key] = 0; - } - return $this->_customValues[$key]; + $keys = explode(':', $key); + + return igorw\get_in($this->_customValues, $keys); } public function __set($key, $value) { - $this->_customValues[$key] = $value; + $keys = explode(':', $key); + $this->_customValues = igorw\assoc_in($this->_customValues, $keys, $value); } public static function getAggregableTechnicalFields() { return [ - 'base_aggregate' => [ + '_base' => [ 'type' => 'string', 'label' => 'prod::facet:base_label', 'field' => "database", 'esfield' => 'databox_name', 'query' => 'database:%s', ], - 'collection_aggregate' => [ + '_collection' => [ 'type' => 'string', 'label' => 'prod::facet:collection_label', 'field' => "collection", 'esfield' => 'collection_name', 'query' => 'collection:%s', ], - 'doctype_aggregate' => [ + '_doctype' => [ 'type' => 'string', 'label' => 'prod::facet:doctype_label', 'field' => "type", 'esfield' => 'type', 'query' => 'type:%s', ], - 'camera_model_aggregate' => [ + '_camera_model' => [ 'type' => 'string', 'label' => 'Camera Model', 'field' => "meta.CameraModel", 'esfield' => 'metadata_tags.CameraModel', 'query' => 'meta.CameraModel:%s', ], - 'iso_aggregate' => [ + '_iso' => [ 'type' => 'number', 'label' => 'ISO', 'field' => "meta.ISO", 'esfield' => 'metadata_tags.ISO', 'query' => 'meta.ISO=%s', ], - 'aperture_aggregate' => [ + '_aperture' => [ 'type' => 'number', 'label' => 'Aperture', 'field' => "meta.Aperture", @@ -300,7 +339,7 @@ class ElasticsearchOptions return round($value, 1); }, ], - 'shutterspeed_aggregate' => [ + '_shutterspeed' => [ 'type' => 'number', 'label' => 'Shutter speed', 'field' => "meta.ShutterSpeed", @@ -313,7 +352,7 @@ class ElasticsearchOptions return $value . ' s.'; }, ], - 'flashfired_aggregate' => [ + '_flashfired' => [ 'type' => 'boolean', 'label' => 'FlashFired', 'field' => "meta.FlashFired", @@ -327,49 +366,49 @@ class ElasticsearchOptions return array_key_exists($value, $map) ? $map[$value] : $value; }, ], - 'framerate_aggregate' => [ + '_framerate' => [ 'type' => 'number', 'label' => 'FrameRate', 'field' => "meta.FrameRate", 'esfield' => 'metadata_tags.FrameRate', 'query' => 'meta.FrameRate=%s', ], - 'audiosamplerate_aggregate' => [ + '_audiosamplerate' => [ 'type' => 'number', 'label' => 'Audio Samplerate', 'field' => "meta.AudioSamplerate", 'esfield' => 'metadata_tags.AudioSamplerate', 'query' => 'meta.AudioSamplerate=%s', ], - 'videocodec_aggregate' => [ + '_videocodec' => [ 'type' => 'string', 'label' => 'Video codec', 'field' => "meta.VideoCodec", 'esfield' => 'metadata_tags.VideoCodec', 'query' => 'meta.VideoCodec:%s', ], - 'audiocodec_aggregate' => [ + '_audiocodec' => [ 'type' => 'string', 'label' => 'Audio codec', 'field' => "meta.AudioCodec", 'esfield' => 'metadata_tags.AudioCodec', 'query' => 'meta.AudioCodec:%s', ], - 'orientation_aggregate' => [ + '_orientation' => [ 'type' => 'string', 'label' => 'Orientation', 'field' => "meta.Orientation", 'esfield' => 'metadata_tags.Orientation', 'query' => 'meta.Orientation=%s', ], - 'colorspace_aggregate' => [ + '_colorspace' => [ 'type' => 'string', 'label' => 'Colorspace', 'field' => "meta.ColorSpace", 'esfield' => 'metadata_tags.ColorSpace', 'query' => 'meta.ColorSpace:%s', ], - 'mimetype_aggregate' => [ + '_mimetype' => [ 'type' => 'string', 'label' => 'MimeType', 'field' => "meta.MimeType", diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticsearchSettingsFormType.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticsearchSettingsFormType.php index e1aaa3e378..1f2fa3d1e2 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticsearchSettingsFormType.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticsearchSettingsFormType.php @@ -9,6 +9,7 @@ */ namespace Alchemy\Phrasea\SearchEngine\Elastic; +use Alchemy\Phrasea\SearchEngine\Elastic\Structure\GlobalStructure; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\ChoiceType; use Symfony\Component\Form\FormBuilderInterface; @@ -17,6 +18,18 @@ use Symfony\Component\Validator\Constraints\Range; class ElasticsearchSettingsFormType extends AbstractType { + /** @var GlobalStructure */ + private $globalStructure; + + /** @var ElasticsearchOptions */ + private $esSettings; + + public function __construct(GlobalStructure $g, ElasticsearchOptions $settings) + { + $this->globalStructure = $g; + $this->esSettings = $settings; + } + public function buildForm(FormBuilderInterface $builder, array $options) { $builder @@ -56,59 +69,89 @@ class ElasticsearchSettingsFormType extends AbstractType ->add('minScore', 'integer', [ 'label' => 'Thesaurus Min score', 'constraints' => new Range(['min' => 0]), - ]); + ]) + ->add('highlight', 'checkbox', [ + 'label' => 'Activate highlight', + 'required' => false + ]) + // ->add('save', 'submit', [ + // 'attr' => ['class' => 'btn btn-primary'] + // ]) + ->add('esSettingFromIndex', 'button', [ + 'label' => 'Get setting form index', + 'attr' => [ + 'onClick' => 'esSettingFromIndex()', + 'class' => 'btn' + ] + ]) + ->add('dumpField', 'textarea', [ + 'label' => false, + 'required' => false, + 'mapped' => false, + 'attr' => ['class' => 'dumpfield hide'] + ]) + ->add('activeTab', 'hidden'); - foreach(ElasticsearchOptions::getAggregableTechnicalFields() as $k => $f) { - if(array_key_exists('choices', $f)) { - // choices[] : choice_key => choice_value - $choices = $f['choices']; - } - else { - $choices = [ - "10 values" => 10, - "20 values" => 20, - "50 values" => 50, - "100 values" => 100, - "all values" => -1 - ]; - } - // array_unshift($choices, "not aggregated"); // always as first choice - $choices = array_merge(["not aggregated" => 0], $choices); - $builder - ->add($k.'_limit', ChoiceType::class, [ - // 'label' => $f['label'],// . ' ' . 'aggregate limit', - 'choices_as_values' => true, - 'choices' => $choices, - 'attr' => [ - 'class' => 'aggregate' - ] - ]); + // keep aggregates in configuration order with this intermediate array + $aggs = []; + + // helper fct to add aggregate to a tmp list + $addAgg = function($k, $label, $help, $disabled=false, $choices=null) use (&$aggs) { + if(!$choices) { + $choices = [ + "10 values" => 10, + "50 values" => 50, + "100 values" => 100, + "all values" => -1 + ]; } + $choices = array_merge(["not aggregated" => 0], $choices); // add this option always as first choice + $aggs[$k] = [ // default value will be replaced by hardcoded tech fields & all databoxes fields + 'label' => $label, + 'choices_as_values' => true, + 'choices' => $choices, + 'attr' => [ + 'class' => 'aggregate' + ], + 'disabled' => $disabled, + 'help_message' => $help // todo : not displayed ? + ]; + }; - $builder - ->add('highlight', 'checkbox', [ - 'label' => 'Activate highlight', - 'required' => false - ]) -// ->add('save', 'submit', [ -// 'attr' => ['class' => 'btn btn-primary'] -// ]) - ->add('esSettingFromIndex', 'button', [ - 'label' => 'Get setting form index', - 'attr' => [ - 'onClick' => 'esSettingFromIndex()', - 'class' => 'btn' - ] - ]) - ->add('dumpField', 'textarea', [ - 'label' => false, - 'required' => false, - 'mapped' => false, - 'attr' => ['class' => 'dumpfield hide'] - ]) - ->add('activeTab', 'hidden'); + // all fields fron conf + foreach($this->esSettings->getAggregableFields() as $k=>$f) { + // default value will be replaced by hardcoded tech fields & all databoxes fields + $addAgg($k, "/?\\ " . $k, "This field does not exists in current databoxes.", true); + } + + // add or replace hardcoded tech fields + foreach(ElasticsearchOptions::getAggregableTechnicalFields() as $k => $f) { + $choices = array_key_exists('choices', $f) ? $f['choices'] : null; // a tech-field can publish it's own choices + $help = null; + $label = '#' . $k; + if(!array_key_exists($k, $aggs)) { + $label = "/!\\ " . $label; + $help = "New field, please confirm setting."; + } + $addAgg($k, $label, $help, false, $choices); + } + + // add or replace all databoxes fields (nb: new db field - unknown in conf - will be a the end) + foreach($this->globalStructure->getAllFields() as $field) { + $k = $label = $field->getName(); + $help = null; + if(!array_key_exists($field->getName(), $aggs)) { + $label = "/!\\ " . $label; + $help = "New field, please confirm setting."; + } + $addAgg($k, $label, $help); // default choices + } + + // populate aggs to form + foreach($aggs as $k=>$agg) { + $builder->add('facets:' . $k . ':limit', ChoiceType::class, $agg); + } - ; } public function getName() diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/FacetsResponse.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/FacetsResponse.php index 2f2d966c51..efcc6d1c76 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/FacetsResponse.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/FacetsResponse.php @@ -15,7 +15,7 @@ class FacetsResponse private $escaper; private $facets = array(); - public function __construct(Escaper $escaper, array $response, GlobalStructure $structure) + public function __construct(ElasticsearchOptions $options, Escaper $escaper, array $response, GlobalStructure $structure) { $this->escaper = $escaper; @@ -25,7 +25,13 @@ class FacetsResponse $atf = ElasticsearchOptions::getAggregableTechnicalFields(); - foreach ($response['aggregations'] as $name => $aggregation) { + // sort facets respecting the order defined in options + foreach($options->getAggregableFields() as $name=>$foptions) { + if(!array_key_exists($name, $response['aggregations'])) { + continue; + } + $aggregation = $response['aggregations'][$name]; + $tf = null; $valueFormatter = function($v){ return $v; }; // default equality formatter @@ -78,6 +84,7 @@ class FacetsResponse ]; } } + } diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/GlobalStructure.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/GlobalStructure.php index ea4022dffb..0793c91c7b 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/GlobalStructure.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/GlobalStructure.php @@ -35,11 +35,6 @@ final class GlobalStructure implements Structure */ private $private = array(); - /** - * @var Field[] - */ - private $facets = array(); - /** * @var Flag[] */ @@ -145,9 +140,11 @@ final class GlobalStructure implements Structure $this->private[$name] = $field; } + /* if ($field->isFacet() && $field->isSearchable()) { $this->facets[$name] = $field; } + */ if ($field->hasConceptInference()) { $this->thesaurus_fields[$name] = $field; @@ -183,14 +180,6 @@ final class GlobalStructure implements Structure return $this->private; } - /** - * @return Field[] - */ - public function getFacetFields() - { - return $this->facets; - } - /** * @return Field[] */ diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/LimitedStructure.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/LimitedStructure.php index 671bf87c93..053ca6b0e0 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/LimitedStructure.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/LimitedStructure.php @@ -47,14 +47,6 @@ final class LimitedStructure implements Structure return $this->limit($this->structure->getPrivateFields()); } - /** - * @return Field[] - */ - public function getFacetFields() - { - return $this->limit($this->structure->getFacetFields()); - } - public function getThesaurusEnabledFields() { return $this->limit($this->structure->getThesaurusEnabledFields()); diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/Structure.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/Structure.php index 3c2be701e1..44d58e9d5f 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/Structure.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/Structure.php @@ -33,11 +33,6 @@ interface Structure */ public function getPrivateFields(); - /** - * @return Field[] - */ - public function getFacetFields(); - /** * @return Field[] */ diff --git a/lib/classes/eventsmanager/notify/order.php b/lib/classes/eventsmanager/notify/order.php index d5aca30998..bba2c686f0 100644 --- a/lib/classes/eventsmanager/notify/order.php +++ b/lib/classes/eventsmanager/notify/order.php @@ -42,7 +42,7 @@ class eventsmanager_notify_order extends eventsmanager_notifyAbstract $ret = [ 'text' => $this->app->trans('%user% a passe une %opening_link% commande %end_link%', [ '%user%' => $sender, - '%opening_link%' => '', + '%opening_link%' => '', '%end_link%' => '',]) , 'class' => '' ]; diff --git a/lib/classes/patch/410alpha17a.php b/lib/classes/patch/410alpha17a.php index ff682b1ef9..a719c2b62b 100644 --- a/lib/classes/patch/410alpha17a.php +++ b/lib/classes/patch/410alpha17a.php @@ -62,6 +62,16 @@ class patch_410alpha17a implements patchInterface // $sql = "ALTER TABLE `metadatas_structure` ADD `gui_editable` INT(1) UNSIGNED NOT NULL DEFAULT '0' AFTER `readonly`"; // $databox->get_connection()->executeQuery($sql); + foreach ($databox->get_meta_structure() as $databox_field) { + if ($databox_field->get_tbranch() != '') { + $databox_field->set_generate_cterms(true); + } else { + $databox_field->set_generate_cterms(false); + } + + $databox_field->save(); + } + return true; } } diff --git a/lib/classes/patch/410alpha21a.php b/lib/classes/patch/410alpha21a.php new file mode 100644 index 0000000000..58091e62f2 --- /dev/null +++ b/lib/classes/patch/410alpha21a.php @@ -0,0 +1,111 @@ +release; + } + + /** + * {@inheritdoc} + */ + public function concern() + { + return $this->concern; + } + + /** + * {@inheritdoc} + */ + public function require_all_upgrades() + { + return false; + } + + /** + * {@inheritdoc} + */ + public function getDoctrineMigrations() + { + return []; + } + + /** + * {@inheritdoc} + */ + public function apply(base $databox, Application $app) + { + // fix the Longitude value + + $sql = 'SELECT id, record_id, name, value FROM technical_datas WHERE trim(name) = "LongitudeRef" '; + $stmt = $databox->get_connection()->prepare($sql); + $stmt->execute(); + $rs = $stmt->fetchAll(PDO::FETCH_ASSOC); + $stmt->closeCursor(); + + foreach ($rs as $row) { + if (trim($row['value']) === 'W' ) { + $sql = 'UPDATE technical_datas SET value = CONCAT("-", value) WHERE trim(name) = "Longitude" AND record_id =:record_id'; + $stmt = $databox->get_connection()->prepare($sql); + $stmt->execute([':record_id' => $row['record_id']]); + } + + $sqlDelete = 'DELETE FROM technical_datas WHERE id =:id'; + + $stmt1 = $databox->get_connection()->prepare($sqlDelete); + $stmt1->execute([':id' => $row['id']]); + $stmt1->closeCursor(); + } + + $stmt->closeCursor(); + + // fix the Latitude value + + $sql = 'SELECT id, record_id, name, value FROM technical_datas WHERE trim(name) = "LatitudeRef" '; + $stmt = $databox->get_connection()->prepare($sql); + $stmt->execute(); + $rs = $stmt->fetchAll(PDO::FETCH_ASSOC); + $stmt->closeCursor(); + + foreach ($rs as $row) { + if (trim($row['value']) === 'S' ) { + $sql = 'UPDATE technical_datas SET value = CONCAT("-", value) WHERE trim(name) = "Latitude" AND record_id =:record_id'; + $stmt = $databox->get_connection()->prepare($sql); + $stmt->execute([':record_id' => $row['record_id']]); + } + + $sqlDelete = 'DELETE FROM technical_datas WHERE id =:id'; + + $stmt1 = $databox->get_connection()->prepare($sqlDelete); + $stmt1->execute([':id' => $row['id']]); + $stmt1->closeCursor(); + } + + $stmt->closeCursor(); + + return true; + } +} diff --git a/lib/classes/patch/410alpha22a.php b/lib/classes/patch/410alpha22a.php new file mode 100644 index 0000000000..6a80bd058e --- /dev/null +++ b/lib/classes/patch/410alpha22a.php @@ -0,0 +1,75 @@ +release; + } + + /** + * {@inheritdoc} + */ + public function concern() + { + return $this->concern; + } + + /** + * {@inheritdoc} + */ + public function require_all_upgrades() + { + return false; + } + + /** + * {@inheritdoc} + */ + public function getDoctrineMigrations() + { + return []; + } + + /** + * {@inheritdoc} + */ + public function apply(base $appbox, Application $app) + { + foreach(['type', 'created', 'updated', 'expiration'] as $t) { + $sql = "ALTER TABLE `Tokens` ADD INDEX `".$t."` (`".$t."`);"; + try { + $stmt = $appbox->get_connection()->prepare($sql); + $stmt->execute(); + $stmt->closeCursor(); + } + catch (\Exception $e) { + // the inex already exists ? + } + } + + return true; + } +} diff --git a/package.json b/package.json index fbe48edbd0..34944f5377 100644 --- a/package.json +++ b/package.json @@ -65,7 +65,7 @@ "normalize-css": "^2.1.0", "npm": "^6.0.0", "npm-modernizr": "^2.8.3", - "phraseanet-production-client": "0.34.106-d", + "phraseanet-production-client": "0.34.135-d", "requirejs": "^2.3.5", "tinymce": "^4.0.28", "underscore": "^1.8.3", diff --git a/resources/locales/messages.de.xlf b/resources/locales/messages.de.xlf index a1b7ab8fab..3eabcb3949 100644 --- a/resources/locales/messages.de.xlf +++ b/resources/locales/messages.de.xlf @@ -1,20 +1,20 @@ - + - +
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.
- - - Form/Configuration/EmailFormType.php + + Form/Login/PhraseaAuthenticationForm.php + Form/Configuration/EmailFormType.php - + Add - Hinzufügen + Hinzufügen admin/fields/templates.html.twig @@ -24,7 +24,7 @@ url through a forwarded mail for example. Parameter "Authentifizierung erzwingen" erzwingt den Push Empfänger, ein Phraseanet Konto zu haben, um den Inhalt anzuschauen. Es vermeidet, unautorisierte Benutzer dem Push Inhalt zuzugreifen, falls sie die URL bekämen (Email wurde weitergeleitet, zum Beispiel). - prod/templates/push.html.twig + prod/templates/push.html.twig {0} No results|{1} Result|]1,Inf[ Results @@ -117,9 +117,9 @@ %basket_length% documents %basket_length% Dokument(e) - web/lightbox/index.html.twig - web/lightbox/index.html.twig mobile/lightbox/validate.html.twig + web/lightbox/index.html.twig + web/lightbox/index.html.twig %countable% documents can not be modified. @@ -192,26 +192,26 @@ %nb_records% records %nb_records% Datensätze - prod/Tooltip/Basket.html.twig prod/Tooltip/Story.html.twig + prod/Tooltip/Basket.html.twig %nb_view% vue %nb_view% Ansicht + Bridge/Dailymotion/element_informations.html.twig Bridge/Youtube/element_informations.html.twig Bridge/Flickr/element_informations.html.twig - Bridge/Dailymotion/element_informations.html.twig %nb_view% vues %nb_view% Ansichten + Bridge/Dailymotion/element_informations.html.twig Bridge/Youtube/element_informations.html.twig Bridge/Flickr/element_informations.html.twig - Bridge/Dailymotion/element_informations.html.twig selectionnes]]> - ausgewählt]]> + ausgewählt]]> Controller/Prod/QueryController.php @@ -278,7 +278,7 @@ %record_count% records match the unique identifier : %record_count% Datensätze entsprechen dem eindeutigen Bezeichner: - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig %s field has been created with success. @@ -383,17 +383,17 @@ (validation) a envoyer zu senden - web/lightbox/index.html.twig + web/lightbox/index.html.twig (validation) envoyee gesendet - web/lightbox/index.html.twig + web/lightbox/index.html.twig (validation) session terminee Sitzung beendet - web/lightbox/index.html.twig + web/lightbox/index.html.twig *Phraseanet Navigator* is a smartphone application that allow user to connect on this instance @@ -453,8 +453,8 @@ A zu - web/admin/editusers_timelimit_sbas.html.twig web/admin/editusers_timelimit.html.twig + web/admin/editusers_timelimit_sbas.html.twig A document has been quarantined @@ -489,7 +489,7 @@ A record matches the unique identifier : Ein Datensatz entspricht dem eindeutigen Bezeichner : - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig A required field is missing or has an empty value @@ -617,7 +617,7 @@ Accuse de reception Empfangsbestätigung Controller/Prod/LanguageController.php - prod/templates/push.html.twig + prod/templates/push.html.twig Accuse de reception indisponible, vous n'avez pas declare d'adresse email @@ -627,22 +627,22 @@ Action Forbidden : You are not the publisher Aktion verboten: Sie sind nicht der Veröffentlicher - Controller/Prod/FeedController.php + Controller/Prod/FeedController.php Actions Handlungen + Bridge/Dailymotion/actionelements.html.twig + Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actionelements.html.twig Bridge/Youtube/actioncontainers.html.twig Bridge/Flickr/actionelements.html.twig Bridge/Flickr/actioncontainers.html.twig - Bridge/Dailymotion/actionelements.html.twig - Bridge/Dailymotion/actioncontainers.html.twig Activate highlight Highlight aktivieren - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig @@ -654,8 +654,8 @@ Activer aktivieren admin/databox/databox.html.twig - web/admin/editusers_timelimit_sbas.html.twig web/admin/editusers_timelimit.html.twig + web/admin/editusers_timelimit_sbas.html.twig Activer le grant_type de type password pour votre application @@ -667,28 +667,28 @@ eine Kollektion aktivieren admin/databox/databox.html.twig - + Activity - Tätigkeit + Aktivität actions/Feedback/list.html.twig Add Hinzufügen prod/actions/Push.html.twig - prod/User/Add.html.twig - prod/upload/lazaret.html.twig - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig + prod/User/Add.html.twig - + Add a new field - Ein neues Feld hinzufügen + Fügen Sie ein neues Feld hinzu admin/fields/templates.html.twig - + Add a list - Eine Liste hinzufügen + Fügen Sie eine Liste hinzu actions/Feedback/lists-all.html.twig @@ -706,19 +706,19 @@ einen Administrator hinzufügen web/admin/dashboard.html.twig - + Add an end point - Add an end point + Fügen Sie einen Endpunkt hinzu Controller/Prod/LanguageController.php - + Add an entry point - Add an entry point + Fügen Sie einen Einstiegspunkt hinzu Controller/Prod/LanguageController.php - + Add new range - Add new range + Fügen Sie ein neues Kapitel hinzu Controller/Prod/LanguageController.php @@ -763,50 +763,55 @@ web/prod/index.html.twig web/prod/index.html.twig - + Advanced mode - Erweiterter Modus + Erweiterter Modus actions/Feedback/list.html.twig - + Advanced settings - Erweiterte Einstellungen + Erweiterte Einstellungen web/admin/subdefs.html.twig Affichage Anzeige - web/prod/index.html.twig + web/prod/index.html.twig Affichage au demarrage beim Start anzeigen - web/prod/index.html.twig + web/prod/index.html.twig Afficher la fiche descriptive das beschriftliche Blatt anzeigen - web/prod/index.html.twig + web/prod/index.html.twig Afficher le titre den Titel anzeigen - web/prod/index.html.twig + web/prod/index.html.twig Afficher les status die Status anzeigen - web/prod/index.html.twig + web/prod/index.html.twig Afficher une icone eine Ikone anzeigen - web/prod/index.html.twig + web/prod/index.html.twig After metadata Nach Metadaten - web/prod/index.html.twig + web/prod/index.html.twig + + + Aggregated + Aggregated + admin/search-engine/general-aggregation.html.twig Aggregation @@ -816,7 +821,7 @@ Aide Hilfe - web/prod/index.html.twig + web/prod/index.html.twig Aide sur les expressions regulieres @@ -826,16 +831,16 @@ Ajouter a Hinzufügen zu + Bridge/Dailymotion/actionelements.html.twig Bridge/Youtube/actionelements.html.twig Bridge/Flickr/actionelements.html.twig - Bridge/Dailymotion/actionelements.html.twig Ajouter ma selection courrante Meine aktuelle Auswahl hinzufügen - prod/orders/order_item.html.twig - prod/Story/Create.html.twig prod/Baskets/Create.html.twig + prod/Story/Create.html.twig + prod/orders/order_item.html.twig Ajouter un nouvel utilisateur @@ -856,24 +861,19 @@ All Alle Form/Configuration/CustomLinkFormType.php + WorkZone/Browser/Browser.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig - WorkZone/Browser/Browser.html.twig task-manager/task-editor/subdefs.html.twig All these conditions Alle Bedingungen - web/prod/index.html.twig - - - All values - Alle Werte - admin/fields/templates.html.twig + web/prod/index.html.twig Aller a @@ -935,17 +935,17 @@ Push wird erlaubt web/admin/editusers.html.twig - + Alphabetic asc - aufsteigender alphabetischer Reihenfolge - web/prod/index.html.twig - web/prod/index.html.twig - web/prod/index.html.twig + aufsteigender alphabetischer Reihenfolge + web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig - + Alphabetic desc - absteigender alphabetischer Reihenfolge - web/prod/index.html.twig + absteigender alphabetischer Reihenfolge + web/prod/index.html.twig Also delete records that rely on groupings. @@ -957,6 +957,16 @@ Ein Fehler ist aufgetreten Model/Manipulator/LazaretManipulator.php Model/Manipulator/LazaretManipulator.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php Controller/Admin/DataboxesController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php @@ -969,31 +979,21 @@ Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php + Controller/Prod/BasketController.php + Controller/Prod/ToolsController.php Controller/Prod/LazaretController.php Controller/Prod/MoveCollectionController.php - Controller/Prod/ToolsController.php - Controller/Prod/BasketController.php Controller/Prod/StoryController.php - admin/collection/suggested_value.html.twig - admin/collection/collection.html.twig web/admin/users.html.twig - task-manager/task-editor/task.html.twig admin/databox/databox.html.twig web/admin/databases.html.twig + admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig + task-manager/task-editor/task.html.twig - + An error occured when wanting to change status! - Beim Ändern des Status ist ein Fehler aufgetreten! + Beim Ändern des Status ist ein Fehler aufgetreten! Controller/Prod/LazaretController.php @@ -1031,9 +1031,9 @@ An error occurred Ein Fehler ist aufgetreten Order/Controller/ProdOrderController.php - Controller/Admin/CollectionController.php - Controller/Admin/SearchEngineController.php Controller/Admin/DataboxController.php + Controller/Admin/SearchEngineController.php + Controller/Admin/CollectionController.php Controller/Prod/BasketController.php Controller/Api/V3Controller.php Controller/Api/V1Controller.php @@ -1068,7 +1068,7 @@ Aperture Blende - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php web/common/technical_datas.html.twig @@ -1129,14 +1129,14 @@ Apply a template Eine Schablone anwenden - web/admin/users.html.twig web/admin/editusers.html.twig + web/admin/users.html.twig Apply changes Änderungen anwenden - actions/Property/index.html.twig actions/Property/type.html.twig + actions/Property/index.html.twig Apply status on story children. @@ -1156,8 +1156,8 @@ Archive Archivieren - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig Are you sure you want delete users rights ? @@ -1281,7 +1281,7 @@ Audio Samplerate Audio Samplerate - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Audio channel @@ -1291,7 +1291,7 @@ Audio codec Audio-Codec - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php AudioSamplerate @@ -1367,20 +1367,20 @@ Autorisation d'acces Zugriffsberechtigung - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Autoriser Berechtigen - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ? Ermächtigen Sie die Anwendung %application_name%, Ihren Inhalt auf %home_title% zuzugreifen? - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Available in multi-export tab @@ -1395,10 +1395,10 @@ Back Zurück + mobile/lightbox/basket_element.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig - mobile/lightbox/basket_element.html.twig mobile/lightbox/validate.html.twig @@ -1419,10 +1419,10 @@ Bad request format, only JSON is allowed Bad Request Format, nur JSON wird erlaubt + Controller/Root/AccountController.php + Controller/Admin/DataboxController.php Controller/Admin/RootController.php Controller/Admin/RootController.php - Controller/Admin/DataboxController.php - Controller/Root/AccountController.php Bad request, please contact an admin @@ -1437,9 +1437,9 @@ Base %base% Datenbank %base% - web/admin/editusers_timelimit_sbas.html.twig - web/admin/editusers_timelimit.html.twig web/admin/editusers_quotas.html.twig + web/admin/editusers_timelimit.html.twig + web/admin/editusers_timelimit_sbas.html.twig Base could not be created @@ -1451,6 +1451,11 @@ Datenbank Leerung wurde erfolgreich Controller/Admin/DataboxController.php + + Basket + Sammelkorb + prod/WorkZone/Macros.html.twig + Basket created Sammelkorb wurde erstellt @@ -1486,9 +1491,9 @@ Sammelkorb wurde aktualisiert Controller/Prod/BasketController.php - + Binary data - Binary data + Binärdaten Controller/Prod/SubdefsController.php @@ -1546,10 +1551,10 @@ Standardmässig ist es für die Administratoren verfügbar Form/Configuration/FtpExportFormType.php - + By field - Nach Feld - web/prod/index.html.twig + Nach Feld + web/prod/index.html.twig CHAMPS @@ -1559,7 +1564,7 @@ Camera Model Kameramodell - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php web/common/technical_datas.html.twig @@ -1567,12 +1572,12 @@ Abbrechen Controller/Prod/LanguageController.php prod/actions/delete_records_confirm.html.twig - actions/Property/index.html.twig actions/Property/type.html.twig - prod/User/Add.html.twig - admin/fields/templates.html.twig + actions/Property/index.html.twig + prod/User/Add.html.twig task-manager/task-editor/task.html.twig user/import/view.html.twig + admin/fields/templates.html.twig Cancel all @@ -1598,9 +1603,9 @@ Categorie Kategorie + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/upload.html.twig Bridge/Youtube/video_modify.html.twig - Bridge/Dailymotion/video_modify.html.twig Ce champ est decrit comme element du %DublinCoreElementSet% @@ -1630,14 +1635,14 @@ Ce champ est obligatoire Dieses Feld ist ein Pflichtfeld - Bridge/Api/Dailymotion.php - Bridge/Api/Dailymotion.php + Bridge/Api/Flickr.php + Bridge/Api/Flickr.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php - Bridge/Api/Flickr.php - Bridge/Api/Flickr.php + Bridge/Api/Dailymotion.php + Bridge/Api/Dailymotion.php Ce champ est relie a une branche de thesaurus @@ -1658,12 +1663,12 @@ Ce champ est trop long %length% caracteres max Dieses Feld ist zu lang, maximal %length% Zeichen - Bridge/Api/Dailymotion.php - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php + Bridge/Api/Dailymotion.php Ce champ est utilise en titre a l'affichage @@ -1710,16 +1715,15 @@ meine E-Mail Adresse verändern web/account/reset-email.html.twig - + Change play speed - Change play speed + Wiedergabegeschwindigkeit ändern Controller/Prod/LanguageController.php - + Changes for rotation will be applied only on the sub-definitions of "image" type. - Changes for rotation will be applied only on - the sub-definitions of "image" type. + Änderungen für Drehung werden nur auf "Bilder" Unterauflösungen verwendet. actions/Tools/index.html.twig @@ -1740,8 +1744,8 @@ Choisir wählen - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig web/admin/subdefs.html.twig web/admin/subdefs.html.twig web/admin/subdefs.html.twig @@ -1753,19 +1757,14 @@ Choose a new password Wählen Sie ein neues Passwort aus - web/login/renew-password.html.twig web/account/change-password.html.twig + web/login/renew-password.html.twig Choose the title of the document to export Wählen Sie den Titel des Dokuments zu exportieren Form/Configuration/ActionsFormType.php - - City - Stadt - prod/User/Add.html.twig - Civility Anrede @@ -1774,8 +1773,8 @@ Clear Klar - admin/task-manager/log_scheduler.html.twig admin/task-manager/log_task.html.twig + admin/task-manager/log_scheduler.html.twig Clear list @@ -1823,24 +1822,24 @@ Collection Kollektion prod/Story/Create.html.twig - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig admin/databox/details.html.twig Collection %collection% %collection% Kollektion - web/admin/editusers_timelimit.html.twig web/admin/editusers_quotas.html.twig + web/admin/editusers_timelimit.html.twig Collection empty successful Die Leerung der Kollektion wurde erfolgreich abgeschlossen Controller/Admin/CollectionController.php - + Collection order - Kollektionen Ordnung - web/prod/index.html.twig + Kollektionen Ordnung + web/prod/index.html.twig Color Depth @@ -1855,13 +1854,13 @@ Colorspace Colorspace - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Commande Bestellung - eventsmanager/notify/orderdeliver.php eventsmanager/notify/ordernotdelivered.php + eventsmanager/notify/orderdeliver.php Commande du %date% @@ -1893,10 +1892,10 @@ Confidentialite Vertraulichkeit - Bridge/Youtube/upload.html.twig - Bridge/Youtube/video_modify.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Dailymotion/video_modify.html.twig + Bridge/Youtube/upload.html.twig + Bridge/Youtube/video_modify.html.twig Confidentialite : privee @@ -1911,7 +1910,7 @@ Configuration Konfiguration - web/prod/index.html.twig + web/prod/index.html.twig Confirm new email address @@ -1936,13 +1935,13 @@ Connection Verbindung - web/login/index.html.twig - web/login/index.html.twig - login/oauth/login.html.twig login/providers/mapping.html.twig login/providers/mapping.html.twig login/providers/bind.html.twig login/providers/bind.html.twig + web/login/index.html.twig + web/login/index.html.twig + login/oauth/login.html.twig Connection is OK but database does not exists or can not be accessed @@ -1967,7 +1966,7 @@ Contains enthält - web/prod/index.html.twig + web/prod/index.html.twig Continuer ? @@ -2022,7 +2021,7 @@ Couleur de selection Farbauswahl - web/prod/index.html.twig + web/prod/index.html.twig Country @@ -2030,9 +2029,9 @@ actions/Feedback/list.html.twig actions/Feedback/ListsMacros.html.twig - + Create a user - Einen Benutzer erstellen + Einen Benutzer erstellen actions/Feedback/list.html.twig @@ -2043,7 +2042,7 @@ Create index Index erstellen - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php Creation date @@ -2063,9 +2062,9 @@ Creer erstellen + Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actioncontainers.html.twig Bridge/Flickr/actioncontainers.html.twig - Bridge/Dailymotion/actioncontainers.html.twig Creer la tache d'ecriture des metadonnees @@ -2110,17 +2109,17 @@ Creer une playlist einen neuen Playlist erstellen - Bridge/Youtube/playlist_createcontainer.html.twig Bridge/Dailymotion/playlist_createcontainer.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig Creez une application pour commencer a utiliser l'API Phraseanet Erstellen Sie zuerst eine Anwendung, um das Phraseanet API danach zu benutzen. web/developers/applications.html.twig - + Ctrl - Strg + Strg Controller/Prod/LanguageController.php @@ -2128,12 +2127,11 @@ Gesamtzahl admin/databox/details.html.twig - + Current configuration contains some errors - Current configuration contains some - errors - admin/fields/templates.html.twig + Die aktuelle Konfiguration enthält einige Fehler + admin/fields/templates.html.twig Current operations cannot be executed because the site is temporarily in maintenance mode. Wait a few minutes and try your request again @@ -2150,9 +2148,9 @@ Aktuelle Sitzung web/account/sessions.html.twig - + Custom - Custom + benutzerdefiniert web/admin/subdefs.html.twig web/admin/subdefs.html.twig @@ -2171,9 +2169,9 @@ DU Form/Configuration/CustomLinkFormType.php - + Danger zone ! - Gefahrenzone ! + Gefahrenzone ! admin/fields/index.html.twig @@ -2231,22 +2229,22 @@ Date Datum - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig Date Added Hinzufügungsdatum - web/prod/index.html.twig + web/prod/index.html.twig Date Creation Erstellungsdatum admin/publications/list.html.twig - + Date Updated - Aktualisierungsdatum - web/prod/index.html.twig + Aktualisierungsdatum + web/prod/index.html.twig Date de connexion @@ -2256,8 +2254,8 @@ Date de création Erstellungsdatum - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig Date de demande @@ -2269,19 +2267,19 @@ Date de modification Änderungsdatum - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig Date(s) from field(s) Datum vom Feld - web/prod/index.html.twig + web/prod/index.html.twig De von - web/admin/editusers_timelimit_sbas.html.twig web/admin/editusers_timelimit.html.twig + web/admin/editusers_timelimit_sbas.html.twig Deadline @@ -2350,10 +2348,10 @@ Eine Webhook URL festlegen web/developers/application.html.twig - + Defined by admin - Von Administrator festgelegt - web/prod/index.html.twig + Von Administrator festgelegt + web/prod/index.html.twig Defined in Apache configuration @@ -2373,8 +2371,8 @@ Delete Löschen - prod/upload/lazaret.html.twig - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig admin/task-manager/templates.html.twig @@ -2385,17 +2383,17 @@ Delete all users rights Alle Nutzerrechte löschen - web/admin/users.html.twig web/admin/editusers.html.twig + web/admin/users.html.twig Delete basket Sammelkorb löschen WorkZone/Browser/Results.html.twig - + Delete current - Delete current + Aktuelles löschen Controller/Prod/LanguageController.php @@ -2403,14 +2401,14 @@ Datensätze löschen Controller/Prod/LanguageController.php - + Delete the selection - Auswahl löschen + Auswahl löschen actions/Feedback/list.html.twig - + Delete the subview ? - Unteransicht löschen ? + Unteransicht löschen ? web/admin/subdefs.html.twig @@ -2428,9 +2426,9 @@ Deplacement %n_element% elements Bewegung von %n_element% Elemente + Bridge/Dailymotion/video_moveinto_playlist.html.twig Bridge/Youtube/video_moveinto_playlist.html.twig Bridge/Flickr/photo_moveinto_photoset.html.twig - Bridge/Dailymotion/video_moveinto_playlist.html.twig Dernier access @@ -2456,14 +2454,14 @@ Description Beschreibung - Bridge/Youtube/upload.html.twig + Bridge/Dailymotion/upload.html.twig + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/upload.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photoset_createcontainer.html.twig Bridge/Flickr/upload.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/upload.html.twig - Bridge/Dailymotion/video_modify.html.twig prod/Tooltip/DCESFieldInfo.html.twig web/developers/application_form.html.twig @@ -2488,8 +2486,8 @@ Details Einzelheiten - admin/collection/details.html.twig admin/databox/details.html.twig + admin/collection/details.html.twig Developpeur @@ -2505,8 +2503,8 @@ Dimension Grösse Media/Subdef/Image.php - Media/Subdef/Video.php Media/Subdef/Unknown.php + Media/Subdef/Video.php Disable document type sharing @@ -2531,7 +2529,7 @@ Display technical data Technische Informationen anzeigen - web/prod/index.html.twig + web/prod/index.html.twig Display thumbnails @@ -2541,7 +2539,7 @@ Do not display Nicht anzeigen - web/prod/index.html.twig + web/prod/index.html.twig Do not forget to restart the tasks scheduler @@ -2628,9 +2626,9 @@ Download von Dokumenten actions/Download/prepare.html.twig - + Drag and drop the pin to move position - Drag and drop the pin to move position + Ziehen Sie das Pin-Symbol und legen Sie es ab, um den Standort zu verschieben Controller/Prod/LanguageController.php @@ -2641,7 +2639,7 @@ Drop index Drop index - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php Duree @@ -2659,9 +2657,9 @@ Form/Login/PhraseaForgotPasswordForm.php Form/Login/PhraseaRegisterForm.php - + E-mail domain - E-Mail Domäne + Mail Domain actions/Feedback/list.html.twig @@ -2694,9 +2692,9 @@ Bearbeiten admin/task-manager/templates.html.twig - + Edit position - Edit position + Standort bearbeiten Controller/Prod/LanguageController.php @@ -2712,9 +2710,9 @@ Edition de 1 element Bearbeitung von 1 Element + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/video_modify.html.twig Edition des droits de %display_name% @@ -2749,26 +2747,26 @@ ElasticSearch index name ElasticSearch Index Name - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig ElasticSearch server host ElasticSearch Server Host - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig ElasticSearch service port ElasticSearch Service Schnittstelle - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig Email Email Adresse - admin/publications/fiche.html.twig web/admin/dashboard.html.twig + admin/publications/fiche.html.twig Email '%email%' for login '%login%' already exists in database @@ -2874,8 +2872,8 @@ En cours d'encodage Kodierung läuft - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php actions/Bridge/records_list.html.twig @@ -2908,9 +2906,9 @@ HD Ersetzung aktivieren Form/Configuration/ModulesFormType.php - + Enable Phraseanet Web API - Phraseanet Web API aktivieren + Phraseanet Web API aktivieren Form/Configuration/APIClientsFormType.php @@ -2969,9 +2967,9 @@ web/account/sessions.html.twig web/account/sessions.html.twig - + End Range - End Range + Kapitel beenden Controller/Prod/LanguageController.php @@ -3012,7 +3010,7 @@ Equals gleicht - web/prod/index.html.twig + web/prod/index.html.twig Erreur @@ -3022,8 +3020,8 @@ Erreur ! Fehler ! - web/lightbox/error.html.twig mobile/lightbox/error.html.twig + web/lightbox/error.html.twig Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas @@ -3116,8 +3114,8 @@ Error while sending the file Fehler beim Datei Senden - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Error while uploading @@ -3127,8 +3125,8 @@ Etendue de la publication Erweiterung der Veröffentlichung - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Etes vous sur de supprimer %number% photos ? @@ -3143,19 +3141,19 @@ Etes vous sur de supprimer %number% playlists ? Sind Sie sicher, %number% Playlisten zu löschen? - Bridge/Youtube/playlist_deleteelement.html.twig Bridge/Dailymotion/playlist_deleteelement.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig Etes vous sur de supprimer %number% videos ? Sind Sie sicher, %number% Videos zu löschen? - Bridge/Youtube/video_deleteelement.html.twig Bridge/Dailymotion/video_deleteelement.html.twig + Bridge/Youtube/video_deleteelement.html.twig Ex : Paris, bleu, montagne Ex : Berlin, blau, Gebirge - web/prod/index.html.twig + web/prod/index.html.twig Executables externes @@ -3174,9 +3172,9 @@ Controller/Prod/DoDownloadController.php Controller/Prod/LanguageController.php - + Export ranges - Export ranges + Kapitel exportieren Controller/Prod/LanguageController.php @@ -3213,8 +3211,9 @@ Feedback Feedback Controller/Prod/LanguageController.php - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig @@ -3304,13 +3303,13 @@ Filename Dateiname - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig Fils disponibles verfügbare Threads - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig Filter @@ -3343,7 +3342,7 @@ FlashFired FlashFired - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Flatten layers @@ -3359,7 +3358,7 @@ Force authentication Authentifizierung zwingen - prod/templates/push.html.twig + prod/templates/push.html.twig Force sending of the document ? @@ -3379,10 +3378,10 @@ Forgot password? Passwort vergessen ? - web/login/index.html.twig - login/oauth/login.html.twig login/providers/mapping.html.twig login/providers/bind.html.twig + web/login/index.html.twig + login/oauth/login.html.twig Forgot your password? @@ -3402,7 +3401,7 @@ FrameRate Framerate - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Frequence d'echantillonage @@ -3470,9 +3469,9 @@ Media/Subdef/Image.php Media/Subdef/Unknown.php - + Geo Search - Geo Search + Lokalisierung web/prod/index.html.twig @@ -3487,32 +3486,32 @@ Get setting form index - Get setting form index - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + Index Daten erhalten + SearchEngine/Elastic/ElasticsearchSettingsFormType.php Gives the option to your application to communicate with Phraseanet. This webhook can be used to trigger some actions on your application side. Gibt Ihrer Applikation die Möglichkeit, mit Phraseanet zu kommunizieren. Diese Webhook kann benutzt werden, um einige Aktionen auf Ihrer Applikationsseite auszulösen. web/developers/application.html.twig - + Go 1 frame backward - Go 1 frame backward + Gehen Sie ein Einzelbild zurück Controller/Prod/LanguageController.php - + Go 1 frame forward - Go 1 frame forward + Gehen Sie ein Einzelbild vorwärts Controller/Prod/LanguageController.php - + Go to end point - Go to end point + Gehen Sie zum Endpunkt Controller/Prod/LanguageController.php - + Go to start point - Go to start point + Gehen Sie zum Startpunkt Controller/Prod/LanguageController.php @@ -3548,7 +3547,7 @@ Graphiste (preview au rollover) Grafiker (Voransicht mit Rollover) - web/prod/index.html.twig + web/prod/index.html.twig Great @@ -3563,9 +3562,9 @@ Guest Gast + mobile/common/menubar.html.twig web/common/menubar.html.twig web/common/menubar.html.twig - mobile/common/menubar.html.twig Guest access @@ -3577,14 +3576,14 @@ Gast, sie müssen authentifizieren, um die Dateien herunterzuladen. web/common/dialog_export.html.twig - + Gui-editable - Gui-editable + GUI editierbar admin/fields/templates.html.twig - + Gui-visible - Gui-visible + GUI sichtbar admin/fields/templates.html.twig @@ -3595,9 +3594,9 @@ Hello %username% Hallo %username% + api/auth/end_user_authorization.html.twig api/auth/native_app_access_token.html.twig api/auth/end_user_authorization.html.twig - api/auth/end_user_authorization.html.twig Help @@ -3617,11 +3616,11 @@ Home Hautpseite - login/layout/base-layout.html.twig - login/include/language-block.html.twig mobile/lightbox/basket_element.html.twig mobile/lightbox/feed.html.twig mobile/lightbox/validate.html.twig + login/include/language-block.html.twig + login/layout/base-layout.html.twig Homepage slideshow @@ -3636,8 +3635,8 @@ I have read the terms of use Ich habe die Nutzungsbedingungen gelesen - web/login/register-provider.html.twig web/login/register-classic.html.twig + web/login/register-provider.html.twig IP @@ -3647,7 +3646,7 @@ ISO ISO - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php ISO sensibility @@ -3657,7 +3656,7 @@ Iconographe (description au rollover) Bildredakteur (Beschreibung mit Rollover) - web/prod/index.html.twig + web/prod/index.html.twig Id @@ -3728,7 +3727,7 @@ In the answer grid In einem Tooltip - web/prod/index.html.twig + web/prod/index.html.twig Include Business-fields in caption @@ -3760,9 +3759,9 @@ Informations Informationen - admin/user/registrations.html.twig - web/admin/dashboard.html.twig web/account/base.html.twig + web/admin/dashboard.html.twig + admin/user/registrations.html.twig Informations personnelles @@ -3777,8 +3776,8 @@ Inscription Anmeldung - web/login/register.html.twig web/login/register-classic.html.twig + web/login/register.html.twig Install in progess @@ -3798,8 +3797,8 @@ Invalid file format Ungültiges Datei Format - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Invalid file type @@ -3810,8 +3809,8 @@ Invalid file type, only (%supported_file_types%) file formats are supported ungültiger Dateityp, nur (%supported_file_types%) Dateitypen werden unterstützt - user/import/file.html.twig admin/databox/databox.html.twig + user/import/file.html.twig admin/statusbit/edit.html.twig @@ -3822,8 +3821,8 @@ Invalid labels parameter ungültige Labels Parameter - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Invalid link. @@ -3849,8 +3848,8 @@ Inverser umkehren - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig It is not recommended to install Phraseanet without HTTPS support @@ -3872,9 +3871,9 @@ Synchronisierung zwischen Bridge und Client APIs erhalten. TaskManager/Job/BridgeJob.php - + Keyboard shortcuts - Tastenkombinationen + Tastenkombinationen Controller/Prod/LanguageController.php @@ -3885,8 +3884,8 @@ L'upload a echoue Upload ist fehlgeschlagen - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php L'upload concernant le record %title% sur le compte %bridge_name% a echoue pour les raisons suivantes : %reason% @@ -3896,17 +3895,17 @@ L'utilisateur approuve ce document Benutzer genehmigt dieses Dokument - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig L'utilisateur desapprouve ce document Benutzer lehnt dieses Dokument ab - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig L'utilisateur n'a pas encore donne son avis sur ce document - Benutzer hat seine Meinung nocht nicht gegeben - prod/WorkZone/Macros.html.twig + Benutzer hat seine Meinung noch nicht gegeben + prod/WorkZone/Macros.html.twig La connection vers le serveur distant est OK @@ -3923,20 +3922,20 @@ La taille maximale d'une video est de %duration% minutes. Maximale Dauer für eine Video ist %duration% Minuten. - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video a ete rejetee Das Video wurde abgelehnt - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video a ete supprimee Das Video wurde gelöscht - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video est restreinte @@ -3952,7 +3951,7 @@ Language Sprache - web/prod/index.html.twig + web/prod/index.html.twig Last Name @@ -3982,7 +3981,7 @@ Last uploaded version zuletzte geladene Version - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig Le bridge Dailymotion ne prend en charge que les videos @@ -4032,16 +4031,16 @@ Le poids maximum d'un fichier est de %size% Maximales Gewicht von Datei ist %size% - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Le record n'a pas de fichier physique Der Datensatz hat keine physikalische Datei - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Le token n'a pas encore ete genere @@ -4062,9 +4061,9 @@ Les elements ne peuvent etre uploades (problemes de type ou de droit) Die Elemente können nicht hochgeladen werden (Typ oder Rechte Problem). + Bridge/Dailymotion/upload.html.twig Bridge/Youtube/upload.html.twig Bridge/Flickr/upload.html.twig - Bridge/Dailymotion/upload.html.twig Les indications donnees ci dessous sont a titre informatif. @@ -4089,7 +4088,7 @@ Les termes apparaissent dans le(s) champs Die Begriffe befinden sich in Feld(er): - web/prod/index.html.twig + web/prod/index.html.twig Light Value @@ -4099,14 +4098,14 @@ Lightbox Lightbox - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig Limite temporelle zeitliche Beschränkung - web/admin/editusers_timelimit_sbas.html.twig web/admin/editusers_timelimit.html.twig + web/admin/editusers_timelimit_sbas.html.twig Limited vocabulary @@ -4185,9 +4184,9 @@ Benutzername Form/Login/PhraseaAuthenticationForm.php actions/Feedback/ListsMacros.html.twig - login/oauth/login.html.twig login/providers/mapping.html.twig login/providers/bind.html.twig + login/oauth/login.html.twig Login %login% already exists in database @@ -4219,7 +4218,7 @@ Ma derniere question meine letzte Suchabfrage - web/prod/index.html.twig + web/prod/index.html.twig Mail line %line% is empty @@ -4305,7 +4304,7 @@ Message Nachricht Controller/Prod/LanguageController.php - prod/templates/push.html.twig + prod/templates/push.html.twig Message automatique de Phraseanet @@ -4325,7 +4324,7 @@ MimeType MimeType - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Minimum number of letters before truncation @@ -4340,8 +4339,8 @@ Missing labels parameter Labels-Parameter fehlt - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Missing mandatory parameter %parameter% @@ -4376,7 +4375,7 @@ Mode de presentation Anzeigemodus - web/prod/index.html.twig + web/prod/index.html.twig Modele de donnees @@ -4415,9 +4414,9 @@ %countable% Datensätze zur ausgewählten Kollektion verschieben prod/actions/collection_default.html.twig - + Move down range - Move down range + Kapitel herunterziehen Controller/Prod/LanguageController.php @@ -4425,9 +4424,9 @@ Einen Datensatz zur ausgewählten Kollektion verschieben prod/actions/collection_default.html.twig - + Move up range - Move up range + Kapitel aufrücken Controller/Prod/LanguageController.php @@ -4470,21 +4469,21 @@ Name oder Email admin/publications/fiche.html.twig - + Navigate to end point - Navigate to end point + Navigieren Sie zum Endpunkt Controller/Prod/LanguageController.php - + Navigate to entry point - Navigate to entry point + Navigieren Sie zum Startpunkt Controller/Prod/LanguageController.php Ne pas autoriser Nicht berechtigen - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Ne pas creer de DataBox maintenant @@ -4517,15 +4516,15 @@ Next Weiter + actions/Feedback/ListsMacros.html.twig prod/orders/order_box.html.twig prod/orders/order_box.html.twig - actions/Feedback/ListsMacros.html.twig No Nein - web/developers/applications.html.twig web/account/account.html.twig + web/developers/applications.html.twig No URL available @@ -4577,9 +4576,9 @@ Keine Übereinstimmung gefunden web/geonames/city_list.html.twig - + No metadata available - No metadata available + Keine Metadaten verfügbar actions/Tools/metadata.html.twig @@ -4645,14 +4644,14 @@ Nom du nouveau panier Titel - prod/orders/order_item.html.twig prod/Baskets/Create.html.twig + prod/orders/order_item.html.twig Non-Restreinte (publique) Nicht eingeschränkt (öffentlich) - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig None @@ -4669,16 +4668,16 @@ None of the selected records can be printed Keine der ausgewählte Datensätze können gedruckt werden - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig None of the selected records can be pushed. - Keines der ausgewählten Datensätze können via Push gesendet werden. + Keine der ausgewählten Datensätze können via Push gesendet werden. prod/actions/Push.html.twig None of the selected records can be sent for feedback. - Keines der ausgewählten Datensätze können für das Feedback gesendet werden. + Keine der ausgewählten Datensätze können für das Feedback gesendet werden. prod/actions/Push.html.twig @@ -4689,7 +4688,8 @@ Not aggregated Nicht aggregiert - admin/fields/templates.html.twig + admin/search-engine/general-aggregation.html.twig + admin/fields/templates.html.twig Notification par email @@ -4755,13 +4755,13 @@ Number of replicas Anzahl von Nachbauten - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig Number of shards Anzahl von Scherben - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig @@ -4772,8 +4772,8 @@ OK OK - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Ok @@ -4786,20 +4786,20 @@ Ein Dokument kann nicht geändert werden prod/actions/collection_default.html.twig - + One frame backward - One frame backward + Ein Einzelbild zurück Controller/Prod/LanguageController.php - + One frame forward - One frame forward + Ein Einzelbild vorwärts Controller/Prod/LanguageController.php One of these conditions Eine von diesen Bedingungen - web/prod/index.html.twig + web/prod/index.html.twig Only %nbEditableDocuments% records can be modified. @@ -4824,10 +4824,10 @@ Or login with Oder Anmeldung mit - api/auth/end_user_authorization.html.twig + web/login/register.html.twig web/login/index.html.twig login/oauth/login.html.twig - web/login/register.html.twig + api/auth/end_user_authorization.html.twig Order @@ -4862,7 +4862,7 @@ Orientation Ausrichtung - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Original name @@ -4891,33 +4891,33 @@ prod/upload/lazaret.html.twig prod/upload/lazaret.html.twig - + Pages - Seiten + Seiten actions/Feedback/ListsMacros.html.twig Paniers Sammelkörbe - web/lightbox/index.html.twig - lightbox/IE6/validate.html.twig - web/lightbox/validate.html.twig - web/account/account.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/account/account.html.twig + web/lightbox/index.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig Par %author% Von %author% + mobile/lightbox/feed.html.twig prod/results/feeds_entry.html.twig prod/results/entry.html.twig - mobile/lightbox/feed.html.twig Password Passwort - Form/Login/PhraseaRegisterForm.php Form/Login/PhraseaAuthenticationForm.php + Form/Login/PhraseaRegisterForm.php web/account/account.html.twig @@ -4940,21 +4940,16 @@ Letztes Jahr WorkZone/Browser/Browser.html.twig - + Path - Pfad + Pfad web/admin/subdefs.html.twig - + Pause - Pause + Pause Controller/Prod/LanguageController.php - - Pays - Land - prod/User/Add.html.twig - Periodically fetches an FTP repository content locally Holt regelmässig einen FTP Repository Inhalt lokal @@ -5011,22 +5006,22 @@ Phraseanet empfiehlt dringend die Benutzung von %link_start%MariaDB%link_end%, um MySQL zu ersetzen web/setup/step2.html.twig - + Play - Play + Play Controller/Prod/LanguageController.php Playlist Playlist - Bridge/Youtube/actionelements.html.twig Bridge/Dailymotion/actionelements.html.twig + Bridge/Youtube/actionelements.html.twig Playlists Playlisten - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Please accept the terms of use to register. @@ -5149,8 +5144,8 @@ Einstellungen web/prod/index.html.twig web/prod/index.html.twig - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Prefix for notification emails @@ -5165,24 +5160,24 @@ Presentation de vignettes Miniaturansichten - web/prod/index.html.twig + web/prod/index.html.twig Presentation de vignettes de panier Vorstellung der Voransichten des Sammelkorbes - web/prod/index.html.twig + web/prod/index.html.twig - + Presets - Presets + Voreinstellungen web/admin/subdefs.html.twig Previous Zurück + actions/Feedback/ListsMacros.html.twig prod/orders/order_box.html.twig prod/orders/order_box.html.twig - actions/Feedback/ListsMacros.html.twig Print @@ -5192,8 +5187,8 @@ Problemes de connexion ? Verbindungsprobleme ? - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Process the registration @@ -5223,10 +5218,10 @@ Publications Veröffentlichungen - web/prod/index.html.twig - web/common/menubar.html.twig + web/prod/index.html.twig admin/publications/wrapper.html.twig web/admin/tree.html.twig + web/common/menubar.html.twig Publier @@ -5236,8 +5231,8 @@ Publique öffentliche - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Publishers @@ -5247,8 +5242,9 @@ Push Push - Controller/Prod/LanguageController.php eventsmanager/notify/push.php + Controller/Prod/LanguageController.php + prod/WorkZone/Macros.html.twig Push configuration @@ -5335,80 +5331,80 @@ Raccourcis claviers de la zone des paniers : Sammelkörbe und Funktionen Abkürzungen - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de editing : Fenster Abkürzungen bearbeiten - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de preview : Fenster Abkürzungen, Detailansicht - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de recherche : Hauptfenster Abkürzungen - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-a : tout selectionner ctrl-a : alles auswählen - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-e : editer la selection ctrl-e : Auswahl bearbeiten - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-p : imprimer la selection ctrl-p : drucken - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::espace : arreter/demarrer le diaporama Dia-Schau starten - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche bas : scroll vertical Abwärtspfeil: vertikal scrollen - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche droite : page suivante Rechtspfeil: nächste Seite - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : en arriere Abwärtspfeil: letztes Dokument - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : en avant Rechtspfeil: nächstes Dokument - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : page precedente Linkspfeil: vorherige Seite - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche haut : scroll vertical Pfeil oben: vertikal scrollen - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::tab/shift-tab se ballade dans les champs tab/shift-tab : Feld ändern - web/prod/index.html.twig + web/prod/index.html.twig Rappel : Il vous reste %number% jours pour valider %title% de %user% @@ -5428,21 +5424,21 @@ Re-initialiser Zurücksetzen - web/prod/index.html.twig - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig + web/prod/index.html.twig Re-ordonner wieder ordnen - prod/Story/Reorder.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig prod/Baskets/Reorder.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/Story/Reorder.html.twig Read-only @@ -5533,7 +5529,7 @@ Rechercher dans un champ date im Feld "Datum" suchen - web/prod/index.html.twig + web/prod/index.html.twig Recommendations @@ -5594,10 +5590,10 @@ Register Registrieren - login/include/register-link-block.html.twig - web/login/register-provider.html.twig - web/login/register.html.twig web/login/register-classic.html.twig + web/login/register.html.twig + web/login/register-provider.html.twig + login/include/register-link-block.html.twig Register approbation @@ -5612,19 +5608,19 @@ Reglages:: reglages d acces guest Gast Zugriff Einstellungen - web/admin/users.html.twig web/admin/editusers.html.twig + web/admin/users.html.twig Reglages:: reglages d inscitpition automatisee Auto Register Einstellungen - web/admin/users.html.twig web/admin/editusers.html.twig + web/admin/users.html.twig Relevance Relevanz - web/prod/index.html.twig + web/prod/index.html.twig Remember me @@ -5642,9 +5638,9 @@ Media/Subdef/Image.php Media/Subdef/Unknown.php - + Remove current Range - Remove current Range + Aktuelles Kapitel entfernen Controller/Prod/LanguageController.php @@ -5666,8 +5662,8 @@ Renew password Passwort erneuern Notification/Mail/MailRequestPasswordUpdate.php - web/login/renew-password.html.twig web/account/change-password.html.twig + web/login/renew-password.html.twig Reorder collections @@ -5677,8 +5673,8 @@ Reordonner automatiquement automatisch neu anordnen - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig Repertoire de stockage des fichiers @@ -5858,9 +5854,9 @@ Row Passwort fehlt, Skript wurde gestoppt. user/import/file.html.twig - + Résultats des derniers envois effectués pour cette application - Résultats des derniers envois effectués pour cette application + Ergebnisse der letzten gesendeten Nachrichten für diese Anwendung web/developers/application.html.twig @@ -5902,27 +5898,27 @@ Save Speichern actions/Feedback/list.html.twig + web/account/change-password.html.twig + admin/search-engine/general-aggregation.html.twig + admin/search-engine/elastic-search.html.twig + task-manager/task-editor/task.html.twig web/developers/application.html.twig web/developers/application.html.twig - task-manager/task-editor/task.html.twig - admin/search-engine/elastic-search.html.twig - admin/search-engine/general-aggregation.html.twig web/login/renew-password.html.twig - web/account/change-password.html.twig Save all changes Alle Änderungen speichern admin/fields/templates.html.twig - + Save as VTT - Abschnitte speichern + Kapitel speichern Controller/Prod/LanguageController.php - + Save the list - Liste speichern + Liste speichern actions/Feedback/list.html.twig @@ -5945,9 +5941,9 @@ Suchmaschine Form/Configuration/MainConfigurationFormType.php - + Search for existing user - Suchen Sie nach bestehende Benutzer + Suchen Sie nach bestehende Benutzer actions/Feedback/List-Share.html.twig @@ -5964,18 +5960,19 @@ See Sehen + prod/WorkZone/Macros.html.twig WorkZone/Browser/Browser.html.twig - + See documentation about structure manipulation. - Für Struktur Veränderungen, Dokumentation sehen + Für Struktur Veränderungen, Dokumentation sehen admin/fields/index.html.twig See documentation at %url% Lesen Sie die Dokumentation auf %url% - Form/Configuration/ExecutablesFormType.php Form/Configuration/WebservicesFormType.php + Form/Configuration/ExecutablesFormType.php See my order @@ -5988,9 +5985,9 @@ Andere sehen prod/actions/Push.html.twig - + See the list - Liste sehen + Die Liste sehen actions/Feedback/list.html.twig @@ -6001,7 +5998,7 @@ Select a field Wählen Sie ein Feld aus - web/prod/index.html.twig + web/prod/index.html.twig Select a list on the left and edit it ! @@ -6036,7 +6033,7 @@ Selected base(s) Ausgewählte Datenbank(en) : - web/prod/index.html.twig + web/prod/index.html.twig Selected files @@ -6047,12 +6044,12 @@ Send Senden Controller/Prod/LanguageController.php - prod/orders/order_item.html.twig - prod/orders/order_item.html.twig prod/actions/Push.html.twig prod/actions/Push.html.twig prod/upload/upload.html.twig prod/upload/upload-flash.html.twig + prod/orders/order_item.html.twig + prod/orders/order_item.html.twig web/admin/dashboard.html.twig web/login/forgot-password.html.twig @@ -6117,8 +6114,8 @@ Set labels Labels einstellen - admin/collection/collection.html.twig admin/databox/databox.html.twig + admin/collection/collection.html.twig Set statuses restrictions @@ -6146,9 +6143,9 @@ Verteilen Controller/Prod/LanguageController.php - + Share my list - Meine Liste teilen + Meine Liste teilen actions/Feedback/list.html.twig @@ -6156,21 +6153,21 @@ Die Liste teilen actions/Feedback/list.html.twig - + Shift - Umschalt + Umschalt Controller/Prod/LanguageController.php Short description Kurzbeschreibung - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Shutter speed Verschlusszeit - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php web/common/technical_datas.html.twig @@ -6270,12 +6267,12 @@ Sous-titre Untertitel - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig - + Space bar - Space-Taste + Space-Taste Controller/Prod/LanguageController.php @@ -6289,9 +6286,9 @@ admin/task-manager/templates.html.twig admin/task-manager/templates.html.twig - + Start Range - Start Range + Kapitel starten Controller/Prod/LanguageController.php @@ -6313,7 +6310,7 @@ Status des documents a rechercher Zustand der Dokumente - web/prod/index.html.twig + web/prod/index.html.twig Status edition @@ -6347,6 +6344,7 @@ Stories Berichte Form/Configuration/SearchEngineFormType.php + prod/WorkZone/Macros.html.twig Story Not Found @@ -6399,16 +6397,16 @@ Unterauflösung admin/databox/details.html.twig - + Submit - Einreichen + Einreichen Controller/Prod/LanguageController.php Substitute Ersatz - prod/upload/lazaret.html.twig - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig Substitution is not possible for this kind of record @@ -6429,22 +6427,16 @@ Successful removal erfolgreiches Löschen + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php Successful update Erfolgreiches Update - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php @@ -6452,10 +6444,16 @@ Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php actions/Tools/videoEditor.html.twig - admin/collection/suggested_value.html.twig - admin/collection/collection.html.twig web/admin/databases.html.twig + admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig Successfull connection @@ -6467,9 +6465,9 @@ Vorschlagswerte admin/collection/suggested_value.html.twig - + Suppr - Entf + Entf Controller/Prod/LanguageController.php @@ -6485,14 +6483,14 @@ Suppression de %n_element% playlists Löschen von %n_element% Playlisten - Bridge/Youtube/playlist_deleteelement.html.twig Bridge/Dailymotion/playlist_deleteelement.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig Suppression de %n_element% videos Löschen von %n_element% Videos - Bridge/Youtube/video_deleteelement.html.twig Bridge/Dailymotion/video_deleteelement.html.twig + Bridge/Youtube/video_deleteelement.html.twig Supprimer @@ -6528,11 +6526,11 @@ Tags Tags + Bridge/Dailymotion/upload.html.twig + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/upload.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Flickr/upload.html.twig - Bridge/Dailymotion/upload.html.twig - Bridge/Dailymotion/video_modify.html.twig Target Device @@ -6595,9 +6593,9 @@ web/login/cgus.html.twig login/layout/base-layout.html.twig - + The Phraseanet Web API allows other web application to rely on this instance - Die Phraseanet Web API ermöglicht, andere Web Anwendungen, auf diese Instanz zu vertrauen + Die Phraseanet Web API ermöglicht, andere Web Anwendungen, auf diese Instanz zu vertrauen Form/Configuration/APIClientsFormType.php @@ -6674,8 +6672,8 @@ The file is too big Datei ist zu gross - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php The file was moved to the quarantine @@ -6690,8 +6688,8 @@ The publication has been stopped Veröffentlichung wurde gestoppt - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php The record was successfully created @@ -6732,7 +6730,7 @@ Theme Thema - web/prod/index.html.twig + web/prod/index.html.twig There is no one to validate orders, please contact an administrator @@ -6752,13 +6750,13 @@ Thesaurus Min score Thesaurus Hits (minimal) - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig Thesaurus branch Thesaurus Sprung - admin/fields/templates.html.twig + admin/fields/templates.html.twig Thesaurus ou CTerms invalide @@ -6825,7 +6823,7 @@ This user does not participate to the validation but is only viewer. Dieser Benutzer darf nicht teilnehmen, nur ansehen. - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig This user has no rights @@ -6861,23 +6859,23 @@ Titre Titel - Bridge/Youtube/upload.html.twig + prod/Baskets/Reorder.html.twig + Bridge/Dailymotion/upload.html.twig + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/upload.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photoset_createcontainer.html.twig Bridge/Flickr/upload.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/upload.html.twig - Bridge/Dailymotion/video_modify.html.twig prod/Story/Reorder.html.twig - prod/Baskets/Reorder.html.twig + admin/publications/fiche.html.twig admin/publications/list.html.twig admin/publications/list.html.twig - admin/publications/fiche.html.twig - + Toggle loop - Toggle loop + Wiederholung aktivieren Controller/Prod/LanguageController.php @@ -6892,14 +6890,14 @@ Tool box - Toolbox + Werkzeuge Controller/Prod/LanguageController.php Total Gesamt - admin/collection/details.html.twig admin/databox/details.html.twig + admin/collection/details.html.twig Tous @@ -6935,7 +6933,7 @@ Trier par Sortieren nach - web/prod/index.html.twig + web/prod/index.html.twig Try to extract embedded thumbnails @@ -6960,7 +6958,7 @@ Type de documents Dokumenttyp - web/prod/index.html.twig + web/prod/index.html.twig Type nombre @@ -7083,7 +7081,7 @@ Une question personnelle eine persönliche Frage - web/prod/index.html.twig + web/prod/index.html.twig Une selection @@ -7141,13 +7139,13 @@ Upload Upload - actions/Bridge/index.html.twig - Bridge/Youtube/upload.html.twig - Bridge/Youtube/upload.html.twig - Bridge/Flickr/upload.html.twig - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Dailymotion/upload.html.twig + Bridge/Youtube/upload.html.twig + Bridge/Youtube/upload.html.twig + actions/Bridge/index.html.twig + Bridge/Flickr/upload.html.twig + Bridge/Flickr/upload.html.twig prod/upload/upload.html.twig prod/upload/upload-flash.html.twig web/common/menubar.html.twig @@ -7175,7 +7173,7 @@ Uploaded by : %username% von: %username% hochgeladen - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig Use Google Chart API @@ -7187,15 +7185,15 @@ Benutzen Sie einen SMTP Server Form/Configuration/EmailFormType.php - + Use an existing index - Benutzen Sie einen bestehenden Index + Benutzen Sie einen bestehenden Index web/setup/step2.html.twig Use latest search settings on Production loading die letzte gestellte Frage in Prod benutzen - web/prod/index.html.twig + web/prod/index.html.twig Use my Phraseanet account @@ -7252,10 +7250,10 @@ Controller/Prod/LanguageController.php prod/templates/push.html.twig prod/templates/push.html.twig - prod/templates/push.html.twig prod/templates/push.html.twig - prod/templates/push.html.twig + prod/templates/push.html.twig prod/templates/push.html.twig + prod/templates/push.html.twig User can see others choices @@ -7295,9 +7293,9 @@ Benutzer Vorschlag prod/actions/Push.html.twig - + Utilisation prevue: - Verwendungszweck: + Verwendungszweck: prod/orders/order_item.html.twig @@ -7314,11 +7312,11 @@ Validation Bestätigung + eventsmanager/notify/validationdone.php eventsmanager/notify/validationreminder.php eventsmanager/notify/validationreminder.php eventsmanager/notify/validate.php eventsmanager/notify/validate.php - eventsmanager/notify/validationdone.php lightbox/IE6/validate.html.twig @@ -7334,11 +7332,11 @@ Validations Bestätigung + mobile/lightbox/index.html.twig + mobile/lightbox/index.html.twig web/lightbox/index.html.twig lightbox/IE6/validate.html.twig web/lightbox/validate.html.twig - mobile/lightbox/index.html.twig - mobile/lightbox/index.html.twig Validations received @@ -7383,13 +7381,13 @@ Video codec Video-Codec - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Videos Videos - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php View on %title% @@ -7404,19 +7402,19 @@ Vocabulary type Wortschatz Typ - admin/fields/templates.html.twig + admin/fields/templates.html.twig Voici vos paniers Ihre Sammelkörbe - web/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/lightbox/index.html.twig Voici vos validations en cours Hier sind Ihre aktuellen Bewertungen - web/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/lightbox/index.html.twig Votre adresse email @@ -7451,7 +7449,7 @@ Vous avez envoye une demande de validation de document sur ce panier Sie haben eine Bewertung von Dokumenten angefordert - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig Vous avez recu des documents @@ -7541,10 +7539,10 @@ Vous n'avez selectionne aucun element Sie haben kein Element ausgewählt. - actions/Bridge/index.html.twig - Bridge/Youtube/upload.html.twig - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig + Bridge/Youtube/upload.html.twig + actions/Bridge/index.html.twig + Bridge/Flickr/upload.html.twig Vous ne pouvez pas editer plusieurs elements simultanement @@ -7570,7 +7568,7 @@ Vous pouvez quitter la plupart des fenetres survolantes via la touche echap esc : Sie können die meiste Teile der Overlay Fenster schliessen - web/prod/index.html.twig + web/prod/index.html.twig Warning ! @@ -7590,8 +7588,8 @@ Watch my access requests status Meine Zugriffsanfrage Status anschauen - Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Notification/Mail/MailSuccessAccessRequest.php + Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Watermark @@ -7631,8 +7629,8 @@ Which playlist you want to put you %number% elements into ? Welche Playlist möchten Sie für Ihre %number% Elemente benutzen? - Bridge/Youtube/video_moveinto_playlist.html.twig Bridge/Dailymotion/video_moveinto_playlist.html.twig + Bridge/Youtube/video_moveinto_playlist.html.twig Whoops, looks like something went wrong. @@ -7671,15 +7669,15 @@ YYYY/MM/DD YYYY/MM/DD - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Yes Ja - web/developers/applications.html.twig - user/import/view.html.twig web/account/account.html.twig + user/import/view.html.twig + web/developers/applications.html.twig You are Admin @@ -7985,92 +7983,92 @@ action : ajouter au panier Zum Sammelkorb hinzufügen - prod/preview/tools.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/results/record.html.twig + prod/preview/tools.html.twig action : bridge Bridge - web/prod/index.html.twig + web/prod/index.html.twig action : collection Verschieben - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig action : editer Bearbeiten - prod/preview/caption.html.twig - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig + prod/preview/caption.html.twig action : exporter Exportieren - web/prod/index.html.twig - prod/preview/tools.html.twig - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/results/record.html.twig - web/prod/toolbar.html.twig + prod/preview/tools.html.twig + web/prod/index.html.twig + web/lightbox/feed.html.twig lightbox/IE6/feed.html.twig lightbox/IE6/validate.html.twig - web/lightbox/feed.html.twig web/lightbox/validate.html.twig action : outils Werkzeuge - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig action : print Drucken - prod/preview/tools.html.twig - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/results/record.html.twig - web/prod/toolbar.html.twig + prod/preview/tools.html.twig action : publier Veröffentlichen - web/prod/index.html.twig - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig + web/prod/index.html.twig action : push Push - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig action : status Eigenschaften - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig action : supprimer Löschen - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig web/prod/toolbar.html.twig @@ -8090,37 +8088,37 @@ action::Valider Bestätigen - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig action::detacher entfernen - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig action::editer Bearbeiten - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig action::exporter Exportieren - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig action::renommer umbenennen - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig actual status @@ -8310,8 +8308,8 @@ admin::base:collection: Creer une collection eine Kollektion erstellen - admin/collection/create.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig admin::base:collection: Monter une collection @@ -8327,8 +8325,8 @@ admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces Benutzer und Rechte von der Kollektion anwenden : - admin/collection/create.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig admin::base:collection: activer la collection @@ -8339,10 +8337,10 @@ admin::base:collection: aucun fichier (minilogo, watermark ...) Keine Datei + admin/databox/databox.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig - admin/databox/databox.html.twig admin::base:collection: descativer la collection @@ -8403,20 +8401,20 @@ admin::base:collorder: descendre absteigend - admin/collection/suggested_value.html.twig admin/collection/reorder.html.twig + admin/collection/suggested_value.html.twig admin::base:collorder: monter aufsteigend - admin/collection/suggested_value.html.twig admin/collection/reorder.html.twig + admin/collection/suggested_value.html.twig admin::base:collorder: reinitialiser en ordre alphabetique in alphabetischer Reihenfolge sortieren - admin/collection/suggested_value.html.twig admin/collection/reorder.html.twig + admin/collection/suggested_value.html.twig admin::colelction::presentation des elements : rien @@ -8471,35 +8469,35 @@ admin::compte-utilisateur activite Tätigkeit - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - admin/user/registrations.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig admin::compte-utilisateur adresse Adresse - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur changer mon mot de passe - mein Passwort ändern + Mein Passwort ändern web/account/account.html.twig admin::compte-utilisateur code postal PLZ - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur confirmer la nouvelle adresse email @@ -8519,23 +8517,23 @@ admin::compte-utilisateur email E-Mail - Event/Subscriber/RegistrationSubscriber.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig + Event/Subscriber/RegistrationSubscriber.php + web/account/account.html.twig + web/admin/editusers.html.twig web/admin/users.html.twig admin/user/registrations.html.twig - web/admin/editusers.html.twig web/admin/connected-users.html.twig - web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur fax Fax - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur id utilisateur @@ -8547,34 +8545,34 @@ Benutzername Core/Provider/RegistrationServiceProvider.php api/auth/end_user_authorization.html.twig - web/common/dialog_export.html.twig - web/admin/users.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig + web/account/reset-email.html.twig web/account/account.html.twig web/account/account.html.twig - web/account/reset-email.html.twig + web/admin/editusers.html.twig + web/admin/users.html.twig + admin/user/registrations.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur mot de passe Passwort api/auth/end_user_authorization.html.twig - web/common/dialog_export.html.twig web/setup/step2.html.twig - web/account/account.html.twig web/account/reset-email.html.twig + web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur nom Name + Controller/Admin/UserController.php Core/Provider/RegistrationServiceProvider.php Event/Subscriber/RegistrationSubscriber.php - Controller/Admin/UserController.php - web/common/dialog_export.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig - web/admin/connected-users.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig + web/admin/connected-users.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur nouvelle adresse email @@ -8590,42 +8588,42 @@ admin::compte-utilisateur poste Beruf - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur prenom Vorname + Controller/Admin/UserController.php Core/Provider/RegistrationServiceProvider.php Event/Subscriber/RegistrationSubscriber.php - Controller/Admin/UserController.php - web/common/dialog_export.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur sexe Anrede Core/Provider/RegistrationServiceProvider.php - web/admin/editusers.html.twig web/account/account.html.twig + web/admin/editusers.html.twig admin::compte-utilisateur societe - Firma - Core/Provider/RegistrationServiceProvider.php + Unternehmen Controller/Admin/UserController.php - web/common/dialog_export.html.twig + Core/Provider/RegistrationServiceProvider.php + web/account/account.html.twig + web/admin/editusers.html.twig web/admin/users.html.twig admin/user/registrations.html.twig - web/admin/editusers.html.twig web/admin/connected-users.html.twig - web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur tel @@ -8636,11 +8634,11 @@ admin::compte-utilisateur telephone Telefon Controller/Admin/UserController.php - web/common/dialog_export.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig - web/admin/connected-users.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig + web/admin/connected-users.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur un email de confirmation vient de vous etre envoye. Veuillez suivre les instructions contenue pour continuer @@ -8650,11 +8648,11 @@ admin::compte-utilisateur ville Ort - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur: L'email a correctement ete mis a jour @@ -8704,8 +8702,8 @@ admin::compte-utilisateur:ftp: repertoire de destination ftp FTP Zielordner - web/common/dialog_export.html.twig web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur:ftp: Activer le compte FTP @@ -8720,14 +8718,14 @@ admin::compte-utilisateur:ftp: Nombre d'essais max maximale Anzahl von Versuchen - web/common/dialog_export.html.twig web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur:ftp: Utiliser le mode passif Passiv Mode benutzen - web/common/dialog_export.html.twig web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur:ftp: creer un dossier @@ -8748,25 +8746,25 @@ admin::compte-utilisateur:sexe: madame Frau Core/Provider/RegistrationServiceProvider.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur:sexe: mademoiselle Fräulein Core/Provider/RegistrationServiceProvider.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur:sexe: monsieur Herr Core/Provider/RegistrationServiceProvider.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::monitor: bases sur lesquelles l'utilisateur est connecte : @@ -8786,26 +8784,26 @@ admin::monitor: module admin Admin - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php - web/common/menubar.html.twig + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig + web/common/menubar.html.twig admin::monitor: module client Client - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php classes/record/preview.php classes/record/preview.php classes/record/preview.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig admin::monitor: module comparateur Lightbox - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig @@ -8816,44 +8814,44 @@ admin::monitor: module production Prod - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php classes/record/preview.php classes/record/preview.php classes/record/preview.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig admin::monitor: module report Report - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php - web/common/menubar.html.twig + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig + web/common/menubar.html.twig admin::monitor: module thesaurus Thesaurus - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php - web/common/menubar.html.twig + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig + web/common/menubar.html.twig admin::monitor: module upload Upload - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/common/menubar.html.twig admin::monitor: module validation Lightbox - Controller/Admin/ConnectedUsersController.php + lib/classes/phrasea.php Phrasea/Controller/LightboxController.php Phrasea/Controller/LightboxController.php Phrasea/Controller/LightboxController.php - lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/common/menubar.html.twig @@ -9063,15 +9061,15 @@ admin::utilisateurs: utilisateurs connectes - eingeloggte Benutzer - web/admin/connected-users.html.twig + Eingeloggte Benutzer web/admin/tree.html.twig + web/admin/connected-users.html.twig alert Vorsicht - actions/Tools/index.html.twig actions/Tools/videoEditor.html.twig + actions/Tools/index.html.twig all caches services have been flushed @@ -9112,8 +9110,8 @@ audio Audio Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig avril @@ -9138,14 +9136,14 @@ basket:action:delete record form basket basket:action:delete record form basket - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig basket:action:delete record form database basket:action:delete record form database - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig be notified when a document is placed in quarantine @@ -9155,12 +9153,12 @@ boutton:: selectionner aucune base Keine - web/prod/index.html.twig + web/prod/index.html.twig boutton:: selectionner toutes les bases Alle - web/prod/index.html.twig + web/prod/index.html.twig boutton::ajouter @@ -9174,35 +9172,35 @@ abbrechen Controller/Prod/LanguageController.php Controller/Prod/LanguageController.php - prod/actions/edit_default.html.twig - prod/actions/edit_default.html.twig + Bridge/Dailymotion/video_modify.html.twig + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photo_modify.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/video_modify.html.twig - Bridge/Dailymotion/video_modify.html.twig - web/thesaurus/new-term.html.twig - web/thesaurus/new-term.html.twig + prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig + web/thesaurus/export-text-dialog.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig - web/thesaurus/link-field-step2.html.twig web/thesaurus/import-dialog.html.twig + web/thesaurus/link-field-step2.html.twig web/thesaurus/accept.html.twig web/thesaurus/accept.html.twig - web/thesaurus/export-text-dialog.html.twig - web/thesaurus/link-field-step1.html.twig web/thesaurus/export-topics-dialog.html.twig + web/thesaurus/new-term.html.twig + web/thesaurus/new-term.html.twig + web/thesaurus/link-field-step1.html.twig + web/account/reset-email.html.twig + admin/publications/fiche.html.twig + admin/collection/create.html.twig + web/admin/index.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig - web/admin/index.html.twig - admin/collection/create.html.twig - admin/publications/fiche.html.twig web/report/all_content.html.twig - web/account/reset-email.html.twig boutton::appliquer @@ -9220,8 +9218,8 @@ boutton::choisir Auswählen - web/admin/users.html.twig web/admin/editusers.html.twig + web/admin/users.html.twig boutton::commander @@ -9237,8 +9235,8 @@ boutton::demarrer Dia Show - web/lightbox/feed_options_box.html.twig web/lightbox/sc_options_box.html.twig + web/lightbox/feed_options_box.html.twig boutton::editer @@ -9271,15 +9269,15 @@ boutton::fermer schliessen Controller/Prod/LanguageController.php + prod/actions/Push.html.twig prod/actions/edit_default.html.twig prod/actions/edit_default.html.twig - prod/actions/Push.html.twig - web/lightbox/sc_note.html.twig - web/thesaurus/export-topics.html.twig + web/thesaurus/properties.html.twig web/thesaurus/accept.html.twig web/thesaurus/accept.html.twig - web/thesaurus/properties.html.twig + web/thesaurus/export-topics.html.twig web/thesaurus/link-field-step3.html.twig + web/lightbox/sc_note.html.twig web/common/dialog_export.html.twig web/report/all_content.html.twig @@ -9291,14 +9289,14 @@ boutton::imprimer Drucken - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig boutton::modifier ändern + Bridge/Dailymotion/actionelement.html.twig Bridge/Youtube/actionelement.html.twig Bridge/Flickr/actionelement.html.twig - Bridge/Dailymotion/actionelement.html.twig web/admin/users.html.twig @@ -9309,22 +9307,22 @@ boutton::pause Pause - web/lightbox/feed_options_box.html.twig web/lightbox/sc_options_box.html.twig + web/lightbox/feed_options_box.html.twig boutton::precedent vorherige - web/lightbox/feed_options_box.html.twig - web/lightbox/feed_options_box.html.twig - web/lightbox/sc_options_box.html.twig - web/lightbox/sc_options_box.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig + web/lightbox/sc_options_box.html.twig + web/lightbox/sc_options_box.html.twig + web/lightbox/feed_options_box.html.twig + web/lightbox/feed_options_box.html.twig boutton::rechercher @@ -9355,26 +9353,26 @@ boutton::retour Zurück - Bridge/Youtube/video_moveinto_playlist.html.twig - Bridge/Youtube/video_deleteelement.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig - Bridge/Youtube/playlist_deleteelement.html.twig - Bridge/Flickr/photoset_deleteelement.html.twig - Bridge/Flickr/photoset_createcontainer.html.twig - Bridge/Flickr/photo_deleteelement.html.twig - Bridge/Flickr/photo_moveinto_photoset.html.twig - Bridge/Dailymotion/video_moveinto_playlist.html.twig Bridge/Dailymotion/video_deleteelement.html.twig Bridge/Dailymotion/playlist_createcontainer.html.twig + Bridge/Dailymotion/video_moveinto_playlist.html.twig Bridge/Dailymotion/playlist_deleteelement.html.twig - web/developers/application_form.html.twig - web/developers/application.html.twig - admin/collection/details.html.twig - user/import/file.html.twig - admin/databox/details.html.twig + Bridge/Youtube/video_deleteelement.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/video_moveinto_playlist.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig + Bridge/Flickr/photo_deleteelement.html.twig + Bridge/Flickr/photoset_deleteelement.html.twig + Bridge/Flickr/photo_moveinto_photoset.html.twig + Bridge/Flickr/photoset_createcontainer.html.twig web/admin/editusers.html.twig admin/publications/fiche.html.twig + admin/databox/details.html.twig + admin/collection/details.html.twig + user/import/file.html.twig admin/statusbit/edit.html.twig + web/developers/application_form.html.twig + web/developers/application.html.twig boutton::retry @@ -9384,54 +9382,54 @@ boutton::suivant folgende - web/lightbox/feed_options_box.html.twig - web/lightbox/feed_options_box.html.twig - web/lightbox/sc_options_box.html.twig - web/lightbox/sc_options_box.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig + web/lightbox/sc_options_box.html.twig + web/lightbox/sc_options_box.html.twig + web/lightbox/feed_options_box.html.twig + web/lightbox/feed_options_box.html.twig boutton::supprimer Löschen Controller/Prod/LanguageController.php - web/prod/index.html.twig actions/Bridge/disconnected.html.twig + Bridge/Dailymotion/actionelements.html.twig + Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actionelements.html.twig Bridge/Youtube/actioncontainers.html.twig Bridge/Flickr/actionelements.html.twig Bridge/Flickr/actioncontainers.html.twig - Bridge/Dailymotion/actionelements.html.twig - Bridge/Dailymotion/actioncontainers.html.twig prod/results/feeds_entry.html.twig prod/results/entry.html.twig + web/prod/index.html.twig web/thesaurus/presets.html.twig - admin/collection/suggested_value.html.twig + admin/publications/fiche.html.twig + admin/publications/list.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig - admin/publications/list.html.twig - admin/publications/fiche.html.twig + admin/collection/suggested_value.html.twig web/admin/subdefs.html.twig boutton::telecharger - download - web/lightbox/feed_options_box.html.twig + Download web/lightbox/sc_options_box.html.twig + web/lightbox/feed_options_box.html.twig web/common/dialog_export.html.twig boutton::telecharger tous les documents Alle Dokumente herunterladen + web/lightbox/feed.html.twig lightbox/IE6/feed.html.twig lightbox/IE6/validate.html.twig - web/lightbox/feed.html.twig web/lightbox/validate.html.twig @@ -9444,61 +9442,61 @@ boutton::valider Bestätigen Controller/Prod/LanguageController.php - web/prod/index.html.twig - prod/actions/edit_default.html.twig - prod/actions/edit_default.html.twig - Bridge/Youtube/video_moveinto_playlist.html.twig - Bridge/Youtube/video_deleteelement.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig - Bridge/Youtube/playlist_deleteelement.html.twig - Bridge/Youtube/video_modify.html.twig - Bridge/Flickr/photoset_deleteelement.html.twig - Bridge/Flickr/photoset_createcontainer.html.twig - Bridge/Flickr/photo_deleteelement.html.twig - Bridge/Flickr/photo_modify.html.twig - Bridge/Flickr/photo_moveinto_photoset.html.twig - Bridge/Dailymotion/video_moveinto_playlist.html.twig - Bridge/Dailymotion/video_deleteelement.html.twig - Bridge/Dailymotion/playlist_createcontainer.html.twig - Bridge/Dailymotion/playlist_deleteelement.html.twig - Bridge/Dailymotion/video_modify.html.twig - prod/Story/Reorder.html.twig + mobile/lightbox/note_form.html.twig prod/Baskets/Update.html.twig prod/Baskets/Reorder.html.twig - web/developers/application_form.html.twig + Bridge/Dailymotion/video_deleteelement.html.twig + Bridge/Dailymotion/playlist_createcontainer.html.twig + Bridge/Dailymotion/video_moveinto_playlist.html.twig + Bridge/Dailymotion/video_modify.html.twig + Bridge/Dailymotion/playlist_deleteelement.html.twig + Bridge/Youtube/video_deleteelement.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/video_moveinto_playlist.html.twig + Bridge/Youtube/video_modify.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig + Bridge/Flickr/photo_deleteelement.html.twig + Bridge/Flickr/photoset_deleteelement.html.twig + Bridge/Flickr/photo_moveinto_photoset.html.twig + Bridge/Flickr/photoset_createcontainer.html.twig + Bridge/Flickr/photo_modify.html.twig + prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig + prod/Story/Reorder.html.twig + web/prod/index.html.twig + web/thesaurus/export-text-dialog.html.twig + web/thesaurus/thesaurus.html.twig + web/thesaurus/import-dialog.html.twig + web/thesaurus/link-field-step2.html.twig + web/thesaurus/accept.html.twig + web/thesaurus/export-topics-dialog.html.twig web/thesaurus/index.html.twig web/thesaurus/new-term.html.twig web/thesaurus/new-term.html.twig - web/thesaurus/thesaurus.html.twig - web/thesaurus/link-field-step2.html.twig - web/thesaurus/import-dialog.html.twig - web/thesaurus/accept.html.twig - web/thesaurus/export-text-dialog.html.twig web/thesaurus/link-field-step1.html.twig - web/thesaurus/export-topics-dialog.html.twig - admin/collection/suggested_value.html.twig + web/account/access.html.twig + web/account/reset-email.html.twig + web/account/account.html.twig + web/admin/dashboard.html.twig + web/admin/editusers.html.twig + admin/publications/fiche.html.twig + admin/publications/list.html.twig + web/admin/setup.html.twig admin/collection/create.html.twig admin/collection/reorder.html.twig admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig + web/admin/subdefs.html.twig + web/admin/structure.html.twig user/import/view.html.twig admin/user/registrations.html.twig - web/admin/structure.html.twig - web/admin/setup.html.twig - web/admin/editusers.html.twig - admin/publications/list.html.twig - admin/publications/fiche.html.twig - web/admin/dashboard.html.twig admin/statusbit/edit.html.twig - web/admin/subdefs.html.twig + web/developers/application_form.html.twig web/report/all_content.html.twig - web/account/access.html.twig - web/account/account.html.twig - web/account/reset-email.html.twig - mobile/lightbox/note_form.html.twig boutton::vue graphique - grafische Ansicht + Grafische Ansicht admin/collection/suggested_value.html.twig task-manager/task-editor/task.html.twig @@ -9520,7 +9518,7 @@ cancel - abbrechen + Abbrechen actions/Tools/index.html.twig actions/Tools/index.html.twig actions/Tools/index.html.twig @@ -9548,12 +9546,12 @@ cgus :: accepter - annehmen + Annehmen classes/databox/cgu.php cgus :: refuser - ablehnen + Ablehnen classes/databox/cgu.php @@ -9579,7 +9577,7 @@ charger d'avantage de publications - mehr Veröffentlichungen hochladen + Mehr Veröffentlichungen hochladen prod/results/feeds.html.twig prod/results/feeds.html.twig @@ -9591,9 +9589,9 @@ choisir wählen - web/prod/index.html.twig - admin/collection/create.html.twig + web/prod/index.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig classe @@ -9620,10 +9618,10 @@ copyClipboardLabel in der Zwischenablage kopieren + prod/results/infos.html.twig prod/Share/record.html.twig prod/Share/record.html.twig prod/Share/record.html.twig - prod/results/infos.html.twig create_subdef_button_label @@ -9673,7 +9671,7 @@ created_on erstellt am - web/prod/index.html.twig + web/prod/index.html.twig dans %category% @@ -9691,9 +9689,9 @@ hinzugefügtes Datum SearchEngine/Elastic/ElasticSearchEngine.php - + date de modification - Änderungsdatum + Änderungsdatum SearchEngine/Elastic/ElasticSearchEngine.php @@ -9704,7 +9702,7 @@ delete Löschen - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig descendant @@ -9720,9 +9718,9 @@ document Dokument Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig document original @@ -9733,7 +9731,7 @@ edit Bearbeiten - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig web/account/account.html.twig web/account/account.html.twig web/account/account.html.twig @@ -9813,7 +9811,7 @@ export:: erreur : aucun document selectionne Fehler: kein ausgewähltes Dokument - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig export:: telechargement @@ -9828,7 +9826,7 @@ export::ftp: reglages manuels - manuelle Einstellungen + Manuelle Einstellungen classes/set/export.php @@ -9879,8 +9877,8 @@ flash Flash Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig for the following reasons : %reasons% @@ -9944,6 +9942,17 @@ Änderungen wurden hergestellt admin/databox/databox.html.twig + + help::help-search: OR + help::help-search: OR + prod/results/help.html.twig + + + help::help-search: relaunch search without filter + help::help-search: relaunch search without filter + prod/results/help.html.twig + web/prod/index.html.twig + help::help-section-bullet: check-spelling Vergewissern Sie sich, dass kein Schreibfehler oder Tippfehler vorliegt @@ -9996,15 +10005,15 @@ help::help-section-title: sorry-no-result - Sorry, Ihre Suche liefert keine Ergebnisse + Entschuldigung, Ihre Suche liefert keine Ergebnisse prod/results/help.html.twig image Bild Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig image rotation @@ -10016,45 +10025,45 @@ Bild Werkzeug actions/Tools/index.html.twig - + index::advance_search: disable-facet - index::advance_search: disable-facet - web/prod/index.html.twig + Facetten mit nur einem Ergebnis ausblenden (experimentell) + web/prod/index.html.twig - + index::advance_search: facet - index::advance_search: facet - web/prod/index.html.twig + Einstellungen für Facetten + web/prod/index.html.twig index::advance_search: facet-order Reihenfolge der Facettenanzeige - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet-tech-order Standard Reihenfolge - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet-values-order Reihenfolge der Facettenwerte - web/prod/index.html.twig + web/prod/index.html.twig - + index::advance_search: hidden-facet-values-order - index::advance_search: hidden-facet-values-order - web/prod/index.html.twig + Versteckte Facetten + web/prod/index.html.twig index::advance_search: order-by-hits Nach Hits sortieren - web/prod/index.html.twig + web/prod/index.html.twig - + index:advanced-preferences:: use truncation - index:advanced-preferences:: use truncation - web/prod/index.html.twig + Trunkierung aktivieren + web/prod/index.html.twig invite:: Redirection vers la zone d'authentification, cliquez sur OK pour continuer ou annulez @@ -10063,7 +10072,7 @@ janvier - Jänner + Januar classes/module/report.php @@ -10086,6 +10095,16 @@ Die Dienstleistung wird in einige Minuten wieder verfügbar sein. actions/Bridge/deactivated.html.twig + + lightbox::See_less_feedback + lightbox::See_less_feedback + web/lightbox/index.html.twig + + + lightbox::See_more_feedback + lightbox::See_more_feedback + web/lightbox/index.html.twig + lightbox::list lightbox::list @@ -10094,9 +10113,19 @@ lightbox::recaptitulatif Übersicht + mobile/lightbox/validate.html.twig web/lightbox/agreement_box.html.twig web/lightbox/validate.html.twig - mobile/lightbox/validate.html.twig + + + lightbox::see_less_basket + lightbox::see_less_basket + web/lightbox/index.html.twig + + + lightbox::see_more_basket + lightbox::see_more_basket + web/lightbox/index.html.twig login:: Changer mon adresse email @@ -10116,10 +10145,10 @@ login:: Mon compte Mein Benutzerkonto + mobile/common/menubar.html.twig + web/account/account.html.twig web/common/menubar.html.twig web/common/menubar.html.twig - web/account/account.html.twig - mobile/common/menubar.html.twig login:: Visitez le lien suivant et suivez les instructions pour continuer, sinon ignorez cet email et il ne se passera rien @@ -10155,8 +10184,8 @@ login::notification: Mise a jour du mot de passe avec succes erfolgreiche Passwort Aktualisierung - Controller/Root/AccountController.php Controller/Root/LoginController.php + Controller/Root/AccountController.php login::notification: demande de confirmation par mail envoyee @@ -10178,8 +10207,8 @@ login::register: sujet email : confirmation de votre adresse email E-Mail Adressen Bestätigung - Notification/Mail/MailRequestEmailConfirmation.php Notification/Mail/MailRequestEmailUpdate.php + Notification/Mail/MailRequestEmailConfirmation.php login::register:email: Voici un compte rendu du traitement de vos demandes d'acces : @@ -10245,16 +10274,16 @@ no Nein - web/common/technical_datas.html.twig - user/import/view.html.twig - web/admin/subdefs.html.twig web/account/sessions.html.twig + web/admin/subdefs.html.twig + user/import/view.html.twig + web/common/technical_datas.html.twig no image selected Kein Bild wurde ausgewählt - actions/Tools/index.html.twig actions/Tools/videoEditor.html.twig + actions/Tools/index.html.twig non @@ -10265,9 +10294,9 @@ notice Beschreibung + web/lightbox/feed.html.twig lightbox/IE6/feed.html.twig lightbox/IE6/validate.html.twig - web/lightbox/feed.html.twig web/lightbox/validate.html.twig @@ -10287,146 +10316,146 @@ or - Or + Oder Controller/Prod/LanguageController.php - + order-manager::mail: your-order-of - order-manager::mail: your-order-of + Ihre Bestellung von : prod/orders/order_item.html.twig - + order-manager::order-item: accepted-item - order-manager::order-item: accepted-item + akzeptiert prod/orders/order_item.html.twig - + order-manager::order-item: address - order-manager::order-item: address + Adresse prod/orders/order_item.html.twig - + order-manager::order-item: already-validated - order-manager::order-item: already-validated + gesendet prod/orders/order_item.html.twig - + order-manager::order-item: by - order-manager::order-item: by + von prod/orders/order_item.html.twig - + order-manager::order-item: company - order-manager::order-item: company + Unternehmen prod/orders/order_item.html.twig - + order-manager::order-item: country - order-manager::order-item: country + Land prod/orders/order_item.html.twig - + order-manager::order-item: create - order-manager::order-item: create + OK prod/orders/order_item.html.twig - + order-manager::order-item: create-basket - order-manager::order-item: create-basket + Neuer Sammelkorb prod/orders/order_item.html.twig - + order-manager::order-item: for-non-sent-items - order-manager::order-item: for-non-sent-items + Für die Dokumente, die nicht gesendet wurden prod/orders/order_item.html.twig - + order-manager::order-item: information - order-manager::order-item: information + Information prod/orders/order_item.html.twig - + order-manager::order-item: item - order-manager::order-item: item + Dokument prod/orders/order_item.html.twig - + order-manager::order-item: items-already-sent - order-manager::order-item: items-already-sent + Dokument(e) schon gesendet prod/orders/order_item.html.twig - + order-manager::order-item: items-waiting-validation - order-manager::order-item: items-waiting-validation + Dokumente, die auf eine Bestätigung warten prod/orders/order_item.html.twig - + order-manager::order-item: less - order-manager::order-item: less + weniger sehen prod/orders/order_item.html.twig - + order-manager::order-item: more - order-manager::order-item: more + mehr sehen prod/orders/order_item.html.twig - + order-manager::order-item: number - order-manager::order-item: number + Nummer prod/orders/order_item.html.twig - + order-manager::order-item: of - order-manager::order-item: of + Von prod/orders/order_item.html.twig prod/orders/order_item.html.twig - + order-manager::order-item: refused-previously - order-manager::order-item: refused-previously + zuvor abgelehnt prod/orders/order_item.html.twig prod/orders/order_item.html.twig - + order-manager::order-item: rejected-item - order-manager::order-item: rejected-item + abgelehnt prod/orders/order_item.html.twig - + order-manager::order-item: reset - order-manager::order-item: reset + zurücksetzen prod/orders/order_item.html.twig prod/orders/order_item.html.twig prod/orders/order_item.html.twig - + order-manager::order-item: select-all - order-manager::order-item: select-all + Alle auswählen prod/orders/order_item.html.twig - + order-manager::order-item: selected-item - order-manager::order-item: selected-item + ausgewählt prod/orders/order_item.html.twig - + order-manager::order-item: selected-records - order-manager::order-item: selected-records + ausgewählte Datensätze prod/orders/order_item.html.twig - + order-manager::order-item: submit - order-manager::order-item: submit + Senden prod/orders/order_item.html.twig - + order-manager::order-item: tel - order-manager::order-item: tel + Telefon prod/orders/order_item.html.twig - + order-manager::order-item: validate - order-manager::order-item: validate + bestätigen prod/orders/order_item.html.twig @@ -10434,104 +10463,104 @@ order-manager::order-item: warning-message-close prod/orders/order_item.html.twig - + order-manager::order-item: with-denied-items - order-manager::order-item: with-denied-items + Mit der abgelehnten Datensätzen prod/orders/order_item.html.twig - + order-manager::order-item: with-selected-items - order-manager::order-item: with-selected-items + Mit der Auswahl prod/orders/order_item.html.twig - + order-manager::order-item: with-validated-items - order-manager::order-item: with-validated-items + Mit gesendete(r) Dokument(en) prod/orders/order_item.html.twig - + order-manager::order-item: you-have-denied - order-manager::order-item: you-have-denied + Dokument(e) abgelehnt prod/orders/order_item.html.twig - + order-manager::order-item: you-have-validated - order-manager::order-item: you-have-validated + Dokument(e) gesendet prod/orders/order_item.html.twig - + order-manager::order-item:Create-Basket - order-manager::order-item:Create-Basket + Sammelkorb erstellen prod/orders/order_item.html.twig - + order-manager::order-item:Validation - order-manager::order-item:Validation + Bestellübersicht prod/orders/order_item.html.twig - + order-manager::order-list: after - order-manager::order-list: after + Bestellt nach : prod/orders/order_box.html.twig order-manager::order-list: apply - order-manager::order-list: apply + Filter anwenden prod/orders/order_box.html.twig - + order-manager::order-list: before - order-manager::order-list: before + Bestellt vor: prod/orders/order_box.html.twig - + order-manager::order-list: last-month - order-manager::order-list: last-month + Letzten Monat prod/orders/order_box.html.twig - + order-manager::order-list: last-week - order-manager::order-list: last-week + Letzte Woche prod/orders/order_box.html.twig - + order-manager::order-list: no-filter - order-manager::order-list: no-filter + Kein Filter prod/orders/order_box.html.twig prod/orders/order_box.html.twig - + order-manager::order-list: no-result - order-manager::order-list: no-result + Keine Bestellung im Moment sichtbar prod/orders/order_box.html.twig prod/orders/order_box.html.twig - + order-manager::order-list: order-id - order-manager::order-list: order-id + Bestellung Nummer prod/orders/order_item.html.twig prod/orders/order_item.html.twig prod/orders/order_box.html.twig prod/orders/order_box.html.twig - + order-manager::order-list: pending - order-manager::order-list: pending + Bestellung zu verarbeiten prod/orders/order_box.html.twig - + order-manager::order-list: processed - order-manager::order-list: processed + Verarbeitet prod/orders/order_box.html.twig - + order-manager::order-list: this-week - order-manager::order-list: this-week + Diese Woche prod/orders/order_box.html.twig - + order-manager::order-list: treated-documents - order-manager::order-list: treated-documents + Verarbeitete(r) Datensatz(¨e) prod/orders/order_item.html.twig prod/orders/order_box.html.twig prod/orders/order_box.html.twig @@ -10571,17 +10600,17 @@ panier:: ordre Validation ascendante gut bewertet - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig panier:: ordre Validation descendante weniger gut bewertet - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig panier:: ordre du panier Sammelkorb Reihenfolge - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig panier:: renommer le panier @@ -10606,7 +10635,7 @@ paniers:: panier recu de %pusher% Sammelkorb von %pusher% bekommen - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig paniers::Vous etes sur le point de supprimer ce panier. Cette action est irreversible. Souhaitez-vous continuer ? @@ -10616,8 +10645,8 @@ paniers::description du nouveau panier Beschreibung - prod/orders/order_item.html.twig prod/Baskets/Create.html.twig + prod/orders/order_item.html.twig par %user_name% @@ -10629,9 +10658,9 @@ pro Monat web/admin/editusers_quotas.html.twig - + personalize logo - personalize logo + Logo anpassen Form/Configuration/PersonalisationLogoFormType.php @@ -10683,11 +10712,11 @@ phraseanet:: adresse Adresse - web/common/dialog_export.html.twig web/setup/step2.html.twig + web/account/account.html.twig admin/collection/collection.html.twig web/admin/connected-users.html.twig - web/account/account.html.twig + web/common/dialog_export.html.twig phraseanet:: aide @@ -10695,14 +10724,14 @@ web/common/menubar.html.twig web/common/menubar.html.twig - + phraseanet:: basket feedback - phraseanet:: basket feedback + Sammelkorb Feedback prod/actions/printer_default.html.twig - + phraseanet:: baskets - phraseanet:: baskets + Sammelkörbe web/prod/tab_headers.html.twig @@ -10731,8 +10760,8 @@ phraseanet:: details Einzelheiten - admin/collection/collection.html.twig admin/databox/databox.html.twig + admin/collection/collection.html.twig phraseanet:: hostname @@ -10777,7 +10806,7 @@ phraseanet:: preview Voransicht prod/actions/edit_default.html.twig - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig phraseanet:: propositions @@ -10800,13 +10829,13 @@ phraseanet:: thesaurus Thesaurus - web/prod/tab_headers.html.twig prod/actions/edit_default.html.twig - web/thesaurus/index.html.twig + web/prod/tab_headers.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/load-thesaurus.html.twig web/thesaurus/load-thesaurus.html.twig + web/thesaurus/index.html.twig phraseanet:: tri @@ -10905,7 +10934,7 @@ phraseanet::erreur: Une erreur est survenue, si ce probleme persiste, contactez le support technique - Leider ist ein Fehler aufgetreten. Sollte sich dieser Fehler wiederholen kontaktieren Sie bitte den Administrator + Leider ist ein Fehler aufgetreten. Sollte sich dieser Fehler wiederholen, kontaktieren Sie bitte den Administrator Controller/Prod/LanguageController.php web/admin/index.html.twig @@ -10965,7 +10994,7 @@ phraseanet::recherche avancee - erweiterte Suche + Erweiterte Suche Controller/Prod/LanguageController.php @@ -11011,12 +11040,12 @@ phraseanet::time:: a zu - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::time:: de von - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::type:: audios @@ -11026,8 +11055,8 @@ phraseanet::type:: documents Dokumente - web/prod/index.html.twig web/prod/toolbar.html.twig + web/prod/index.html.twig phraseanet::type:: images @@ -11062,53 +11091,53 @@ preview:: Description Beschreibung - web/prod/index.html.twig + web/prod/index.html.twig preview:: Historique Historie - web/prod/index.html.twig + web/prod/index.html.twig preview:: Popularite Beliebtheit - web/prod/index.html.twig + web/prod/index.html.twig preview:: arreter le diaporama stoppen - prod/preview/result_train.html.twig prod/preview/basket_train.html.twig - prod/preview/feed_train.html.twig - prod/preview/result_train_options.html.twig + prod/preview/result_train.html.twig prod/preview/reg_train.html.twig + prod/preview/result_train_options.html.twig + prod/preview/feed_train.html.twig preview:: demarrer le diaporama Dia-Schau - prod/preview/result_train.html.twig prod/preview/basket_train.html.twig - prod/preview/feed_train.html.twig - prod/preview/result_train_options.html.twig + prod/preview/result_train.html.twig prod/preview/reg_train.html.twig + prod/preview/result_train_options.html.twig + prod/preview/feed_train.html.twig - + preview::date - preview::date + Datum prod/preview/popularity.html.twig prod/preview/popularity.html.twig prod/preview/popularity.html.twig prod/preview/popularity.html.twig - + preview::downloads - preview::downloads + Anzahl von Downloads prod/preview/popularity.html.twig prod/preview/popularity.html.twig preview::statistiques de telechargement - Herunterladen Statistiken + Download Statistiken prod/preview/popularity.html.twig @@ -11116,9 +11145,9 @@ Ansicht Statistiken prod/preview/popularity.html.twig - + preview::visualisation - preview::visualisation + Anzahl von Ansichten prod/preview/popularity.html.twig prod/preview/popularity.html.twig @@ -11132,110 +11161,150 @@ print:: basket feedback print:: basket feedback + prod/actions/printer_default.html.twig + + + print:: basket feedback only + print:: basket feedback only prod/actions/printer_default.html.twig - + print:: description - print:: description - prod/actions/printer_default.html.twig + Bildunterschrift + prod/actions/printer_default.html.twig print:: image de choix et description Voransicht und Bildunterschrift - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig print:: image de choix et description avec planche contact Voransicht und Bildunterschrift mit Mosaikansicht - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig print:: image de choix seulement Voransicht - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig print:: imagette Miniaturansicht - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig print:: liste d'imagettes Miniaturansichten Liste - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig print:: planche contact (mosaique) Mosaikansicht - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig - + print_feedback:: Document generated on : - Erstellt am : - Out/Module/PDFRecords.php + print_feedback:: Document generated on : + Out/Module/PDFRecords.php - + + print_feedback:: Feedback active + Feedback ist aktiviert + Out/Module/PDFRecords.php + + + print_feedback:: Feedback expired + Feedback ist abgelaufen + Out/Module/PDFRecords.php + + print_feedback:: Feedback expiring on : - Feedback läuft am : ab - Out/Module/PDFRecords.php + print_feedback:: Feedback expiring on : + Out/Module/PDFRecords.php print_feedback:: Feedback initiated by : print_feedback:: Feedback initiated by : - Out/Module/PDFRecords.php + Out/Module/PDFRecords.php print_feedback:: Feedback initiated on : print_feedback:: Feedback initiated on : - Out/Module/PDFRecords.php + Out/Module/PDFRecords.php - + print_feedback:: Feedback on basket %name% - print_feedback:: Feedback on basket %name% - Out/Module/PDFRecords.php + Feedback auf Sammelkorb %name% + Out/Module/PDFRecords.php - + print_feedback:: Non - Nein - Out/Module/PDFRecords.php + Nein + Out/Module/PDFRecords.php - + print_feedback:: Oui - Ja - Out/Module/PDFRecords.php + Ja + Out/Module/PDFRecords.php - + print_feedback:: Participants : - Teilnehmer : - Out/Module/PDFRecords.php + Teilnehmer : + Out/Module/PDFRecords.php - + print_feedback:: Votes : - Zustimmung : + Zustimmung : + Out/Module/PDFRecords.php + + + print_feedback:: base name: + print_feedback:: base name: + Out/Module/PDFRecords.php + + + print_feedback:: document Uuid: + print_feedback:: document Uuid: Out/Module/PDFRecords.php - + print_feedback:: non voté - unausgedrückt - Out/Module/PDFRecords.php + unausgedrückt + Out/Module/PDFRecords.php + + + print_feedback:: originale filename: + print_feedback:: originale filename: + Out/Module/PDFRecords.php + + + print_feedback:: record id: + print_feedback:: record id: + Out/Module/PDFRecords.php + + + print_feedback:: record title: + print_feedback:: record title: + Out/Module/PDFRecords.php prive privat - Bridge/Youtube/upload.html.twig Bridge/Dailymotion/upload.html.twig + Bridge/Youtube/upload.html.twig privé privat - Bridge/Youtube/video_modify.html.twig Bridge/Dailymotion/video_modify.html.twig + Bridge/Youtube/video_modify.html.twig processing verarbeitend - actions/Tools/index.html.twig actions/Tools/videoEditor.html.twig + actions/Tools/index.html.twig prod::Les enregistrements ne provienent pas tous de la meme base et ne peuvent donc etre traites ensemble @@ -11251,12 +11320,12 @@ prod::advancesearch:tooltips:datefield_restriction_explanation Suchergebnisse auf Datum beschränken - web/prod/index.html.twig + web/prod/index.html.twig - + prod::advancesearch:tooltips:field_restriction_explanation - prod::advancesearch:tooltips:field_restriction_explanation - web/prod/index.html.twig + Suchen Sie den Inhalt der Felder + web/prod/index.html.twig prod::collection deplacer egalement les documents rattaches a ce(s) regroupement(s) @@ -11270,18 +11339,18 @@ prod::editing valeurs heterogenes, choisir 'remplacer', 'ajouter' ou 'annuler' - heterogene Werte, bitte wählen Sie "ersetzen", "hinzufügen" oder "abbrechen" + Heterogene Werte, bitte wählen Sie "ersetzen", "hinzufügen" oder "abbrechen" Controller/Prod/LanguageController.php prod::editing: %not_actionable% documents ne peuvent etre edites car vos droits sont induffisants %not_actionable% Dokumente können nicht bearbeitet werden, da Sie keine Rechte darauf haben - prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig prod::editing: 1 document ne peut etre edite car vos droits sont induffisants Keine Bearbeitung möglich. Sie haben keinen Zugriff auf die Dokumente - prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig prod::editing: aucun documents ne peuvent etre edites car vos droits sont induffisants @@ -11376,17 +11445,27 @@ prod::facet:base_label Datenbanken - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php prod::facet:collection_label Kollektionen - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php prod::facet:doctype_label Dokumenttyp - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php + + + prod::feedback:feedback_set_title + prod::feedback:feedback_set_title + prod/templates/push.html.twig + + + prod::push:push_set_title + prod::push:push_set_title + prod/templates/push.html.twig prod::recherche: Attention : la liste des bases selectionnees pour la recherche a ete changee. @@ -11405,7 +11484,7 @@ prod::thesaurusTab:cmenu:Remplacer par... - ersetzen durch + Ersetzen durch web/prod/index.html.twig @@ -11505,19 +11584,19 @@ prod::thesaurusTab:wizard:remplacer par le terme - ersetzen durch den Begriff + Durch den Begriff ersetzen web/prod/tab_thesaurus.html.twig - + prod::toolbar : video editor - prod::toolbar : video editor + Video Tools web/prod/toolbar.html.twig prod::tools: document Dokument - Controller/Prod/ShareController.php Controller/Prod/ToolsController.php + Controller/Prod/ShareController.php prod:app trash: also-move-record @@ -11539,93 +11618,93 @@ Datensatz (¨e) In den Papierkorb verschieben Controller/Prod/LanguageController.php - + prod:edit: chapters - prod:edit: chapters + Kapitel Bearbeitung Controller/Prod/LanguageController.php - + prod:edit: no overlaps for chapters - prod:edit: no overlaps for chapters + Keine Überschneidung für die Kapitel Controller/Prod/LanguageController.php - + prod:edit: only a media of type video can be edited - prod:edit: only a media of type video can be edited + Nur eine Video kann bearbeitet sein Controller/Prod/LanguageController.php - + prod:edit: suggested_values - prod:edit: suggested_values + Vorgeschlagene Werte Controller/Prod/LanguageController.php - + prod:edit: video-editor - prod:edit: video-editor + Video Tools Controller/Prod/LanguageController.php - + prod:mapboxgl: description notice - prod:mapboxgl: description notice + Machen Sie einen Rechtsklick, um einen Suchbereich zu hinzufügen. Klicken Sie auf den Bereich zu entfernen. Benutzen Sie den Griff, um die Grösse zu ändern oder den Bereich zu verschieben. Es ist auch möglich, mehrere Suchbereiche auszuwählen. Controller/Prod/LanguageController.php - + prod:mapboxgl: title map dialog - prod:mapboxgl: title map dialog + Lokalisierung Suche Controller/Prod/LanguageController.php - + prod:mapboxgl: title notice - prod:mapboxgl: title notice + Suchbereiche Funktionen Controller/Prod/LanguageController.php - + prod:push: create new user - prod:push: create new user + Einen neuen Benutzer erstellen Controller/Prod/LanguageController.php - + prod:push: delete selection - prod:push: delete selection + Auswahl entfernen prod/actions/Push.html.twig public öffentlich - Bridge/Youtube/upload.html.twig - Bridge/Youtube/video_modify.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Dailymotion/video_modify.html.twig + Bridge/Youtube/upload.html.twig + Bridge/Youtube/video_modify.html.twig publication : autheur Autor - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : email autheur Autor E-Mail - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : sous titre Untertitel - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : titre Titel - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications. Hier finden Sie Ihr eigenes RSS Feed. Dank des RSS werden Sie über neue Veröffentlichungen automatisch informiert - Controller/Prod/FeedController.php - Controller/Prod/FeedController.php + Controller/Prod/FeedController.php + Controller/Prod/FeedController.php publications:: s'abonner aux publications @@ -11635,15 +11714,15 @@ publications::Ne le partagez pas, il est strictement confidentiel - Dieses RSS nicht weiterleiten - es istvertraulich - Controller/Prod/FeedController.php - Controller/Prod/FeedController.php + Dieses RSS nicht weiterleiten - es ist vertraulich + Controller/Prod/FeedController.php + Controller/Prod/FeedController.php publications::votre rss personnel Ihr eigenes RSS - Controller/Prod/FeedController.php - Controller/Prod/FeedController.php + Controller/Prod/FeedController.php + Controller/Prod/FeedController.php push::mail:: Rapport de validation de %user% pour %title% @@ -11663,19 +11742,19 @@ raccourci :: a propos des raccourcis claviers Über Abkürzungen - web/prod/index.html.twig + web/prod/index.html.twig raccourcis :: ne plus montrer cette aide - diese Hilfe nicht mehr anzeigen - web/prod/index.html.twig + Diese Hilfe nicht mehr anzeigen + web/prod/index.html.twig rafraichir - aktualisieren + Aktualisieren + prod/WorkZone/Story.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Basket.html.twig - prod/WorkZone/Story.html.twig prod/results/feeds.html.twig prod/results/feeds.html.twig @@ -11737,17 +11816,17 @@ reponses:: images par pages : Suchergebnisse nach Seite - web/prod/index.html.twig + web/prod/index.html.twig reponses:: mode liste Liste - web/prod/index.html.twig + web/prod/index.html.twig reponses:: mode vignettes Miniaturansichten - web/prod/index.html.twig + web/prod/index.html.twig reponses:: partager @@ -11769,16 +11848,16 @@ reponses:: taille des images : Miniaturansichtengrösse - web/prod/index.html.twig + web/prod/index.html.twig reponses::document sans titre ohne Titel classes/record/adapter.php - + report:: 1 - Periode - Zeit + Zeit web/report/form_date_and_base.html.twig @@ -11791,9 +11870,9 @@ Kollektionen web/report/form_date_and_base.html.twig - + report:: 3 - Type de report - Bericht Typ + Bericht Typ web/report/report_layout_child.html.twig web/report/report_layout_child.html.twig @@ -11811,8 +11890,8 @@ report:: Connexion Verbindungen classes/module/report.php - web/report/all_content.html.twig web/report/report_layout.html.twig + web/report/all_content.html.twig report:: Databox content @@ -11821,12 +11900,12 @@ report:: Detail des connexions - Verbindungsdetails + Verbindungs-Detail module/report/activity.php report:: Detail des telechargements - Downloaddetails + Download Detail module/report/activity.php @@ -11910,7 +11989,7 @@ report:: document ajoute - hinzugefügte Dokumente + Hinzugefügte Dokumente module/report/add.php @@ -11957,21 +12036,21 @@ report:: non-renseigne nicht ausgefüllt - module/report/nav.php + module/report/add.php + module/report/question.php + module/report/download.php module/report/activity.php module/report/activity.php module/report/activity.php - module/report/filter.php - module/report/edit.php - module/report/sent.php - module/report/download.php - module/report/add.php - module/report/validate.php - module/report/push.php - module/report/question.php module/report/connexion.php module/report/connexion.php module/report/connexion.php + module/report/push.php + module/report/sent.php + module/report/validate.php + module/report/nav.php + module/report/edit.php + module/report/filter.php report:: page d'accueil @@ -11987,7 +12066,7 @@ report:: pays - Staat + Land classes/module/report.php @@ -12004,8 +12083,8 @@ report:: question Anfrage classes/module/report.php - module/report/filter.php module/report/question.php + module/report/filter.php report:: questions @@ -12061,7 +12140,7 @@ report:: type - Bildschirmtyp + Typ classes/module/report.php @@ -12076,7 +12155,7 @@ report:: validated documents - Bestätigte Dokumente + Validierte Dokumente module/report/validate.php @@ -12098,7 +12177,7 @@ report::Demande de validation vers %n_user% utilisateurs depuis lapplication box %appbox% - Validierung Abfrage zu %n_user% Benutzer ab ApplicationBox %appbox% + Feedback Abfrage zu %n_user% Benutzer ab ApplicationBox %appbox% prod/preview/short_history.html.twig @@ -12223,19 +12302,19 @@ 90° im Uhrzeigersinn drehen actions/Tools/index.html.twig - + same UUID - same UUID + dieselbe UUID Border/Checker/UUID.php - + same checksum - same checksum + gleiche Prüfsumme Border/Checker/Sha256.php - + same filename - same filename + gleiche Dateiname Border/Checker/Filename.php @@ -12250,7 +12329,7 @@ select at least one user - Einen user auswählen + Einen Benutzer auswählen web/admin/users.html.twig @@ -12270,7 +12349,7 @@ setup:: Reinitialisation des droits admins - die Rechte von Administratoren zurücksetzen + Administratoren Rechte zurücksetzen web/admin/dashboard.html.twig @@ -12450,9 +12529,9 @@ Archivierung zur Datenbank/Kollektion task-manager/task-editor/archive.html.twig - + task::archive:copier les fichiers '.phrasea.xml' et '.grouping.xml' dans _archived - Copy '.phrasea.xml' and 'groupin.xml' files to _archive + Copy '.phrasea.xml' and 'groupin.xml' files to _archive task-manager/task-editor/archive.html.twig @@ -12555,8 +12634,8 @@ task::ftp:proxy Proxy - task-manager/task-editor/ftp-pull.html.twig task-manager/task-editor/ftp.html.twig + task-manager/task-editor/ftp-pull.html.twig task::ftp:proxy password @@ -12566,8 +12645,8 @@ task::ftp:proxy port Proxy Port - task-manager/task-editor/ftp-pull.html.twig task-manager/task-editor/ftp.html.twig + task-manager/task-editor/ftp-pull.html.twig task::ftp:proxy user @@ -12678,8 +12757,8 @@ thesaurus:: Nouveau synonyme Neuer Synonym - web/thesaurus/new-term.html.twig web/thesaurus/thesaurus.html.twig + web/thesaurus/new-term.html.twig thesaurus:: Nouveau terme @@ -12776,7 +12855,7 @@ thesaurus:: est candidat en provenance des champs mais ne peut etre accepte a cet emplacement du thesaurus - ist ein möglicher Begriff aus Felder Ursprung aber kann nicht in diesem Ort des Thesaurus akzeptiert werden + ist ein möglicher Begriff aus Felder Ursprung, aber kann an dieser Stelle im Thesaurus nicht akzeptiert werden web/thesaurus/new-term.html.twig @@ -12817,15 +12896,15 @@ thesaurus:: export au format texte Text - web/thesaurus/export-text.html.twig web/thesaurus/export-text-dialog.html.twig web/thesaurus/export-text-dialog.html.twig + web/thesaurus/export-text.html.twig thesaurus:: export en topics Themen - web/thesaurus/export-topics.html.twig web/thesaurus/export-topics-dialog.html.twig + web/thesaurus/export-topics.html.twig thesaurus:: exporter @@ -12959,7 +13038,7 @@ thesaurus:: recherche fulltext - volltext + volltext Suche web/thesaurus/export-topics-dialog.html.twig @@ -12980,7 +13059,7 @@ thesaurus:: reindexer la base apres l'import - wieder indexieren nach dem Import + nach dem Import wieder indexieren web/thesaurus/import-dialog.html.twig @@ -13110,15 +13189,15 @@ thesaurus::menu: supprimer Löschen + web/thesaurus/properties.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig - web/thesaurus/properties.html.twig thumbnail validation Miniaturansicht Bestätigung - actions/Tools/index.html.twig actions/Tools/videoEditor.html.twig + actions/Tools/index.html.twig tout le monde @@ -13150,10 +13229,10 @@ Ihre Version ist aktuell web/admin/databases.html.twig - + updated_on - updated_on - web/prod/index.html.twig + aktualisiert am + web/prod/index.html.twig upload:: Destination (collection) : @@ -13164,9 +13243,9 @@ upload:: Status : Status - prod/upload/lazaret.html.twig prod/upload/upload.html.twig prod/upload/upload-flash.html.twig + prod/upload/lazaret.html.twig users rights have been reseted @@ -13176,23 +13255,23 @@ validate bestätigen + actions/Tools/videoEditor.html.twig actions/Tools/index.html.twig actions/Tools/index.html.twig actions/Tools/index.html.twig actions/Tools/index.html.twig - actions/Tools/videoEditor.html.twig validation:: NON Nein - web/lightbox/agreement_box.html.twig mobile/lightbox/basket_element.html.twig + web/lightbox/agreement_box.html.twig validation:: OUI Ja - web/lightbox/agreement_box.html.twig mobile/lightbox/basket_element.html.twig + web/lightbox/agreement_box.html.twig validation:: editer ma note @@ -13212,10 +13291,10 @@ validation::envoyer mon rapport Meinen Bericht senden - web/lightbox/basket_options.html.twig - web/lightbox/basket_options.html.twig mobile/lightbox/validate.html.twig mobile/lightbox/validate.html.twig + web/lightbox/basket_options.html.twig + web/lightbox/basket_options.html.twig version @@ -13230,12 +13309,12 @@ video Video - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig - + video range extractor - video range extractor + Kapitelunterteilung actions/Tools/videoEditor.html.twig @@ -13246,9 +13325,9 @@ yes Ja - web/common/technical_datas.html.twig - web/admin/subdefs.html.twig web/account/sessions.html.twig + web/admin/subdefs.html.twig + web/common/technical_datas.html.twig you are about to change the representation thumbnail of your video diff --git a/resources/locales/messages.en.xlf b/resources/locales/messages.en.xlf index c37ed44070..0d9887b3f0 100644 --- a/resources/locales/messages.en.xlf +++ b/resources/locales/messages.en.xlf @@ -1,6 +1,6 @@ - +
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. @@ -9,8 +9,8 @@ - Form/Configuration/EmailFormType.php Form/Login/PhraseaAuthenticationForm.php + Form/Configuration/EmailFormType.php Add @@ -24,7 +24,7 @@ url through a forwarded mail for example. Check the force authentication checkbox to constrain users to authenticate to access content of Push and Feedbacks. This feature can avoid divulging connection parameters contained in given links in e-mails notifications. - prod/templates/push.html.twig + prod/templates/push.html.twig {0} No results|{1} Result|]1,Inf[ Results @@ -117,9 +117,9 @@ %basket_length% documents %basket_length% document(s) - web/lightbox/index.html.twig - web/lightbox/index.html.twig mobile/lightbox/validate.html.twig + web/lightbox/index.html.twig + web/lightbox/index.html.twig %countable% documents can not be modified. @@ -192,22 +192,22 @@ %nb_records% records %nb_records% records - prod/Tooltip/Basket.html.twig prod/Tooltip/Story.html.twig + prod/Tooltip/Basket.html.twig %nb_view% vue %nb_view% view + Bridge/Dailymotion/element_informations.html.twig Bridge/Youtube/element_informations.html.twig Bridge/Flickr/element_informations.html.twig - Bridge/Dailymotion/element_informations.html.twig %nb_view% vues %nb_view% views + Bridge/Dailymotion/element_informations.html.twig Bridge/Youtube/element_informations.html.twig Bridge/Flickr/element_informations.html.twig - Bridge/Dailymotion/element_informations.html.twig selectionnes]]> @@ -278,7 +278,7 @@ %record_count% records match the unique identifier : %record_count% records match the unique identifier: - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig %s field has been created with success. @@ -383,17 +383,17 @@ (validation) a envoyer Feedback request to send - web/lightbox/index.html.twig + web/lightbox/index.html.twig (validation) envoyee Feedback request sent. - web/lightbox/index.html.twig + web/lightbox/index.html.twig (validation) session terminee Feedback session ended. - web/lightbox/index.html.twig + web/lightbox/index.html.twig *Phraseanet Navigator* is a smartphone application that allow user to connect on this instance @@ -453,8 +453,8 @@ A To - web/admin/editusers_timelimit_sbas.html.twig web/admin/editusers_timelimit.html.twig + web/admin/editusers_timelimit_sbas.html.twig A document has been quarantined @@ -489,7 +489,7 @@ A record matches the unique identifier : A record matches the unique identifier: - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig A required field is missing or has an empty value @@ -617,7 +617,7 @@ Accuse de reception Acknowledge receipt Controller/Prod/LanguageController.php - prod/templates/push.html.twig + prod/templates/push.html.twig Accuse de reception indisponible, vous n'avez pas declare d'adresse email @@ -627,22 +627,22 @@ Action Forbidden : You are not the publisher Forbidden: You are not the publisher - Controller/Prod/FeedController.php + Controller/Prod/FeedController.php Actions Actions + Bridge/Dailymotion/actionelements.html.twig + Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actionelements.html.twig Bridge/Youtube/actioncontainers.html.twig Bridge/Flickr/actionelements.html.twig Bridge/Flickr/actioncontainers.html.twig - Bridge/Dailymotion/actionelements.html.twig - Bridge/Dailymotion/actioncontainers.html.twig Activate highlight Activate highlight on full text (experimental). Impact the time performance of search. - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig @@ -654,8 +654,8 @@ Activer Activate admin/databox/databox.html.twig - web/admin/editusers_timelimit_sbas.html.twig web/admin/editusers_timelimit.html.twig + web/admin/editusers_timelimit_sbas.html.twig Activer le grant_type de type password pour votre application @@ -676,9 +676,9 @@ Add Add prod/actions/Push.html.twig - prod/User/Add.html.twig - prod/upload/lazaret.html.twig - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig + prod/User/Add.html.twig Add a @@ -777,37 +777,42 @@ Affichage Display - web/prod/index.html.twig + web/prod/index.html.twig Affichage au demarrage Display On startup - web/prod/index.html.twig + web/prod/index.html.twig Afficher la fiche descriptive Show Caption - web/prod/index.html.twig + web/prod/index.html.twig Afficher le titre Show Title - web/prod/index.html.twig + web/prod/index.html.twig Afficher les status Show Status - web/prod/index.html.twig + web/prod/index.html.twig Afficher une icone Display an Icon - web/prod/index.html.twig + web/prod/index.html.twig After metadata After captions - web/prod/index.html.twig + web/prod/index.html.twig + + + Aggregated + Aggregated + admin/search-engine/general-aggregation.html.twig Aggregation @@ -817,7 +822,7 @@ Aide Help - web/prod/index.html.twig + web/prod/index.html.twig Aide sur les expressions regulieres @@ -827,16 +832,16 @@ Ajouter a Add to + Bridge/Dailymotion/actionelements.html.twig Bridge/Youtube/actionelements.html.twig Bridge/Flickr/actionelements.html.twig - Bridge/Dailymotion/actionelements.html.twig Ajouter ma selection courrante Add my current selection - prod/orders/order_item.html.twig - prod/Story/Create.html.twig prod/Baskets/Create.html.twig + prod/Story/Create.html.twig + prod/orders/order_item.html.twig Ajouter un nouvel utilisateur @@ -857,24 +862,19 @@ All All Form/Configuration/CustomLinkFormType.php + WorkZone/Browser/Browser.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig - WorkZone/Browser/Browser.html.twig task-manager/task-editor/subdefs.html.twig All these conditions All these conditions - web/prod/index.html.twig - - - All values - All values - admin/fields/templates.html.twig + web/prod/index.html.twig Aller a @@ -939,14 +939,14 @@ Alphabetic asc Alphabetic asc - web/prod/index.html.twig - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Alphabetic desc Alphabetic desc - web/prod/index.html.twig + web/prod/index.html.twig Also delete records that rely on groupings. @@ -958,6 +958,16 @@ An error occurred Model/Manipulator/LazaretManipulator.php Model/Manipulator/LazaretManipulator.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php Controller/Admin/DataboxesController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php @@ -970,27 +980,17 @@ Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php + Controller/Prod/BasketController.php + Controller/Prod/ToolsController.php Controller/Prod/LazaretController.php Controller/Prod/MoveCollectionController.php - Controller/Prod/ToolsController.php - Controller/Prod/BasketController.php Controller/Prod/StoryController.php - admin/collection/suggested_value.html.twig - admin/collection/collection.html.twig web/admin/users.html.twig - task-manager/task-editor/task.html.twig admin/databox/databox.html.twig web/admin/databases.html.twig + admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig + task-manager/task-editor/task.html.twig An error occured when wanting to change status! @@ -1032,9 +1032,9 @@ An error occurred An error occurred Order/Controller/ProdOrderController.php - Controller/Admin/CollectionController.php - Controller/Admin/SearchEngineController.php Controller/Admin/DataboxController.php + Controller/Admin/SearchEngineController.php + Controller/Admin/CollectionController.php Controller/Prod/BasketController.php Controller/Api/V3Controller.php Controller/Api/V1Controller.php @@ -1069,7 +1069,7 @@ Aperture Aperture - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php web/common/technical_datas.html.twig @@ -1130,14 +1130,14 @@ Apply a template Apply a template - web/admin/users.html.twig web/admin/editusers.html.twig + web/admin/users.html.twig Apply changes Apply changes - actions/Property/index.html.twig actions/Property/type.html.twig + actions/Property/index.html.twig Apply status on story children. @@ -1157,8 +1157,8 @@ Archive Archive - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig Are you sure you want delete users rights ? @@ -1282,7 +1282,7 @@ Audio Samplerate Audio Samplerate - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Audio channel @@ -1292,7 +1292,7 @@ Audio codec Audio codec - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php AudioSamplerate @@ -1368,20 +1368,20 @@ Autorisation d'acces Access authorization - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Autoriser Authorize - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ? Allow application %application_name% to access content on %home_title%? - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Available in multi-export tab @@ -1396,10 +1396,10 @@ Back Previous + mobile/lightbox/basket_element.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig - mobile/lightbox/basket_element.html.twig mobile/lightbox/validate.html.twig @@ -1420,10 +1420,10 @@ Bad request format, only JSON is allowed Bad request format. Only JSON is allowed. + Controller/Root/AccountController.php + Controller/Admin/DataboxController.php Controller/Admin/RootController.php Controller/Admin/RootController.php - Controller/Admin/DataboxController.php - Controller/Root/AccountController.php Bad request, please contact an admin @@ -1438,9 +1438,9 @@ Base %base% Database %base% - web/admin/editusers_timelimit_sbas.html.twig - web/admin/editusers_timelimit.html.twig web/admin/editusers_quotas.html.twig + web/admin/editusers_timelimit.html.twig + web/admin/editusers_timelimit_sbas.html.twig Base could not be created @@ -1452,6 +1452,11 @@ Dabase succesfully emptied Controller/Admin/DataboxController.php + + Basket + Basket + prod/WorkZone/Macros.html.twig + Basket created Basket created @@ -1550,7 +1555,7 @@ By field By field - web/prod/index.html.twig + web/prod/index.html.twig CHAMPS @@ -1560,7 +1565,7 @@ Camera Model Camera model - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php web/common/technical_datas.html.twig @@ -1568,12 +1573,12 @@ Cancel Controller/Prod/LanguageController.php prod/actions/delete_records_confirm.html.twig - actions/Property/index.html.twig actions/Property/type.html.twig - prod/User/Add.html.twig - admin/fields/templates.html.twig + actions/Property/index.html.twig + prod/User/Add.html.twig task-manager/task-editor/task.html.twig user/import/view.html.twig + admin/fields/templates.html.twig Cancel all @@ -1599,9 +1604,9 @@ Categorie Category + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/upload.html.twig Bridge/Youtube/video_modify.html.twig - Bridge/Dailymotion/video_modify.html.twig Ce champ est decrit comme element du %DublinCoreElementSet% @@ -1631,14 +1636,14 @@ Ce champ est obligatoire This field is mandatory - Bridge/Api/Dailymotion.php - Bridge/Api/Dailymotion.php + Bridge/Api/Flickr.php + Bridge/Api/Flickr.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php - Bridge/Api/Flickr.php - Bridge/Api/Flickr.php + Bridge/Api/Dailymotion.php + Bridge/Api/Dailymotion.php Ce champ est relie a une branche de thesaurus @@ -1659,12 +1664,12 @@ Ce champ est trop long %length% caracteres max Too long, expecting %length% characters max. - Bridge/Api/Dailymotion.php - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php + Bridge/Api/Dailymotion.php Ce champ est utilise en titre a l'affichage @@ -1741,8 +1746,8 @@ Choisir Choose - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig web/admin/subdefs.html.twig web/admin/subdefs.html.twig web/admin/subdefs.html.twig @@ -1754,19 +1759,14 @@ Choose a new password Choose a new password - web/login/renew-password.html.twig web/account/change-password.html.twig + web/login/renew-password.html.twig Choose the title of the document to export Enable filename choice option when downloading Form/Configuration/ActionsFormType.php - - City - City - prod/User/Add.html.twig - Civility Title @@ -1775,8 +1775,8 @@ Clear Clear - admin/task-manager/log_scheduler.html.twig admin/task-manager/log_task.html.twig + admin/task-manager/log_scheduler.html.twig Clear list @@ -1824,14 +1824,14 @@ Collection Collection prod/Story/Create.html.twig - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig admin/databox/details.html.twig Collection %collection% Collection %collection% - web/admin/editusers_timelimit.html.twig web/admin/editusers_quotas.html.twig + web/admin/editusers_timelimit.html.twig Collection empty successful @@ -1841,7 +1841,7 @@ Collection order Collection order - web/prod/index.html.twig + web/prod/index.html.twig Color Depth @@ -1856,13 +1856,13 @@ Colorspace Colorspace - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Commande Order - eventsmanager/notify/orderdeliver.php eventsmanager/notify/ordernotdelivered.php + eventsmanager/notify/orderdeliver.php Commande du %date% @@ -1894,10 +1894,10 @@ Confidentialite Confidentiality - Bridge/Youtube/upload.html.twig - Bridge/Youtube/video_modify.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Dailymotion/video_modify.html.twig + Bridge/Youtube/upload.html.twig + Bridge/Youtube/video_modify.html.twig Confidentialite : privee @@ -1912,7 +1912,7 @@ Configuration Configuration - web/prod/index.html.twig + web/prod/index.html.twig Confirm new email address @@ -1937,13 +1937,13 @@ Connection Login - web/login/index.html.twig - web/login/index.html.twig - login/oauth/login.html.twig login/providers/mapping.html.twig login/providers/mapping.html.twig login/providers/bind.html.twig login/providers/bind.html.twig + web/login/index.html.twig + web/login/index.html.twig + login/oauth/login.html.twig Connection is OK but database does not exists or can not be accessed @@ -1968,7 +1968,7 @@ Contains Contains - web/prod/index.html.twig + web/prod/index.html.twig Continuer ? @@ -2023,7 +2023,7 @@ Couleur de selection Selection color - web/prod/index.html.twig + web/prod/index.html.twig Country @@ -2044,7 +2044,7 @@ Create index Create index - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php Creation date @@ -2064,9 +2064,9 @@ Creer Create + Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actioncontainers.html.twig Bridge/Flickr/actioncontainers.html.twig - Bridge/Dailymotion/actioncontainers.html.twig Creer la tache d'ecriture des metadonnees @@ -2111,8 +2111,8 @@ Creer une playlist Create a Playlist - Bridge/Youtube/playlist_createcontainer.html.twig Bridge/Dailymotion/playlist_createcontainer.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig Creez une application pour commencer a utiliser l'API Phraseanet @@ -2134,7 +2134,7 @@ errors Current configuration contains some errors - admin/fields/templates.html.twig + admin/fields/templates.html.twig Current operations cannot be executed because the site is temporarily in maintenance mode. Wait a few minutes and try your request again @@ -2232,12 +2232,12 @@ Date Date - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig Date Added Date added - web/prod/index.html.twig + web/prod/index.html.twig Date Creation @@ -2247,7 +2247,7 @@ Date Updated Date Updated - web/prod/index.html.twig + web/prod/index.html.twig Date de connexion @@ -2257,8 +2257,8 @@ Date de création Creation date - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig Date de demande @@ -2270,19 +2270,19 @@ Date de modification Modification date - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig Date(s) from field(s) Date(s) from field(s) - web/prod/index.html.twig + web/prod/index.html.twig De From - web/admin/editusers_timelimit_sbas.html.twig web/admin/editusers_timelimit.html.twig + web/admin/editusers_timelimit_sbas.html.twig Deadline @@ -2354,7 +2354,7 @@ Defined by admin Defined by admin - web/prod/index.html.twig + web/prod/index.html.twig Defined in Apache configuration @@ -2374,8 +2374,8 @@ Delete Delete - prod/upload/lazaret.html.twig - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig admin/task-manager/templates.html.twig @@ -2386,8 +2386,8 @@ Delete all users rights Delete all users rights - web/admin/users.html.twig web/admin/editusers.html.twig + web/admin/users.html.twig Delete basket @@ -2429,9 +2429,9 @@ Deplacement %n_element% elements Moving %n_element% documents + Bridge/Dailymotion/video_moveinto_playlist.html.twig Bridge/Youtube/video_moveinto_playlist.html.twig Bridge/Flickr/photo_moveinto_photoset.html.twig - Bridge/Dailymotion/video_moveinto_playlist.html.twig Dernier access @@ -2457,14 +2457,14 @@ Description Caption - Bridge/Youtube/upload.html.twig + Bridge/Dailymotion/upload.html.twig + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/upload.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photoset_createcontainer.html.twig Bridge/Flickr/upload.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/upload.html.twig - Bridge/Dailymotion/video_modify.html.twig prod/Tooltip/DCESFieldInfo.html.twig web/developers/application_form.html.twig @@ -2489,8 +2489,8 @@ Details Details - admin/collection/details.html.twig admin/databox/details.html.twig + admin/collection/details.html.twig Developpeur @@ -2506,8 +2506,8 @@ Dimension Size Media/Subdef/Image.php - Media/Subdef/Video.php Media/Subdef/Unknown.php + Media/Subdef/Video.php Disable document type sharing @@ -2532,7 +2532,7 @@ Display technical data Display technical data - web/prod/index.html.twig + web/prod/index.html.twig Display thumbnails @@ -2542,7 +2542,7 @@ Do not display Do not display - web/prod/index.html.twig + web/prod/index.html.twig Do not forget to restart the tasks scheduler @@ -2642,7 +2642,7 @@ Drop index Drop index - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php Duree @@ -2713,9 +2713,9 @@ Edition de 1 element Editing 1 document + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/video_modify.html.twig Edition des droits de %display_name% @@ -2750,26 +2750,26 @@ ElasticSearch index name ElasticSearch index name - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig ElasticSearch server host ElasticSearch server host - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig ElasticSearch service port ElasticSearch service port - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig Email E-mail - admin/publications/fiche.html.twig web/admin/dashboard.html.twig + admin/publications/fiche.html.twig Email '%email%' for login '%login%' already exists in database @@ -2875,8 +2875,8 @@ En cours d'encodage Encoding in progress - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php actions/Bridge/records_list.html.twig @@ -3013,7 +3013,7 @@ Equals Equals - web/prod/index.html.twig + web/prod/index.html.twig Erreur @@ -3023,8 +3023,8 @@ Erreur ! Error ! - web/lightbox/error.html.twig mobile/lightbox/error.html.twig + web/lightbox/error.html.twig Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas @@ -3117,8 +3117,8 @@ Error while sending the file Error while sending the file - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Error while uploading @@ -3128,8 +3128,8 @@ Etendue de la publication Publication scope - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Etes vous sur de supprimer %number% photos ? @@ -3144,19 +3144,19 @@ Etes vous sur de supprimer %number% playlists ? Do you confirm that you want to delete of %number% playlists ? - Bridge/Youtube/playlist_deleteelement.html.twig Bridge/Dailymotion/playlist_deleteelement.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig Etes vous sur de supprimer %number% videos ? Confirm delete of %number% videos ? - Bridge/Youtube/video_deleteelement.html.twig Bridge/Dailymotion/video_deleteelement.html.twig + Bridge/Youtube/video_deleteelement.html.twig Ex : Paris, bleu, montagne Ex : Paris, blue, mountain - web/prod/index.html.twig + web/prod/index.html.twig Executables externes @@ -3214,8 +3214,9 @@ Feedback Feedback Controller/Prod/LanguageController.php - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig @@ -3305,13 +3306,13 @@ Filename File Name - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig Fils disponibles Available feed - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig Filter @@ -3344,7 +3345,7 @@ FlashFired FlashFired - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Flatten layers @@ -3360,7 +3361,7 @@ Force authentication Force authentication - prod/templates/push.html.twig + prod/templates/push.html.twig Force sending of the document ? @@ -3380,10 +3381,10 @@ Forgot password? Forgot password? - web/login/index.html.twig - login/oauth/login.html.twig login/providers/mapping.html.twig login/providers/bind.html.twig + web/login/index.html.twig + login/oauth/login.html.twig Forgot your password? @@ -3403,7 +3404,7 @@ FrameRate FrameRate - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Frequence d'echantillonage @@ -3489,7 +3490,7 @@ Get setting form index Get setting form index - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php Gives the option to your application to communicate with Phraseanet. This webhook can be used to trigger some actions on your application side. @@ -3549,7 +3550,7 @@ Graphiste (preview au rollover) Graphist (preview on thumbnail rollover) - web/prod/index.html.twig + web/prod/index.html.twig Great @@ -3564,9 +3565,9 @@ Guest Guest + mobile/common/menubar.html.twig web/common/menubar.html.twig web/common/menubar.html.twig - mobile/common/menubar.html.twig Guest access @@ -3596,9 +3597,9 @@ Hello %username% Hi %username% + api/auth/end_user_authorization.html.twig api/auth/native_app_access_token.html.twig api/auth/end_user_authorization.html.twig - api/auth/end_user_authorization.html.twig Help @@ -3618,11 +3619,11 @@ Home Home - login/layout/base-layout.html.twig - login/include/language-block.html.twig mobile/lightbox/basket_element.html.twig mobile/lightbox/feed.html.twig mobile/lightbox/validate.html.twig + login/include/language-block.html.twig + login/layout/base-layout.html.twig Homepage slideshow @@ -3637,8 +3638,8 @@ I have read the terms of use I have read the terms of use - web/login/register-provider.html.twig web/login/register-classic.html.twig + web/login/register-provider.html.twig IP @@ -3648,7 +3649,7 @@ ISO ISO - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php ISO sensibility @@ -3658,7 +3659,7 @@ Iconographe (description au rollover) Iconograph (caption on thumbnail rollover) - web/prod/index.html.twig + web/prod/index.html.twig Id @@ -3729,7 +3730,7 @@ In the answer grid In the answer grid - web/prod/index.html.twig + web/prod/index.html.twig Include Business-fields in caption @@ -3761,9 +3762,9 @@ Informations Info - admin/user/registrations.html.twig - web/admin/dashboard.html.twig web/account/base.html.twig + web/admin/dashboard.html.twig + admin/user/registrations.html.twig Informations personnelles @@ -3778,8 +3779,8 @@ Inscription Registration - web/login/register.html.twig web/login/register-classic.html.twig + web/login/register.html.twig Install in progess @@ -3799,8 +3800,8 @@ Invalid file format Invalid file format - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Invalid file type @@ -3811,8 +3812,8 @@ Invalid file type, only (%supported_file_types%) file formats are supported Invalid file type. Only %supported_file_types% file formats are supported. - user/import/file.html.twig admin/databox/databox.html.twig + user/import/file.html.twig admin/statusbit/edit.html.twig @@ -3823,8 +3824,8 @@ Invalid labels parameter Invalid label parameters - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Invalid link. @@ -3850,8 +3851,8 @@ Inverser Reverse - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig It is not recommended to install Phraseanet without HTTPS support @@ -3886,8 +3887,8 @@ L'upload a echoue Upload failed - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php L'upload concernant le record %title% sur le compte %bridge_name% a echoue pour les raisons suivantes : %reason% @@ -3897,17 +3898,17 @@ L'utilisateur approuve ce document User approves this document - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig L'utilisateur desapprouve ce document User disapproves this document - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig L'utilisateur n'a pas encore donne son avis sur ce document User hasn't decided yet - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig La connection vers le serveur distant est OK @@ -3924,20 +3925,20 @@ La taille maximale d'une video est de %duration% minutes. The maximum duration for a video is %duration% minutes. - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video a ete rejetee Video has been rejected - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video a ete supprimee Video has been deleted - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video est restreinte @@ -3953,7 +3954,7 @@ Language Language - web/prod/index.html.twig + web/prod/index.html.twig Last Name @@ -3983,7 +3984,7 @@ Last uploaded version Last uploaded version - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig Le bridge Dailymotion ne prend en charge que les videos @@ -4033,16 +4034,16 @@ Le poids maximum d'un fichier est de %size% Maximum filesize is %size% - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Le record n'a pas de fichier physique No physical file for this record - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Le token n'a pas encore ete genere @@ -4063,9 +4064,9 @@ Les elements ne peuvent etre uploades (problemes de type ou de droit) Selected files can't be uploaded (file type or rights error) + Bridge/Dailymotion/upload.html.twig Bridge/Youtube/upload.html.twig Bridge/Flickr/upload.html.twig - Bridge/Dailymotion/upload.html.twig Les indications donnees ci dessous sont a titre informatif. @@ -4090,7 +4091,7 @@ Les termes apparaissent dans le(s) champs Word(s) from field(s) - web/prod/index.html.twig + web/prod/index.html.twig Light Value @@ -4100,14 +4101,14 @@ Lightbox Lightbox - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig Limite temporelle Time limit - web/admin/editusers_timelimit_sbas.html.twig web/admin/editusers_timelimit.html.twig + web/admin/editusers_timelimit_sbas.html.twig Limited vocabulary @@ -4186,9 +4187,9 @@ Login Form/Login/PhraseaAuthenticationForm.php actions/Feedback/ListsMacros.html.twig - login/oauth/login.html.twig login/providers/mapping.html.twig login/providers/bind.html.twig + login/oauth/login.html.twig Login %login% already exists in database @@ -4220,7 +4221,7 @@ Ma derniere question My last query - web/prod/index.html.twig + web/prod/index.html.twig Mail line %line% is empty @@ -4306,7 +4307,7 @@ Message Message Controller/Prod/LanguageController.php - prod/templates/push.html.twig + prod/templates/push.html.twig Message automatique de Phraseanet @@ -4326,7 +4327,7 @@ MimeType MimeType - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Minimum number of letters before truncation @@ -4341,8 +4342,8 @@ Missing labels parameter Labels missing parameter - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Missing mandatory parameter %parameter% @@ -4377,7 +4378,7 @@ Mode de presentation Display mode - web/prod/index.html.twig + web/prod/index.html.twig Modele de donnees @@ -4484,8 +4485,8 @@ Ne pas autoriser Do not authorize - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Ne pas creer de DataBox maintenant @@ -4518,15 +4519,15 @@ Next Next + actions/Feedback/ListsMacros.html.twig prod/orders/order_box.html.twig prod/orders/order_box.html.twig - actions/Feedback/ListsMacros.html.twig No No - web/developers/applications.html.twig web/account/account.html.twig + web/developers/applications.html.twig No URL available @@ -4646,14 +4647,14 @@ Nom du nouveau panier Name - prod/orders/order_item.html.twig prod/Baskets/Create.html.twig + prod/orders/order_item.html.twig Non-Restreinte (publique) Unrestricted (public) - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig None @@ -4670,7 +4671,7 @@ None of the selected records can be printed None of the selected records can be printed - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig None of the selected records can be pushed. @@ -4690,7 +4691,8 @@ Not aggregated Not aggregated - admin/fields/templates.html.twig + admin/search-engine/general-aggregation.html.twig + admin/fields/templates.html.twig Notification par email @@ -4756,13 +4758,13 @@ Number of replicas Number of replicas - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig Number of shards Number of shards - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig @@ -4773,8 +4775,8 @@ OK OK - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Ok @@ -4800,7 +4802,7 @@ One of these conditions One of these conditions - web/prod/index.html.twig + web/prod/index.html.twig Only %nbEditableDocuments% records can be modified. @@ -4825,10 +4827,10 @@ Or login with Or login with - api/auth/end_user_authorization.html.twig + web/login/register.html.twig web/login/index.html.twig login/oauth/login.html.twig - web/login/register.html.twig + api/auth/end_user_authorization.html.twig Order @@ -4863,7 +4865,7 @@ Orientation Orientation - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Original name @@ -4900,25 +4902,25 @@ Paniers Baskets - web/lightbox/index.html.twig - lightbox/IE6/validate.html.twig - web/lightbox/validate.html.twig - web/account/account.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/account/account.html.twig + web/lightbox/index.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig Par %author% by %author% + mobile/lightbox/feed.html.twig prod/results/feeds_entry.html.twig prod/results/entry.html.twig - mobile/lightbox/feed.html.twig Password Password - Form/Login/PhraseaRegisterForm.php Form/Login/PhraseaAuthenticationForm.php + Form/Login/PhraseaRegisterForm.php web/account/account.html.twig @@ -4951,11 +4953,6 @@ Pause Controller/Prod/LanguageController.php - - Pays - Country - prod/User/Add.html.twig - Periodically fetches an FTP repository content locally Periodically fetches a FTP repository content locally @@ -5020,14 +5017,14 @@ Playlist Playlist - Bridge/Youtube/actionelements.html.twig Bridge/Dailymotion/actionelements.html.twig + Bridge/Youtube/actionelements.html.twig Playlists Playlists - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Please accept the terms of use to register. @@ -5150,8 +5147,8 @@ Settings web/prod/index.html.twig web/prod/index.html.twig - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Prefix for notification emails @@ -5166,12 +5163,12 @@ Presentation de vignettes Thumbnails - web/prod/index.html.twig + web/prod/index.html.twig Presentation de vignettes de panier Basket display setup - web/prod/index.html.twig + web/prod/index.html.twig Presets @@ -5181,9 +5178,9 @@ Previous Previous + actions/Feedback/ListsMacros.html.twig prod/orders/order_box.html.twig prod/orders/order_box.html.twig - actions/Feedback/ListsMacros.html.twig Print @@ -5193,8 +5190,8 @@ Problemes de connexion ? Connection problems? - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Process the registration @@ -5224,10 +5221,10 @@ Publications Publications - web/prod/index.html.twig - web/common/menubar.html.twig + web/prod/index.html.twig admin/publications/wrapper.html.twig web/admin/tree.html.twig + web/common/menubar.html.twig Publier @@ -5237,8 +5234,8 @@ Publique Public - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Publishers @@ -5248,8 +5245,9 @@ Push Push - Controller/Prod/LanguageController.php eventsmanager/notify/push.php + Controller/Prod/LanguageController.php + prod/WorkZone/Macros.html.twig Push configuration @@ -5336,80 +5334,80 @@ Raccourcis claviers de la zone des paniers : - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de editing : Edit window shortcuts - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de preview : Detailed View window shortcut - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de recherche : Main windows shortcuts - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-a : tout selectionner ctrl-a : select all - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-e : editer la selection ctrl-e : edit selection - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-p : imprimer la selection ctrl-p : print selected - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::espace : arreter/demarrer le diaporama space : start/stop diaporama - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche bas : scroll vertical down arrow : vertical scroll - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche droite : page suivante right arrow : next page - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : en arriere left arrow : previous document - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : en avant right arrow : next document - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : page precedente left arrow : previous page - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche haut : scroll vertical up arrow : vertical scroll - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::tab/shift-tab se ballade dans les champs tab/shift-tab : change field - web/prod/index.html.twig + web/prod/index.html.twig Rappel : Il vous reste %number% jours pour valider %title% de %user% @@ -5429,21 +5427,21 @@ Re-initialiser Reset - web/prod/index.html.twig - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig + web/prod/index.html.twig Re-ordonner Set order - prod/Story/Reorder.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig prod/Baskets/Reorder.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/Story/Reorder.html.twig Read-only @@ -5534,7 +5532,7 @@ Rechercher dans un champ date In a date field - web/prod/index.html.twig + web/prod/index.html.twig Recommendations @@ -5595,10 +5593,10 @@ Register Register - login/include/register-link-block.html.twig - web/login/register-provider.html.twig - web/login/register.html.twig web/login/register-classic.html.twig + web/login/register.html.twig + web/login/register-provider.html.twig + login/include/register-link-block.html.twig Register approbation @@ -5613,19 +5611,19 @@ Reglages:: reglages d acces guest Guest access setup - web/admin/users.html.twig web/admin/editusers.html.twig + web/admin/users.html.twig Reglages:: reglages d inscitpition automatisee Auto register setup - web/admin/users.html.twig web/admin/editusers.html.twig + web/admin/users.html.twig Relevance Relevance - web/prod/index.html.twig + web/prod/index.html.twig Remember me @@ -5667,8 +5665,8 @@ Renew password Renew password Notification/Mail/MailRequestPasswordUpdate.php - web/login/renew-password.html.twig web/account/change-password.html.twig + web/login/renew-password.html.twig Reorder collections @@ -5678,8 +5676,8 @@ Reordonner automatiquement Sort automatically - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig Repertoire de stockage des fichiers @@ -5903,13 +5901,13 @@ Save Save actions/Feedback/list.html.twig + web/account/change-password.html.twig + admin/search-engine/general-aggregation.html.twig + admin/search-engine/elastic-search.html.twig + task-manager/task-editor/task.html.twig web/developers/application.html.twig web/developers/application.html.twig - task-manager/task-editor/task.html.twig - admin/search-engine/elastic-search.html.twig - admin/search-engine/general-aggregation.html.twig web/login/renew-password.html.twig - web/account/change-password.html.twig Save all changes @@ -5965,6 +5963,7 @@ See See + prod/WorkZone/Macros.html.twig WorkZone/Browser/Browser.html.twig @@ -5975,8 +5974,8 @@ See documentation at %url% See documentation at %url% - Form/Configuration/ExecutablesFormType.php Form/Configuration/WebservicesFormType.php + Form/Configuration/ExecutablesFormType.php See my order @@ -6002,7 +6001,7 @@ Select a field Select a field - web/prod/index.html.twig + web/prod/index.html.twig Select a list on the left and edit it ! @@ -6037,7 +6036,7 @@ Selected base(s) Selected database(s) : - web/prod/index.html.twig + web/prod/index.html.twig Selected files @@ -6048,12 +6047,12 @@ Send Send Controller/Prod/LanguageController.php - prod/orders/order_item.html.twig - prod/orders/order_item.html.twig prod/actions/Push.html.twig prod/actions/Push.html.twig prod/upload/upload.html.twig prod/upload/upload-flash.html.twig + prod/orders/order_item.html.twig + prod/orders/order_item.html.twig web/admin/dashboard.html.twig web/login/forgot-password.html.twig @@ -6118,8 +6117,8 @@ Set labels Set labels - admin/collection/collection.html.twig admin/databox/databox.html.twig + admin/collection/collection.html.twig Set statuses restrictions @@ -6165,13 +6164,13 @@ Short description Short description - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Shutter speed Shutter speed - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php web/common/technical_datas.html.twig @@ -6271,8 +6270,8 @@ Sous-titre Subtitle - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Space bar @@ -6314,7 +6313,7 @@ Status des documents a rechercher Document status - web/prod/index.html.twig + web/prod/index.html.twig Status edition @@ -6348,6 +6347,7 @@ Stories Stories Form/Configuration/SearchEngineFormType.php + prod/WorkZone/Macros.html.twig Story Not Found @@ -6408,8 +6408,8 @@ Substitute Substitute - prod/upload/lazaret.html.twig - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig Substitution is not possible for this kind of record @@ -6430,22 +6430,16 @@ Successful removal Successful removal. + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php Successful update Successful update - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php @@ -6453,10 +6447,16 @@ Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php actions/Tools/videoEditor.html.twig - admin/collection/suggested_value.html.twig - admin/collection/collection.html.twig web/admin/databases.html.twig + admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig Successfull connection @@ -6468,9 +6468,9 @@ Suggested values admin/collection/suggested_value.html.twig - + Suppr - Suppr + Suppr Controller/Prod/LanguageController.php @@ -6486,14 +6486,14 @@ Suppression de %n_element% playlists Deleting %n_element% playlists - Bridge/Youtube/playlist_deleteelement.html.twig Bridge/Dailymotion/playlist_deleteelement.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig Suppression de %n_element% videos Deleting %n_element% videos - Bridge/Youtube/video_deleteelement.html.twig Bridge/Dailymotion/video_deleteelement.html.twig + Bridge/Youtube/video_deleteelement.html.twig Supprimer @@ -6529,11 +6529,11 @@ Tags Tags + Bridge/Dailymotion/upload.html.twig + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/upload.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Flickr/upload.html.twig - Bridge/Dailymotion/upload.html.twig - Bridge/Dailymotion/video_modify.html.twig Target Device @@ -6675,8 +6675,8 @@ The file is too big The file is too large. - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php The file was moved to the quarantine @@ -6691,8 +6691,8 @@ The publication has been stopped The publication has been stopped. - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php The record was successfully created @@ -6733,7 +6733,7 @@ Theme Skin - web/prod/index.html.twig + web/prod/index.html.twig There is no one to validate orders, please contact an administrator @@ -6753,13 +6753,13 @@ Thesaurus Min score Thesaurus Min score - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig Thesaurus branch Thesaurus branch - admin/fields/templates.html.twig + admin/fields/templates.html.twig Thesaurus ou CTerms invalide @@ -6826,7 +6826,7 @@ This user does not participate to the validation but is only viewer. This user does not participate to the feedback request but is only viewer. - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig This user has no rights @@ -6862,19 +6862,19 @@ Titre Title - Bridge/Youtube/upload.html.twig + prod/Baskets/Reorder.html.twig + Bridge/Dailymotion/upload.html.twig + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/upload.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photoset_createcontainer.html.twig Bridge/Flickr/upload.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/upload.html.twig - Bridge/Dailymotion/video_modify.html.twig prod/Story/Reorder.html.twig - prod/Baskets/Reorder.html.twig + admin/publications/fiche.html.twig admin/publications/list.html.twig admin/publications/list.html.twig - admin/publications/fiche.html.twig Toggle loop @@ -6899,8 +6899,8 @@ Total Total - admin/collection/details.html.twig admin/databox/details.html.twig + admin/collection/details.html.twig Tous @@ -6936,7 +6936,7 @@ Trier par Sort by - web/prod/index.html.twig + web/prod/index.html.twig Try to extract embedded thumbnails @@ -6961,7 +6961,7 @@ Type de documents Document Type - web/prod/index.html.twig + web/prod/index.html.twig Type nombre @@ -7084,7 +7084,7 @@ Une question personnelle The query - web/prod/index.html.twig + web/prod/index.html.twig Une selection @@ -7142,13 +7142,13 @@ Upload Upload - actions/Bridge/index.html.twig - Bridge/Youtube/upload.html.twig - Bridge/Youtube/upload.html.twig - Bridge/Flickr/upload.html.twig - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Dailymotion/upload.html.twig + Bridge/Youtube/upload.html.twig + Bridge/Youtube/upload.html.twig + actions/Bridge/index.html.twig + Bridge/Flickr/upload.html.twig + Bridge/Flickr/upload.html.twig prod/upload/upload.html.twig prod/upload/upload-flash.html.twig web/common/menubar.html.twig @@ -7176,7 +7176,7 @@ Uploaded by : %username% Uploaded by: %username% - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig Use Google Chart API @@ -7196,7 +7196,7 @@ Use latest search settings on Production loading Use latest search settings on Production when loading - web/prod/index.html.twig + web/prod/index.html.twig Use my Phraseanet account @@ -7253,10 +7253,10 @@ Controller/Prod/LanguageController.php prod/templates/push.html.twig prod/templates/push.html.twig - prod/templates/push.html.twig prod/templates/push.html.twig - prod/templates/push.html.twig + prod/templates/push.html.twig prod/templates/push.html.twig + prod/templates/push.html.twig User can see others choices @@ -7315,11 +7315,11 @@ Validation Feedback + eventsmanager/notify/validationdone.php eventsmanager/notify/validationreminder.php eventsmanager/notify/validationreminder.php eventsmanager/notify/validate.php eventsmanager/notify/validate.php - eventsmanager/notify/validationdone.php lightbox/IE6/validate.html.twig @@ -7335,11 +7335,11 @@ Validations Feedbacks + mobile/lightbox/index.html.twig + mobile/lightbox/index.html.twig web/lightbox/index.html.twig lightbox/IE6/validate.html.twig web/lightbox/validate.html.twig - mobile/lightbox/index.html.twig - mobile/lightbox/index.html.twig Validations received @@ -7384,13 +7384,13 @@ Video codec Video codec - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Videos Videos - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php View on %title% @@ -7405,19 +7405,19 @@ Vocabulary type Vocabulary type - admin/fields/templates.html.twig + admin/fields/templates.html.twig Voici vos paniers Your Basket(s) - web/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/lightbox/index.html.twig Voici vos validations en cours Your feedbacks in progress - web/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/lightbox/index.html.twig Votre adresse email @@ -7452,7 +7452,7 @@ Vous avez envoye une demande de validation de document sur ce panier You have pushed this basket for a feedback request - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig Vous avez recu des documents @@ -7542,10 +7542,10 @@ Vous n'avez selectionne aucun element No document selected - actions/Bridge/index.html.twig - Bridge/Youtube/upload.html.twig - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig + Bridge/Youtube/upload.html.twig + actions/Bridge/index.html.twig + Bridge/Flickr/upload.html.twig Vous ne pouvez pas editer plusieurs elements simultanement @@ -7571,7 +7571,7 @@ Vous pouvez quitter la plupart des fenetres survolantes via la touche echap esc : close most of overlayed windows - web/prod/index.html.twig + web/prod/index.html.twig Warning ! @@ -7591,8 +7591,8 @@ Watch my access requests status View my access requests status. - Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Notification/Mail/MailSuccessAccessRequest.php + Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Watermark @@ -7632,8 +7632,8 @@ Which playlist you want to put you %number% elements into ? Select a Playlist to add the %number% documents - Bridge/Youtube/video_moveinto_playlist.html.twig Bridge/Dailymotion/video_moveinto_playlist.html.twig + Bridge/Youtube/video_moveinto_playlist.html.twig Whoops, looks like something went wrong. @@ -7672,15 +7672,15 @@ YYYY/MM/DD YYYY/MM/DD - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Yes Yes - web/developers/applications.html.twig - user/import/view.html.twig web/account/account.html.twig + user/import/view.html.twig + web/developers/applications.html.twig You are Admin @@ -7986,92 +7986,92 @@ action : ajouter au panier Add to Basket - prod/preview/tools.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/results/record.html.twig + prod/preview/tools.html.twig action : bridge Bridge - web/prod/index.html.twig + web/prod/index.html.twig action : collection Move - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig action : editer Edit - prod/preview/caption.html.twig - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig + prod/preview/caption.html.twig action : exporter Export - web/prod/index.html.twig - prod/preview/tools.html.twig - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/results/record.html.twig - web/prod/toolbar.html.twig + prod/preview/tools.html.twig + web/prod/index.html.twig + web/lightbox/feed.html.twig lightbox/IE6/feed.html.twig lightbox/IE6/validate.html.twig - web/lightbox/feed.html.twig web/lightbox/validate.html.twig action : outils Tools - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig action : print Print - prod/preview/tools.html.twig - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/results/record.html.twig - web/prod/toolbar.html.twig + prod/preview/tools.html.twig action : publier Publish - web/prod/index.html.twig - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig + web/prod/index.html.twig action : push Push - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig action : status Properties - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig action : supprimer Delete - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig web/prod/toolbar.html.twig @@ -8091,37 +8091,37 @@ action::Valider Validate - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig action::detacher Release from Basket zone - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig action::editer Edit - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig action::exporter Export - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig action::renommer Rename - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig actual status @@ -8311,8 +8311,8 @@ admin::base:collection: Creer une collection Create collection - admin/collection/create.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig admin::base:collection: Monter une collection @@ -8328,8 +8328,8 @@ admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces apply users and rights from collection : - admin/collection/create.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig admin::base:collection: activer la collection @@ -8340,10 +8340,10 @@ admin::base:collection: aucun fichier (minilogo, watermark ...) No file + admin/databox/databox.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig - admin/databox/databox.html.twig admin::base:collection: descativer la collection @@ -8404,20 +8404,20 @@ admin::base:collorder: descendre Move Down - admin/collection/suggested_value.html.twig admin/collection/reorder.html.twig + admin/collection/suggested_value.html.twig admin::base:collorder: monter Move Up - admin/collection/suggested_value.html.twig admin/collection/reorder.html.twig + admin/collection/suggested_value.html.twig admin::base:collorder: reinitialiser en ordre alphabetique Sort alphabetically - admin/collection/suggested_value.html.twig admin/collection/reorder.html.twig + admin/collection/suggested_value.html.twig admin::colelction::presentation des elements : rien @@ -8472,21 +8472,21 @@ admin::compte-utilisateur activite Activity - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - admin/user/registrations.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig admin::compte-utilisateur adresse Address - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur changer mon mot de passe @@ -8496,11 +8496,11 @@ admin::compte-utilisateur code postal Zip code - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur confirmer la nouvelle adresse email @@ -8520,23 +8520,23 @@ admin::compte-utilisateur email E-mail - Event/Subscriber/RegistrationSubscriber.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig + Event/Subscriber/RegistrationSubscriber.php + web/account/account.html.twig + web/admin/editusers.html.twig web/admin/users.html.twig admin/user/registrations.html.twig - web/admin/editusers.html.twig web/admin/connected-users.html.twig - web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur fax Fax - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur id utilisateur @@ -8548,34 +8548,34 @@ Login Core/Provider/RegistrationServiceProvider.php api/auth/end_user_authorization.html.twig - web/common/dialog_export.html.twig - web/admin/users.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig + web/account/reset-email.html.twig web/account/account.html.twig web/account/account.html.twig - web/account/reset-email.html.twig + web/admin/editusers.html.twig + web/admin/users.html.twig + admin/user/registrations.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur mot de passe Password api/auth/end_user_authorization.html.twig - web/common/dialog_export.html.twig web/setup/step2.html.twig - web/account/account.html.twig web/account/reset-email.html.twig + web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur nom Last name + Controller/Admin/UserController.php Core/Provider/RegistrationServiceProvider.php Event/Subscriber/RegistrationSubscriber.php - Controller/Admin/UserController.php - web/common/dialog_export.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig - web/admin/connected-users.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig + web/admin/connected-users.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur nouvelle adresse email @@ -8591,42 +8591,42 @@ admin::compte-utilisateur poste Job - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur prenom First name + Controller/Admin/UserController.php Core/Provider/RegistrationServiceProvider.php Event/Subscriber/RegistrationSubscriber.php - Controller/Admin/UserController.php - web/common/dialog_export.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur sexe Gender Core/Provider/RegistrationServiceProvider.php - web/admin/editusers.html.twig web/account/account.html.twig + web/admin/editusers.html.twig admin::compte-utilisateur societe Company - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig + Core/Provider/RegistrationServiceProvider.php + web/account/account.html.twig + web/admin/editusers.html.twig web/admin/users.html.twig admin/user/registrations.html.twig - web/admin/editusers.html.twig web/admin/connected-users.html.twig - web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur tel @@ -8637,11 +8637,11 @@ admin::compte-utilisateur telephone Phone Controller/Admin/UserController.php - web/common/dialog_export.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig - web/admin/connected-users.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig + web/admin/connected-users.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur un email de confirmation vient de vous etre envoye. Veuillez suivre les instructions contenue pour continuer @@ -8651,11 +8651,11 @@ admin::compte-utilisateur ville City - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur: L'email a correctement ete mis a jour @@ -8705,8 +8705,8 @@ admin::compte-utilisateur:ftp: repertoire de destination ftp Ftp reception folder - web/common/dialog_export.html.twig web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur:ftp: Activer le compte FTP @@ -8721,14 +8721,14 @@ admin::compte-utilisateur:ftp: Nombre d'essais max Max. retry - web/common/dialog_export.html.twig web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur:ftp: Utiliser le mode passif Use passive mode - web/common/dialog_export.html.twig web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur:ftp: creer un dossier @@ -8749,25 +8749,25 @@ admin::compte-utilisateur:sexe: madame Mrs. Core/Provider/RegistrationServiceProvider.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur:sexe: mademoiselle Miss Core/Provider/RegistrationServiceProvider.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur:sexe: monsieur Mr. Core/Provider/RegistrationServiceProvider.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::monitor: bases sur lesquelles l'utilisateur est connecte : @@ -8787,26 +8787,26 @@ admin::monitor: module admin Admin - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php - web/common/menubar.html.twig + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig + web/common/menubar.html.twig admin::monitor: module client Client - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php classes/record/preview.php classes/record/preview.php classes/record/preview.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig admin::monitor: module comparateur Lightbox - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig @@ -8817,44 +8817,44 @@ admin::monitor: module production Production - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php classes/record/preview.php classes/record/preview.php classes/record/preview.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig admin::monitor: module report Report - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php - web/common/menubar.html.twig + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig + web/common/menubar.html.twig admin::monitor: module thesaurus Thesaurus - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php - web/common/menubar.html.twig + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig + web/common/menubar.html.twig admin::monitor: module upload Upload - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/common/menubar.html.twig admin::monitor: module validation Lightbox - Controller/Admin/ConnectedUsersController.php + lib/classes/phrasea.php Phrasea/Controller/LightboxController.php Phrasea/Controller/LightboxController.php Phrasea/Controller/LightboxController.php - lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/common/menubar.html.twig @@ -9065,14 +9065,14 @@ admin::utilisateurs: utilisateurs connectes Connected users - web/admin/connected-users.html.twig web/admin/tree.html.twig + web/admin/connected-users.html.twig alert Warning - actions/Tools/index.html.twig actions/Tools/videoEditor.html.twig + actions/Tools/index.html.twig all caches services have been flushed @@ -9113,8 +9113,8 @@ audio audio Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig avril @@ -9139,14 +9139,14 @@ basket:action:delete record form basket Delete record from basket - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig basket:action:delete record form database Delete record from database - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig be notified when a document is placed in quarantine @@ -9156,12 +9156,12 @@ boutton:: selectionner aucune base None - web/prod/index.html.twig + web/prod/index.html.twig boutton:: selectionner toutes les bases All - web/prod/index.html.twig + web/prod/index.html.twig boutton::ajouter @@ -9175,35 +9175,35 @@ Cancel Controller/Prod/LanguageController.php Controller/Prod/LanguageController.php - prod/actions/edit_default.html.twig - prod/actions/edit_default.html.twig + Bridge/Dailymotion/video_modify.html.twig + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photo_modify.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/video_modify.html.twig - Bridge/Dailymotion/video_modify.html.twig - web/thesaurus/new-term.html.twig - web/thesaurus/new-term.html.twig + prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig + web/thesaurus/export-text-dialog.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig - web/thesaurus/link-field-step2.html.twig web/thesaurus/import-dialog.html.twig + web/thesaurus/link-field-step2.html.twig web/thesaurus/accept.html.twig web/thesaurus/accept.html.twig - web/thesaurus/export-text-dialog.html.twig - web/thesaurus/link-field-step1.html.twig web/thesaurus/export-topics-dialog.html.twig + web/thesaurus/new-term.html.twig + web/thesaurus/new-term.html.twig + web/thesaurus/link-field-step1.html.twig + web/account/reset-email.html.twig + admin/publications/fiche.html.twig + admin/collection/create.html.twig + web/admin/index.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig - web/admin/index.html.twig - admin/collection/create.html.twig - admin/publications/fiche.html.twig web/report/all_content.html.twig - web/account/reset-email.html.twig boutton::appliquer @@ -9221,8 +9221,8 @@ boutton::choisir Choose - web/admin/users.html.twig web/admin/editusers.html.twig + web/admin/users.html.twig boutton::commander @@ -9238,8 +9238,8 @@ boutton::demarrer Slideshow - web/lightbox/feed_options_box.html.twig web/lightbox/sc_options_box.html.twig + web/lightbox/feed_options_box.html.twig boutton::editer @@ -9272,15 +9272,15 @@ boutton::fermer Close Controller/Prod/LanguageController.php + prod/actions/Push.html.twig prod/actions/edit_default.html.twig prod/actions/edit_default.html.twig - prod/actions/Push.html.twig - web/lightbox/sc_note.html.twig - web/thesaurus/export-topics.html.twig + web/thesaurus/properties.html.twig web/thesaurus/accept.html.twig web/thesaurus/accept.html.twig - web/thesaurus/properties.html.twig + web/thesaurus/export-topics.html.twig web/thesaurus/link-field-step3.html.twig + web/lightbox/sc_note.html.twig web/common/dialog_export.html.twig web/report/all_content.html.twig @@ -9292,14 +9292,14 @@ boutton::imprimer Print - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig boutton::modifier Modify + Bridge/Dailymotion/actionelement.html.twig Bridge/Youtube/actionelement.html.twig Bridge/Flickr/actionelement.html.twig - Bridge/Dailymotion/actionelement.html.twig web/admin/users.html.twig @@ -9310,22 +9310,22 @@ boutton::pause Pause - web/lightbox/feed_options_box.html.twig web/lightbox/sc_options_box.html.twig + web/lightbox/feed_options_box.html.twig boutton::precedent Previous - web/lightbox/feed_options_box.html.twig - web/lightbox/feed_options_box.html.twig - web/lightbox/sc_options_box.html.twig - web/lightbox/sc_options_box.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig + web/lightbox/sc_options_box.html.twig + web/lightbox/sc_options_box.html.twig + web/lightbox/feed_options_box.html.twig + web/lightbox/feed_options_box.html.twig boutton::rechercher @@ -9356,26 +9356,26 @@ boutton::retour Back - Bridge/Youtube/video_moveinto_playlist.html.twig - Bridge/Youtube/video_deleteelement.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig - Bridge/Youtube/playlist_deleteelement.html.twig - Bridge/Flickr/photoset_deleteelement.html.twig - Bridge/Flickr/photoset_createcontainer.html.twig - Bridge/Flickr/photo_deleteelement.html.twig - Bridge/Flickr/photo_moveinto_photoset.html.twig - Bridge/Dailymotion/video_moveinto_playlist.html.twig Bridge/Dailymotion/video_deleteelement.html.twig Bridge/Dailymotion/playlist_createcontainer.html.twig + Bridge/Dailymotion/video_moveinto_playlist.html.twig Bridge/Dailymotion/playlist_deleteelement.html.twig - web/developers/application_form.html.twig - web/developers/application.html.twig - admin/collection/details.html.twig - user/import/file.html.twig - admin/databox/details.html.twig + Bridge/Youtube/video_deleteelement.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/video_moveinto_playlist.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig + Bridge/Flickr/photo_deleteelement.html.twig + Bridge/Flickr/photoset_deleteelement.html.twig + Bridge/Flickr/photo_moveinto_photoset.html.twig + Bridge/Flickr/photoset_createcontainer.html.twig web/admin/editusers.html.twig admin/publications/fiche.html.twig + admin/databox/details.html.twig + admin/collection/details.html.twig + user/import/file.html.twig admin/statusbit/edit.html.twig + web/developers/application_form.html.twig + web/developers/application.html.twig boutton::retry @@ -9385,54 +9385,54 @@ boutton::suivant Next - web/lightbox/feed_options_box.html.twig - web/lightbox/feed_options_box.html.twig - web/lightbox/sc_options_box.html.twig - web/lightbox/sc_options_box.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig + web/lightbox/sc_options_box.html.twig + web/lightbox/sc_options_box.html.twig + web/lightbox/feed_options_box.html.twig + web/lightbox/feed_options_box.html.twig boutton::supprimer Delete Controller/Prod/LanguageController.php - web/prod/index.html.twig actions/Bridge/disconnected.html.twig + Bridge/Dailymotion/actionelements.html.twig + Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actionelements.html.twig Bridge/Youtube/actioncontainers.html.twig Bridge/Flickr/actionelements.html.twig Bridge/Flickr/actioncontainers.html.twig - Bridge/Dailymotion/actionelements.html.twig - Bridge/Dailymotion/actioncontainers.html.twig prod/results/feeds_entry.html.twig prod/results/entry.html.twig + web/prod/index.html.twig web/thesaurus/presets.html.twig - admin/collection/suggested_value.html.twig + admin/publications/fiche.html.twig + admin/publications/list.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig - admin/publications/list.html.twig - admin/publications/fiche.html.twig + admin/collection/suggested_value.html.twig web/admin/subdefs.html.twig boutton::telecharger Download - web/lightbox/feed_options_box.html.twig web/lightbox/sc_options_box.html.twig + web/lightbox/feed_options_box.html.twig web/common/dialog_export.html.twig boutton::telecharger tous les documents Download all + web/lightbox/feed.html.twig lightbox/IE6/feed.html.twig lightbox/IE6/validate.html.twig - web/lightbox/feed.html.twig web/lightbox/validate.html.twig @@ -9445,57 +9445,57 @@ boutton::valider Validate Controller/Prod/LanguageController.php - web/prod/index.html.twig - prod/actions/edit_default.html.twig - prod/actions/edit_default.html.twig - Bridge/Youtube/video_moveinto_playlist.html.twig - Bridge/Youtube/video_deleteelement.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig - Bridge/Youtube/playlist_deleteelement.html.twig - Bridge/Youtube/video_modify.html.twig - Bridge/Flickr/photoset_deleteelement.html.twig - Bridge/Flickr/photoset_createcontainer.html.twig - Bridge/Flickr/photo_deleteelement.html.twig - Bridge/Flickr/photo_modify.html.twig - Bridge/Flickr/photo_moveinto_photoset.html.twig - Bridge/Dailymotion/video_moveinto_playlist.html.twig - Bridge/Dailymotion/video_deleteelement.html.twig - Bridge/Dailymotion/playlist_createcontainer.html.twig - Bridge/Dailymotion/playlist_deleteelement.html.twig - Bridge/Dailymotion/video_modify.html.twig - prod/Story/Reorder.html.twig + mobile/lightbox/note_form.html.twig prod/Baskets/Update.html.twig prod/Baskets/Reorder.html.twig - web/developers/application_form.html.twig + Bridge/Dailymotion/video_deleteelement.html.twig + Bridge/Dailymotion/playlist_createcontainer.html.twig + Bridge/Dailymotion/video_moveinto_playlist.html.twig + Bridge/Dailymotion/video_modify.html.twig + Bridge/Dailymotion/playlist_deleteelement.html.twig + Bridge/Youtube/video_deleteelement.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/video_moveinto_playlist.html.twig + Bridge/Youtube/video_modify.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig + Bridge/Flickr/photo_deleteelement.html.twig + Bridge/Flickr/photoset_deleteelement.html.twig + Bridge/Flickr/photo_moveinto_photoset.html.twig + Bridge/Flickr/photoset_createcontainer.html.twig + Bridge/Flickr/photo_modify.html.twig + prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig + prod/Story/Reorder.html.twig + web/prod/index.html.twig + web/thesaurus/export-text-dialog.html.twig + web/thesaurus/thesaurus.html.twig + web/thesaurus/import-dialog.html.twig + web/thesaurus/link-field-step2.html.twig + web/thesaurus/accept.html.twig + web/thesaurus/export-topics-dialog.html.twig web/thesaurus/index.html.twig web/thesaurus/new-term.html.twig web/thesaurus/new-term.html.twig - web/thesaurus/thesaurus.html.twig - web/thesaurus/link-field-step2.html.twig - web/thesaurus/import-dialog.html.twig - web/thesaurus/accept.html.twig - web/thesaurus/export-text-dialog.html.twig web/thesaurus/link-field-step1.html.twig - web/thesaurus/export-topics-dialog.html.twig - admin/collection/suggested_value.html.twig + web/account/access.html.twig + web/account/reset-email.html.twig + web/account/account.html.twig + web/admin/dashboard.html.twig + web/admin/editusers.html.twig + admin/publications/fiche.html.twig + admin/publications/list.html.twig + web/admin/setup.html.twig admin/collection/create.html.twig admin/collection/reorder.html.twig admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig + web/admin/subdefs.html.twig + web/admin/structure.html.twig user/import/view.html.twig admin/user/registrations.html.twig - web/admin/structure.html.twig - web/admin/setup.html.twig - web/admin/editusers.html.twig - admin/publications/list.html.twig - admin/publications/fiche.html.twig - web/admin/dashboard.html.twig admin/statusbit/edit.html.twig - web/admin/subdefs.html.twig + web/developers/application_form.html.twig web/report/all_content.html.twig - web/account/access.html.twig - web/account/account.html.twig - web/account/reset-email.html.twig - mobile/lightbox/note_form.html.twig boutton::vue graphique @@ -9592,9 +9592,9 @@ choisir Select - web/prod/index.html.twig - admin/collection/create.html.twig + web/prod/index.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig classe @@ -9621,10 +9621,10 @@ copyClipboardLabel Copy to clipboard + prod/results/infos.html.twig prod/Share/record.html.twig prod/Share/record.html.twig prod/Share/record.html.twig - prod/results/infos.html.twig create_subdef_button_label @@ -9636,14 +9636,14 @@ Access right : web/admin/subdefs.html.twig - + create_subdef_modal_access_class_document - "Documents" Right + "Documents" Right web/admin/subdefs.html.twig - + create_subdef_modal_access_class_no_restriction - No Restriction (Protect with hash) + No Restriction (Hash protected) web/admin/subdefs.html.twig @@ -9656,9 +9656,9 @@ Presets web/admin/subdefs.html.twig - + create_subdef_modal_preview_mediatype - Preview Media Type (mime type) : + Preview Media Type (mime type) : web/admin/subdefs.html.twig @@ -9674,7 +9674,7 @@ created_on created on - web/prod/index.html.twig + web/prod/index.html.twig dans %category% @@ -9705,7 +9705,7 @@ delete Delete - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig descendant @@ -9721,9 +9721,9 @@ document document Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig document original @@ -9734,7 +9734,7 @@ edit edit - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig web/account/account.html.twig web/account/account.html.twig web/account/account.html.twig @@ -9814,7 +9814,7 @@ export:: erreur : aucun document selectionne Error : no document selected - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig export:: telechargement @@ -9880,8 +9880,8 @@ flash flash Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig for the following reasons : %reasons% @@ -9945,6 +9945,17 @@ Modifications done admin/databox/databox.html.twig + + help::help-search: OR + OR + prod/results/help.html.twig + + + help::help-search: relaunch search without filter + Remove all filters and relaunch search + prod/results/help.html.twig + web/prod/index.html.twig + help::help-section-bullet: check-spelling Check that there are no misspellings or typing errors. @@ -10004,8 +10015,8 @@ image Image Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig image rotation @@ -10020,42 +10031,42 @@ index::advance_search: disable-facet Hide facets with 1 result (experimental) - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet Facets Preferences - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet-order Facets order - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet-tech-order Default order - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet-values-order Facets values order - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: hidden-facet-values-order Hidden Facets - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: order-by-hits Order by hits - web/prod/index.html.twig + web/prod/index.html.twig index:advanced-preferences:: use truncation use truncation - web/prod/index.html.twig + web/prod/index.html.twig invite:: Redirection vers la zone d'authentification, cliquez sur OK pour continuer ou annulez @@ -10087,6 +10098,16 @@ Service will be available again in a few minutes actions/Bridge/deactivated.html.twig + + lightbox::See_less_feedback + See less feedback + web/lightbox/index.html.twig + + + lightbox::See_more_feedback + See more feedback + web/lightbox/index.html.twig + lightbox::list Summary @@ -10095,9 +10116,19 @@ lightbox::recaptitulatif Summary + mobile/lightbox/validate.html.twig web/lightbox/agreement_box.html.twig web/lightbox/validate.html.twig - mobile/lightbox/validate.html.twig + + + lightbox::see_less_basket + See less baskets + web/lightbox/index.html.twig + + + lightbox::see_more_basket + See more baskets + web/lightbox/index.html.twig login:: Changer mon adresse email @@ -10117,10 +10148,10 @@ login:: Mon compte My account + mobile/common/menubar.html.twig + web/account/account.html.twig web/common/menubar.html.twig web/common/menubar.html.twig - web/account/account.html.twig - mobile/common/menubar.html.twig login:: Visitez le lien suivant et suivez les instructions pour continuer, sinon ignorez cet email et il ne se passera rien @@ -10156,8 +10187,8 @@ login::notification: Mise a jour du mot de passe avec succes Password update done - Controller/Root/AccountController.php Controller/Root/LoginController.php + Controller/Root/AccountController.php login::notification: demande de confirmation par mail envoyee @@ -10179,8 +10210,8 @@ login::register: sujet email : confirmation de votre adresse email E-mail address check. - Notification/Mail/MailRequestEmailConfirmation.php Notification/Mail/MailRequestEmailUpdate.php + Notification/Mail/MailRequestEmailConfirmation.php login::register:email: Voici un compte rendu du traitement de vos demandes d'acces : @@ -10246,16 +10277,16 @@ no No - web/common/technical_datas.html.twig - user/import/view.html.twig - web/admin/subdefs.html.twig web/account/sessions.html.twig + web/admin/subdefs.html.twig + user/import/view.html.twig + web/common/technical_datas.html.twig no image selected No Document selected - actions/Tools/index.html.twig actions/Tools/videoEditor.html.twig + actions/Tools/index.html.twig non @@ -10266,9 +10297,9 @@ notice Caption + web/lightbox/feed.html.twig lightbox/IE6/feed.html.twig lightbox/IE6/validate.html.twig - web/lightbox/feed.html.twig web/lightbox/validate.html.twig @@ -10572,17 +10603,17 @@ panier:: ordre Validation ascendante Most approved - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig panier:: ordre Validation descendante Less approved - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig panier:: ordre du panier Basket order - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig panier:: renommer le panier @@ -10607,7 +10638,7 @@ paniers:: panier recu de %pusher% Basket received from %pusher% - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig paniers::Vous etes sur le point de supprimer ce panier. Cette action est irreversible. Souhaitez-vous continuer ? @@ -10617,8 +10648,8 @@ paniers::description du nouveau panier Caption - prod/orders/order_item.html.twig prod/Baskets/Create.html.twig + prod/orders/order_item.html.twig par %user_name% @@ -10684,11 +10715,11 @@ phraseanet:: adresse Address - web/common/dialog_export.html.twig web/setup/step2.html.twig + web/account/account.html.twig admin/collection/collection.html.twig web/admin/connected-users.html.twig - web/account/account.html.twig + web/common/dialog_export.html.twig phraseanet:: aide @@ -10696,14 +10727,14 @@ web/common/menubar.html.twig web/common/menubar.html.twig - + phraseanet:: basket feedback - Feedback report with description + Feedback report with caption prod/actions/printer_default.html.twig - + phraseanet:: baskets - phraseanet:: baskets + Workzone tab web/prod/tab_headers.html.twig @@ -10732,8 +10763,8 @@ phraseanet:: details Details - admin/collection/collection.html.twig admin/databox/databox.html.twig + admin/collection/collection.html.twig phraseanet:: hostname @@ -10778,7 +10809,7 @@ phraseanet:: preview Preview prod/actions/edit_default.html.twig - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig phraseanet:: propositions @@ -10801,13 +10832,13 @@ phraseanet:: thesaurus Thesaurus - web/prod/tab_headers.html.twig prod/actions/edit_default.html.twig - web/thesaurus/index.html.twig + web/prod/tab_headers.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/load-thesaurus.html.twig web/thesaurus/load-thesaurus.html.twig + web/thesaurus/index.html.twig phraseanet:: tri @@ -11012,12 +11043,12 @@ phraseanet::time:: a To - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::time:: de From - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::type:: audios @@ -11027,8 +11058,8 @@ phraseanet::type:: documents Documents - web/prod/index.html.twig web/prod/toolbar.html.twig + web/prod/index.html.twig phraseanet::type:: images @@ -11063,35 +11094,35 @@ preview:: Description Caption - web/prod/index.html.twig + web/prod/index.html.twig preview:: Historique Timeline - web/prod/index.html.twig + web/prod/index.html.twig preview:: Popularite Statistics - web/prod/index.html.twig + web/prod/index.html.twig preview:: arreter le diaporama Stop - prod/preview/result_train.html.twig prod/preview/basket_train.html.twig - prod/preview/feed_train.html.twig - prod/preview/result_train_options.html.twig + prod/preview/result_train.html.twig prod/preview/reg_train.html.twig + prod/preview/result_train_options.html.twig + prod/preview/feed_train.html.twig preview:: demarrer le diaporama Slideshow - prod/preview/result_train.html.twig prod/preview/basket_train.html.twig - prod/preview/feed_train.html.twig - prod/preview/result_train_options.html.twig + prod/preview/result_train.html.twig prod/preview/reg_train.html.twig + prod/preview/result_train_options.html.twig + prod/preview/feed_train.html.twig preview::date @@ -11130,113 +11161,153 @@ prod/Share/record.html.twig prod/Share/record.html.twig - + print:: basket feedback - Feedback report with description + Feedback report with caption + prod/actions/printer_default.html.twig + + + print:: basket feedback only + Feedback report prod/actions/printer_default.html.twig print:: description - Description - prod/actions/printer_default.html.twig + Caption only + prod/actions/printer_default.html.twig print:: image de choix et description Preview and caption - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig print:: image de choix et description avec planche contact Preview, caption and thumbnails - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig print:: image de choix seulement Preview - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig print:: imagette Thumbnail - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig print:: liste d'imagettes Thumbnail list - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig print:: planche contact (mosaique) Thumbnails - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig - + print_feedback:: Document generated on : - Generated on : - Out/Module/PDFRecords.php + Generated on : + Out/Module/PDFRecords.php + + + print_feedback:: Feedback active + Feedback session still opened + Out/Module/PDFRecords.php + + + print_feedback:: Feedback expired + Feedback session closed + Out/Module/PDFRecords.php print_feedback:: Feedback expiring on : Feedback expiring on : - Out/Module/PDFRecords.php + Out/Module/PDFRecords.php print_feedback:: Feedback initiated by : Feedback initiated by : - Out/Module/PDFRecords.php + Out/Module/PDFRecords.php print_feedback:: Feedback initiated on : Feedback initiated on : - Out/Module/PDFRecords.php + Out/Module/PDFRecords.php print_feedback:: Feedback on basket %name% - Feedback report on basket %name% - Out/Module/PDFRecords.php + Feedback report on basket : %name% + Out/Module/PDFRecords.php print_feedback:: Non No - Out/Module/PDFRecords.php + Out/Module/PDFRecords.php - + print_feedback:: Oui - Yes - Out/Module/PDFRecords.php + Yes + Out/Module/PDFRecords.php print_feedback:: Participants : Participants list : - Out/Module/PDFRecords.php + Out/Module/PDFRecords.php - + print_feedback:: Votes : - Approvals : + Approvals : + Out/Module/PDFRecords.php + + + print_feedback:: base name: + Base Name : + Out/Module/PDFRecords.php + + + print_feedback:: document Uuid: + Document Unique Id : Out/Module/PDFRecords.php print_feedback:: non voté Unexpressed - Out/Module/PDFRecords.php + Out/Module/PDFRecords.php + + + print_feedback:: originale filename: + Original file name : + Out/Module/PDFRecords.php + + + print_feedback:: record id: + Record Id : + Out/Module/PDFRecords.php + + + print_feedback:: record title: + Record Title : + Out/Module/PDFRecords.php prive Private - Bridge/Youtube/upload.html.twig Bridge/Dailymotion/upload.html.twig + Bridge/Youtube/upload.html.twig privé Private - Bridge/Youtube/video_modify.html.twig Bridge/Dailymotion/video_modify.html.twig + Bridge/Youtube/video_modify.html.twig processing Processing... - actions/Tools/index.html.twig actions/Tools/videoEditor.html.twig + actions/Tools/index.html.twig prod::Les enregistrements ne provienent pas tous de la meme base et ne peuvent donc etre traites ensemble @@ -11252,12 +11323,12 @@ prod::advancesearch:tooltips:datefield_restriction_explanation Narrow the search results to dates - web/prod/index.html.twig + web/prod/index.html.twig prod::advancesearch:tooltips:field_restriction_explanation prod::advancesearch:tooltips:field_restriction_explanation - web/prod/index.html.twig + web/prod/index.html.twig prod::collection deplacer egalement les documents rattaches a ce(s) regroupement(s) @@ -11277,12 +11348,12 @@ prod::editing: %not_actionable% documents ne peuvent etre edites car vos droits sont induffisants Your user rights do not allow you to edit %not_actionable% documents from selection - prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig prod::editing: 1 document ne peut etre edite car vos droits sont induffisants You do not have the required permissions to edit 1 document - prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig prod::editing: aucun documents ne peuvent etre edites car vos droits sont induffisants @@ -11377,17 +11448,27 @@ prod::facet:base_label Base - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php prod::facet:collection_label Collection - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php prod::facet:doctype_label Document type - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php + + + prod::feedback:feedback_set_title + Feedback Title : + prod/templates/push.html.twig + + + prod::push:push_set_title + Name of Push Basket + prod/templates/push.html.twig prod::recherche: Attention : la liste des bases selectionnees pour la recherche a ete changee. @@ -11517,8 +11598,8 @@ prod::tools: document Document - Controller/Prod/ShareController.php Controller/Prod/ToolsController.php + Controller/Prod/ShareController.php prod:app trash: also-move-record @@ -11540,9 +11621,9 @@ prod:app trash: title-trash Controller/Prod/LanguageController.php - + prod:edit: chapters - Edit chapters + Edit chapters Controller/Prod/LanguageController.php @@ -11550,9 +11631,9 @@ No overlap for chapters Controller/Prod/LanguageController.php - + prod:edit: only a media of type video can be edited - Only video type record can be edited + Only video type record can be edited Controller/Prod/LanguageController.php @@ -11573,63 +11654,63 @@ Use grip for resize or move the area. It is possible to place several search areas Controller/Prod/LanguageController.php - + prod:mapboxgl: title map dialog - Geoloc Search + Geoloc Search Controller/Prod/LanguageController.php - + prod:mapboxgl: title notice - Geoloc Search + Help Controller/Prod/LanguageController.php - + prod:push: create new user - Create new user + Create new user Controller/Prod/LanguageController.php - + prod:push: delete selection - Delete selection + Delete Selection prod/actions/Push.html.twig public Public - Bridge/Youtube/upload.html.twig - Bridge/Youtube/video_modify.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Dailymotion/video_modify.html.twig + Bridge/Youtube/upload.html.twig + Bridge/Youtube/video_modify.html.twig publication : autheur Author - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : email autheur Author's e-mail - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : sous titre Sub Title - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : titre Title - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications. This is your personnal rss flow, it will inform you about publications - Controller/Prod/FeedController.php - Controller/Prod/FeedController.php + Controller/Prod/FeedController.php + Controller/Prod/FeedController.php publications:: s'abonner aux publications @@ -11640,14 +11721,14 @@ It is possible to place several search areas publications::Ne le partagez pas, il est strictement confidentiel Don't share it, it's yours only - Controller/Prod/FeedController.php - Controller/Prod/FeedController.php + Controller/Prod/FeedController.php + Controller/Prod/FeedController.php publications::votre rss personnel Your own rss - Controller/Prod/FeedController.php - Controller/Prod/FeedController.php + Controller/Prod/FeedController.php + Controller/Prod/FeedController.php push::mail:: Rapport de validation de %user% pour %title% @@ -11667,19 +11748,19 @@ It is possible to place several search areas raccourci :: a propos des raccourcis claviers About shortcuts - web/prod/index.html.twig + web/prod/index.html.twig raccourcis :: ne plus montrer cette aide Do not display this help anymore - web/prod/index.html.twig + web/prod/index.html.twig rafraichir Refresh + prod/WorkZone/Story.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Basket.html.twig - prod/WorkZone/Story.html.twig prod/results/feeds.html.twig prod/results/feeds.html.twig @@ -11693,39 +11774,39 @@ It is possible to place several search areas Recreate subviews actions/Tools/index.html.twig - + registration:collection.accepted - registration:collection.accepted + Granted web/account/access.html.twig - + registration:collection.active - registration:collection.active + Active web/account/access.html.twig - + registration:collection.in-time - registration:collection.in-time + Access is time limited (active) web/account/access.html.twig - + registration:collection.out-dated - registration:collection.out-dated + Out dated web/account/access.html.twig - + registration:collection.pending - registration:collection.pending + Pending web/account/access.html.twig - + registration:collection.registrable - registration:collection.registrable + Make a registration request web/account/access.html.twig - + registration:collection.rejected - registration:collection.rejected + Request denied web/account/access.html.twig @@ -11741,17 +11822,17 @@ It is possible to place several search areas reponses:: images par pages : Results per page - web/prod/index.html.twig + web/prod/index.html.twig reponses:: mode liste List - web/prod/index.html.twig + web/prod/index.html.twig reponses:: mode vignettes Thumbnails - web/prod/index.html.twig + web/prod/index.html.twig reponses:: partager @@ -11773,7 +11854,7 @@ It is possible to place several search areas reponses:: taille des images : Thumbnails size - web/prod/index.html.twig + web/prod/index.html.twig reponses::document sans titre @@ -11815,8 +11896,8 @@ It is possible to place several search areas report:: Connexion Connections classes/module/report.php - web/report/all_content.html.twig web/report/report_layout.html.twig + web/report/all_content.html.twig report:: Databox content @@ -11961,21 +12042,21 @@ It is possible to place several search areas report:: non-renseigne Not filled - module/report/nav.php + module/report/add.php + module/report/question.php + module/report/download.php module/report/activity.php module/report/activity.php module/report/activity.php - module/report/filter.php - module/report/edit.php - module/report/sent.php - module/report/download.php - module/report/add.php - module/report/validate.php - module/report/push.php - module/report/question.php module/report/connexion.php module/report/connexion.php module/report/connexion.php + module/report/push.php + module/report/sent.php + module/report/validate.php + module/report/nav.php + module/report/edit.php + module/report/filter.php report:: page d'accueil @@ -12008,8 +12089,8 @@ It is possible to place several search areas report:: question Query classes/module/report.php - module/report/filter.php module/report/question.php + module/report/filter.php report:: questions @@ -12322,14 +12403,14 @@ It is possible to place several search areas Show in language web/admin/setup.html.twig - + setup::custom-link:link-url - Destination URL + Destination URL web/admin/setup.html.twig - + setup::custom-link:location - Select a position + Select a position Form/Configuration/CustomLinkFormType.php @@ -12559,8 +12640,8 @@ It is possible to place several search areas task::ftp:proxy Proxy - task-manager/task-editor/ftp-pull.html.twig task-manager/task-editor/ftp.html.twig + task-manager/task-editor/ftp-pull.html.twig task::ftp:proxy password @@ -12570,8 +12651,8 @@ It is possible to place several search areas task::ftp:proxy port Port - task-manager/task-editor/ftp-pull.html.twig task-manager/task-editor/ftp.html.twig + task-manager/task-editor/ftp-pull.html.twig task::ftp:proxy user @@ -12682,8 +12763,8 @@ It is possible to place several search areas thesaurus:: Nouveau synonyme New Synonym - web/thesaurus/new-term.html.twig web/thesaurus/thesaurus.html.twig + web/thesaurus/new-term.html.twig thesaurus:: Nouveau terme @@ -12821,15 +12902,15 @@ It is possible to place several search areas thesaurus:: export au format texte Text - web/thesaurus/export-text.html.twig web/thesaurus/export-text-dialog.html.twig web/thesaurus/export-text-dialog.html.twig + web/thesaurus/export-text.html.twig thesaurus:: export en topics Topics - web/thesaurus/export-topics.html.twig web/thesaurus/export-topics-dialog.html.twig + web/thesaurus/export-topics.html.twig thesaurus:: exporter @@ -13114,15 +13195,15 @@ It is possible to place several search areas thesaurus::menu: supprimer Delete + web/thesaurus/properties.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig - web/thesaurus/properties.html.twig thumbnail validation Confirm thumbnail - actions/Tools/index.html.twig actions/Tools/videoEditor.html.twig + actions/Tools/index.html.twig tout le monde @@ -13157,7 +13238,7 @@ It is possible to place several search areas updated_on updated on - web/prod/index.html.twig + web/prod/index.html.twig upload:: Destination (collection) : @@ -13168,9 +13249,9 @@ It is possible to place several search areas upload:: Status : Apply status - prod/upload/lazaret.html.twig prod/upload/upload.html.twig prod/upload/upload-flash.html.twig + prod/upload/lazaret.html.twig users rights have been reseted @@ -13180,23 +13261,23 @@ It is possible to place several search areas validate Validate + actions/Tools/videoEditor.html.twig actions/Tools/index.html.twig actions/Tools/index.html.twig actions/Tools/index.html.twig actions/Tools/index.html.twig - actions/Tools/videoEditor.html.twig validation:: NON NO - web/lightbox/agreement_box.html.twig mobile/lightbox/basket_element.html.twig + web/lightbox/agreement_box.html.twig validation:: OUI YES - web/lightbox/agreement_box.html.twig mobile/lightbox/basket_element.html.twig + web/lightbox/agreement_box.html.twig validation:: editer ma note @@ -13216,10 +13297,10 @@ It is possible to place several search areas validation::envoyer mon rapport Send my feedback - web/lightbox/basket_options.html.twig - web/lightbox/basket_options.html.twig mobile/lightbox/validate.html.twig mobile/lightbox/validate.html.twig + web/lightbox/basket_options.html.twig + web/lightbox/basket_options.html.twig version @@ -13234,25 +13315,25 @@ It is possible to place several search areas video Video - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig video range extractor Video Chapter Editing actions/Tools/videoEditor.html.twig - + video tool - Thumbnail definition + Thumbnail Tools actions/Tools/videoEditor.html.twig yes Yes - web/common/technical_datas.html.twig - web/admin/subdefs.html.twig web/account/sessions.html.twig + web/admin/subdefs.html.twig + web/common/technical_datas.html.twig you are about to change the representation thumbnail of your video diff --git a/resources/locales/messages.fr.xlf b/resources/locales/messages.fr.xlf index 1049880237..e881bbd9a1 100644 --- a/resources/locales/messages.fr.xlf +++ b/resources/locales/messages.fr.xlf @@ -1,6 +1,6 @@ - +
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. @@ -9,8 +9,8 @@ - Form/Configuration/EmailFormType.php Form/Login/PhraseaAuthenticationForm.php + Form/Configuration/EmailFormType.php Add @@ -24,7 +24,7 @@ url through a forwarded mail for example. L'option "Forcer l'authentification des utilisateurs" contraint les destinataires à s'authentifier pour accéder au contenu diffusé. Cela interdit l'accès aux documents à des personnes auprès desquels l'URL aurait été divulguée, notamment par un transfert d'e-mail. - prod/templates/push.html.twig + prod/templates/push.html.twig {0} No results|{1} Result|]1,Inf[ Results @@ -117,9 +117,9 @@ %basket_length% documents %basket_length% documents - web/lightbox/index.html.twig - web/lightbox/index.html.twig mobile/lightbox/validate.html.twig + web/lightbox/index.html.twig + web/lightbox/index.html.twig %countable% documents can not be modified. @@ -192,22 +192,22 @@ %nb_records% records %nb_records% enregistrement(s) - prod/Tooltip/Basket.html.twig prod/Tooltip/Story.html.twig + prod/Tooltip/Basket.html.twig %nb_view% vue %nb_view% vue + Bridge/Dailymotion/element_informations.html.twig Bridge/Youtube/element_informations.html.twig Bridge/Flickr/element_informations.html.twig - Bridge/Dailymotion/element_informations.html.twig %nb_view% vues %nb_view% vues + Bridge/Dailymotion/element_informations.html.twig Bridge/Youtube/element_informations.html.twig Bridge/Flickr/element_informations.html.twig - Bridge/Dailymotion/element_informations.html.twig selectionnes]]> @@ -278,7 +278,7 @@ %record_count% records match the unique identifier : %record_count% enregistrements correspondent à des identifiants uniques existants: - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig %s field has been created with success. @@ -383,17 +383,17 @@ (validation) a envoyer Rapport de validation à envoyer - web/lightbox/index.html.twig + web/lightbox/index.html.twig (validation) envoyee Rapport de validation envoyé - web/lightbox/index.html.twig + web/lightbox/index.html.twig (validation) session terminee Session terminée - web/lightbox/index.html.twig + web/lightbox/index.html.twig *Phraseanet Navigator* is a smartphone application that allow user to connect on this instance @@ -453,8 +453,8 @@ A A - web/admin/editusers_timelimit_sbas.html.twig web/admin/editusers_timelimit.html.twig + web/admin/editusers_timelimit_sbas.html.twig A document has been quarantined @@ -489,7 +489,7 @@ A record matches the unique identifier : Un enregistrement correspond à un identifiant unique existant : - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig A required field is missing or has an empty value @@ -617,7 +617,7 @@ Accuse de reception Accusé de réception Controller/Prod/LanguageController.php - prod/templates/push.html.twig + prod/templates/push.html.twig Accuse de reception indisponible, vous n'avez pas declare d'adresse email @@ -627,22 +627,22 @@ Action Forbidden : You are not the publisher Action non autorisée: Vous n'êtes pas la personne qui a publié - Controller/Prod/FeedController.php + Controller/Prod/FeedController.php Actions Actions + Bridge/Dailymotion/actionelements.html.twig + Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actionelements.html.twig Bridge/Youtube/actioncontainers.html.twig Bridge/Flickr/actionelements.html.twig Bridge/Flickr/actioncontainers.html.twig - Bridge/Dailymotion/actionelements.html.twig - Bridge/Dailymotion/actioncontainers.html.twig Activate highlight Activer le surlignage (beta). Impacte les performances de recherche - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig @@ -654,8 +654,8 @@ Activer Activer admin/databox/databox.html.twig - web/admin/editusers_timelimit_sbas.html.twig web/admin/editusers_timelimit.html.twig + web/admin/editusers_timelimit_sbas.html.twig Activer le grant_type de type password pour votre application @@ -676,9 +676,9 @@ Add Ajouter prod/actions/Push.html.twig - prod/User/Add.html.twig - prod/upload/lazaret.html.twig - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig + prod/User/Add.html.twig Add a @@ -696,9 +696,9 @@ Ajouter un nouveau champ admin/fields/templates.html.twig - + Add a position - Ajouter une position + Ajouter une position Controller/Prod/LanguageController.php @@ -776,37 +776,42 @@ Affichage Affichage - web/prod/index.html.twig + web/prod/index.html.twig Affichage au demarrage Afficher au démarrage - web/prod/index.html.twig + web/prod/index.html.twig Afficher la fiche descriptive Afficher la notice - web/prod/index.html.twig + web/prod/index.html.twig Afficher le titre Afficher le titre - web/prod/index.html.twig + web/prod/index.html.twig Afficher les status Afficher les Status - web/prod/index.html.twig + web/prod/index.html.twig Afficher une icone Afficher une icône - web/prod/index.html.twig + web/prod/index.html.twig After metadata Dans l'infobulle de description, après les métadonnées - web/prod/index.html.twig + web/prod/index.html.twig + + + Aggregated + Aggregated + admin/search-engine/general-aggregation.html.twig Aggregation @@ -816,7 +821,7 @@ Aide Aide - web/prod/index.html.twig + web/prod/index.html.twig Aide sur les expressions regulieres @@ -826,16 +831,16 @@ Ajouter a Ajouter à + Bridge/Dailymotion/actionelements.html.twig Bridge/Youtube/actionelements.html.twig Bridge/Flickr/actionelements.html.twig - Bridge/Dailymotion/actionelements.html.twig Ajouter ma selection courrante Ajouter ma sélection courante - prod/orders/order_item.html.twig - prod/Story/Create.html.twig prod/Baskets/Create.html.twig + prod/Story/Create.html.twig + prod/orders/order_item.html.twig Ajouter un nouvel utilisateur @@ -856,24 +861,19 @@ All Tout Form/Configuration/CustomLinkFormType.php + WorkZone/Browser/Browser.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig - WorkZone/Browser/Browser.html.twig task-manager/task-editor/subdefs.html.twig All these conditions Toutes les conditions - web/prod/index.html.twig - - - All values - Toutes les valeurs - admin/fields/templates.html.twig + web/prod/index.html.twig Aller a @@ -938,14 +938,14 @@ Alphabetic asc Alphabétique asc - web/prod/index.html.twig - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Alphabetic desc Alphabétique desc - web/prod/index.html.twig + web/prod/index.html.twig Also delete records that rely on groupings. @@ -957,6 +957,16 @@ Une erreur est survenue. Model/Manipulator/LazaretManipulator.php Model/Manipulator/LazaretManipulator.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php Controller/Admin/DataboxesController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php @@ -969,27 +979,17 @@ Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php + Controller/Prod/BasketController.php + Controller/Prod/ToolsController.php Controller/Prod/LazaretController.php Controller/Prod/MoveCollectionController.php - Controller/Prod/ToolsController.php - Controller/Prod/BasketController.php Controller/Prod/StoryController.php - admin/collection/suggested_value.html.twig - admin/collection/collection.html.twig web/admin/users.html.twig - task-manager/task-editor/task.html.twig admin/databox/databox.html.twig web/admin/databases.html.twig + admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig + task-manager/task-editor/task.html.twig An error occured when wanting to change status! @@ -1031,9 +1031,9 @@ An error occurred Une erreur est survenue Order/Controller/ProdOrderController.php - Controller/Admin/CollectionController.php - Controller/Admin/SearchEngineController.php Controller/Admin/DataboxController.php + Controller/Admin/SearchEngineController.php + Controller/Admin/CollectionController.php Controller/Prod/BasketController.php Controller/Api/V3Controller.php Controller/Api/V1Controller.php @@ -1068,7 +1068,7 @@ Aperture Ouverture - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php web/common/technical_datas.html.twig @@ -1129,14 +1129,14 @@ Apply a template Appliquer un modèle - web/admin/users.html.twig web/admin/editusers.html.twig + web/admin/users.html.twig Apply changes Appliquer les modifications - actions/Property/index.html.twig actions/Property/type.html.twig + actions/Property/index.html.twig Apply status on story children. @@ -1156,8 +1156,8 @@ Archive Archiver - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig Are you sure you want delete users rights ? @@ -1281,7 +1281,7 @@ Audio Samplerate Fréquence d'échantillonnage - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Audio channel @@ -1291,7 +1291,7 @@ Audio codec Encodeur Audio - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php AudioSamplerate @@ -1367,20 +1367,20 @@ Autorisation d'acces Autorisation d'accès - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Autoriser Autoriser - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ? Autorisez-vous l'application %application_name% a accéder à votre contenu sur %home_title% ? - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Available in multi-export tab @@ -1395,10 +1395,10 @@ Back Retour + mobile/lightbox/basket_element.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig - mobile/lightbox/basket_element.html.twig mobile/lightbox/validate.html.twig @@ -1419,10 +1419,10 @@ Bad request format, only JSON is allowed Mauvais format de requête. Seul JSON est autorisé. + Controller/Root/AccountController.php + Controller/Admin/DataboxController.php Controller/Admin/RootController.php Controller/Admin/RootController.php - Controller/Admin/DataboxController.php - Controller/Root/AccountController.php Bad request, please contact an admin @@ -1437,9 +1437,9 @@ Base %base% Base %base% - web/admin/editusers_timelimit_sbas.html.twig - web/admin/editusers_timelimit.html.twig web/admin/editusers_quotas.html.twig + web/admin/editusers_timelimit.html.twig + web/admin/editusers_timelimit_sbas.html.twig Base could not be created @@ -1451,6 +1451,11 @@ Base vidée avec succès Controller/Admin/DataboxController.php + + Basket + Basket + prod/WorkZone/Macros.html.twig + Basket created Panier créé @@ -1549,7 +1554,7 @@ By field Par champ - web/prod/index.html.twig + web/prod/index.html.twig CHAMPS @@ -1559,7 +1564,7 @@ Camera Model Type d'appareil numérique - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php web/common/technical_datas.html.twig @@ -1567,12 +1572,12 @@ Annuler Controller/Prod/LanguageController.php prod/actions/delete_records_confirm.html.twig - actions/Property/index.html.twig actions/Property/type.html.twig - prod/User/Add.html.twig - admin/fields/templates.html.twig + actions/Property/index.html.twig + prod/User/Add.html.twig task-manager/task-editor/task.html.twig user/import/view.html.twig + admin/fields/templates.html.twig Cancel all @@ -1598,9 +1603,9 @@ Categorie Catégorie + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/upload.html.twig Bridge/Youtube/video_modify.html.twig - Bridge/Dailymotion/video_modify.html.twig Ce champ est decrit comme element du %DublinCoreElementSet% @@ -1630,14 +1635,14 @@ Ce champ est obligatoire Ce champ est obligatoire - Bridge/Api/Dailymotion.php - Bridge/Api/Dailymotion.php + Bridge/Api/Flickr.php + Bridge/Api/Flickr.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php - Bridge/Api/Flickr.php - Bridge/Api/Flickr.php + Bridge/Api/Dailymotion.php + Bridge/Api/Dailymotion.php Ce champ est relie a une branche de thesaurus @@ -1658,12 +1663,12 @@ Ce champ est trop long %length% caracteres max Ce champ est trop long (%length% caractères max.) - Bridge/Api/Dailymotion.php - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php + Bridge/Api/Dailymotion.php Ce champ est utilise en titre a l'affichage @@ -1739,8 +1744,8 @@ Choisir Choisir - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig web/admin/subdefs.html.twig web/admin/subdefs.html.twig web/admin/subdefs.html.twig @@ -1752,19 +1757,14 @@ Choose a new password Choisissez un nouveau mot de passe - web/login/renew-password.html.twig web/account/change-password.html.twig + web/login/renew-password.html.twig Choose the title of the document to export Choix du nom de fichier à l'export du document Form/Configuration/ActionsFormType.php - - City - Ville - prod/User/Add.html.twig - Civility Civilité @@ -1773,8 +1773,8 @@ Clear Effacer - admin/task-manager/log_scheduler.html.twig admin/task-manager/log_task.html.twig + admin/task-manager/log_scheduler.html.twig Clear list @@ -1822,14 +1822,14 @@ Collection Collection prod/Story/Create.html.twig - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig admin/databox/details.html.twig Collection %collection% Collection %collection% - web/admin/editusers_timelimit.html.twig web/admin/editusers_quotas.html.twig + web/admin/editusers_timelimit.html.twig Collection empty successful @@ -1839,7 +1839,7 @@ Collection order Ordre des collections - web/prod/index.html.twig + web/prod/index.html.twig Color Depth @@ -1854,13 +1854,13 @@ Colorspace Espace colorimétrique - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Commande Commande - eventsmanager/notify/orderdeliver.php eventsmanager/notify/ordernotdelivered.php + eventsmanager/notify/orderdeliver.php Commande du %date% @@ -1892,10 +1892,10 @@ Confidentialite Confidentialité - Bridge/Youtube/upload.html.twig - Bridge/Youtube/video_modify.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Dailymotion/video_modify.html.twig + Bridge/Youtube/upload.html.twig + Bridge/Youtube/video_modify.html.twig Confidentialite : privee @@ -1910,7 +1910,7 @@ Configuration Configuration - web/prod/index.html.twig + web/prod/index.html.twig Confirm new email address @@ -1935,13 +1935,13 @@ Connection Connexion - web/login/index.html.twig - web/login/index.html.twig - login/oauth/login.html.twig login/providers/mapping.html.twig login/providers/mapping.html.twig login/providers/bind.html.twig login/providers/bind.html.twig + web/login/index.html.twig + web/login/index.html.twig + login/oauth/login.html.twig Connection is OK but database does not exists or can not be accessed @@ -1966,7 +1966,7 @@ Contains Contient - web/prod/index.html.twig + web/prod/index.html.twig Continuer ? @@ -2021,7 +2021,7 @@ Couleur de selection Couleur de sélection - web/prod/index.html.twig + web/prod/index.html.twig Country @@ -2042,7 +2042,7 @@ Create index Créer les index - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php Creation date @@ -2062,9 +2062,9 @@ Creer Créer + Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actioncontainers.html.twig Bridge/Flickr/actioncontainers.html.twig - Bridge/Dailymotion/actioncontainers.html.twig Creer la tache d'ecriture des metadonnees @@ -2109,8 +2109,8 @@ Creer une playlist Créer une liste de lecture - Bridge/Youtube/playlist_createcontainer.html.twig Bridge/Dailymotion/playlist_createcontainer.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig Creez une application pour commencer a utiliser l'API Phraseanet @@ -2131,7 +2131,7 @@ Current configuration contains some errors La configuration contient des erreurs - admin/fields/templates.html.twig + admin/fields/templates.html.twig Current operations cannot be executed because the site is temporarily in maintenance mode. Wait a few minutes and try your request again @@ -2229,12 +2229,12 @@ Date Date - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig Date Added Date d'ajout - web/prod/index.html.twig + web/prod/index.html.twig Date Creation @@ -2244,7 +2244,7 @@ Date Updated Date de modification - web/prod/index.html.twig + web/prod/index.html.twig Date de connexion @@ -2254,8 +2254,8 @@ Date de création Date de création - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig Date de demande @@ -2267,19 +2267,19 @@ Date de modification Date de modification - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig Date(s) from field(s) Date(s) - web/prod/index.html.twig + web/prod/index.html.twig De De - web/admin/editusers_timelimit_sbas.html.twig web/admin/editusers_timelimit.html.twig + web/admin/editusers_timelimit_sbas.html.twig Deadline @@ -2351,7 +2351,7 @@ Defined by admin Défini par l'admin - web/prod/index.html.twig + web/prod/index.html.twig Defined in Apache configuration @@ -2371,8 +2371,8 @@ Delete Supprimer - prod/upload/lazaret.html.twig - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig admin/task-manager/templates.html.twig @@ -2383,8 +2383,8 @@ Delete all users rights Supprimer tous les droits de l'utilisateur - web/admin/users.html.twig web/admin/editusers.html.twig + web/admin/users.html.twig Delete basket @@ -2426,9 +2426,9 @@ Deplacement %n_element% elements Déplacement de %n_element% documents + Bridge/Dailymotion/video_moveinto_playlist.html.twig Bridge/Youtube/video_moveinto_playlist.html.twig Bridge/Flickr/photo_moveinto_photoset.html.twig - Bridge/Dailymotion/video_moveinto_playlist.html.twig Dernier access @@ -2454,14 +2454,14 @@ Description Description - Bridge/Youtube/upload.html.twig + Bridge/Dailymotion/upload.html.twig + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/upload.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photoset_createcontainer.html.twig Bridge/Flickr/upload.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/upload.html.twig - Bridge/Dailymotion/video_modify.html.twig prod/Tooltip/DCESFieldInfo.html.twig web/developers/application_form.html.twig @@ -2473,9 +2473,9 @@ web/report/report_layout_child.html.twig web/report/form_date_and_base.html.twig - + Design of personalization logo section - Design de la section de personnalisation du logo + Logo Form/Configuration/GeneralFormType.php @@ -2486,8 +2486,8 @@ Details Détails - admin/collection/details.html.twig admin/databox/details.html.twig + admin/collection/details.html.twig Developpeur @@ -2503,8 +2503,8 @@ Dimension Dimensions Media/Subdef/Image.php - Media/Subdef/Video.php Media/Subdef/Unknown.php + Media/Subdef/Video.php Disable document type sharing @@ -2529,7 +2529,7 @@ Display technical data Affichage des informations techniques - web/prod/index.html.twig + web/prod/index.html.twig Display thumbnails @@ -2539,7 +2539,7 @@ Do not display Masquer les informations techniques - web/prod/index.html.twig + web/prod/index.html.twig Do not forget to restart the tasks scheduler @@ -2639,7 +2639,7 @@ Drop index Supprimer les index - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php Duree @@ -2710,9 +2710,9 @@ Edition de 1 element Edition de 1 document + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/video_modify.html.twig Edition des droits de %display_name% @@ -2747,26 +2747,26 @@ ElasticSearch index name Nom de l'index Elasticsearch - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig ElasticSearch server host Hôte du serveur Elasticsearch - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig ElasticSearch service port Port de service Elasticsearch - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig Email E-mail - admin/publications/fiche.html.twig web/admin/dashboard.html.twig + admin/publications/fiche.html.twig Email '%email%' for login '%login%' already exists in database @@ -2872,8 +2872,8 @@ En cours d'encodage En cours d'encodage - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php actions/Bridge/records_list.html.twig @@ -3010,7 +3010,7 @@ Equals Egale - web/prod/index.html.twig + web/prod/index.html.twig Erreur @@ -3020,8 +3020,8 @@ Erreur ! Erreur - web/lightbox/error.html.twig mobile/lightbox/error.html.twig + web/lightbox/error.html.twig Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas @@ -3114,8 +3114,8 @@ Error while sending the file Erreur lors de l'envoi du fichier - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Error while uploading @@ -3125,8 +3125,8 @@ Etendue de la publication Etendue de la publication - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Etes vous sur de supprimer %number% photos ? @@ -3141,19 +3141,19 @@ Etes vous sur de supprimer %number% playlists ? Etes vous certain de vouloir supprimer %number% liste(s) de lecture ? - Bridge/Youtube/playlist_deleteelement.html.twig Bridge/Dailymotion/playlist_deleteelement.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig Etes vous sur de supprimer %number% videos ? Etes vous certain de vouloir supprimer %number% vidéo(s )? - Bridge/Youtube/video_deleteelement.html.twig Bridge/Dailymotion/video_deleteelement.html.twig + Bridge/Youtube/video_deleteelement.html.twig Ex : Paris, bleu, montagne Ex : Paris, bleu, montagne - web/prod/index.html.twig + web/prod/index.html.twig Executables externes @@ -3211,8 +3211,9 @@ Feedback Validation Controller/Prod/LanguageController.php - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig @@ -3302,13 +3303,13 @@ Filename Nom du fichier - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig Fils disponibles Fils disponibles - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig Filter @@ -3341,7 +3342,7 @@ FlashFired Avec Flash - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Flatten layers @@ -3357,7 +3358,7 @@ Force authentication Forcer l'authentification - prod/templates/push.html.twig + prod/templates/push.html.twig Force sending of the document ? @@ -3377,10 +3378,10 @@ Forgot password? Mot de passe oublié ? - web/login/index.html.twig - login/oauth/login.html.twig login/providers/mapping.html.twig login/providers/bind.html.twig + web/login/index.html.twig + login/oauth/login.html.twig Forgot your password? @@ -3400,7 +3401,7 @@ FrameRate Cadence - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Frequence d'echantillonage @@ -3462,9 +3463,9 @@ Générer un fichier audio Media/Subdef/Audio.php - + Generates an image - Génère une image + Génère une image Media/Subdef/Image.php Media/Subdef/Unknown.php @@ -3486,7 +3487,7 @@ Get setting form index Obtenir les réglages de l'index - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php Gives the option to your application to communicate with Phraseanet. This webhook can be used to trigger some actions on your application side. @@ -3546,7 +3547,7 @@ Graphiste (preview au rollover) Graphiste (prévisualisation au survol de la vignette) - web/prod/index.html.twig + web/prod/index.html.twig Great @@ -3561,9 +3562,9 @@ Guest Invité + mobile/common/menubar.html.twig web/common/menubar.html.twig web/common/menubar.html.twig - mobile/common/menubar.html.twig Guest access @@ -3593,9 +3594,9 @@ Hello %username% Bonjour %username%, + api/auth/end_user_authorization.html.twig api/auth/native_app_access_token.html.twig api/auth/end_user_authorization.html.twig - api/auth/end_user_authorization.html.twig Help @@ -3615,11 +3616,11 @@ Home Accueil - login/layout/base-layout.html.twig - login/include/language-block.html.twig mobile/lightbox/basket_element.html.twig mobile/lightbox/feed.html.twig mobile/lightbox/validate.html.twig + login/include/language-block.html.twig + login/layout/base-layout.html.twig Homepage slideshow @@ -3634,8 +3635,8 @@ I have read the terms of use J'ai lu les conditions d'utilisation - web/login/register-provider.html.twig web/login/register-classic.html.twig + web/login/register-provider.html.twig IP @@ -3645,7 +3646,7 @@ ISO ISO - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php ISO sensibility @@ -3655,7 +3656,7 @@ Iconographe (description au rollover) Iconographe (fiche d'indexation au survol de la vignette) - web/prod/index.html.twig + web/prod/index.html.twig Id @@ -3726,7 +3727,7 @@ In the answer grid Dans une infobulle séparée - web/prod/index.html.twig + web/prod/index.html.twig Include Business-fields in caption @@ -3758,9 +3759,9 @@ Informations Informations - admin/user/registrations.html.twig - web/admin/dashboard.html.twig web/account/base.html.twig + web/admin/dashboard.html.twig + admin/user/registrations.html.twig Informations personnelles @@ -3775,8 +3776,8 @@ Inscription Inscription - web/login/register.html.twig web/login/register-classic.html.twig + web/login/register.html.twig Install in progess @@ -3796,8 +3797,8 @@ Invalid file format Format de fichier incorrect - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Invalid file type @@ -3808,8 +3809,8 @@ Invalid file type, only (%supported_file_types%) file formats are supported Type de fichier non supportés. Seuls les types de fichiers %supported_file_types% sont supportés. - user/import/file.html.twig admin/databox/databox.html.twig + user/import/file.html.twig admin/statusbit/edit.html.twig @@ -3820,8 +3821,8 @@ Invalid labels parameter Paramètre de label incorrect - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Invalid link. @@ -3847,8 +3848,8 @@ Inverser Inverser - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig It is not recommended to install Phraseanet without HTTPS support @@ -3883,8 +3884,8 @@ L'upload a echoue L'upload a échoué - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php L'upload concernant le record %title% sur le compte %bridge_name% a echoue pour les raisons suivantes : %reason% @@ -3894,17 +3895,17 @@ L'utilisateur approuve ce document L'utilisateur approuve ce document - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig L'utilisateur desapprouve ce document L'utilisateur désapprouve ce document - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig L'utilisateur n'a pas encore donne son avis sur ce document L'utilisateur n'a pas encore donné son avis sur ce document - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig La connection vers le serveur distant est OK @@ -3921,20 +3922,20 @@ La taille maximale d'une video est de %duration% minutes. La durée d'une vidéo est limitée à %duration% minutes. - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video a ete rejetee La vidéo a été rejetée - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video a ete supprimee La vidéo a été supprimée - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video est restreinte @@ -3950,7 +3951,7 @@ Language Langue - web/prod/index.html.twig + web/prod/index.html.twig Last Name @@ -3980,7 +3981,7 @@ Last uploaded version Dernière version ajoutée - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig Le bridge Dailymotion ne prend en charge que les videos @@ -4030,16 +4031,16 @@ Le poids maximum d'un fichier est de %size% Le poids de fichier est limité à %size% - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Le record n'a pas de fichier physique L'enregistrement n'a pas de fichier physique - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Le token n'a pas encore ete genere @@ -4060,9 +4061,9 @@ Les elements ne peuvent etre uploades (problemes de type ou de droit) Les documents ne peuvent être ajoutés (problème de type de fichiers ou de droits) + Bridge/Dailymotion/upload.html.twig Bridge/Youtube/upload.html.twig Bridge/Flickr/upload.html.twig - Bridge/Dailymotion/upload.html.twig Les indications donnees ci dessous sont a titre informatif. @@ -4087,7 +4088,7 @@ Les termes apparaissent dans le(s) champs Le(s) mot(s) contenu(s) dans le(s) champ(s) - web/prod/index.html.twig + web/prod/index.html.twig Light Value @@ -4097,14 +4098,14 @@ Lightbox Lightbox - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig Limite temporelle Liste temporelle - web/admin/editusers_timelimit_sbas.html.twig web/admin/editusers_timelimit.html.twig + web/admin/editusers_timelimit_sbas.html.twig Limited vocabulary @@ -4183,9 +4184,9 @@ Identifiant Form/Login/PhraseaAuthenticationForm.php actions/Feedback/ListsMacros.html.twig - login/oauth/login.html.twig login/providers/mapping.html.twig login/providers/bind.html.twig + login/oauth/login.html.twig Login %login% already exists in database @@ -4217,7 +4218,7 @@ Ma derniere question Ma dernière question - web/prod/index.html.twig + web/prod/index.html.twig Mail line %line% is empty @@ -4303,7 +4304,7 @@ Message Message Controller/Prod/LanguageController.php - prod/templates/push.html.twig + prod/templates/push.html.twig Message automatique de Phraseanet @@ -4323,7 +4324,7 @@ MimeType MimeType - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Minimum number of letters before truncation @@ -4338,8 +4339,8 @@ Missing labels parameter Paramètre de label manquant - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Missing mandatory parameter %parameter% @@ -4374,7 +4375,7 @@ Mode de presentation Mode de présentation - web/prod/index.html.twig + web/prod/index.html.twig Modele de donnees @@ -4481,8 +4482,8 @@ Ne pas autoriser Ne pas autoriser - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Ne pas creer de DataBox maintenant @@ -4515,15 +4516,15 @@ Next Suivants + actions/Feedback/ListsMacros.html.twig prod/orders/order_box.html.twig prod/orders/order_box.html.twig - actions/Feedback/ListsMacros.html.twig No Non - web/developers/applications.html.twig web/account/account.html.twig + web/developers/applications.html.twig No URL available @@ -4643,14 +4644,14 @@ Nom du nouveau panier Nom du nouveau panier - prod/orders/order_item.html.twig prod/Baskets/Create.html.twig + prod/orders/order_item.html.twig Non-Restreinte (publique) Non restreinte (publique) - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig None @@ -4667,7 +4668,7 @@ None of the selected records can be printed Aucun des documents sélectionnés ne peut être imprimé - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig None of the selected records can be pushed. @@ -4687,7 +4688,8 @@ Not aggregated Non agrégé - admin/fields/templates.html.twig + admin/search-engine/general-aggregation.html.twig + admin/fields/templates.html.twig Notification par email @@ -4753,13 +4755,13 @@ Number of replicas Nombre de répliques (Replica Shards) - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig Number of shards Nombre de Shards Elastic - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig @@ -4770,8 +4772,8 @@ OK OK - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Ok @@ -4797,7 +4799,7 @@ One of these conditions Une de ces conditions - web/prod/index.html.twig + web/prod/index.html.twig Only %nbEditableDocuments% records can be modified. @@ -4822,10 +4824,10 @@ Or login with Ou se connecter avec - api/auth/end_user_authorization.html.twig + web/login/register.html.twig web/login/index.html.twig login/oauth/login.html.twig - web/login/register.html.twig + api/auth/end_user_authorization.html.twig Order @@ -4860,7 +4862,7 @@ Orientation Orientation - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Original name @@ -4897,25 +4899,25 @@ Paniers Paniers - web/lightbox/index.html.twig - lightbox/IE6/validate.html.twig - web/lightbox/validate.html.twig - web/account/account.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/account/account.html.twig + web/lightbox/index.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig Par %author% Par %author% + mobile/lightbox/feed.html.twig prod/results/feeds_entry.html.twig prod/results/entry.html.twig - mobile/lightbox/feed.html.twig Password Mot de passe - Form/Login/PhraseaRegisterForm.php Form/Login/PhraseaAuthenticationForm.php + Form/Login/PhraseaRegisterForm.php web/account/account.html.twig @@ -4948,11 +4950,6 @@ Pause Controller/Prod/LanguageController.php - - Pays - Pays - prod/User/Add.html.twig - Periodically fetches an FTP repository content locally Récupère en local le contenu d'un répertoire FTP @@ -5017,14 +5014,14 @@ Playlist Liste de lecture - Bridge/Youtube/actionelements.html.twig Bridge/Dailymotion/actionelements.html.twig + Bridge/Youtube/actionelements.html.twig Playlists Listes de lecture - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Please accept the terms of use to register. @@ -5147,8 +5144,8 @@ Préférences web/prod/index.html.twig web/prod/index.html.twig - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Prefix for notification emails @@ -5163,12 +5160,12 @@ Presentation de vignettes Présentation de vignettes - web/prod/index.html.twig + web/prod/index.html.twig Presentation de vignettes de panier Présentation des vignettes de panier - web/prod/index.html.twig + web/prod/index.html.twig Presets @@ -5178,9 +5175,9 @@ Previous Précédent + actions/Feedback/ListsMacros.html.twig prod/orders/order_box.html.twig prod/orders/order_box.html.twig - actions/Feedback/ListsMacros.html.twig Print @@ -5190,8 +5187,8 @@ Problemes de connexion ? Problème de connexion ? - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Process the registration @@ -5221,10 +5218,10 @@ Publications Publications - web/prod/index.html.twig - web/common/menubar.html.twig + web/prod/index.html.twig admin/publications/wrapper.html.twig web/admin/tree.html.twig + web/common/menubar.html.twig Publier @@ -5234,8 +5231,8 @@ Publique Publique - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Publishers @@ -5245,8 +5242,9 @@ Push Push - Controller/Prod/LanguageController.php eventsmanager/notify/push.php + Controller/Prod/LanguageController.php + prod/WorkZone/Macros.html.twig Push configuration @@ -5335,80 +5333,80 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Raccourcis claviers de la zone des paniers : - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de editing : Raccourci de la fenêtre d'édition - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de preview : Raccourcis de la fenêtre vue détaillée - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de recherche : Raccourcis de la fenêtre principale - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-a : tout selectionner ctrl-a : sélectionner tout - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-e : editer la selection ctrl-e : éditer la sélection - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-p : imprimer la selection ctrl-p : imprimer la sélection - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::espace : arreter/demarrer le diaporama espace : démarrer/arrêter le diaporama - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche bas : scroll vertical flèche basse : défilement vers le bas - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche droite : page suivante flèche droite : page suivante - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : en arriere flèche gauche : document précédent - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : en avant flèche droite : document suivant - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : page precedente flèche gauche : page précédente - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche haut : scroll vertical flèche haute : défilement vers le haut - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::tab/shift-tab se ballade dans les champs Tab/shift-tab : Changer de champs - web/prod/index.html.twig + web/prod/index.html.twig Rappel : Il vous reste %number% jours pour valider %title% de %user% @@ -5428,21 +5426,21 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Re-initialiser Ré-initialiser - web/prod/index.html.twig - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig + web/prod/index.html.twig Re-ordonner Ordonner - prod/Story/Reorder.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig prod/Baskets/Reorder.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/Story/Reorder.html.twig Read-only @@ -5533,7 +5531,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Rechercher dans un champ date Dans un champ date - web/prod/index.html.twig + web/prod/index.html.twig Recommendations @@ -5594,10 +5592,10 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Register Inscription - login/include/register-link-block.html.twig - web/login/register-provider.html.twig - web/login/register.html.twig web/login/register-classic.html.twig + web/login/register.html.twig + web/login/register-provider.html.twig + login/include/register-link-block.html.twig Register approbation @@ -5612,19 +5610,19 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Reglages:: reglages d acces guest Réglages d'accès invité - web/admin/users.html.twig web/admin/editusers.html.twig + web/admin/users.html.twig Reglages:: reglages d inscitpition automatisee Réglages d'auto-inscription - web/admin/users.html.twig web/admin/editusers.html.twig + web/admin/users.html.twig Relevance Pertinence - web/prod/index.html.twig + web/prod/index.html.twig Remember me @@ -5666,8 +5664,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Renew password Renouveler le mot de passe Notification/Mail/MailRequestPasswordUpdate.php - web/login/renew-password.html.twig web/account/change-password.html.twig + web/login/renew-password.html.twig Reorder collections @@ -5677,8 +5675,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Reordonner automatiquement Tri automatique - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig Repertoire de stockage des fichiers @@ -5902,22 +5900,22 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Save Sauvegarder actions/Feedback/list.html.twig + web/account/change-password.html.twig + admin/search-engine/general-aggregation.html.twig + admin/search-engine/elastic-search.html.twig + task-manager/task-editor/task.html.twig web/developers/application.html.twig web/developers/application.html.twig - task-manager/task-editor/task.html.twig - admin/search-engine/elastic-search.html.twig - admin/search-engine/general-aggregation.html.twig web/login/renew-password.html.twig - web/account/change-password.html.twig Save all changes Sauvegarder toutes les modifications admin/fields/templates.html.twig - + Save as VTT - Sauvegarder le chapitrage + Sauvegarder Controller/Prod/LanguageController.php @@ -5964,6 +5962,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis See Voir + prod/WorkZone/Macros.html.twig WorkZone/Browser/Browser.html.twig @@ -5974,8 +5973,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis See documentation at %url% Voir la documentation en ligne à l'adresse %url% - Form/Configuration/ExecutablesFormType.php Form/Configuration/WebservicesFormType.php + Form/Configuration/ExecutablesFormType.php See my order @@ -6001,7 +6000,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Select a field Choisir un champ - web/prod/index.html.twig + web/prod/index.html.twig Select a list on the left and edit it ! @@ -6036,7 +6035,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Selected base(s) Sélectionner les Bases : - web/prod/index.html.twig + web/prod/index.html.twig Selected files @@ -6047,12 +6046,12 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Send Envoyer Controller/Prod/LanguageController.php - prod/orders/order_item.html.twig - prod/orders/order_item.html.twig prod/actions/Push.html.twig prod/actions/Push.html.twig prod/upload/upload.html.twig prod/upload/upload-flash.html.twig + prod/orders/order_item.html.twig + prod/orders/order_item.html.twig web/admin/dashboard.html.twig web/login/forgot-password.html.twig @@ -6117,8 +6116,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Set labels Définir les labels - admin/collection/collection.html.twig admin/databox/databox.html.twig + admin/collection/collection.html.twig Set statuses restrictions @@ -6164,13 +6163,13 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Short description Description brève - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Shutter speed Vitesse d'obturateur - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php web/common/technical_datas.html.twig @@ -6270,8 +6269,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Sous-titre Sous-titre - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Space bar @@ -6289,9 +6288,9 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin/task-manager/templates.html.twig admin/task-manager/templates.html.twig - + Start Range - Début de l'extrait + Début de l'extrait Controller/Prod/LanguageController.php @@ -6313,7 +6312,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Status des documents a rechercher Status des documents pour la recherche - web/prod/index.html.twig + web/prod/index.html.twig Status edition @@ -6347,6 +6346,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Stories Reportages Form/Configuration/SearchEngineFormType.php + prod/WorkZone/Macros.html.twig Story Not Found @@ -6407,8 +6407,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Substitute Substituer - prod/upload/lazaret.html.twig - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig Substitution is not possible for this kind of record @@ -6429,22 +6429,16 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Successful removal Suppression effectuée + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php Successful update Mise à jour réussie - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php @@ -6452,10 +6446,16 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php actions/Tools/videoEditor.html.twig - admin/collection/suggested_value.html.twig - admin/collection/collection.html.twig web/admin/databases.html.twig + admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig Successfull connection @@ -6485,14 +6485,14 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Suppression de %n_element% playlists Suppression de %n_element% liste(s) de lecture - Bridge/Youtube/playlist_deleteelement.html.twig Bridge/Dailymotion/playlist_deleteelement.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig Suppression de %n_element% videos Suppression de %n_element% vidéo(s) - Bridge/Youtube/video_deleteelement.html.twig Bridge/Dailymotion/video_deleteelement.html.twig + Bridge/Youtube/video_deleteelement.html.twig Supprimer @@ -6528,11 +6528,11 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Tags Tags + Bridge/Dailymotion/upload.html.twig + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/upload.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Flickr/upload.html.twig - Bridge/Dailymotion/upload.html.twig - Bridge/Dailymotion/video_modify.html.twig Target Device @@ -6674,8 +6674,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis The file is too big Le fichier est trop gros - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php The file was moved to the quarantine @@ -6690,8 +6690,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis The publication has been stopped La publication a été suspendue - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php The record was successfully created @@ -6732,7 +6732,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Theme Thème - web/prod/index.html.twig + web/prod/index.html.twig There is no one to validate orders, please contact an administrator @@ -6752,13 +6752,13 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Thesaurus Min score Hits minimum du Thésaurus - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig Thesaurus branch Branche de thésaurus - admin/fields/templates.html.twig + admin/fields/templates.html.twig Thesaurus ou CTerms invalide @@ -6825,7 +6825,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis This user does not participate to the validation but is only viewer. Cet utilisateur ne participe pas à la demande de validation - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig This user has no rights @@ -6861,19 +6861,19 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Titre Titre - Bridge/Youtube/upload.html.twig + prod/Baskets/Reorder.html.twig + Bridge/Dailymotion/upload.html.twig + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/upload.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photoset_createcontainer.html.twig Bridge/Flickr/upload.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/upload.html.twig - Bridge/Dailymotion/video_modify.html.twig prod/Story/Reorder.html.twig - prod/Baskets/Reorder.html.twig + admin/publications/fiche.html.twig admin/publications/list.html.twig admin/publications/list.html.twig - admin/publications/fiche.html.twig Toggle loop @@ -6898,8 +6898,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Total Total - admin/collection/details.html.twig admin/databox/details.html.twig + admin/collection/details.html.twig Tous @@ -6935,7 +6935,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Trier par Trier par - web/prod/index.html.twig + web/prod/index.html.twig Try to extract embedded thumbnails @@ -6960,7 +6960,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Type de documents Type de document - web/prod/index.html.twig + web/prod/index.html.twig Type nombre @@ -7083,7 +7083,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Une question personnelle La question - web/prod/index.html.twig + web/prod/index.html.twig Une selection @@ -7141,13 +7141,13 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Upload Ajouter - actions/Bridge/index.html.twig - Bridge/Youtube/upload.html.twig - Bridge/Youtube/upload.html.twig - Bridge/Flickr/upload.html.twig - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Dailymotion/upload.html.twig + Bridge/Youtube/upload.html.twig + Bridge/Youtube/upload.html.twig + actions/Bridge/index.html.twig + Bridge/Flickr/upload.html.twig + Bridge/Flickr/upload.html.twig prod/upload/upload.html.twig prod/upload/upload-flash.html.twig web/common/menubar.html.twig @@ -7175,7 +7175,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Uploaded by : %username% Ajouté par : %username% - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig Use Google Chart API @@ -7195,7 +7195,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Use latest search settings on Production loading Utiliser la dernière question posée au lancement de Production - web/prod/index.html.twig + web/prod/index.html.twig Use my Phraseanet account @@ -7252,10 +7252,10 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Controller/Prod/LanguageController.php prod/templates/push.html.twig prod/templates/push.html.twig - prod/templates/push.html.twig prod/templates/push.html.twig - prod/templates/push.html.twig + prod/templates/push.html.twig prod/templates/push.html.twig + prod/templates/push.html.twig User can see others choices @@ -7314,11 +7314,11 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Validation Validation + eventsmanager/notify/validationdone.php eventsmanager/notify/validationreminder.php eventsmanager/notify/validationreminder.php eventsmanager/notify/validate.php eventsmanager/notify/validate.php - eventsmanager/notify/validationdone.php lightbox/IE6/validate.html.twig @@ -7334,11 +7334,11 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Validations Validations + mobile/lightbox/index.html.twig + mobile/lightbox/index.html.twig web/lightbox/index.html.twig lightbox/IE6/validate.html.twig web/lightbox/validate.html.twig - mobile/lightbox/index.html.twig - mobile/lightbox/index.html.twig Validations received @@ -7383,13 +7383,13 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Video codec Codec vidéo - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Videos Vidéos - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php View on %title% @@ -7404,19 +7404,19 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Vocabulary type Liste de vocabulaire - admin/fields/templates.html.twig + admin/fields/templates.html.twig Voici vos paniers Paniers disponibles - web/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/lightbox/index.html.twig Voici vos validations en cours Demandes de validations en cours - web/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/lightbox/index.html.twig Votre adresse email @@ -7451,7 +7451,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Vous avez envoye une demande de validation de document sur ce panier Vous avez envoyé ce panier pour validation - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig Vous avez recu des documents @@ -7541,10 +7541,10 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Vous n'avez selectionne aucun element Aucun document sélectionné - actions/Bridge/index.html.twig - Bridge/Youtube/upload.html.twig - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig + Bridge/Youtube/upload.html.twig + actions/Bridge/index.html.twig + Bridge/Flickr/upload.html.twig Vous ne pouvez pas editer plusieurs elements simultanement @@ -7570,7 +7570,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Vous pouvez quitter la plupart des fenetres survolantes via la touche echap Vous pouvez fermer la plupart des fênetres en sur impression avec la touche echap - web/prod/index.html.twig + web/prod/index.html.twig Warning ! @@ -7590,8 +7590,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Watch my access requests status Consulter l'état de ma demande d'accès - Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Notification/Mail/MailSuccessAccessRequest.php + Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Watermark @@ -7631,8 +7631,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Which playlist you want to put you %number% elements into ? A quelle liste de lecture souhaitez vous ajouter les %number% documents - Bridge/Youtube/video_moveinto_playlist.html.twig Bridge/Dailymotion/video_moveinto_playlist.html.twig + Bridge/Youtube/video_moveinto_playlist.html.twig Whoops, looks like something went wrong. @@ -7671,15 +7671,15 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis YYYY/MM/DD YYYY/MM/DD - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Yes Oui - web/developers/applications.html.twig - user/import/view.html.twig web/account/account.html.twig + user/import/view.html.twig + web/developers/applications.html.twig You are Admin @@ -7985,92 +7985,92 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis action : ajouter au panier Ajouter au panier - prod/preview/tools.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/results/record.html.twig + prod/preview/tools.html.twig action : bridge Bridge - web/prod/index.html.twig + web/prod/index.html.twig action : collection Déplacer - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig action : editer Editer - prod/preview/caption.html.twig - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig + prod/preview/caption.html.twig action : exporter Exporter - web/prod/index.html.twig - prod/preview/tools.html.twig - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/results/record.html.twig - web/prod/toolbar.html.twig + prod/preview/tools.html.twig + web/prod/index.html.twig + web/lightbox/feed.html.twig lightbox/IE6/feed.html.twig lightbox/IE6/validate.html.twig - web/lightbox/feed.html.twig web/lightbox/validate.html.twig action : outils Outils - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig action : print Imprimer - prod/preview/tools.html.twig - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/results/record.html.twig - web/prod/toolbar.html.twig + prod/preview/tools.html.twig action : publier Publier - web/prod/index.html.twig - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig + web/prod/index.html.twig action : push Push - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig action : status Propriétés - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig action : supprimer Supprimer - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig web/prod/toolbar.html.twig @@ -8090,37 +8090,37 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis action::Valider Valider - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig action::detacher Détacher - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig action::editer Editer - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig action::exporter Exporter - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig action::renommer Renommer - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig actual status @@ -8310,8 +8310,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::base:collection: Creer une collection Créer une collection - admin/collection/create.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig admin::base:collection: Monter une collection @@ -8327,8 +8327,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces Copier les droits utilisateur de la collection : - admin/collection/create.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig admin::base:collection: activer la collection @@ -8339,10 +8339,10 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::base:collection: aucun fichier (minilogo, watermark ...) Aucun fichier + admin/databox/databox.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig - admin/databox/databox.html.twig admin::base:collection: descativer la collection @@ -8403,20 +8403,20 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::base:collorder: descendre Descendre - admin/collection/suggested_value.html.twig admin/collection/reorder.html.twig + admin/collection/suggested_value.html.twig admin::base:collorder: monter Monter - admin/collection/suggested_value.html.twig admin/collection/reorder.html.twig + admin/collection/suggested_value.html.twig admin::base:collorder: reinitialiser en ordre alphabetique Ordre alphabétique - admin/collection/suggested_value.html.twig admin/collection/reorder.html.twig + admin/collection/suggested_value.html.twig admin::colelction::presentation des elements : rien @@ -8471,21 +8471,21 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::compte-utilisateur activite Activité - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - admin/user/registrations.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig admin::compte-utilisateur adresse Adresse - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur changer mon mot de passe @@ -8495,11 +8495,11 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::compte-utilisateur code postal Code postal - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur confirmer la nouvelle adresse email @@ -8519,23 +8519,23 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::compte-utilisateur email E-mail - Event/Subscriber/RegistrationSubscriber.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig + Event/Subscriber/RegistrationSubscriber.php + web/account/account.html.twig + web/admin/editusers.html.twig web/admin/users.html.twig admin/user/registrations.html.twig - web/admin/editusers.html.twig web/admin/connected-users.html.twig - web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur fax Fax - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur id utilisateur @@ -8547,34 +8547,34 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Identifiant Core/Provider/RegistrationServiceProvider.php api/auth/end_user_authorization.html.twig - web/common/dialog_export.html.twig - web/admin/users.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig + web/account/reset-email.html.twig web/account/account.html.twig web/account/account.html.twig - web/account/reset-email.html.twig + web/admin/editusers.html.twig + web/admin/users.html.twig + admin/user/registrations.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur mot de passe Mot de passe api/auth/end_user_authorization.html.twig - web/common/dialog_export.html.twig web/setup/step2.html.twig - web/account/account.html.twig web/account/reset-email.html.twig + web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur nom Nom + Controller/Admin/UserController.php Core/Provider/RegistrationServiceProvider.php Event/Subscriber/RegistrationSubscriber.php - Controller/Admin/UserController.php - web/common/dialog_export.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig - web/admin/connected-users.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig + web/admin/connected-users.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur nouvelle adresse email @@ -8590,42 +8590,42 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::compte-utilisateur poste Poste - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur prenom Prénom + Controller/Admin/UserController.php Core/Provider/RegistrationServiceProvider.php Event/Subscriber/RegistrationSubscriber.php - Controller/Admin/UserController.php - web/common/dialog_export.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur sexe Civilité Core/Provider/RegistrationServiceProvider.php - web/admin/editusers.html.twig web/account/account.html.twig + web/admin/editusers.html.twig admin::compte-utilisateur societe Société - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig + Core/Provider/RegistrationServiceProvider.php + web/account/account.html.twig + web/admin/editusers.html.twig web/admin/users.html.twig admin/user/registrations.html.twig - web/admin/editusers.html.twig web/admin/connected-users.html.twig - web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur tel @@ -8636,11 +8636,11 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::compte-utilisateur telephone Téléphone Controller/Admin/UserController.php - web/common/dialog_export.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig - web/admin/connected-users.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig + web/admin/connected-users.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur un email de confirmation vient de vous etre envoye. Veuillez suivre les instructions contenue pour continuer @@ -8650,11 +8650,11 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::compte-utilisateur ville Ville - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur: L'email a correctement ete mis a jour @@ -8705,8 +8705,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le admin::compte-utilisateur:ftp: repertoire de destination ftp Dossier distant - web/common/dialog_export.html.twig web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur:ftp: Activer le compte FTP @@ -8721,14 +8721,14 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le admin::compte-utilisateur:ftp: Nombre d'essais max Nombre d'essais - web/common/dialog_export.html.twig web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur:ftp: Utiliser le mode passif Utiliser le mode passif - web/common/dialog_export.html.twig web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur:ftp: creer un dossier @@ -8749,25 +8749,25 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le admin::compte-utilisateur:sexe: madame Mme Core/Provider/RegistrationServiceProvider.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur:sexe: mademoiselle Mlle Core/Provider/RegistrationServiceProvider.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur:sexe: monsieur M. Core/Provider/RegistrationServiceProvider.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::monitor: bases sur lesquelles l'utilisateur est connecte : @@ -8787,26 +8787,26 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le admin::monitor: module admin Admin - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php - web/common/menubar.html.twig + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig + web/common/menubar.html.twig admin::monitor: module client Classic - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php classes/record/preview.php classes/record/preview.php classes/record/preview.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig admin::monitor: module comparateur Lightbox - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig @@ -8817,44 +8817,44 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le admin::monitor: module production Production - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php classes/record/preview.php classes/record/preview.php classes/record/preview.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig admin::monitor: module report Report - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php - web/common/menubar.html.twig + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig + web/common/menubar.html.twig admin::monitor: module thesaurus Thesaurus - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php - web/common/menubar.html.twig + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig + web/common/menubar.html.twig admin::monitor: module upload Upload - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/common/menubar.html.twig admin::monitor: module validation Lightbox - Controller/Admin/ConnectedUsersController.php + lib/classes/phrasea.php Phrasea/Controller/LightboxController.php Phrasea/Controller/LightboxController.php Phrasea/Controller/LightboxController.php - lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/common/menubar.html.twig @@ -9065,14 +9065,14 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le admin::utilisateurs: utilisateurs connectes Utilisateurs Connectés - web/admin/connected-users.html.twig web/admin/tree.html.twig + web/admin/connected-users.html.twig alert Alerte - actions/Tools/index.html.twig actions/Tools/videoEditor.html.twig + actions/Tools/index.html.twig all caches services have been flushed @@ -9113,8 +9113,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le audio audios Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig avril @@ -9139,14 +9139,14 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le basket:action:delete record form basket Retirer du panier - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig basket:action:delete record form database Supprimer l'enregistrement de la base - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig be notified when a document is placed in quarantine @@ -9156,12 +9156,12 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le boutton:: selectionner aucune base Aucune - web/prod/index.html.twig + web/prod/index.html.twig boutton:: selectionner toutes les bases Toutes - web/prod/index.html.twig + web/prod/index.html.twig boutton::ajouter @@ -9175,35 +9175,35 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le Annuler Controller/Prod/LanguageController.php Controller/Prod/LanguageController.php - prod/actions/edit_default.html.twig - prod/actions/edit_default.html.twig + Bridge/Dailymotion/video_modify.html.twig + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photo_modify.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/video_modify.html.twig - Bridge/Dailymotion/video_modify.html.twig - web/thesaurus/new-term.html.twig - web/thesaurus/new-term.html.twig + prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig + web/thesaurus/export-text-dialog.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig - web/thesaurus/link-field-step2.html.twig web/thesaurus/import-dialog.html.twig + web/thesaurus/link-field-step2.html.twig web/thesaurus/accept.html.twig web/thesaurus/accept.html.twig - web/thesaurus/export-text-dialog.html.twig - web/thesaurus/link-field-step1.html.twig web/thesaurus/export-topics-dialog.html.twig + web/thesaurus/new-term.html.twig + web/thesaurus/new-term.html.twig + web/thesaurus/link-field-step1.html.twig + web/account/reset-email.html.twig + admin/publications/fiche.html.twig + admin/collection/create.html.twig + web/admin/index.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig - web/admin/index.html.twig - admin/collection/create.html.twig - admin/publications/fiche.html.twig web/report/all_content.html.twig - web/account/reset-email.html.twig boutton::appliquer @@ -9221,8 +9221,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le boutton::choisir Choisir - web/admin/users.html.twig web/admin/editusers.html.twig + web/admin/users.html.twig boutton::commander @@ -9238,8 +9238,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le boutton::demarrer Diaporama - web/lightbox/feed_options_box.html.twig web/lightbox/sc_options_box.html.twig + web/lightbox/feed_options_box.html.twig boutton::editer @@ -9272,15 +9272,15 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le boutton::fermer Fermer Controller/Prod/LanguageController.php + prod/actions/Push.html.twig prod/actions/edit_default.html.twig prod/actions/edit_default.html.twig - prod/actions/Push.html.twig - web/lightbox/sc_note.html.twig - web/thesaurus/export-topics.html.twig + web/thesaurus/properties.html.twig web/thesaurus/accept.html.twig web/thesaurus/accept.html.twig - web/thesaurus/properties.html.twig + web/thesaurus/export-topics.html.twig web/thesaurus/link-field-step3.html.twig + web/lightbox/sc_note.html.twig web/common/dialog_export.html.twig web/report/all_content.html.twig @@ -9292,14 +9292,14 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le boutton::imprimer Imprimer - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig boutton::modifier Modifier + Bridge/Dailymotion/actionelement.html.twig Bridge/Youtube/actionelement.html.twig Bridge/Flickr/actionelement.html.twig - Bridge/Dailymotion/actionelement.html.twig web/admin/users.html.twig @@ -9310,22 +9310,22 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le boutton::pause Pause - web/lightbox/feed_options_box.html.twig web/lightbox/sc_options_box.html.twig + web/lightbox/feed_options_box.html.twig boutton::precedent précédent - web/lightbox/feed_options_box.html.twig - web/lightbox/feed_options_box.html.twig - web/lightbox/sc_options_box.html.twig - web/lightbox/sc_options_box.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig + web/lightbox/sc_options_box.html.twig + web/lightbox/sc_options_box.html.twig + web/lightbox/feed_options_box.html.twig + web/lightbox/feed_options_box.html.twig boutton::rechercher @@ -9356,26 +9356,26 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le boutton::retour Retour - Bridge/Youtube/video_moveinto_playlist.html.twig - Bridge/Youtube/video_deleteelement.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig - Bridge/Youtube/playlist_deleteelement.html.twig - Bridge/Flickr/photoset_deleteelement.html.twig - Bridge/Flickr/photoset_createcontainer.html.twig - Bridge/Flickr/photo_deleteelement.html.twig - Bridge/Flickr/photo_moveinto_photoset.html.twig - Bridge/Dailymotion/video_moveinto_playlist.html.twig Bridge/Dailymotion/video_deleteelement.html.twig Bridge/Dailymotion/playlist_createcontainer.html.twig + Bridge/Dailymotion/video_moveinto_playlist.html.twig Bridge/Dailymotion/playlist_deleteelement.html.twig - web/developers/application_form.html.twig - web/developers/application.html.twig - admin/collection/details.html.twig - user/import/file.html.twig - admin/databox/details.html.twig + Bridge/Youtube/video_deleteelement.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/video_moveinto_playlist.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig + Bridge/Flickr/photo_deleteelement.html.twig + Bridge/Flickr/photoset_deleteelement.html.twig + Bridge/Flickr/photo_moveinto_photoset.html.twig + Bridge/Flickr/photoset_createcontainer.html.twig web/admin/editusers.html.twig admin/publications/fiche.html.twig + admin/databox/details.html.twig + admin/collection/details.html.twig + user/import/file.html.twig admin/statusbit/edit.html.twig + web/developers/application_form.html.twig + web/developers/application.html.twig boutton::retry @@ -9385,54 +9385,54 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le boutton::suivant suivant - web/lightbox/feed_options_box.html.twig - web/lightbox/feed_options_box.html.twig - web/lightbox/sc_options_box.html.twig - web/lightbox/sc_options_box.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig + web/lightbox/sc_options_box.html.twig + web/lightbox/sc_options_box.html.twig + web/lightbox/feed_options_box.html.twig + web/lightbox/feed_options_box.html.twig boutton::supprimer Supprimer Controller/Prod/LanguageController.php - web/prod/index.html.twig actions/Bridge/disconnected.html.twig + Bridge/Dailymotion/actionelements.html.twig + Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actionelements.html.twig Bridge/Youtube/actioncontainers.html.twig Bridge/Flickr/actionelements.html.twig Bridge/Flickr/actioncontainers.html.twig - Bridge/Dailymotion/actionelements.html.twig - Bridge/Dailymotion/actioncontainers.html.twig prod/results/feeds_entry.html.twig prod/results/entry.html.twig + web/prod/index.html.twig web/thesaurus/presets.html.twig - admin/collection/suggested_value.html.twig + admin/publications/fiche.html.twig + admin/publications/list.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig - admin/publications/list.html.twig - admin/publications/fiche.html.twig + admin/collection/suggested_value.html.twig web/admin/subdefs.html.twig boutton::telecharger Télécharger - web/lightbox/feed_options_box.html.twig web/lightbox/sc_options_box.html.twig + web/lightbox/feed_options_box.html.twig web/common/dialog_export.html.twig boutton::telecharger tous les documents Tout télécharger + web/lightbox/feed.html.twig lightbox/IE6/feed.html.twig lightbox/IE6/validate.html.twig - web/lightbox/feed.html.twig web/lightbox/validate.html.twig @@ -9445,57 +9445,57 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le boutton::valider Valider Controller/Prod/LanguageController.php - web/prod/index.html.twig - prod/actions/edit_default.html.twig - prod/actions/edit_default.html.twig - Bridge/Youtube/video_moveinto_playlist.html.twig - Bridge/Youtube/video_deleteelement.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig - Bridge/Youtube/playlist_deleteelement.html.twig - Bridge/Youtube/video_modify.html.twig - Bridge/Flickr/photoset_deleteelement.html.twig - Bridge/Flickr/photoset_createcontainer.html.twig - Bridge/Flickr/photo_deleteelement.html.twig - Bridge/Flickr/photo_modify.html.twig - Bridge/Flickr/photo_moveinto_photoset.html.twig - Bridge/Dailymotion/video_moveinto_playlist.html.twig - Bridge/Dailymotion/video_deleteelement.html.twig - Bridge/Dailymotion/playlist_createcontainer.html.twig - Bridge/Dailymotion/playlist_deleteelement.html.twig - Bridge/Dailymotion/video_modify.html.twig - prod/Story/Reorder.html.twig + mobile/lightbox/note_form.html.twig prod/Baskets/Update.html.twig prod/Baskets/Reorder.html.twig - web/developers/application_form.html.twig + Bridge/Dailymotion/video_deleteelement.html.twig + Bridge/Dailymotion/playlist_createcontainer.html.twig + Bridge/Dailymotion/video_moveinto_playlist.html.twig + Bridge/Dailymotion/video_modify.html.twig + Bridge/Dailymotion/playlist_deleteelement.html.twig + Bridge/Youtube/video_deleteelement.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/video_moveinto_playlist.html.twig + Bridge/Youtube/video_modify.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig + Bridge/Flickr/photo_deleteelement.html.twig + Bridge/Flickr/photoset_deleteelement.html.twig + Bridge/Flickr/photo_moveinto_photoset.html.twig + Bridge/Flickr/photoset_createcontainer.html.twig + Bridge/Flickr/photo_modify.html.twig + prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig + prod/Story/Reorder.html.twig + web/prod/index.html.twig + web/thesaurus/export-text-dialog.html.twig + web/thesaurus/thesaurus.html.twig + web/thesaurus/import-dialog.html.twig + web/thesaurus/link-field-step2.html.twig + web/thesaurus/accept.html.twig + web/thesaurus/export-topics-dialog.html.twig web/thesaurus/index.html.twig web/thesaurus/new-term.html.twig web/thesaurus/new-term.html.twig - web/thesaurus/thesaurus.html.twig - web/thesaurus/link-field-step2.html.twig - web/thesaurus/import-dialog.html.twig - web/thesaurus/accept.html.twig - web/thesaurus/export-text-dialog.html.twig web/thesaurus/link-field-step1.html.twig - web/thesaurus/export-topics-dialog.html.twig - admin/collection/suggested_value.html.twig + web/account/access.html.twig + web/account/reset-email.html.twig + web/account/account.html.twig + web/admin/dashboard.html.twig + web/admin/editusers.html.twig + admin/publications/fiche.html.twig + admin/publications/list.html.twig + web/admin/setup.html.twig admin/collection/create.html.twig admin/collection/reorder.html.twig admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig + web/admin/subdefs.html.twig + web/admin/structure.html.twig user/import/view.html.twig admin/user/registrations.html.twig - web/admin/structure.html.twig - web/admin/setup.html.twig - web/admin/editusers.html.twig - admin/publications/list.html.twig - admin/publications/fiche.html.twig - web/admin/dashboard.html.twig admin/statusbit/edit.html.twig - web/admin/subdefs.html.twig + web/developers/application_form.html.twig web/report/all_content.html.twig - web/account/access.html.twig - web/account/account.html.twig - web/account/reset-email.html.twig - mobile/lightbox/note_form.html.twig boutton::vue graphique @@ -9592,9 +9592,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le choisir Choisir - web/prod/index.html.twig - admin/collection/create.html.twig + web/prod/index.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig classe @@ -9621,10 +9621,10 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le copyClipboardLabel Copier dans le presse-papier + prod/results/infos.html.twig prod/Share/record.html.twig prod/Share/record.html.twig prod/Share/record.html.twig - prod/results/infos.html.twig create_subdef_button_label @@ -9674,7 +9674,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le created_on créé le - web/prod/index.html.twig + web/prod/index.html.twig dans %category% @@ -9705,7 +9705,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le delete Supprimer - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig descendant @@ -9721,9 +9721,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le document documents Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig document original @@ -9734,7 +9734,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le edit Editer - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig web/account/account.html.twig web/account/account.html.twig web/account/account.html.twig @@ -9814,7 +9814,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le export:: erreur : aucun document selectionne Erreur : aucun document sélectionné - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig export:: telechargement @@ -9880,8 +9880,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le flash Flash Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig for the following reasons : %reasons% @@ -9945,14 +9945,25 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le Modifications effectuées admin/databox/databox.html.twig + + help::help-search: OR + Ou + prod/results/help.html.twig + + + help::help-search: relaunch search without filter + Supprimer tout les filtres et relancer la recherche + prod/results/help.html.twig + web/prod/index.html.twig + help::help-section-bullet: check-spelling Vérifier l'orthographe ou les erreurs de frappe prod/results/help.html.twig - + help::help-section-bullet: default-operator-between-terms - L'opérateur par défaut entre les termes est un ET, exemple: l'expression «voiture rouge» cherchera le terme «voiture» ET le terme «rouge» + L'opérateur par défaut entre les termes est un ET, exemple: voiture rouge, cherchera le terme «voiture» ET le terme «rouge» prod/results/help.html.twig @@ -9960,9 +9971,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le Elargir la recherche en utilisant moins de mots clefs prod/results/help.html.twig - + help::help-section-bullet: quotation-marks-allow - Ajouter des guillemets pour chercher une expression exacte, permet aussi d'exclure un opérateur de la recherche, exemple : « Pile Ou face » , «Sain et sauf» + Ajouter des guillemets pour chercher une expression exacte, cela permet aussi d'exclure un opérateur de la recherche, exemple : « Pile Ou face » , «Sain et sauf» prod/results/help.html.twig @@ -10004,8 +10015,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le image images Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig image rotation @@ -10020,42 +10031,42 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le index::advance_search: disable-facet Ne pas afficher les facettes contenant un seul résultat (expérimental) - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet Préférences sur les facettes - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet-order Ordre d'affichage des facettes - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet-tech-order Ordre par défaut - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet-values-order Ordre des valeurs de facettes - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: hidden-facet-values-order Facettes masquées - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: order-by-hits Trier les facettes par hits - web/prod/index.html.twig + web/prod/index.html.twig index:advanced-preferences:: use truncation Activer la troncature - web/prod/index.html.twig + web/prod/index.html.twig invite:: Redirection vers la zone d'authentification, cliquez sur OK pour continuer ou annulez @@ -10087,6 +10098,16 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le Le service sera de nouveau disponible dans quelques minutes. actions/Bridge/deactivated.html.twig + + lightbox::See_less_feedback + Voir moins de validations + web/lightbox/index.html.twig + + + lightbox::See_more_feedback + Voir plus de Validations + web/lightbox/index.html.twig + lightbox::list Vignette @@ -10095,9 +10116,19 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le lightbox::recaptitulatif Récapitulatif + mobile/lightbox/validate.html.twig web/lightbox/agreement_box.html.twig web/lightbox/validate.html.twig - mobile/lightbox/validate.html.twig + + + lightbox::see_less_basket + Voir moins de Paniers + web/lightbox/index.html.twig + + + lightbox::see_more_basket + Voir plus de paniers + web/lightbox/index.html.twig login:: Changer mon adresse email @@ -10117,10 +10148,10 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le login:: Mon compte Mon Compte + mobile/common/menubar.html.twig + web/account/account.html.twig web/common/menubar.html.twig web/common/menubar.html.twig - web/account/account.html.twig - mobile/common/menubar.html.twig login:: Visitez le lien suivant et suivez les instructions pour continuer, sinon ignorez cet email et il ne se passera rien @@ -10156,8 +10187,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le login::notification: Mise a jour du mot de passe avec succes Mise à jour du mot de passe effectuée - Controller/Root/AccountController.php Controller/Root/LoginController.php + Controller/Root/AccountController.php login::notification: demande de confirmation par mail envoyee @@ -10179,8 +10210,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le login::register: sujet email : confirmation de votre adresse email Confirmation de votre adresse e-mail - Notification/Mail/MailRequestEmailConfirmation.php Notification/Mail/MailRequestEmailUpdate.php + Notification/Mail/MailRequestEmailConfirmation.php login::register:email: Voici un compte rendu du traitement de vos demandes d'acces : @@ -10246,16 +10277,16 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le no Non - web/common/technical_datas.html.twig - user/import/view.html.twig - web/admin/subdefs.html.twig web/account/sessions.html.twig + web/admin/subdefs.html.twig + user/import/view.html.twig + web/common/technical_datas.html.twig no image selected Aucune image sélectionnée - actions/Tools/index.html.twig actions/Tools/videoEditor.html.twig + actions/Tools/index.html.twig non @@ -10266,9 +10297,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le notice Notice + web/lightbox/feed.html.twig lightbox/IE6/feed.html.twig lightbox/IE6/validate.html.twig - web/lightbox/feed.html.twig web/lightbox/validate.html.twig @@ -10296,9 +10327,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le Votre commande du : prod/orders/order_item.html.twig - + order-manager::order-item: accepted-item - order-manager::order-item: accepted-item + Media délivré prod/orders/order_item.html.twig @@ -10388,9 +10419,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le prod/orders/order_item.html.twig prod/orders/order_item.html.twig - + order-manager::order-item: rejected-item - order-manager::order-item: rejected-item + Media Non délivré prod/orders/order_item.html.twig @@ -10405,9 +10436,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le Tout sélectionner prod/orders/order_item.html.twig - + order-manager::order-item: selected-item - order-manager::order-item: selected-item + Media sélectionnés prod/orders/order_item.html.twig @@ -10572,17 +10603,17 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le panier:: ordre Validation ascendante Mieux noté - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig panier:: ordre Validation descendante Moins noté - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig panier:: ordre du panier Ordre du panier - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig panier:: renommer le panier @@ -10607,7 +10638,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le paniers:: panier recu de %pusher% Panier reçu de %pusher% - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig paniers::Vous etes sur le point de supprimer ce panier. Cette action est irreversible. Souhaitez-vous continuer ? @@ -10617,8 +10648,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le paniers::description du nouveau panier Donner une description au nouveau panier - prod/orders/order_item.html.twig prod/Baskets/Create.html.twig + prod/orders/order_item.html.twig par %user_name% @@ -10684,11 +10715,11 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le phraseanet:: adresse Adresse - web/common/dialog_export.html.twig web/setup/step2.html.twig + web/account/account.html.twig admin/collection/collection.html.twig web/admin/connected-users.html.twig - web/account/account.html.twig + web/common/dialog_export.html.twig phraseanet:: aide @@ -10696,14 +10727,14 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le web/common/menubar.html.twig web/common/menubar.html.twig - + phraseanet:: basket feedback - Rapport de validation avec description + Rapport de validation avec Notice prod/actions/printer_default.html.twig - + phraseanet:: baskets - phraseanet:: baskets + Zone de travail web/prod/tab_headers.html.twig @@ -10732,8 +10763,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le phraseanet:: details Détails - admin/collection/collection.html.twig admin/databox/databox.html.twig + admin/collection/collection.html.twig phraseanet:: hostname @@ -10778,7 +10809,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le phraseanet:: preview Prévisualisation prod/actions/edit_default.html.twig - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig phraseanet:: propositions @@ -10801,13 +10832,13 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le phraseanet:: thesaurus Thésaurus - web/prod/tab_headers.html.twig prod/actions/edit_default.html.twig - web/thesaurus/index.html.twig + web/prod/tab_headers.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/load-thesaurus.html.twig web/thesaurus/load-thesaurus.html.twig + web/thesaurus/index.html.twig phraseanet:: tri @@ -10924,9 +10955,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le Controller/Root/AccountController.php Controller/Root/AccountController.php - + phraseanet::error: failed to revoke some user access - Erreur pendant la révocation de droits utilisateur + Erreur pendant la révocation de droits utilisateur Controller/Root/AccountController.php @@ -11012,12 +11043,12 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le phraseanet::time:: a A - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::time:: de De - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::type:: audios @@ -11027,8 +11058,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le phraseanet::type:: documents Documents - web/prod/index.html.twig web/prod/toolbar.html.twig + web/prod/index.html.twig phraseanet::type:: images @@ -11063,35 +11094,35 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le preview:: Description Notice - web/prod/index.html.twig + web/prod/index.html.twig preview:: Historique Historique - web/prod/index.html.twig + web/prod/index.html.twig preview:: Popularite Popularité - web/prod/index.html.twig + web/prod/index.html.twig preview:: arreter le diaporama Arrêter - prod/preview/result_train.html.twig prod/preview/basket_train.html.twig - prod/preview/feed_train.html.twig - prod/preview/result_train_options.html.twig + prod/preview/result_train.html.twig prod/preview/reg_train.html.twig + prod/preview/result_train_options.html.twig + prod/preview/feed_train.html.twig preview:: demarrer le diaporama Diaporama - prod/preview/result_train.html.twig prod/preview/basket_train.html.twig - prod/preview/feed_train.html.twig - prod/preview/result_train_options.html.twig + prod/preview/result_train.html.twig prod/preview/reg_train.html.twig + prod/preview/result_train_options.html.twig + prod/preview/feed_train.html.twig preview::date @@ -11133,110 +11164,150 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le print:: basket feedback Rapport de validation avec description + prod/actions/printer_default.html.twig + + + print:: basket feedback only + Rapport de validation prod/actions/printer_default.html.twig print:: description - Description - prod/actions/printer_default.html.twig + Notice seule + prod/actions/printer_default.html.twig print:: image de choix et description - Prévisualisation et Légende - prod/actions/printer_default.html.twig + Prévisualisation et notice d'indexation + prod/actions/printer_default.html.twig print:: image de choix et description avec planche contact - Prévisualisation et Légende avec planche contact - prod/actions/printer_default.html.twig + Prévisualisation et notice avec planche contact + prod/actions/printer_default.html.twig print:: image de choix seulement Prévisualisation - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig print:: imagette - Imagette - prod/actions/printer_default.html.twig + Vignette + prod/actions/printer_default.html.twig print:: liste d'imagettes - Liste de vignettes - prod/actions/printer_default.html.twig + Liste de vignette(s) avec notice(s) + prod/actions/printer_default.html.twig print:: planche contact (mosaique) Planche contact - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig print_feedback:: Document generated on : Impression générée le : - Out/Module/PDFRecords.php + Out/Module/PDFRecords.php + + + print_feedback:: Feedback active + Validation en cours + Out/Module/PDFRecords.php + + + print_feedback:: Feedback expired + Validation Fermée + Out/Module/PDFRecords.php print_feedback:: Feedback expiring on : - Clôturée le : - Out/Module/PDFRecords.php + Expire le : + Out/Module/PDFRecords.php print_feedback:: Feedback initiated by : Validation envoyée par : - Out/Module/PDFRecords.php + Out/Module/PDFRecords.php - + print_feedback:: Feedback initiated on : - Début de validation le : - Out/Module/PDFRecords.php + Début de validation le : + Out/Module/PDFRecords.php - + print_feedback:: Feedback on basket %name% - Récapitulatif de validation de %name% - Out/Module/PDFRecords.php + Rapport de validation de : %name% + Out/Module/PDFRecords.php - + print_feedback:: Non - Non - Out/Module/PDFRecords.php + Non + Out/Module/PDFRecords.php - + print_feedback:: Oui - Oui - Out/Module/PDFRecords.php + Oui + Out/Module/PDFRecords.php - + print_feedback:: Participants : - Participants : - Out/Module/PDFRecords.php + Participants : + Out/Module/PDFRecords.php - + print_feedback:: Votes : - Approbations : + Approbations : + Out/Module/PDFRecords.php + + + print_feedback:: base name: + Base : + Out/Module/PDFRecords.php + + + print_feedback:: document Uuid: + Id unique de document : Out/Module/PDFRecords.php - + print_feedback:: non voté - Non exprimé - Out/Module/PDFRecords.php + Non exprimé + Out/Module/PDFRecords.php + + + print_feedback:: originale filename: + Nom de fichier : + Out/Module/PDFRecords.php + + + print_feedback:: record id: + Record id: + Out/Module/PDFRecords.php + + + print_feedback:: record title: + Titre : + Out/Module/PDFRecords.php prive Privé - Bridge/Youtube/upload.html.twig Bridge/Dailymotion/upload.html.twig + Bridge/Youtube/upload.html.twig privé Privé - Bridge/Youtube/video_modify.html.twig Bridge/Dailymotion/video_modify.html.twig + Bridge/Youtube/video_modify.html.twig processing En cours... - actions/Tools/index.html.twig actions/Tools/videoEditor.html.twig + actions/Tools/index.html.twig prod::Les enregistrements ne provienent pas tous de la meme base et ne peuvent donc etre traites ensemble @@ -11252,12 +11323,12 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le prod::advancesearch:tooltips:datefield_restriction_explanation Limiter la recherche des résultats à des dates - web/prod/index.html.twig + web/prod/index.html.twig prod::advancesearch:tooltips:field_restriction_explanation Effectuer une recherche sur le contenu d'un champ documentaire de type texte - web/prod/index.html.twig + web/prod/index.html.twig prod::collection deplacer egalement les documents rattaches a ce(s) regroupement(s) @@ -11277,12 +11348,12 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le prod::editing: %not_actionable% documents ne peuvent etre edites car vos droits sont induffisants %not_actionable% document(s) éditables, vous ne disposez pas des autorisations nécessaires - prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig prod::editing: 1 document ne peut etre edite car vos droits sont induffisants Vous ne possédez pas les autorisations d'accès requises pour éditer 1 document - prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig prod::editing: aucun documents ne peuvent etre edites car vos droits sont induffisants @@ -11377,17 +11448,27 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le prod::facet:base_label Bases - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php prod::facet:collection_label Collections - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php prod::facet:doctype_label Types de documents - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php + + + prod::feedback:feedback_set_title + Nom de la validation + prod/templates/push.html.twig + + + prod::push:push_set_title + Nom du panier de Push + prod/templates/push.html.twig prod::recherche: Attention : la liste des bases selectionnees pour la recherche a ete changee. @@ -11517,8 +11598,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le prod::tools: document Document - Controller/Prod/ShareController.php Controller/Prod/ToolsController.php + Controller/Prod/ShareController.php prod:app trash: also-move-record @@ -11599,40 +11680,40 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le public Public - Bridge/Youtube/upload.html.twig - Bridge/Youtube/video_modify.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Dailymotion/video_modify.html.twig + Bridge/Youtube/upload.html.twig + Bridge/Youtube/video_modify.html.twig publication : autheur Auteur - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : email autheur Adresse e-mail de l'auteur - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : sous titre Sous-titre - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : titre Titre de la publication - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications. Voici votre fil RSS personnel. Il vous permettra d'être tenu informé des publications. - Controller/Prod/FeedController.php - Controller/Prod/FeedController.php + Controller/Prod/FeedController.php + Controller/Prod/FeedController.php publications:: s'abonner aux publications @@ -11643,14 +11724,14 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le publications::Ne le partagez pas, il est strictement confidentiel Ne le partagez pas, il est strictement confidentiel - Controller/Prod/FeedController.php - Controller/Prod/FeedController.php + Controller/Prod/FeedController.php + Controller/Prod/FeedController.php publications::votre rss personnel Votre rss personnel - Controller/Prod/FeedController.php - Controller/Prod/FeedController.php + Controller/Prod/FeedController.php + Controller/Prod/FeedController.php push::mail:: Rapport de validation de %user% pour %title% @@ -11670,19 +11751,19 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le raccourci :: a propos des raccourcis claviers A propos des raccourcis clavier - web/prod/index.html.twig + web/prod/index.html.twig raccourcis :: ne plus montrer cette aide Ne plus montrer cette aide - web/prod/index.html.twig + web/prod/index.html.twig rafraichir Rafraîchir + prod/WorkZone/Story.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Basket.html.twig - prod/WorkZone/Story.html.twig prod/results/feeds.html.twig prod/results/feeds.html.twig @@ -11744,17 +11825,17 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le reponses:: images par pages : Résultats par page - web/prod/index.html.twig + web/prod/index.html.twig reponses:: mode liste Liste - web/prod/index.html.twig + web/prod/index.html.twig reponses:: mode vignettes Vignettes - web/prod/index.html.twig + web/prod/index.html.twig reponses:: partager @@ -11776,7 +11857,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le reponses:: taille des images : Taille des vignettes - web/prod/index.html.twig + web/prod/index.html.twig reponses::document sans titre @@ -11818,8 +11899,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le report:: Connexion Connexions classes/module/report.php - web/report/all_content.html.twig web/report/report_layout.html.twig + web/report/all_content.html.twig report:: Databox content @@ -11964,21 +12045,21 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le report:: non-renseigne Non-Renseigné - module/report/nav.php + module/report/add.php + module/report/question.php + module/report/download.php module/report/activity.php module/report/activity.php module/report/activity.php - module/report/filter.php - module/report/edit.php - module/report/sent.php - module/report/download.php - module/report/add.php - module/report/validate.php - module/report/push.php - module/report/question.php module/report/connexion.php module/report/connexion.php module/report/connexion.php + module/report/push.php + module/report/sent.php + module/report/validate.php + module/report/nav.php + module/report/edit.php + module/report/filter.php report:: page d'accueil @@ -12011,8 +12092,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le report:: question Questions classes/module/report.php - module/report/filter.php module/report/question.php + module/report/filter.php report:: questions @@ -12562,8 +12643,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le task::ftp:proxy Proxy - task-manager/task-editor/ftp-pull.html.twig task-manager/task-editor/ftp.html.twig + task-manager/task-editor/ftp-pull.html.twig task::ftp:proxy password @@ -12573,8 +12654,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le task::ftp:proxy port Port - task-manager/task-editor/ftp-pull.html.twig task-manager/task-editor/ftp.html.twig + task-manager/task-editor/ftp-pull.html.twig task::ftp:proxy user @@ -12685,8 +12766,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le thesaurus:: Nouveau synonyme Nouveau synonyme - web/thesaurus/new-term.html.twig web/thesaurus/thesaurus.html.twig + web/thesaurus/new-term.html.twig thesaurus:: Nouveau terme @@ -12824,15 +12905,15 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le thesaurus:: export au format texte Texte - web/thesaurus/export-text.html.twig web/thesaurus/export-text-dialog.html.twig web/thesaurus/export-text-dialog.html.twig + web/thesaurus/export-text.html.twig thesaurus:: export en topics Thèmes - web/thesaurus/export-topics.html.twig web/thesaurus/export-topics-dialog.html.twig + web/thesaurus/export-topics.html.twig thesaurus:: exporter @@ -13117,15 +13198,15 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le thesaurus::menu: supprimer Supprimer + web/thesaurus/properties.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig - web/thesaurus/properties.html.twig thumbnail validation Validation de la vignette - actions/Tools/index.html.twig actions/Tools/videoEditor.html.twig + actions/Tools/index.html.twig tout le monde @@ -13160,7 +13241,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le updated_on mis à jour le - web/prod/index.html.twig + web/prod/index.html.twig upload:: Destination (collection) : @@ -13171,9 +13252,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le upload:: Status : Appliquer les status - prod/upload/lazaret.html.twig prod/upload/upload.html.twig prod/upload/upload-flash.html.twig + prod/upload/lazaret.html.twig users rights have been reseted @@ -13183,23 +13264,23 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le validate Valider + actions/Tools/videoEditor.html.twig actions/Tools/index.html.twig actions/Tools/index.html.twig actions/Tools/index.html.twig actions/Tools/index.html.twig - actions/Tools/videoEditor.html.twig validation:: NON Non - web/lightbox/agreement_box.html.twig mobile/lightbox/basket_element.html.twig + web/lightbox/agreement_box.html.twig validation:: OUI Oui - web/lightbox/agreement_box.html.twig mobile/lightbox/basket_element.html.twig + web/lightbox/agreement_box.html.twig validation:: editer ma note @@ -13219,10 +13300,10 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le validation::envoyer mon rapport Envoyer mon rapport - web/lightbox/basket_options.html.twig - web/lightbox/basket_options.html.twig mobile/lightbox/validate.html.twig mobile/lightbox/validate.html.twig + web/lightbox/basket_options.html.twig + web/lightbox/basket_options.html.twig version @@ -13237,8 +13318,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le video vidéo - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig video range extractor @@ -13253,9 +13334,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le yes Oui - web/common/technical_datas.html.twig - web/admin/subdefs.html.twig web/account/sessions.html.twig + web/admin/subdefs.html.twig + web/common/technical_datas.html.twig you are about to change the representation thumbnail of your video diff --git a/resources/locales/messages.nl.xlf b/resources/locales/messages.nl.xlf index 69b4e68f73..30b26066a0 100644 --- a/resources/locales/messages.nl.xlf +++ b/resources/locales/messages.nl.xlf @@ -1,6 +1,6 @@ - +
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. @@ -9,8 +9,8 @@ - Form/Configuration/EmailFormType.php Form/Login/PhraseaAuthenticationForm.php + Form/Configuration/EmailFormType.php Add @@ -28,7 +28,7 @@ This avoids anonymous users to access to the content of the push if they were able to get the display url through a forwarded mail for example. - prod/templates/push.html.twig + prod/templates/push.html.twig {0} No results|{1} Result|]1,Inf[ Results @@ -121,9 +121,9 @@ %basket_length% documents %basket_length% documenten - web/lightbox/index.html.twig - web/lightbox/index.html.twig mobile/lightbox/validate.html.twig + web/lightbox/index.html.twig + web/lightbox/index.html.twig %countable% documents can not be modified. @@ -196,22 +196,22 @@ %nb_records% records %nb_records% records - prod/Tooltip/Basket.html.twig prod/Tooltip/Story.html.twig + prod/Tooltip/Basket.html.twig %nb_view% vue %nb_view% weergave + Bridge/Dailymotion/element_informations.html.twig Bridge/Youtube/element_informations.html.twig Bridge/Flickr/element_informations.html.twig - Bridge/Dailymotion/element_informations.html.twig %nb_view% vues %nb_view% weergaven + Bridge/Dailymotion/element_informations.html.twig Bridge/Youtube/element_informations.html.twig Bridge/Flickr/element_informations.html.twig - Bridge/Dailymotion/element_informations.html.twig selectionnes]]> @@ -282,7 +282,7 @@ %record_count% records match the unique identifier : %record_count% records zijn gelijk aan de unieke id : - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig %s field has been created with success. @@ -387,17 +387,17 @@ (validation) a envoyer te versturen - web/lightbox/index.html.twig + web/lightbox/index.html.twig (validation) envoyee verstuurd - web/lightbox/index.html.twig + web/lightbox/index.html.twig (validation) session terminee sessie beïndigd - web/lightbox/index.html.twig + web/lightbox/index.html.twig *Phraseanet Navigator* is a smartphone application that allow user to connect on this instance @@ -457,8 +457,8 @@ A A - web/admin/editusers_timelimit_sbas.html.twig web/admin/editusers_timelimit.html.twig + web/admin/editusers_timelimit_sbas.html.twig A document has been quarantined @@ -493,7 +493,7 @@ A record matches the unique identifier : Een record is gelijk aan de unieke id : - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig A required field is missing or has an empty value @@ -621,7 +621,7 @@ Accuse de reception Ontvangstbevestiging Controller/Prod/LanguageController.php - prod/templates/push.html.twig + prod/templates/push.html.twig Accuse de reception indisponible, vous n'avez pas declare d'adresse email @@ -631,22 +631,22 @@ Action Forbidden : You are not the publisher Verboden actie : U bent niet de publisher - Controller/Prod/FeedController.php + Controller/Prod/FeedController.php Actions Acties + Bridge/Dailymotion/actionelements.html.twig + Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actionelements.html.twig Bridge/Youtube/actioncontainers.html.twig Bridge/Flickr/actionelements.html.twig Bridge/Flickr/actioncontainers.html.twig - Bridge/Dailymotion/actionelements.html.twig - Bridge/Dailymotion/actioncontainers.html.twig Activate highlight Activate highlight - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig @@ -658,8 +658,8 @@ Activer Activeren admin/databox/databox.html.twig - web/admin/editusers_timelimit_sbas.html.twig web/admin/editusers_timelimit.html.twig + web/admin/editusers_timelimit_sbas.html.twig Activer le grant_type de type password pour votre application @@ -680,9 +680,9 @@ Add Toevoegen prod/actions/Push.html.twig - prod/User/Add.html.twig - prod/upload/lazaret.html.twig - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig + prod/User/Add.html.twig Add a @@ -781,37 +781,42 @@ Affichage Tonen - web/prod/index.html.twig + web/prod/index.html.twig Affichage au demarrage Tonen bij opstart - web/prod/index.html.twig + web/prod/index.html.twig Afficher la fiche descriptive De beschrijvingsfiche tonen - web/prod/index.html.twig + web/prod/index.html.twig Afficher le titre De titel tonen - web/prod/index.html.twig + web/prod/index.html.twig Afficher les status De statussen tonen - web/prod/index.html.twig + web/prod/index.html.twig Afficher une icone Pictogram tonen - web/prod/index.html.twig + web/prod/index.html.twig After metadata After metadata - web/prod/index.html.twig + web/prod/index.html.twig + + + Aggregated + Aggregated + admin/search-engine/general-aggregation.html.twig Aggregation @@ -821,7 +826,7 @@ Aide Help - web/prod/index.html.twig + web/prod/index.html.twig Aide sur les expressions regulieres @@ -831,16 +836,16 @@ Ajouter a Toevoegen aan + Bridge/Dailymotion/actionelements.html.twig Bridge/Youtube/actionelements.html.twig Bridge/Flickr/actionelements.html.twig - Bridge/Dailymotion/actionelements.html.twig Ajouter ma selection courrante Voeg mijn huidige selectie toe - prod/orders/order_item.html.twig - prod/Story/Create.html.twig prod/Baskets/Create.html.twig + prod/Story/Create.html.twig + prod/orders/order_item.html.twig Ajouter un nouvel utilisateur @@ -861,24 +866,19 @@ All Alle Form/Configuration/CustomLinkFormType.php + WorkZone/Browser/Browser.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig - WorkZone/Browser/Browser.html.twig task-manager/task-editor/subdefs.html.twig All these conditions All these conditions - web/prod/index.html.twig - - - All values - All values - admin/fields/templates.html.twig + web/prod/index.html.twig Aller a @@ -943,14 +943,14 @@ Alphabetic asc Alphabetic asc - web/prod/index.html.twig - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Alphabetic desc Alphabetic desc - web/prod/index.html.twig + web/prod/index.html.twig Also delete records that rely on groupings. @@ -962,6 +962,16 @@ Er is een fout opgetreden Model/Manipulator/LazaretManipulator.php Model/Manipulator/LazaretManipulator.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php Controller/Admin/DataboxesController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php @@ -974,27 +984,17 @@ Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php + Controller/Prod/BasketController.php + Controller/Prod/ToolsController.php Controller/Prod/LazaretController.php Controller/Prod/MoveCollectionController.php - Controller/Prod/ToolsController.php - Controller/Prod/BasketController.php Controller/Prod/StoryController.php - admin/collection/suggested_value.html.twig - admin/collection/collection.html.twig web/admin/users.html.twig - task-manager/task-editor/task.html.twig admin/databox/databox.html.twig web/admin/databases.html.twig + admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig + task-manager/task-editor/task.html.twig An error occured when wanting to change status! @@ -1036,9 +1036,9 @@ An error occurred Er is een fout opgetreden Order/Controller/ProdOrderController.php - Controller/Admin/CollectionController.php - Controller/Admin/SearchEngineController.php Controller/Admin/DataboxController.php + Controller/Admin/SearchEngineController.php + Controller/Admin/CollectionController.php Controller/Prod/BasketController.php Controller/Api/V3Controller.php Controller/Api/V1Controller.php @@ -1073,7 +1073,7 @@ Aperture Diafragma - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php web/common/technical_datas.html.twig @@ -1134,14 +1134,14 @@ Apply a template Pas een sjabloon toe - web/admin/users.html.twig web/admin/editusers.html.twig + web/admin/users.html.twig Apply changes Wijzigingen toepassen - actions/Property/index.html.twig actions/Property/type.html.twig + actions/Property/index.html.twig Apply status on story children. @@ -1161,8 +1161,8 @@ Archive Archief - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig Are you sure you want delete users rights ? @@ -1286,7 +1286,7 @@ Audio Samplerate Audio Samplerate - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Audio channel @@ -1296,7 +1296,7 @@ Audio codec Audio codec - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php AudioSamplerate @@ -1372,20 +1372,20 @@ Autorisation d'acces Autorisation d'acces - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Autoriser Toestaan - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ? Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ? - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Available in multi-export tab @@ -1400,10 +1400,10 @@ Back Terug + mobile/lightbox/basket_element.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig - mobile/lightbox/basket_element.html.twig mobile/lightbox/validate.html.twig @@ -1424,10 +1424,10 @@ Bad request format, only JSON is allowed Slecht verzoek formaat, enkel JSON is toegestaan + Controller/Root/AccountController.php + Controller/Admin/DataboxController.php Controller/Admin/RootController.php Controller/Admin/RootController.php - Controller/Admin/DataboxController.php - Controller/Root/AccountController.php Bad request, please contact an admin @@ -1442,9 +1442,9 @@ Base %base% Database %base% - web/admin/editusers_timelimit_sbas.html.twig - web/admin/editusers_timelimit.html.twig web/admin/editusers_quotas.html.twig + web/admin/editusers_timelimit.html.twig + web/admin/editusers_timelimit_sbas.html.twig Base could not be created @@ -1456,6 +1456,11 @@ Database met succes geledigd Controller/Admin/DataboxController.php + + Basket + Basket + prod/WorkZone/Macros.html.twig + Basket created Mandje werd aangemaakt @@ -1554,7 +1559,7 @@ By field By field - web/prod/index.html.twig + web/prod/index.html.twig CHAMPS @@ -1564,7 +1569,7 @@ Camera Model Cameramodel - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php web/common/technical_datas.html.twig @@ -1572,12 +1577,12 @@ Annuleren Controller/Prod/LanguageController.php prod/actions/delete_records_confirm.html.twig - actions/Property/index.html.twig actions/Property/type.html.twig - prod/User/Add.html.twig - admin/fields/templates.html.twig + actions/Property/index.html.twig + prod/User/Add.html.twig task-manager/task-editor/task.html.twig user/import/view.html.twig + admin/fields/templates.html.twig Cancel all @@ -1603,9 +1608,9 @@ Categorie Categorie + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/upload.html.twig Bridge/Youtube/video_modify.html.twig - Bridge/Dailymotion/video_modify.html.twig Ce champ est decrit comme element du %DublinCoreElementSet% @@ -1635,14 +1640,14 @@ Ce champ est obligatoire Dit veld is verplicht - Bridge/Api/Dailymotion.php - Bridge/Api/Dailymotion.php + Bridge/Api/Flickr.php + Bridge/Api/Flickr.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php - Bridge/Api/Flickr.php - Bridge/Api/Flickr.php + Bridge/Api/Dailymotion.php + Bridge/Api/Dailymotion.php Ce champ est relie a une branche de thesaurus @@ -1663,12 +1668,12 @@ Ce champ est trop long %length% caracteres max Ce champ est trop long %length% caracteres max - Bridge/Api/Dailymotion.php - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php + Bridge/Api/Dailymotion.php Ce champ est utilise en titre a l'affichage @@ -1745,8 +1750,8 @@ Choisir Kiezen - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig web/admin/subdefs.html.twig web/admin/subdefs.html.twig web/admin/subdefs.html.twig @@ -1758,19 +1763,14 @@ Choose a new password Kies een nieuw paswoord - web/login/renew-password.html.twig web/account/change-password.html.twig + web/login/renew-password.html.twig Choose the title of the document to export Kies een naam voor het document bij de export Form/Configuration/ActionsFormType.php - - City - Stad - prod/User/Add.html.twig - Civility Beleefdheid @@ -1779,8 +1779,8 @@ Clear Wis - admin/task-manager/log_scheduler.html.twig admin/task-manager/log_task.html.twig + admin/task-manager/log_scheduler.html.twig Clear list @@ -1828,14 +1828,14 @@ Collection Collectie prod/Story/Create.html.twig - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig admin/databox/details.html.twig Collection %collection% Collectie %collection% - web/admin/editusers_timelimit.html.twig web/admin/editusers_quotas.html.twig + web/admin/editusers_timelimit.html.twig Collection empty successful @@ -1845,7 +1845,7 @@ Collection order Collection order - web/prod/index.html.twig + web/prod/index.html.twig Color Depth @@ -1860,13 +1860,13 @@ Colorspace Colorspace - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Commande Bestelling - eventsmanager/notify/orderdeliver.php eventsmanager/notify/ordernotdelivered.php + eventsmanager/notify/orderdeliver.php Commande du %date% @@ -1898,10 +1898,10 @@ Confidentialite Vertrouwelijk - Bridge/Youtube/upload.html.twig - Bridge/Youtube/video_modify.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Dailymotion/video_modify.html.twig + Bridge/Youtube/upload.html.twig + Bridge/Youtube/video_modify.html.twig Confidentialite : privee @@ -1916,7 +1916,7 @@ Configuration Configuratie - web/prod/index.html.twig + web/prod/index.html.twig Confirm new email address @@ -1941,13 +1941,13 @@ Connection Verbinding - web/login/index.html.twig - web/login/index.html.twig - login/oauth/login.html.twig login/providers/mapping.html.twig login/providers/mapping.html.twig login/providers/bind.html.twig login/providers/bind.html.twig + web/login/index.html.twig + web/login/index.html.twig + login/oauth/login.html.twig Connection is OK but database does not exists or can not be accessed @@ -1972,7 +1972,7 @@ Contains Contains - web/prod/index.html.twig + web/prod/index.html.twig Continuer ? @@ -2027,7 +2027,7 @@ Couleur de selection Kleur van de selectie - web/prod/index.html.twig + web/prod/index.html.twig Country @@ -2048,7 +2048,7 @@ Create index Create index - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php Creation date @@ -2068,9 +2068,9 @@ Creer Maken + Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actioncontainers.html.twig Bridge/Flickr/actioncontainers.html.twig - Bridge/Dailymotion/actioncontainers.html.twig Creer la tache d'ecriture des metadonnees @@ -2115,8 +2115,8 @@ Creer une playlist Maak een playlist - Bridge/Youtube/playlist_createcontainer.html.twig Bridge/Dailymotion/playlist_createcontainer.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig Creez une application pour commencer a utiliser l'API Phraseanet @@ -2138,7 +2138,7 @@ errors Current configuration contains some errors - admin/fields/templates.html.twig + admin/fields/templates.html.twig Current operations cannot be executed because the site is temporarily in maintenance mode. Wait a few minutes and try your request again @@ -2236,12 +2236,12 @@ Date Datum - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig Date Added Date Added - web/prod/index.html.twig + web/prod/index.html.twig Date Creation @@ -2251,7 +2251,7 @@ Date Updated Date Updated - web/prod/index.html.twig + web/prod/index.html.twig Date de connexion @@ -2261,8 +2261,8 @@ Date de création Date de création - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig Date de demande @@ -2274,19 +2274,19 @@ Date de modification Date de modification - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig Date(s) from field(s) Date(s) from field(s) - web/prod/index.html.twig + web/prod/index.html.twig De De - web/admin/editusers_timelimit_sbas.html.twig web/admin/editusers_timelimit.html.twig + web/admin/editusers_timelimit_sbas.html.twig Deadline @@ -2358,7 +2358,7 @@ Defined by admin Defined by admin - web/prod/index.html.twig + web/prod/index.html.twig Defined in Apache configuration @@ -2378,8 +2378,8 @@ Delete Verwijder - prod/upload/lazaret.html.twig - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig admin/task-manager/templates.html.twig @@ -2390,8 +2390,8 @@ Delete all users rights Verwijder alle gebruikersrechten - web/admin/users.html.twig web/admin/editusers.html.twig + web/admin/users.html.twig Delete basket @@ -2433,9 +2433,9 @@ Deplacement %n_element% elements %n_element% elementen verplaatsen + Bridge/Dailymotion/video_moveinto_playlist.html.twig Bridge/Youtube/video_moveinto_playlist.html.twig Bridge/Flickr/photo_moveinto_photoset.html.twig - Bridge/Dailymotion/video_moveinto_playlist.html.twig Dernier access @@ -2461,14 +2461,14 @@ Description Beschrijving - Bridge/Youtube/upload.html.twig + Bridge/Dailymotion/upload.html.twig + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/upload.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photoset_createcontainer.html.twig Bridge/Flickr/upload.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/upload.html.twig - Bridge/Dailymotion/video_modify.html.twig prod/Tooltip/DCESFieldInfo.html.twig web/developers/application_form.html.twig @@ -2493,8 +2493,8 @@ Details Details - admin/collection/details.html.twig admin/databox/details.html.twig + admin/collection/details.html.twig Developpeur @@ -2510,8 +2510,8 @@ Dimension Afmeting Media/Subdef/Image.php - Media/Subdef/Video.php Media/Subdef/Unknown.php + Media/Subdef/Video.php Disable document type sharing @@ -2536,7 +2536,7 @@ Display technical data Display technical data - web/prod/index.html.twig + web/prod/index.html.twig Display thumbnails @@ -2546,7 +2546,7 @@ Do not display Do not display - web/prod/index.html.twig + web/prod/index.html.twig Do not forget to restart the tasks scheduler @@ -2646,7 +2646,7 @@ Drop index Drop index - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php Duree @@ -2717,9 +2717,9 @@ Edition de 1 element Editie van het 1 element + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/video_modify.html.twig Edition des droits de %display_name% @@ -2754,26 +2754,26 @@ ElasticSearch index name ElasticSearch index name - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig ElasticSearch server host ElasticSearch server host - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig ElasticSearch service port ElasticSearch service port - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig Email Email - admin/publications/fiche.html.twig web/admin/dashboard.html.twig + admin/publications/fiche.html.twig Email '%email%' for login '%login%' already exists in database @@ -2882,8 +2882,8 @@ En cours d'encodage Bezig met coderen - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php actions/Bridge/records_list.html.twig @@ -3020,7 +3020,7 @@ Equals Equals - web/prod/index.html.twig + web/prod/index.html.twig Erreur @@ -3030,8 +3030,8 @@ Erreur ! Fout ! - web/lightbox/error.html.twig mobile/lightbox/error.html.twig + web/lightbox/error.html.twig Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas @@ -3124,8 +3124,8 @@ Error while sending the file Fout bij het versturen van het bestaan - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Error while uploading @@ -3135,8 +3135,8 @@ Etendue de la publication Omvang van de publicatie - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Etes vous sur de supprimer %number% photos ? @@ -3151,19 +3151,19 @@ Etes vous sur de supprimer %number% playlists ? Bent u zeker om %number% playlists te verwijderen ? - Bridge/Youtube/playlist_deleteelement.html.twig Bridge/Dailymotion/playlist_deleteelement.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig Etes vous sur de supprimer %number% videos ? Bent u zeker om %number% videos te verwijderen ? - Bridge/Youtube/video_deleteelement.html.twig Bridge/Dailymotion/video_deleteelement.html.twig + Bridge/Youtube/video_deleteelement.html.twig Ex : Paris, bleu, montagne Ex : Paris, bleu, montagne - web/prod/index.html.twig + web/prod/index.html.twig Executables externes @@ -3221,8 +3221,9 @@ Feedback Feedback Controller/Prod/LanguageController.php - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig @@ -3312,13 +3313,13 @@ Filename Bestandsnaam - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig Fils disponibles Beschikbare paden - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig Filter @@ -3351,7 +3352,7 @@ FlashFired FlashFired - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Flatten layers @@ -3367,7 +3368,7 @@ Force authentication Force authentication - prod/templates/push.html.twig + prod/templates/push.html.twig Force sending of the document ? @@ -3387,10 +3388,10 @@ Forgot password? Wachtwoord vergeten? - web/login/index.html.twig - login/oauth/login.html.twig login/providers/mapping.html.twig login/providers/bind.html.twig + web/login/index.html.twig + login/oauth/login.html.twig Forgot your password? @@ -3410,7 +3411,7 @@ FrameRate FrameRate - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Frequence d'echantillonage @@ -3496,7 +3497,7 @@ Get setting form index Get setting form index - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php Gives the option to your application to communicate with Phraseanet. This webhook can be used to trigger some actions on your application side. @@ -3556,7 +3557,7 @@ Graphiste (preview au rollover) Graficus (preview au rollover) - web/prod/index.html.twig + web/prod/index.html.twig Great @@ -3571,9 +3572,9 @@ Guest Gast + mobile/common/menubar.html.twig web/common/menubar.html.twig web/common/menubar.html.twig - mobile/common/menubar.html.twig Guest access @@ -3603,9 +3604,9 @@ Hello %username% Hallo %username% + api/auth/end_user_authorization.html.twig api/auth/native_app_access_token.html.twig api/auth/end_user_authorization.html.twig - api/auth/end_user_authorization.html.twig Help @@ -3625,11 +3626,11 @@ Home Startpagina - login/layout/base-layout.html.twig - login/include/language-block.html.twig mobile/lightbox/basket_element.html.twig mobile/lightbox/feed.html.twig mobile/lightbox/validate.html.twig + login/include/language-block.html.twig + login/layout/base-layout.html.twig Homepage slideshow @@ -3644,8 +3645,8 @@ I have read the terms of use Ik heb de gebruiksvoorwaarden gelezen - web/login/register-provider.html.twig web/login/register-classic.html.twig + web/login/register-provider.html.twig IP @@ -3655,7 +3656,7 @@ ISO ISO - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php ISO sensibility @@ -3665,7 +3666,7 @@ Iconographe (description au rollover) Iconographe (beschrijving bij de rollover) - web/prod/index.html.twig + web/prod/index.html.twig Id @@ -3736,7 +3737,7 @@ In the answer grid In the answer grid - web/prod/index.html.twig + web/prod/index.html.twig Include Business-fields in caption @@ -3768,9 +3769,9 @@ Informations Informatie - admin/user/registrations.html.twig - web/admin/dashboard.html.twig web/account/base.html.twig + web/admin/dashboard.html.twig + admin/user/registrations.html.twig Informations personnelles @@ -3785,8 +3786,8 @@ Inscription Inschrijving - web/login/register.html.twig web/login/register-classic.html.twig + web/login/register.html.twig Install in progess @@ -3806,8 +3807,8 @@ Invalid file format Ongeldige bestandsindeling - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Invalid file type @@ -3818,8 +3819,8 @@ Invalid file type, only (%supported_file_types%) file formats are supported Ongeldig bestandsformaat, enkel (%supported_file_types%) bestandsformaten worden ondersteund - user/import/file.html.twig admin/databox/databox.html.twig + user/import/file.html.twig admin/statusbit/edit.html.twig @@ -3830,8 +3831,8 @@ Invalid labels parameter Ongeldige parameter voor labels - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Invalid link. @@ -3857,8 +3858,8 @@ Inverser Omkeren - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig It is not recommended to install Phraseanet without HTTPS support @@ -3893,8 +3894,8 @@ L'upload a echoue De upload is mislukt - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php L'upload concernant le record %title% sur le compte %bridge_name% a echoue pour les raisons suivantes : %reason% @@ -3904,17 +3905,17 @@ L'utilisateur approuve ce document De gebruiker keurt dit document goed - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig L'utilisateur desapprouve ce document De gebruiker keurt dit document af - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig L'utilisateur n'a pas encore donne son avis sur ce document De gebruiker heeft nog zijn mening niet gegeven over dit document - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig La connection vers le serveur distant est OK @@ -3931,20 +3932,20 @@ La taille maximale d'une video est de %duration% minutes. La taille maximale d'une video est de %duration% minutes. - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video a ete rejetee De video werd verworpen - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video a ete supprimee De video werd verwijderd - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video est restreinte @@ -3960,7 +3961,7 @@ Language Language - web/prod/index.html.twig + web/prod/index.html.twig Last Name @@ -3990,7 +3991,7 @@ Last uploaded version Laatst opgeladen versie - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig Le bridge Dailymotion ne prend en charge que les videos @@ -4040,16 +4041,16 @@ Le poids maximum d'un fichier est de %size% Le poids maximum d'un fichier est de %size% - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Le record n'a pas de fichier physique Het record heeft geen fisieke documenten - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Le token n'a pas encore ete genere @@ -4070,9 +4071,9 @@ Les elements ne peuvent etre uploades (problemes de type ou de droit) De elementen kunnen niet worden geuploaded (problemen met het type of met de rechten) + Bridge/Dailymotion/upload.html.twig Bridge/Youtube/upload.html.twig Bridge/Flickr/upload.html.twig - Bridge/Dailymotion/upload.html.twig Les indications donnees ci dessous sont a titre informatif. @@ -4097,7 +4098,7 @@ Les termes apparaissent dans le(s) champs De termen verschijnen in de veld(en) - web/prod/index.html.twig + web/prod/index.html.twig Light Value @@ -4107,14 +4108,14 @@ Lightbox Lightbox - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig Limite temporelle Tijdelijk limiet - web/admin/editusers_timelimit_sbas.html.twig web/admin/editusers_timelimit.html.twig + web/admin/editusers_timelimit_sbas.html.twig Limited vocabulary @@ -4193,9 +4194,9 @@ Login Form/Login/PhraseaAuthenticationForm.php actions/Feedback/ListsMacros.html.twig - login/oauth/login.html.twig login/providers/mapping.html.twig login/providers/bind.html.twig + login/oauth/login.html.twig Login %login% already exists in database @@ -4227,7 +4228,7 @@ Ma derniere question Mijn laatste vraag - web/prod/index.html.twig + web/prod/index.html.twig Mail line %line% is empty @@ -4313,7 +4314,7 @@ Message Bericht Controller/Prod/LanguageController.php - prod/templates/push.html.twig + prod/templates/push.html.twig Message automatique de Phraseanet @@ -4333,7 +4334,7 @@ MimeType MimeType - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Minimum number of letters before truncation @@ -4348,8 +4349,8 @@ Missing labels parameter Ontbrekende parameter voor labels - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Missing mandatory parameter %parameter% @@ -4384,7 +4385,7 @@ Mode de presentation Presentatie mode - web/prod/index.html.twig + web/prod/index.html.twig Modele de donnees @@ -4491,8 +4492,8 @@ Ne pas autoriser Niet toestaan - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Ne pas creer de DataBox maintenant @@ -4525,15 +4526,15 @@ Next Volgende + actions/Feedback/ListsMacros.html.twig prod/orders/order_box.html.twig prod/orders/order_box.html.twig - actions/Feedback/ListsMacros.html.twig No Nee - web/developers/applications.html.twig web/account/account.html.twig + web/developers/applications.html.twig No URL available @@ -4653,14 +4654,14 @@ Nom du nouveau panier Naam van het nieuwe mandje - prod/orders/order_item.html.twig prod/Baskets/Create.html.twig + prod/orders/order_item.html.twig Non-Restreinte (publique) Niet beperkt (publiek) - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig None @@ -4677,7 +4678,7 @@ None of the selected records can be printed Geen enkele van de geselecteerde records kunnen geprint worden - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig None of the selected records can be pushed. @@ -4697,7 +4698,8 @@ Not aggregated Not aggregated - admin/fields/templates.html.twig + admin/search-engine/general-aggregation.html.twig + admin/fields/templates.html.twig Notification par email @@ -4763,13 +4765,13 @@ Number of replicas Number of replicas - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig Number of shards Number of shards - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig @@ -4780,8 +4782,8 @@ OK OK - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Ok @@ -4807,7 +4809,7 @@ One of these conditions One of these conditions - web/prod/index.html.twig + web/prod/index.html.twig Only %nbEditableDocuments% records can be modified. @@ -4832,10 +4834,10 @@ Or login with Of meld aan met - api/auth/end_user_authorization.html.twig + web/login/register.html.twig web/login/index.html.twig login/oauth/login.html.twig - web/login/register.html.twig + api/auth/end_user_authorization.html.twig Order @@ -4870,7 +4872,7 @@ Orientation Orientation - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Original name @@ -4907,25 +4909,25 @@ Paniers Mandjes - web/lightbox/index.html.twig - lightbox/IE6/validate.html.twig - web/lightbox/validate.html.twig - web/account/account.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/account/account.html.twig + web/lightbox/index.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig Par %author% Per %author% + mobile/lightbox/feed.html.twig prod/results/feeds_entry.html.twig prod/results/entry.html.twig - mobile/lightbox/feed.html.twig Password Wachtwoord - Form/Login/PhraseaRegisterForm.php Form/Login/PhraseaAuthenticationForm.php + Form/Login/PhraseaRegisterForm.php web/account/account.html.twig @@ -4958,11 +4960,6 @@ Pause Controller/Prod/LanguageController.php - - Pays - Pays - prod/User/Add.html.twig - Periodically fetches an FTP repository content locally Periodically fetches an FTP repository content locally @@ -5027,14 +5024,14 @@ Playlist Afspeellijst - Bridge/Youtube/actionelements.html.twig Bridge/Dailymotion/actionelements.html.twig + Bridge/Youtube/actionelements.html.twig Playlists Afspeellijsten - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Please accept the terms of use to register. @@ -5157,8 +5154,8 @@ Voorkeuren web/prod/index.html.twig web/prod/index.html.twig - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Prefix for notification emails @@ -5173,12 +5170,12 @@ Presentation de vignettes Presentatie van de thumbnails - web/prod/index.html.twig + web/prod/index.html.twig Presentation de vignettes de panier Presentatie van de thumbnails in het mandje - web/prod/index.html.twig + web/prod/index.html.twig Presets @@ -5188,9 +5185,9 @@ Previous Vorige + actions/Feedback/ListsMacros.html.twig prod/orders/order_box.html.twig prod/orders/order_box.html.twig - actions/Feedback/ListsMacros.html.twig Print @@ -5200,8 +5197,8 @@ Problemes de connexion ? Problemes de connexion ? - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Process the registration @@ -5231,10 +5228,10 @@ Publications Publicaties - web/prod/index.html.twig - web/common/menubar.html.twig + web/prod/index.html.twig admin/publications/wrapper.html.twig web/admin/tree.html.twig + web/common/menubar.html.twig Publier @@ -5244,8 +5241,8 @@ Publique Publiek - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Publishers @@ -5255,8 +5252,9 @@ Push Push - Controller/Prod/LanguageController.php eventsmanager/notify/push.php + Controller/Prod/LanguageController.php + prod/WorkZone/Macros.html.twig Push configuration @@ -5343,80 +5341,80 @@ Raccourcis claviers de la zone des paniers : Sneltoetsen in de mandjes zone : - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de editing : Sneltoetsen tijdens het bewerken : - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de preview : Sneltoetsen tijdens de voorvertoning : - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de recherche : Sneltoetsen tijdens het zoeken : - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-a : tout selectionner ctrl-a : alles selecteren - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-e : editer la selection ctrl-e : bewerk de selectie - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-p : imprimer la selection ctrl-p : print de selectie - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::espace : arreter/demarrer le diaporama espace : start/stop de slideshow - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche bas : scroll vertical pijl onder : verticale scroll - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche droite : page suivante pijl rechts : volgende pagina - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : en arriere pijl links : achterwaarts - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : en avant pijl rechts : voorwaarts - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : page precedente pijl links : vorige pagina - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche haut : scroll vertical pijl boven : verticale scroll - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::tab/shift-tab se ballade dans les champs tab/shift-tab verspringt tussen de velden - web/prod/index.html.twig + web/prod/index.html.twig Rappel : Il vous reste %number% jours pour valider %title% de %user% @@ -5436,21 +5434,21 @@ Re-initialiser Herinitialiseren - web/prod/index.html.twig - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig + web/prod/index.html.twig Re-ordonner Hersorteren - prod/Story/Reorder.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig prod/Baskets/Reorder.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/Story/Reorder.html.twig Read-only @@ -5541,7 +5539,7 @@ Rechercher dans un champ date Zoeken in een datum veld - web/prod/index.html.twig + web/prod/index.html.twig Recommendations @@ -5602,10 +5600,10 @@ Register Aanmelden - login/include/register-link-block.html.twig - web/login/register-provider.html.twig - web/login/register.html.twig web/login/register-classic.html.twig + web/login/register.html.twig + web/login/register-provider.html.twig + login/include/register-link-block.html.twig Register approbation @@ -5620,19 +5618,19 @@ Reglages:: reglages d acces guest instellingen voor gasttoegang - web/admin/users.html.twig web/admin/editusers.html.twig + web/admin/users.html.twig Reglages:: reglages d inscitpition automatisee instellingen voor automatisch inschrijven - web/admin/users.html.twig web/admin/editusers.html.twig + web/admin/users.html.twig Relevance Relevance - web/prod/index.html.twig + web/prod/index.html.twig Remember me @@ -5674,8 +5672,8 @@ Renew password Vernieuw password Notification/Mail/MailRequestPasswordUpdate.php - web/login/renew-password.html.twig web/account/change-password.html.twig + web/login/renew-password.html.twig Reorder collections @@ -5685,8 +5683,8 @@ Reordonner automatiquement Automatische bestelling - prod/Story/Reorder.html.twig prod/Baskets/Reorder.html.twig + prod/Story/Reorder.html.twig Repertoire de stockage des fichiers @@ -5910,13 +5908,13 @@ Save Opslaan actions/Feedback/list.html.twig + web/account/change-password.html.twig + admin/search-engine/general-aggregation.html.twig + admin/search-engine/elastic-search.html.twig + task-manager/task-editor/task.html.twig web/developers/application.html.twig web/developers/application.html.twig - task-manager/task-editor/task.html.twig - admin/search-engine/elastic-search.html.twig - admin/search-engine/general-aggregation.html.twig web/login/renew-password.html.twig - web/account/change-password.html.twig Save all changes @@ -5972,6 +5970,7 @@ See Zie + prod/WorkZone/Macros.html.twig WorkZone/Browser/Browser.html.twig @@ -5982,8 +5981,8 @@ See documentation at %url% See documentation at %url% - Form/Configuration/ExecutablesFormType.php Form/Configuration/WebservicesFormType.php + Form/Configuration/ExecutablesFormType.php See my order @@ -6009,7 +6008,7 @@ Select a field Select a field - web/prod/index.html.twig + web/prod/index.html.twig Select a list on the left and edit it ! @@ -6044,7 +6043,7 @@ Selected base(s) Selected base(s) - web/prod/index.html.twig + web/prod/index.html.twig Selected files @@ -6055,12 +6054,12 @@ Send Versturen Controller/Prod/LanguageController.php - prod/orders/order_item.html.twig - prod/orders/order_item.html.twig prod/actions/Push.html.twig prod/actions/Push.html.twig prod/upload/upload.html.twig prod/upload/upload-flash.html.twig + prod/orders/order_item.html.twig + prod/orders/order_item.html.twig web/admin/dashboard.html.twig web/login/forgot-password.html.twig @@ -6125,8 +6124,8 @@ Set labels Zet labels - admin/collection/collection.html.twig admin/databox/databox.html.twig + admin/collection/collection.html.twig Set statuses restrictions @@ -6172,13 +6171,13 @@ Short description Korte beschrijving - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Shutter speed Sluitersnelheid - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php web/common/technical_datas.html.twig @@ -6278,8 +6277,8 @@ Sous-titre Onder titel - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Space bar @@ -6321,7 +6320,7 @@ Status des documents a rechercher Status van de te zoeken documenten - web/prod/index.html.twig + web/prod/index.html.twig Status edition @@ -6355,6 +6354,7 @@ Stories Verhalen Form/Configuration/SearchEngineFormType.php + prod/WorkZone/Macros.html.twig Story Not Found @@ -6415,8 +6415,8 @@ Substitute Vervangen - prod/upload/lazaret.html.twig - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig Substitution is not possible for this kind of record @@ -6437,22 +6437,16 @@ Successful removal Met succes verwijderd + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php Successful update Geslaagde update - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php @@ -6460,10 +6454,16 @@ Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php actions/Tools/videoEditor.html.twig - admin/collection/suggested_value.html.twig - admin/collection/collection.html.twig web/admin/databases.html.twig + admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig Successfull connection @@ -6493,14 +6493,14 @@ Suppression de %n_element% playlists %n_element% playlists verwijderen - Bridge/Youtube/playlist_deleteelement.html.twig Bridge/Dailymotion/playlist_deleteelement.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig Suppression de %n_element% videos %n_element% video verwijderen - Bridge/Youtube/video_deleteelement.html.twig Bridge/Dailymotion/video_deleteelement.html.twig + Bridge/Youtube/video_deleteelement.html.twig Supprimer @@ -6536,11 +6536,11 @@ Tags Trefwoorden + Bridge/Dailymotion/upload.html.twig + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/upload.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Flickr/upload.html.twig - Bridge/Dailymotion/upload.html.twig - Bridge/Dailymotion/video_modify.html.twig Target Device @@ -6682,8 +6682,8 @@ The file is too big Het bestand is te groot - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php The file was moved to the quarantine @@ -6698,8 +6698,8 @@ The publication has been stopped Het programma is gestopt - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php The record was successfully created @@ -6740,7 +6740,7 @@ Theme Thema - web/prod/index.html.twig + web/prod/index.html.twig There is no one to validate orders, please contact an administrator @@ -6760,13 +6760,13 @@ Thesaurus Min score Thesaurus Min score - SearchEngine/Elastic/ElasticsearchSettingsFormType.php + SearchEngine/Elastic/ElasticsearchSettingsFormType.php web/setup/step2.html.twig Thesaurus branch Thesaurus tak - admin/fields/templates.html.twig + admin/fields/templates.html.twig Thesaurus ou CTerms invalide @@ -6833,7 +6833,7 @@ This user does not participate to the validation but is only viewer. Deze gebruiker maakt geen deel uit van de goedkeuring maar is enkel een bezoeker. - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig This user has no rights @@ -6869,19 +6869,19 @@ Titre Titel - Bridge/Youtube/upload.html.twig + prod/Baskets/Reorder.html.twig + Bridge/Dailymotion/upload.html.twig + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/upload.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photoset_createcontainer.html.twig Bridge/Flickr/upload.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/upload.html.twig - Bridge/Dailymotion/video_modify.html.twig prod/Story/Reorder.html.twig - prod/Baskets/Reorder.html.twig + admin/publications/fiche.html.twig admin/publications/list.html.twig admin/publications/list.html.twig - admin/publications/fiche.html.twig Toggle loop @@ -6906,8 +6906,8 @@ Total Totaal - admin/collection/details.html.twig admin/databox/details.html.twig + admin/collection/details.html.twig Tous @@ -6943,7 +6943,7 @@ Trier par Sorteren op - web/prod/index.html.twig + web/prod/index.html.twig Try to extract embedded thumbnails @@ -6968,7 +6968,7 @@ Type de documents Type van de documenten - web/prod/index.html.twig + web/prod/index.html.twig Type nombre @@ -7091,7 +7091,7 @@ Une question personnelle Een persoonlijke vraag - web/prod/index.html.twig + web/prod/index.html.twig Une selection @@ -7149,13 +7149,13 @@ Upload Upload - actions/Bridge/index.html.twig - Bridge/Youtube/upload.html.twig - Bridge/Youtube/upload.html.twig - Bridge/Flickr/upload.html.twig - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Dailymotion/upload.html.twig + Bridge/Youtube/upload.html.twig + Bridge/Youtube/upload.html.twig + actions/Bridge/index.html.twig + Bridge/Flickr/upload.html.twig + Bridge/Flickr/upload.html.twig prod/upload/upload.html.twig prod/upload/upload-flash.html.twig web/common/menubar.html.twig @@ -7183,7 +7183,7 @@ Uploaded by : %username% Opgeladen door : %username% - prod/upload/lazaret.html.twig + prod/upload/lazaret.html.twig Use Google Chart API @@ -7203,7 +7203,7 @@ Use latest search settings on Production loading Use latest search settings on Production loading - web/prod/index.html.twig + web/prod/index.html.twig Use my Phraseanet account @@ -7260,10 +7260,10 @@ Controller/Prod/LanguageController.php prod/templates/push.html.twig prod/templates/push.html.twig - prod/templates/push.html.twig prod/templates/push.html.twig - prod/templates/push.html.twig + prod/templates/push.html.twig prod/templates/push.html.twig + prod/templates/push.html.twig User can see others choices @@ -7322,11 +7322,11 @@ Validation Goedkeuring + eventsmanager/notify/validationdone.php eventsmanager/notify/validationreminder.php eventsmanager/notify/validationreminder.php eventsmanager/notify/validate.php eventsmanager/notify/validate.php - eventsmanager/notify/validationdone.php lightbox/IE6/validate.html.twig @@ -7342,11 +7342,11 @@ Validations Controles + mobile/lightbox/index.html.twig + mobile/lightbox/index.html.twig web/lightbox/index.html.twig lightbox/IE6/validate.html.twig web/lightbox/validate.html.twig - mobile/lightbox/index.html.twig - mobile/lightbox/index.html.twig Validations received @@ -7391,13 +7391,13 @@ Video codec Video codec - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php Videos Video's - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php View on %title% @@ -7412,19 +7412,19 @@ Vocabulary type Type van de vocabulair - admin/fields/templates.html.twig + admin/fields/templates.html.twig Voici vos paniers Uw mandjes - web/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/lightbox/index.html.twig Voici vos validations en cours Een controle in proces - web/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/lightbox/index.html.twig Votre adresse email @@ -7459,7 +7459,7 @@ Vous avez envoye une demande de validation de document sur ce panier U hebt een aanvraag tot goedkeuring van documenten in dit mandje verstuurd - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig Vous avez recu des documents @@ -7549,10 +7549,10 @@ Vous n'avez selectionne aucun element U hebt geen enkel element geselecteerd - actions/Bridge/index.html.twig - Bridge/Youtube/upload.html.twig - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig + Bridge/Youtube/upload.html.twig + actions/Bridge/index.html.twig + Bridge/Flickr/upload.html.twig Vous ne pouvez pas editer plusieurs elements simultanement @@ -7578,7 +7578,7 @@ Vous pouvez quitter la plupart des fenetres survolantes via la touche echap U kunt het grootste deel van de bovenliggende vensters sluiten met de escape toets - web/prod/index.html.twig + web/prod/index.html.twig Warning ! @@ -7598,8 +7598,8 @@ Watch my access requests status Bekijk de status van mijn toegangsaanvraag - Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Notification/Mail/MailSuccessAccessRequest.php + Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Watermark @@ -7639,8 +7639,8 @@ Which playlist you want to put you %number% elements into ? In welke playlist wilt u %number% items plaatsen ? - Bridge/Youtube/video_moveinto_playlist.html.twig Bridge/Dailymotion/video_moveinto_playlist.html.twig + Bridge/Youtube/video_moveinto_playlist.html.twig Whoops, looks like something went wrong. @@ -7679,15 +7679,15 @@ YYYY/MM/DD YYYY/MM/DD - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Yes Ja - web/developers/applications.html.twig - user/import/view.html.twig web/account/account.html.twig + user/import/view.html.twig + web/developers/applications.html.twig You are Admin @@ -7993,92 +7993,92 @@ action : ajouter au panier aan mandje toevoegen - prod/preview/tools.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/results/record.html.twig + prod/preview/tools.html.twig action : bridge Bridge - web/prod/index.html.twig + web/prod/index.html.twig action : collection Collectie - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig action : editer Wijzigen - prod/preview/caption.html.twig - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig + prod/preview/caption.html.twig action : exporter Exporteer - web/prod/index.html.twig - prod/preview/tools.html.twig - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/results/record.html.twig - web/prod/toolbar.html.twig + prod/preview/tools.html.twig + web/prod/index.html.twig + web/lightbox/feed.html.twig lightbox/IE6/feed.html.twig lightbox/IE6/validate.html.twig - web/lightbox/feed.html.twig web/lightbox/validate.html.twig action : outils Gereedschappen - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig action : print Print - prod/preview/tools.html.twig - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/results/record.html.twig - web/prod/toolbar.html.twig + prod/preview/tools.html.twig action : publier Publiceren - web/prod/index.html.twig - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig + web/prod/index.html.twig action : push Push - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig action : status Status - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig action : supprimer Verwijderen - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig web/prod/toolbar.html.twig @@ -8098,37 +8098,37 @@ action::Valider Valideren - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig action::detacher Ontkoppelen - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig action::editer Aanpassen - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig action::exporter Exporteren - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig action::renommer Hernoemen - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig actual status @@ -8318,8 +8318,8 @@ admin::base:collection: Creer une collection Maak een collectie - admin/collection/create.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig admin::base:collection: Monter une collection @@ -8335,8 +8335,8 @@ admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces U kan een standaard collectie kiezen voor toegang te verlenen - admin/collection/create.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig admin::base:collection: activer la collection @@ -8347,10 +8347,10 @@ admin::base:collection: aucun fichier (minilogo, watermark ...) Geen enkel bestand (minilogo, watermerk ...) + admin/databox/databox.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig - admin/databox/databox.html.twig admin::base:collection: descativer la collection @@ -8411,20 +8411,20 @@ admin::base:collorder: descendre Afdalen - admin/collection/suggested_value.html.twig admin/collection/reorder.html.twig + admin/collection/suggested_value.html.twig admin::base:collorder: monter Laden - admin/collection/suggested_value.html.twig admin/collection/reorder.html.twig + admin/collection/suggested_value.html.twig admin::base:collorder: reinitialiser en ordre alphabetique Herinitialiseren in alfabetische volgorde - admin/collection/suggested_value.html.twig admin/collection/reorder.html.twig + admin/collection/suggested_value.html.twig admin::colelction::presentation des elements : rien @@ -8479,21 +8479,21 @@ admin::compte-utilisateur activite Activiteit - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - admin/user/registrations.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig admin::compte-utilisateur adresse Adres - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur changer mon mot de passe @@ -8503,11 +8503,11 @@ admin::compte-utilisateur code postal Postcode - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur confirmer la nouvelle adresse email @@ -8527,23 +8527,23 @@ admin::compte-utilisateur email Email - Event/Subscriber/RegistrationSubscriber.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig + Event/Subscriber/RegistrationSubscriber.php + web/account/account.html.twig + web/admin/editusers.html.twig web/admin/users.html.twig admin/user/registrations.html.twig - web/admin/editusers.html.twig web/admin/connected-users.html.twig - web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur fax Fax - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur id utilisateur @@ -8555,34 +8555,34 @@ Identificatie Core/Provider/RegistrationServiceProvider.php api/auth/end_user_authorization.html.twig - web/common/dialog_export.html.twig - web/admin/users.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig + web/account/reset-email.html.twig web/account/account.html.twig web/account/account.html.twig - web/account/reset-email.html.twig + web/admin/editusers.html.twig + web/admin/users.html.twig + admin/user/registrations.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur mot de passe Paswoord api/auth/end_user_authorization.html.twig - web/common/dialog_export.html.twig web/setup/step2.html.twig - web/account/account.html.twig web/account/reset-email.html.twig + web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur nom Naam + Controller/Admin/UserController.php Core/Provider/RegistrationServiceProvider.php Event/Subscriber/RegistrationSubscriber.php - Controller/Admin/UserController.php - web/common/dialog_export.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig - web/admin/connected-users.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig + web/admin/connected-users.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur nouvelle adresse email @@ -8598,42 +8598,42 @@ admin::compte-utilisateur poste Postcode - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur prenom Voornaam + Controller/Admin/UserController.php Core/Provider/RegistrationServiceProvider.php Event/Subscriber/RegistrationSubscriber.php - Controller/Admin/UserController.php - web/common/dialog_export.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur sexe Geslacht Core/Provider/RegistrationServiceProvider.php - web/admin/editusers.html.twig web/account/account.html.twig + web/admin/editusers.html.twig admin::compte-utilisateur societe Bedrijf - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig + Core/Provider/RegistrationServiceProvider.php + web/account/account.html.twig + web/admin/editusers.html.twig web/admin/users.html.twig admin/user/registrations.html.twig - web/admin/editusers.html.twig web/admin/connected-users.html.twig - web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur tel @@ -8644,11 +8644,11 @@ admin::compte-utilisateur telephone Telefoon Controller/Admin/UserController.php - web/common/dialog_export.html.twig - admin/user/registrations.html.twig - web/admin/editusers.html.twig - web/admin/connected-users.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + admin/user/registrations.html.twig + web/admin/connected-users.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur un email de confirmation vient de vous etre envoye. Veuillez suivre les instructions contenue pour continuer @@ -8658,11 +8658,11 @@ admin::compte-utilisateur ville Star - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur: L'email a correctement ete mis a jour @@ -8712,8 +8712,8 @@ admin::compte-utilisateur:ftp: repertoire de destination ftp Bestemmings ftp-map - web/common/dialog_export.html.twig web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur:ftp: Activer le compte FTP @@ -8728,14 +8728,14 @@ admin::compte-utilisateur:ftp: Nombre d'essais max Aantal max probeersels - web/common/dialog_export.html.twig web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur:ftp: Utiliser le mode passif Gebruik de passive mode - web/common/dialog_export.html.twig web/account/account.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur:ftp: creer un dossier @@ -8756,25 +8756,25 @@ admin::compte-utilisateur:sexe: madame Mevrouw Core/Provider/RegistrationServiceProvider.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur:sexe: mademoiselle Jufrouw Core/Provider/RegistrationServiceProvider.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::compte-utilisateur:sexe: monsieur De heer Core/Provider/RegistrationServiceProvider.php - web/common/dialog_export.html.twig - web/admin/editusers.html.twig web/account/account.html.twig + web/admin/editusers.html.twig + web/common/dialog_export.html.twig admin::monitor: bases sur lesquelles l'utilisateur est connecte : @@ -8794,26 +8794,26 @@ admin::monitor: module admin Beheerder - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php - web/common/menubar.html.twig + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig + web/common/menubar.html.twig admin::monitor: module client Klant module - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php classes/record/preview.php classes/record/preview.php classes/record/preview.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig admin::monitor: module comparateur Vergelijkings module - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig @@ -8824,44 +8824,44 @@ admin::monitor: module production Productie - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php classes/record/preview.php classes/record/preview.php classes/record/preview.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig admin::monitor: module report Rapport - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php - web/common/menubar.html.twig + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig + web/common/menubar.html.twig admin::monitor: module thesaurus Thesaurus - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php - web/common/menubar.html.twig + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig + web/common/menubar.html.twig admin::monitor: module upload Upload - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/common/menubar.html.twig admin::monitor: module validation Lightbox - Controller/Admin/ConnectedUsersController.php + lib/classes/phrasea.php Phrasea/Controller/LightboxController.php Phrasea/Controller/LightboxController.php Phrasea/Controller/LightboxController.php - lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/common/menubar.html.twig @@ -9072,14 +9072,14 @@ admin::utilisateurs: utilisateurs connectes geconnecteerde gebruikers - web/admin/connected-users.html.twig web/admin/tree.html.twig + web/admin/connected-users.html.twig alert alert - actions/Tools/index.html.twig actions/Tools/videoEditor.html.twig + actions/Tools/index.html.twig all caches services have been flushed @@ -9120,8 +9120,8 @@ audio Audio Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig avril @@ -9146,14 +9146,14 @@ basket:action:delete record form basket basket:action:delete record form basket - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig basket:action:delete record form database basket:action:delete record form database - prod/WorkZone/Basket.html.twig prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig be notified when a document is placed in quarantine @@ -9163,12 +9163,12 @@ boutton:: selectionner aucune base Selecteer geen enkele database - web/prod/index.html.twig + web/prod/index.html.twig boutton:: selectionner toutes les bases Selecteer alle databases - web/prod/index.html.twig + web/prod/index.html.twig boutton::ajouter @@ -9182,35 +9182,35 @@ Annuleer Controller/Prod/LanguageController.php Controller/Prod/LanguageController.php - prod/actions/edit_default.html.twig - prod/actions/edit_default.html.twig + Bridge/Dailymotion/video_modify.html.twig + Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photo_modify.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/video_modify.html.twig - Bridge/Dailymotion/video_modify.html.twig - web/thesaurus/new-term.html.twig - web/thesaurus/new-term.html.twig + prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig + web/thesaurus/export-text-dialog.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig - web/thesaurus/link-field-step2.html.twig web/thesaurus/import-dialog.html.twig + web/thesaurus/link-field-step2.html.twig web/thesaurus/accept.html.twig web/thesaurus/accept.html.twig - web/thesaurus/export-text-dialog.html.twig - web/thesaurus/link-field-step1.html.twig web/thesaurus/export-topics-dialog.html.twig + web/thesaurus/new-term.html.twig + web/thesaurus/new-term.html.twig + web/thesaurus/link-field-step1.html.twig + web/account/reset-email.html.twig + admin/publications/fiche.html.twig + admin/collection/create.html.twig + web/admin/index.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig - web/admin/index.html.twig - admin/collection/create.html.twig - admin/publications/fiche.html.twig web/report/all_content.html.twig - web/account/reset-email.html.twig boutton::appliquer @@ -9228,8 +9228,8 @@ boutton::choisir kiezen - web/admin/users.html.twig web/admin/editusers.html.twig + web/admin/users.html.twig boutton::commander @@ -9245,8 +9245,8 @@ boutton::demarrer Starten - web/lightbox/feed_options_box.html.twig web/lightbox/sc_options_box.html.twig + web/lightbox/feed_options_box.html.twig boutton::editer @@ -9279,15 +9279,15 @@ boutton::fermer Sluiten Controller/Prod/LanguageController.php + prod/actions/Push.html.twig prod/actions/edit_default.html.twig prod/actions/edit_default.html.twig - prod/actions/Push.html.twig - web/lightbox/sc_note.html.twig - web/thesaurus/export-topics.html.twig + web/thesaurus/properties.html.twig web/thesaurus/accept.html.twig web/thesaurus/accept.html.twig - web/thesaurus/properties.html.twig + web/thesaurus/export-topics.html.twig web/thesaurus/link-field-step3.html.twig + web/lightbox/sc_note.html.twig web/common/dialog_export.html.twig web/report/all_content.html.twig @@ -9299,14 +9299,14 @@ boutton::imprimer Print - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig boutton::modifier bewerken + Bridge/Dailymotion/actionelement.html.twig Bridge/Youtube/actionelement.html.twig Bridge/Flickr/actionelement.html.twig - Bridge/Dailymotion/actionelement.html.twig web/admin/users.html.twig @@ -9317,22 +9317,22 @@ boutton::pause Pauze - web/lightbox/feed_options_box.html.twig web/lightbox/sc_options_box.html.twig + web/lightbox/feed_options_box.html.twig boutton::precedent vorige - web/lightbox/feed_options_box.html.twig - web/lightbox/feed_options_box.html.twig - web/lightbox/sc_options_box.html.twig - web/lightbox/sc_options_box.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig + web/lightbox/sc_options_box.html.twig + web/lightbox/sc_options_box.html.twig + web/lightbox/feed_options_box.html.twig + web/lightbox/feed_options_box.html.twig boutton::rechercher @@ -9363,26 +9363,26 @@ boutton::retour terug - Bridge/Youtube/video_moveinto_playlist.html.twig - Bridge/Youtube/video_deleteelement.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig - Bridge/Youtube/playlist_deleteelement.html.twig - Bridge/Flickr/photoset_deleteelement.html.twig - Bridge/Flickr/photoset_createcontainer.html.twig - Bridge/Flickr/photo_deleteelement.html.twig - Bridge/Flickr/photo_moveinto_photoset.html.twig - Bridge/Dailymotion/video_moveinto_playlist.html.twig Bridge/Dailymotion/video_deleteelement.html.twig Bridge/Dailymotion/playlist_createcontainer.html.twig + Bridge/Dailymotion/video_moveinto_playlist.html.twig Bridge/Dailymotion/playlist_deleteelement.html.twig - web/developers/application_form.html.twig - web/developers/application.html.twig - admin/collection/details.html.twig - user/import/file.html.twig - admin/databox/details.html.twig + Bridge/Youtube/video_deleteelement.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/video_moveinto_playlist.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig + Bridge/Flickr/photo_deleteelement.html.twig + Bridge/Flickr/photoset_deleteelement.html.twig + Bridge/Flickr/photo_moveinto_photoset.html.twig + Bridge/Flickr/photoset_createcontainer.html.twig web/admin/editusers.html.twig admin/publications/fiche.html.twig + admin/databox/details.html.twig + admin/collection/details.html.twig + user/import/file.html.twig admin/statusbit/edit.html.twig + web/developers/application_form.html.twig + web/developers/application.html.twig boutton::retry @@ -9392,54 +9392,54 @@ boutton::suivant volgende - web/lightbox/feed_options_box.html.twig - web/lightbox/feed_options_box.html.twig - web/lightbox/sc_options_box.html.twig - web/lightbox/sc_options_box.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig web/setup/step2.html.twig + web/lightbox/sc_options_box.html.twig + web/lightbox/sc_options_box.html.twig + web/lightbox/feed_options_box.html.twig + web/lightbox/feed_options_box.html.twig boutton::supprimer verwijderen Controller/Prod/LanguageController.php - web/prod/index.html.twig actions/Bridge/disconnected.html.twig + Bridge/Dailymotion/actionelements.html.twig + Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actionelements.html.twig Bridge/Youtube/actioncontainers.html.twig Bridge/Flickr/actionelements.html.twig Bridge/Flickr/actioncontainers.html.twig - Bridge/Dailymotion/actionelements.html.twig - Bridge/Dailymotion/actioncontainers.html.twig prod/results/feeds_entry.html.twig prod/results/entry.html.twig + web/prod/index.html.twig web/thesaurus/presets.html.twig - admin/collection/suggested_value.html.twig + admin/publications/fiche.html.twig + admin/publications/list.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig - admin/publications/list.html.twig - admin/publications/fiche.html.twig + admin/collection/suggested_value.html.twig web/admin/subdefs.html.twig boutton::telecharger Downloaden - web/lightbox/feed_options_box.html.twig web/lightbox/sc_options_box.html.twig + web/lightbox/feed_options_box.html.twig web/common/dialog_export.html.twig boutton::telecharger tous les documents Alle documenten downloaden + web/lightbox/feed.html.twig lightbox/IE6/feed.html.twig lightbox/IE6/validate.html.twig - web/lightbox/feed.html.twig web/lightbox/validate.html.twig @@ -9452,57 +9452,57 @@ boutton::valider bevestigen Controller/Prod/LanguageController.php - web/prod/index.html.twig - prod/actions/edit_default.html.twig - prod/actions/edit_default.html.twig - Bridge/Youtube/video_moveinto_playlist.html.twig - Bridge/Youtube/video_deleteelement.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig - Bridge/Youtube/playlist_deleteelement.html.twig - Bridge/Youtube/video_modify.html.twig - Bridge/Flickr/photoset_deleteelement.html.twig - Bridge/Flickr/photoset_createcontainer.html.twig - Bridge/Flickr/photo_deleteelement.html.twig - Bridge/Flickr/photo_modify.html.twig - Bridge/Flickr/photo_moveinto_photoset.html.twig - Bridge/Dailymotion/video_moveinto_playlist.html.twig - Bridge/Dailymotion/video_deleteelement.html.twig - Bridge/Dailymotion/playlist_createcontainer.html.twig - Bridge/Dailymotion/playlist_deleteelement.html.twig - Bridge/Dailymotion/video_modify.html.twig - prod/Story/Reorder.html.twig + mobile/lightbox/note_form.html.twig prod/Baskets/Update.html.twig prod/Baskets/Reorder.html.twig - web/developers/application_form.html.twig + Bridge/Dailymotion/video_deleteelement.html.twig + Bridge/Dailymotion/playlist_createcontainer.html.twig + Bridge/Dailymotion/video_moveinto_playlist.html.twig + Bridge/Dailymotion/video_modify.html.twig + Bridge/Dailymotion/playlist_deleteelement.html.twig + Bridge/Youtube/video_deleteelement.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/video_moveinto_playlist.html.twig + Bridge/Youtube/video_modify.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig + Bridge/Flickr/photo_deleteelement.html.twig + Bridge/Flickr/photoset_deleteelement.html.twig + Bridge/Flickr/photo_moveinto_photoset.html.twig + Bridge/Flickr/photoset_createcontainer.html.twig + Bridge/Flickr/photo_modify.html.twig + prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig + prod/Story/Reorder.html.twig + web/prod/index.html.twig + web/thesaurus/export-text-dialog.html.twig + web/thesaurus/thesaurus.html.twig + web/thesaurus/import-dialog.html.twig + web/thesaurus/link-field-step2.html.twig + web/thesaurus/accept.html.twig + web/thesaurus/export-topics-dialog.html.twig web/thesaurus/index.html.twig web/thesaurus/new-term.html.twig web/thesaurus/new-term.html.twig - web/thesaurus/thesaurus.html.twig - web/thesaurus/link-field-step2.html.twig - web/thesaurus/import-dialog.html.twig - web/thesaurus/accept.html.twig - web/thesaurus/export-text-dialog.html.twig web/thesaurus/link-field-step1.html.twig - web/thesaurus/export-topics-dialog.html.twig - admin/collection/suggested_value.html.twig + web/account/access.html.twig + web/account/reset-email.html.twig + web/account/account.html.twig + web/admin/dashboard.html.twig + web/admin/editusers.html.twig + admin/publications/fiche.html.twig + admin/publications/list.html.twig + web/admin/setup.html.twig admin/collection/create.html.twig admin/collection/reorder.html.twig admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig + web/admin/subdefs.html.twig + web/admin/structure.html.twig user/import/view.html.twig admin/user/registrations.html.twig - web/admin/structure.html.twig - web/admin/setup.html.twig - web/admin/editusers.html.twig - admin/publications/list.html.twig - admin/publications/fiche.html.twig - web/admin/dashboard.html.twig admin/statusbit/edit.html.twig - web/admin/subdefs.html.twig + web/developers/application_form.html.twig web/report/all_content.html.twig - web/account/access.html.twig - web/account/account.html.twig - web/account/reset-email.html.twig - mobile/lightbox/note_form.html.twig boutton::vue graphique @@ -9599,9 +9599,9 @@ choisir kiezen - web/prod/index.html.twig - admin/collection/create.html.twig + web/prod/index.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig classe @@ -9628,10 +9628,10 @@ copyClipboardLabel copyClipboardLabel + prod/results/infos.html.twig prod/Share/record.html.twig prod/Share/record.html.twig prod/Share/record.html.twig - prod/results/infos.html.twig create_subdef_button_label @@ -9681,7 +9681,7 @@ created_on created_on - web/prod/index.html.twig + web/prod/index.html.twig dans %category% @@ -9712,7 +9712,7 @@ delete Verwijderen - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig descendant @@ -9728,9 +9728,9 @@ document document Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig document original @@ -9741,7 +9741,7 @@ edit edit - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig web/account/account.html.twig web/account/account.html.twig web/account/account.html.twig @@ -9821,7 +9821,7 @@ export:: erreur : aucun document selectionne Erreur : geen enkel document geslecteerd - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig export:: telechargement @@ -9887,8 +9887,8 @@ flash flash Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig for the following reasons : %reasons% @@ -9952,6 +9952,17 @@ Bewerking correct uitgevoerd admin/databox/databox.html.twig + + help::help-search: OR + help::help-search: OR + prod/results/help.html.twig + + + help::help-search: relaunch search without filter + help::help-search: relaunch search without filter + prod/results/help.html.twig + web/prod/index.html.twig + help::help-section-bullet: check-spelling help::help-section-bullet: check-spelling @@ -10011,8 +10022,8 @@ image Beeld Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig image rotation @@ -10027,42 +10038,42 @@ index::advance_search: disable-facet index::advance_search: disable-facet - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet index::advance_search: facet - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet-order index::advance_search: facet-order - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet-tech-order index::advance_search: facet-tech-order - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet-values-order index::advance_search: facet-values-order - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: hidden-facet-values-order index::advance_search: hidden-facet-values-order - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: order-by-hits index::advance_search: order-by-hits - web/prod/index.html.twig + web/prod/index.html.twig index:advanced-preferences:: use truncation index:advanced-preferences:: use truncation - web/prod/index.html.twig + web/prod/index.html.twig invite:: Redirection vers la zone d'authentification, cliquez sur OK pour continuer ou annulez @@ -10094,6 +10105,16 @@ de service zal binnen enkele minuten opnieuw beschibaar zijn actions/Bridge/deactivated.html.twig + + lightbox::See_less_feedback + lightbox::See_less_feedback + web/lightbox/index.html.twig + + + lightbox::See_more_feedback + lightbox::See_more_feedback + web/lightbox/index.html.twig + lightbox::list lightbox::list @@ -10102,9 +10123,19 @@ lightbox::recaptitulatif Beknopt + mobile/lightbox/validate.html.twig web/lightbox/agreement_box.html.twig web/lightbox/validate.html.twig - mobile/lightbox/validate.html.twig + + + lightbox::see_less_basket + lightbox::see_less_basket + web/lightbox/index.html.twig + + + lightbox::see_more_basket + lightbox::see_more_basket + web/lightbox/index.html.twig login:: Changer mon adresse email @@ -10124,10 +10155,10 @@ login:: Mon compte Mijn account + mobile/common/menubar.html.twig + web/account/account.html.twig web/common/menubar.html.twig web/common/menubar.html.twig - web/account/account.html.twig - mobile/common/menubar.html.twig login:: Visitez le lien suivant et suivez les instructions pour continuer, sinon ignorez cet email et il ne se passera rien @@ -10163,8 +10194,8 @@ login::notification: Mise a jour du mot de passe avec succes Update van het paswoord met succes uitgevoerd - Controller/Root/AccountController.php Controller/Root/LoginController.php + Controller/Root/AccountController.php login::notification: demande de confirmation par mail envoyee @@ -10186,8 +10217,8 @@ login::register: sujet email : confirmation de votre adresse email Onderwerp email: bevestiging van uw email adres - Notification/Mail/MailRequestEmailConfirmation.php Notification/Mail/MailRequestEmailUpdate.php + Notification/Mail/MailRequestEmailConfirmation.php login::register:email: Voici un compte rendu du traitement de vos demandes d'acces : @@ -10253,16 +10284,16 @@ no Nee - web/common/technical_datas.html.twig - user/import/view.html.twig - web/admin/subdefs.html.twig web/account/sessions.html.twig + web/admin/subdefs.html.twig + user/import/view.html.twig + web/common/technical_datas.html.twig no image selected geen beeld geselecteerd - actions/Tools/index.html.twig actions/Tools/videoEditor.html.twig + actions/Tools/index.html.twig non @@ -10273,9 +10304,9 @@ notice mededeling + web/lightbox/feed.html.twig lightbox/IE6/feed.html.twig lightbox/IE6/validate.html.twig - web/lightbox/feed.html.twig web/lightbox/validate.html.twig @@ -10579,17 +10610,17 @@ panier:: ordre Validation ascendante Oplopende validatie volgorde - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig panier:: ordre Validation descendante Aflopende validatie volgorde - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig panier:: ordre du panier Volgordre van het mandje - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig panier:: renommer le panier @@ -10614,7 +10645,7 @@ paniers:: panier recu de %pusher% Mandje ontvangen van %pusher% - prod/WorkZone/Macros.html.twig + prod/WorkZone/Macros.html.twig paniers::Vous etes sur le point de supprimer ce panier. Cette action est irreversible. Souhaitez-vous continuer ? @@ -10624,8 +10655,8 @@ paniers::description du nouveau panier Beschrijving van het nieuwe mandje - prod/orders/order_item.html.twig prod/Baskets/Create.html.twig + prod/orders/order_item.html.twig par %user_name% @@ -10691,11 +10722,11 @@ phraseanet:: adresse Adres - web/common/dialog_export.html.twig web/setup/step2.html.twig + web/account/account.html.twig admin/collection/collection.html.twig web/admin/connected-users.html.twig - web/account/account.html.twig + web/common/dialog_export.html.twig phraseanet:: aide @@ -10739,8 +10770,8 @@ phraseanet:: details Details - admin/collection/collection.html.twig admin/databox/databox.html.twig + admin/collection/collection.html.twig phraseanet:: hostname @@ -10785,7 +10816,7 @@ phraseanet:: preview Voorvertoning prod/actions/edit_default.html.twig - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig phraseanet:: propositions @@ -10808,13 +10839,13 @@ phraseanet:: thesaurus Thesaurus - web/prod/tab_headers.html.twig prod/actions/edit_default.html.twig - web/thesaurus/index.html.twig + web/prod/tab_headers.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/load-thesaurus.html.twig web/thesaurus/load-thesaurus.html.twig + web/thesaurus/index.html.twig phraseanet:: tri @@ -11019,12 +11050,12 @@ phraseanet::time:: a a - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::time:: de de - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::type:: audios @@ -11034,8 +11065,8 @@ phraseanet::type:: documents Documenten - web/prod/index.html.twig web/prod/toolbar.html.twig + web/prod/index.html.twig phraseanet::type:: images @@ -11070,35 +11101,35 @@ preview:: Description Beschrijving - web/prod/index.html.twig + web/prod/index.html.twig preview:: Historique Historie - web/prod/index.html.twig + web/prod/index.html.twig preview:: Popularite Populariteit - web/prod/index.html.twig + web/prod/index.html.twig preview:: arreter le diaporama stop de slideshow - prod/preview/result_train.html.twig prod/preview/basket_train.html.twig - prod/preview/feed_train.html.twig - prod/preview/result_train_options.html.twig + prod/preview/result_train.html.twig prod/preview/reg_train.html.twig + prod/preview/result_train_options.html.twig + prod/preview/feed_train.html.twig preview:: demarrer le diaporama start de slideshow - prod/preview/result_train.html.twig prod/preview/basket_train.html.twig - prod/preview/feed_train.html.twig - prod/preview/result_train_options.html.twig + prod/preview/result_train.html.twig prod/preview/reg_train.html.twig + prod/preview/result_train_options.html.twig + prod/preview/feed_train.html.twig preview::date @@ -11140,110 +11171,150 @@ print:: basket feedback print:: basket feedback + prod/actions/printer_default.html.twig + + + print:: basket feedback only + print:: basket feedback only prod/actions/printer_default.html.twig print:: description print:: description - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig print:: image de choix et description Het gekozen beeld en de beschrijving - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig print:: image de choix et description avec planche contact Het gekozen beeld en de beschrijving met de contact fiche - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig print:: image de choix seulement Enkel het gekozen beeld - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig print:: imagette Thumbnail - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig print:: liste d'imagettes Thumbnail lijst - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig print:: planche contact (mosaique) Contact fiche (mosaic) - prod/actions/printer_default.html.twig + prod/actions/printer_default.html.twig print_feedback:: Document generated on : print_feedback:: Document generated on : - Out/Module/PDFRecords.php + Out/Module/PDFRecords.php + + + print_feedback:: Feedback active + print_feedback:: Feedback active + Out/Module/PDFRecords.php + + + print_feedback:: Feedback expired + print_feedback:: Feedback expired + Out/Module/PDFRecords.php print_feedback:: Feedback expiring on : print_feedback:: Feedback expiring on : - Out/Module/PDFRecords.php + Out/Module/PDFRecords.php print_feedback:: Feedback initiated by : print_feedback:: Feedback initiated by : - Out/Module/PDFRecords.php + Out/Module/PDFRecords.php print_feedback:: Feedback initiated on : print_feedback:: Feedback initiated on : - Out/Module/PDFRecords.php + Out/Module/PDFRecords.php print_feedback:: Feedback on basket %name% print_feedback:: Feedback on basket %name% - Out/Module/PDFRecords.php + Out/Module/PDFRecords.php print_feedback:: Non print_feedback:: Non - Out/Module/PDFRecords.php + Out/Module/PDFRecords.php print_feedback:: Oui print_feedback:: Oui - Out/Module/PDFRecords.php + Out/Module/PDFRecords.php print_feedback:: Participants : print_feedback:: Participants : - Out/Module/PDFRecords.php + Out/Module/PDFRecords.php print_feedback:: Votes : print_feedback:: Votes : + Out/Module/PDFRecords.php + + + print_feedback:: base name: + print_feedback:: base name: + Out/Module/PDFRecords.php + + + print_feedback:: document Uuid: + print_feedback:: document Uuid: Out/Module/PDFRecords.php print_feedback:: non voté print_feedback:: non voté - Out/Module/PDFRecords.php + Out/Module/PDFRecords.php + + + print_feedback:: originale filename: + print_feedback:: originale filename: + Out/Module/PDFRecords.php + + + print_feedback:: record id: + print_feedback:: record id: + Out/Module/PDFRecords.php + + + print_feedback:: record title: + print_feedback:: record title: + Out/Module/PDFRecords.php prive prive - Bridge/Youtube/upload.html.twig Bridge/Dailymotion/upload.html.twig + Bridge/Youtube/upload.html.twig privé privaat - Bridge/Youtube/video_modify.html.twig Bridge/Dailymotion/video_modify.html.twig + Bridge/Youtube/video_modify.html.twig processing verwerken - actions/Tools/index.html.twig actions/Tools/videoEditor.html.twig + actions/Tools/index.html.twig prod::Les enregistrements ne provienent pas tous de la meme base et ne peuvent donc etre traites ensemble @@ -11259,12 +11330,12 @@ prod::advancesearch:tooltips:datefield_restriction_explanation prod::advancesearch:tooltips:datefield_restriction_explanation - web/prod/index.html.twig + web/prod/index.html.twig prod::advancesearch:tooltips:field_restriction_explanation prod::advancesearch:tooltips:field_restriction_explanation - web/prod/index.html.twig + web/prod/index.html.twig prod::collection deplacer egalement les documents rattaches a ce(s) regroupement(s) @@ -11284,12 +11355,12 @@ prod::editing: %not_actionable% documents ne peuvent etre edites car vos droits sont induffisants %not_actionable% documenten kunnen niet bewerkt worden omdat u niet voldoende rechten heeft - prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig prod::editing: 1 document ne peut etre edite car vos droits sont induffisants 1 document kan niet worden bewerkt omdat u niet voldoende rechten heeft - prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig prod::editing: aucun documents ne peuvent etre edites car vos droits sont induffisants @@ -11384,17 +11455,27 @@ prod::facet:base_label prod::facet:base_label - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php prod::facet:collection_label prod::facet:collection_label - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php prod::facet:doctype_label prod::facet:doctype_label - SearchEngine/Elastic/ElasticsearchOptions.php + SearchEngine/Elastic/ElasticsearchOptions.php + + + prod::feedback:feedback_set_title + prod::feedback:feedback_set_title + prod/templates/push.html.twig + + + prod::push:push_set_title + prod::push:push_set_title + prod/templates/push.html.twig prod::recherche: Attention : la liste des bases selectionnees pour la recherche a ete changee. @@ -11524,8 +11605,8 @@ prod::tools: document prod::tools: document - Controller/Prod/ShareController.php Controller/Prod/ToolsController.php + Controller/Prod/ShareController.php prod:app trash: also-move-record @@ -11600,40 +11681,40 @@ public publiek - Bridge/Youtube/upload.html.twig - Bridge/Youtube/video_modify.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Dailymotion/video_modify.html.twig + Bridge/Youtube/upload.html.twig + Bridge/Youtube/video_modify.html.twig publication : autheur Auteur - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : email autheur Email auteur - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : sous titre Onder titel - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : titre Titel - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications. Hier uw persoonlijke RSS feed. Deze laat u toe om op de hoogte te blijven van de publicaties. - Controller/Prod/FeedController.php - Controller/Prod/FeedController.php + Controller/Prod/FeedController.php + Controller/Prod/FeedController.php publications:: s'abonner aux publications @@ -11644,14 +11725,14 @@ publications::Ne le partagez pas, il est strictement confidentiel Deel deze niet, hij is strikt confidentieel - Controller/Prod/FeedController.php - Controller/Prod/FeedController.php + Controller/Prod/FeedController.php + Controller/Prod/FeedController.php publications::votre rss personnel Uw persoonlijke rss feed - Controller/Prod/FeedController.php - Controller/Prod/FeedController.php + Controller/Prod/FeedController.php + Controller/Prod/FeedController.php push::mail:: Rapport de validation de %user% pour %title% @@ -11671,19 +11752,19 @@ raccourci :: a propos des raccourcis claviers Over toetsenbord sneltoetsen - web/prod/index.html.twig + web/prod/index.html.twig raccourcis :: ne plus montrer cette aide Deze help niet meer tonen - web/prod/index.html.twig + web/prod/index.html.twig rafraichir vernieuwen + prod/WorkZone/Story.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Basket.html.twig - prod/WorkZone/Story.html.twig prod/results/feeds.html.twig prod/results/feeds.html.twig @@ -11745,17 +11826,17 @@ reponses:: images par pages : Beelden per pagina : - web/prod/index.html.twig + web/prod/index.html.twig reponses:: mode liste Lijst mode - web/prod/index.html.twig + web/prod/index.html.twig reponses:: mode vignettes Thumbnail mode - web/prod/index.html.twig + web/prod/index.html.twig reponses:: partager @@ -11777,7 +11858,7 @@ reponses:: taille des images : Grootte van de beelden : - web/prod/index.html.twig + web/prod/index.html.twig reponses::document sans titre @@ -11819,8 +11900,8 @@ report:: Connexion Verbinding classes/module/report.php - web/report/all_content.html.twig web/report/report_layout.html.twig + web/report/all_content.html.twig report:: Databox content @@ -11965,21 +12046,21 @@ report:: non-renseigne Niet-informatief - module/report/nav.php + module/report/add.php + module/report/question.php + module/report/download.php module/report/activity.php module/report/activity.php module/report/activity.php - module/report/filter.php - module/report/edit.php - module/report/sent.php - module/report/download.php - module/report/add.php - module/report/validate.php - module/report/push.php - module/report/question.php module/report/connexion.php module/report/connexion.php module/report/connexion.php + module/report/push.php + module/report/sent.php + module/report/validate.php + module/report/nav.php + module/report/edit.php + module/report/filter.php report:: page d'accueil @@ -12012,8 +12093,8 @@ report:: question Vraag classes/module/report.php - module/report/filter.php module/report/question.php + module/report/filter.php report:: questions @@ -12563,8 +12644,8 @@ task::ftp:proxy task::ftp:proxy - task-manager/task-editor/ftp-pull.html.twig task-manager/task-editor/ftp.html.twig + task-manager/task-editor/ftp-pull.html.twig task::ftp:proxy password @@ -12574,8 +12655,8 @@ task::ftp:proxy port task::ftp:proxy poort - task-manager/task-editor/ftp-pull.html.twig task-manager/task-editor/ftp.html.twig + task-manager/task-editor/ftp-pull.html.twig task::ftp:proxy user @@ -12686,8 +12767,8 @@ thesaurus:: Nouveau synonyme Nieuw synoniem - web/thesaurus/new-term.html.twig web/thesaurus/thesaurus.html.twig + web/thesaurus/new-term.html.twig thesaurus:: Nouveau terme @@ -12825,15 +12906,15 @@ thesaurus:: export au format texte Export in text format - web/thesaurus/export-text.html.twig web/thesaurus/export-text-dialog.html.twig web/thesaurus/export-text-dialog.html.twig + web/thesaurus/export-text.html.twig thesaurus:: export en topics Exporteer in topics - web/thesaurus/export-topics.html.twig web/thesaurus/export-topics-dialog.html.twig + web/thesaurus/export-topics.html.twig thesaurus:: exporter @@ -13118,15 +13199,15 @@ thesaurus::menu: supprimer verwijderen + web/thesaurus/properties.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig - web/thesaurus/properties.html.twig thumbnail validation thumbnail goedkeuring - actions/Tools/index.html.twig actions/Tools/videoEditor.html.twig + actions/Tools/index.html.twig tout le monde @@ -13161,7 +13242,7 @@ updated_on updated_on - web/prod/index.html.twig + web/prod/index.html.twig upload:: Destination (collection) : @@ -13172,9 +13253,9 @@ upload:: Status : Status - prod/upload/lazaret.html.twig prod/upload/upload.html.twig prod/upload/upload-flash.html.twig + prod/upload/lazaret.html.twig users rights have been reseted @@ -13184,23 +13265,23 @@ validate OK + actions/Tools/videoEditor.html.twig actions/Tools/index.html.twig actions/Tools/index.html.twig actions/Tools/index.html.twig actions/Tools/index.html.twig - actions/Tools/videoEditor.html.twig validation:: NON NEE - web/lightbox/agreement_box.html.twig mobile/lightbox/basket_element.html.twig + web/lightbox/agreement_box.html.twig validation:: OUI JA - web/lightbox/agreement_box.html.twig mobile/lightbox/basket_element.html.twig + web/lightbox/agreement_box.html.twig validation:: editer ma note @@ -13220,10 +13301,10 @@ validation::envoyer mon rapport stuur mijn rapport - web/lightbox/basket_options.html.twig - web/lightbox/basket_options.html.twig mobile/lightbox/validate.html.twig mobile/lightbox/validate.html.twig + web/lightbox/basket_options.html.twig + web/lightbox/basket_options.html.twig version @@ -13238,8 +13319,8 @@ video video - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig video range extractor @@ -13254,9 +13335,9 @@ yes Ja - web/common/technical_datas.html.twig - web/admin/subdefs.html.twig web/account/sessions.html.twig + web/admin/subdefs.html.twig + web/common/technical_datas.html.twig you are about to change the representation thumbnail of your video diff --git a/resources/locales/validators.de.xlf b/resources/locales/validators.de.xlf index 7432220bbe..a203327709 100644 --- a/resources/locales/validators.de.xlf +++ b/resources/locales/validators.de.xlf @@ -1,6 +1,6 @@ - +
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. diff --git a/resources/locales/validators.en.xlf b/resources/locales/validators.en.xlf index bc0fbb98bf..57469632c8 100644 --- a/resources/locales/validators.en.xlf +++ b/resources/locales/validators.en.xlf @@ -1,6 +1,6 @@ - +
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. diff --git a/resources/locales/validators.fr.xlf b/resources/locales/validators.fr.xlf index be4240eed5..39763beba8 100644 --- a/resources/locales/validators.fr.xlf +++ b/resources/locales/validators.fr.xlf @@ -1,6 +1,6 @@ - +
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. diff --git a/resources/locales/validators.nl.xlf b/resources/locales/validators.nl.xlf index beb521933c..78b38af1d2 100644 --- a/resources/locales/validators.nl.xlf +++ b/resources/locales/validators.nl.xlf @@ -1,6 +1,6 @@ - +
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. diff --git a/resources/www/account/styles/main.scss b/resources/www/account/styles/main.scss index dbdf9dfa4d..42dd129b82 100644 --- a/resources/www/account/styles/main.scss +++ b/resources/www/account/styles/main.scss @@ -16,4 +16,158 @@ $mainMenuMarginBottom: 30px; #mainContent { padding-top: $mainMenuHeight; -} \ No newline at end of file +} + + +/*Help menu*/ +.contextMenu.helpcontextmenu { + display: none; + &.shown { + display: block; + position: absolute; + z-index: 101; + } +} +.help-trigger { + display:inline-block; + cursor:pointer; + padding: 0 4px; + border:none; + margin-left: -12px; +} + +.phraseanet_logo { + background: url(../../common/images/logo_phraseanet.png) no-repeat center center /contain; + height: 75px; + width: 230px; + display: inline-block; +} + +.phraseanet_version { + font-size: 15px; + font-family: Roboto; + font-weight: 500; + color: #b7b7b7; + padding-left: 58px; + a { + color: #b7b7b7; + &:hover { + color: #FFFFFF; + } + } +} + +.phraseanet_about_top { + background: #4e4e4e; + padding: 30px 20px; +} +.phraseanet_about_bottom { + padding: 25px 20px; + min-height: 150px; + background: #c8c8c8; + a { + font-family: Roboto; + line-height: 1.2; + font-size: 15px!important; + font-weight: 500; + color: #000000!important; + text-decoration: underline; + } + +} +.phraseanet_gpl { + img { + position: absolute; + width: 84px; + } + span { + padding-top: 26px; + display: inline-block; + padding-left: 100px; + padding-bottom: 20px; + text-decoration: underline; + } + a { + text-decoration: underline; + } + +} + + + +.ui-dialog { + position: absolute; + top: 0; + left: 0; + padding: .2em; + outline: 0; +} +.ui-dialog .ui-dialog-titlebar { + padding: .4em 1em; + position: relative; +} +.ui-dialog .ui-dialog-title { + float: left; + margin: .1em 0; + white-space: nowrap; + width: 90%; + overflow: hidden; + text-overflow: ellipsis; +} +.ui-dialog .ui-dialog-titlebar-close { + position: absolute; + right: .3em; + top: 50%; + width: 21px; + margin: -10px 0 0 0; + padding: 1px; + height: 20px; + text-indent: -9999999px; +} +.ui-dialog .ui-dialog-content { + position: relative; + border: 0; + padding: .5em 1em; + background: none; + overflow: auto; +} +.ui-dialog .ui-dialog-buttonpane { + text-align: left; + border-width: 1px 0 0 0; + background-image: none; + margin-top: .5em; + padding: .3em 1em .5em .4em; +} +.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { + float: right; +} +.ui-dialog .ui-dialog-buttonpane button { + margin: .5em .4em .5em 0; + cursor: pointer; +} + +.overlay, +.ui-widget-overlay { + background-color: #000; + opacity: 0.7; + filter: alpha(opacity=70); + height: 100%; + width: 100% +} + + +.ui-icon, .ui-widget-content .ui-icon { + background-image: url(/assets/vendors/jquery-ui/images/ui-lightness/ui-icons_222222_256x240.png)!important; + display: block; + text-indent: -99999px; + overflow: hidden; + background-repeat: no-repeat; + background-position: -96px -128px; + width: 16px; + height: 16px; + position: absolute; + top: 50%; + left: 50%; + margin-left: -8px; + margin-top: -8px; +} diff --git a/resources/www/admin/styles/main.scss b/resources/www/admin/styles/main.scss index ee13922f56..cff7851f82 100644 --- a/resources/www/admin/styles/main.scss +++ b/resources/www/admin/styles/main.scss @@ -325,6 +325,7 @@ div.switch_right.unchecked { .ui-dialog-titlebar-close { border: none; margin-right: 4px; + text-indent: -9999999px; } .ui-icon.ui-icon-closethick { background-image: url("/assets/common/images/icons/cross-white.png"); @@ -841,6 +842,76 @@ span.simplecolorpicker.picker { } } +.help-trigger { + display:inline-block; + cursor:pointer; + padding: 0 4px; + border:none; + margin-left: -12px; +} + +.phraseanet_logo { + background: url(../../common/images/logo_phraseanet.png) no-repeat center center /contain; + height: 75px; + width: 230px; + display: inline-block; +} + +.phraseanet_version { + font-size: 15px; + font-family: Roboto; + font-weight: 500; + color: #b7b7b7; + padding-left: 58px; + a { + color: #b7b7b7; + &:hover { + color: #FFFFFF; + } + } +} + +.phraseanet_about_top { + background: #4e4e4e; + padding: 30px 20px; +} +.phraseanet_about_bottom { + padding: 25px 20px; + min-height: 150px; + background: #c8c8c8; + a { + font-family: Roboto; + line-height: 1.2; + font-size: 15px!important; + font-weight: 500; + color: #000000!important; + text-decoration: underline; + } + +} +.phraseanet_gpl { + img { + position: absolute; + width: 84px; + } + span { + padding-top: 26px; + display: inline-block; + padding-left: 100px; + padding-bottom: 20px; + text-decoration: underline; + } + a { + text-decoration: underline; + } + +} +.ui-icon, .ui-widget-content .ui-icon { + background-image: url(/assets/vendors/jquery-ui/images/ui-lightness/ui-icons_222222_256x240.png)!important; +} +.ui-dialog-titlebar-close { + text-indent: -9999999px; +} @import './databases'; @import './fields'; @import './tables'; diff --git a/resources/www/common/images/GPLv3_Logo.png b/resources/www/common/images/GPLv3_Logo.png new file mode 100644 index 0000000000..25611f87d6 Binary files /dev/null and b/resources/www/common/images/GPLv3_Logo.png differ diff --git a/resources/www/common/images/logo_phraseanet.png b/resources/www/common/images/logo_phraseanet.png new file mode 100644 index 0000000000..373d529be3 Binary files /dev/null and b/resources/www/common/images/logo_phraseanet.png differ diff --git a/resources/www/common/js/components/common.js b/resources/www/common/js/components/common.js index 39c6ddf3c8..059db6c044 100644 --- a/resources/www/common/js/components/common.js +++ b/resources/www/common/js/components/common.js @@ -94,7 +94,7 @@ var commonModule = (function ($, p4) { .empty() .append(el.attr('infos')) .dialog({ - + title: 'About', autoOpen: false, closeOnEscape: true, resizable: false, @@ -106,7 +106,7 @@ var commonModule = (function ($, p4) { backgroundColor: '#000', opacity: 0.7 } - }).dialog('open').css({'overflow-x': 'auto', 'overflow-y': 'auto'}); + }).dialog('open').css({'overflow-x': 'auto', 'overflow-y': 'hidden', 'padding': '0'}); } diff --git a/resources/www/common/styles/main.scss b/resources/www/common/styles/main.scss index abcf466262..e232bde41c 100644 --- a/resources/www/common/styles/main.scss +++ b/resources/www/common/styles/main.scss @@ -107,3 +107,60 @@ $mainMenuLinkBackgroundHoverColor: transparent; margin-left: -12px; } +.phraseanet_logo { + background: url(../images/logo_phraseanet.png) no-repeat center center /contain; + height: 75px; + width: 230px; + display: inline-block; +} + +.phraseanet_version { + font-size: 15px; + font-family: Roboto; + font-weight: 500; + color: #b7b7b7; + padding-left: 58px; + a { + color: #b7b7b7; + &:hover { + color: #FFFFFF; + } + } +} + +.phraseanet_about_top { + background: #4e4e4e; + padding: 30px 20px; +} +.phraseanet_about_bottom { + padding: 25px 20px; + min-height: 150px; + background: #c8c8c8; + a { + font-family: Roboto; + line-height: 1.2; + font-size: 15px!important; + font-weight: 500; + color: #000000!important; + text-decoration: underline; + } + +} +.phraseanet_gpl { + img { + position: absolute; + width: 84px; + } + span { + padding-top: 26px; + display: inline-block; + padding-left: 100px; + padding-bottom: 20px; + text-decoration: underline; + } + a { + text-decoration: underline; + } + +} + diff --git a/resources/www/report/styles/main.scss b/resources/www/report/styles/main.scss index 218fce1f28..1c2dc70c33 100644 --- a/resources/www/report/styles/main.scss +++ b/resources/www/report/styles/main.scss @@ -360,3 +360,86 @@ $select-height: 26px; #mainMenu li .context-menu-item-inner a:hover { color: #000; } + +.ui-dialog-titlebar-close { + text-indent: -9999999px; +} + + +/*Help menu*/ +.contextMenu.helpcontextmenu { + display: none; + &.shown { + display: block; + position: absolute; + z-index: 101; + } +} +.help-trigger { + display:inline-block; + cursor:pointer; + padding: 0 4px; + border:none; + margin-left: -12px; +} + +.phraseanet_logo { + background: url(../../common/images/logo_phraseanet.png) no-repeat center center /contain; + height: 75px; + width: 230px; + display: inline-block; +} + +.phraseanet_version { + font-size: 15px; + font-family: Roboto; + font-weight: 500; + color: #b7b7b7; + padding-left: 58px; + a { + color: #b7b7b7; + &:hover { + color: #FFFFFF; + } + } +} + +.phraseanet_about_top { + background: #4e4e4e; + padding: 30px 20px; +} +.phraseanet_about_bottom { + padding: 25px 20px; + min-height: 150px; + background: #c8c8c8; + a { + font-family: Roboto; + line-height: 1.2; + font-size: 15px!important; + font-weight: 500; + color: #000000!important; + text-decoration: underline; + } + +} +.phraseanet_gpl { + img { + position: absolute; + width: 84px; + } + span { + padding-top: 26px; + display: inline-block; + padding-left: 100px; + padding-bottom: 20px; + text-decoration: underline; + } + a { + text-decoration: underline; + } + +} + +.ui-icon, .ui-widget-content .ui-icon { + background-image: url(/assets/vendors/jquery-ui/images/ui-lightness/ui-icons_222222_256x240.png)!important; +} diff --git a/templates/web/account/account.html.twig b/templates/web/account/account.html.twig index 887b29ec03..8dea3e8726 100644 --- a/templates/web/account/account.html.twig +++ b/templates/web/account/account.html.twig @@ -107,7 +107,7 @@
- +

@@ -121,7 +121,7 @@
- +

diff --git a/templates/web/admin/fields/index.html.twig b/templates/web/admin/fields/index.html.twig index e8198a324f..531ef168eb 100644 --- a/templates/web/admin/fields/index.html.twig +++ b/templates/web/admin/fields/index.html.twig @@ -27,3 +27,17 @@ {# bootstrap admin field backbone application #} + + diff --git a/templates/web/admin/fields/templates.html.twig b/templates/web/admin/fields/templates.html.twig index 0dc661fc5c..73106dbafb 100644 --- a/templates/web/admin/fields/templates.html.twig +++ b/templates/web/admin/fields/templates.html.twig @@ -238,14 +238,12 @@ - + <%= field['aggregable'] == "0" ? '{% trans %}Not aggregated{% endtrans %}' : '' %> + <%= field['aggregable'] == "10" ? '10 values' : '' %> + <%= field['aggregable'] == "20" ? '20 values' : '' %> + <%= field['aggregable'] == "50" ? '50 values' : '' %> + <%= field['aggregable'] == "100" ? '100 values' : '' %> + <%= field['aggregable'] == "-1" ? 'All values' : '' %> @@ -261,11 +259,14 @@ - - - - - /> + + +
> + +
+ diff --git a/templates/web/admin/search-engine/general-aggregation.html.twig b/templates/web/admin/search-engine/general-aggregation.html.twig index d4b83ba31b..0c377d2ecd 100644 --- a/templates/web/admin/search-engine/general-aggregation.html.twig +++ b/templates/web/admin/search-engine/general-aggregation.html.twig @@ -1,12 +1,37 @@
+ +
+ {#{{ 'See' | trans }} : #} + + + + + + + +
    {% for formdata in form %} {% set attr = formdata.vars['attr']|join(',') %} + {% set label = formdata.vars['label']|join(',') %} {% if attr == 'aggregate' %} -
  • +
  • + + diff --git a/templates/web/common/preview.html.twig b/templates/web/common/preview.html.twig index 0dba1f0cfd..90898e454c 100644 --- a/templates/web/common/preview.html.twig +++ b/templates/web/common/preview.html.twig @@ -15,7 +15,11 @@ {% set previewHtml5 = null %} -{% if app.getAclForUser(app.getAuthenticatedUser()).has_access_to_subdef(record, 'preview') and record.has_preview == true %} +{# first check if type audio and there is no preview , fallback to thumbnail #} + +{% if app.getAclForUser(app.getAuthenticatedUser()).has_access_to_subdef(record, 'preview') and record.getType == 'audio' and record.has_preview == false %} + {% set preview_obj = record.get_thumbnail() %} +{% elseif app.getAclForUser(app.getAuthenticatedUser()).has_access_to_subdef(record, 'preview') %} {% set preview_obj = record.get_preview() %} {% else %} {% set preview_obj = record.get_thumbnail() %} diff --git a/templates/web/developers/application_form.html.twig b/templates/web/developers/application_form.html.twig index 7d8e2eea76..c1ec6cb8bf 100644 --- a/templates/web/developers/application_form.html.twig +++ b/templates/web/developers/application_form.html.twig @@ -45,7 +45,7 @@ {% endmacro %} {% block content_account %} - + {% if form is none %} {% set name, description, website, callback = "", "", "", "" %} {% set app_type = "web" %} @@ -74,7 +74,7 @@
    - @@ -101,7 +101,7 @@
    - @@ -110,14 +110,18 @@
    {% endif %} -
    - - - +
    + +
    + +
    +
    {% endblock %} diff --git a/templates/web/developers/applications.html.twig b/templates/web/developers/applications.html.twig index 63da01ba29..9e6f523598 100644 --- a/templates/web/developers/applications.html.twig +++ b/templates/web/developers/applications.html.twig @@ -66,4 +66,25 @@
    + + {% endblock %} diff --git a/templates/web/lightbox/index.html.twig b/templates/web/lightbox/index.html.twig index 70fb42608b..38c7b45b9c 100644 --- a/templates/web/lightbox/index.html.twig +++ b/templates/web/lightbox/index.html.twig @@ -20,7 +20,7 @@
    + + {{ form_label(formdata, null, { 'label_attr': {'class': 'label-aggregation'} @@ -22,6 +47,39 @@ {% endif %} {% endfor %} - - \ No newline at end of file + + + + \ No newline at end of file diff --git a/templates/web/common/menubar.html.twig b/templates/web/common/menubar.html.twig index 772a86c497..22c6132707 100644 --- a/templates/web/common/menubar.html.twig +++ b/templates/web/common/menubar.html.twig @@ -252,7 +252,7 @@ {% endif %} + infos="
    {{ app['phraseanet.version'].getName() }} (V{{ app['phraseanet.version'].getNumber() }})   gitlog
    ">{{ 'phraseanet:: a propos' | trans }}
    - - {% for basket in baskets_collection %} + {% for basket in baskets_collection | sort | reverse%} {% if basket.getValidation() %} {% set basket_length = basket.getElements().count() %} - + {% set counter = ( counter | default(0) ) + 1 %} + +
    +

    {{ 'Validations' | trans }}

    @@ -29,10 +29,12 @@
    @@ -84,20 +86,26 @@ + {% if counter == 3 %}{% endif %} + {% endif %} {% endfor %} + - - {% for basket in baskets_collection %} + {% for basket in baskets_collection | sort | reverse%} {% if basket.getValidation is null %} {% set basket_length = basket.getElements().count() %} - + {% set counter = ( counter | default(0) ) + 1 %} + {% set counter_length = baskets_collection.length() %} + +
    {{ 'lightbox::See_more_feedback' | trans }}
    +

    {{ 'Paniers' | trans }}

    {{ 'Voici vos paniers' | trans }}
    @@ -140,9 +148,14 @@ + + {% if counter == 3 %}{% endif %} + {% endif %} {% endfor %} + +
    {{ 'lightbox::see_more_basket' | trans }}
    diff --git a/templates/web/prod/actions/edit_default.html.twig b/templates/web/prod/actions/edit_default.html.twig index e065811f8d..fd1a10a269 100644 --- a/templates/web/prod/actions/edit_default.html.twig +++ b/templates/web/prod/actions/edit_default.html.twig @@ -41,7 +41,7 @@
    -
    +
    @@ -73,9 +73,9 @@
    - {% endmacro %} @@ -198,7 +198,7 @@
    @@ -411,12 +411,32 @@ diff --git a/templates/web/prod/actions/printer_default.html.twig b/templates/web/prod/actions/printer_default.html.twig index e3833c0f7d..85a53e0565 100644 --- a/templates/web/prod/actions/printer_default.html.twig +++ b/templates/web/prod/actions/printer_default.html.twig @@ -6,10 +6,14 @@

    {{ 'phraseanet:: basket feedback' | trans }}

    + +
    {% endif %} @@ -43,7 +47,7 @@ {{ 'print:: liste d\'imagettes' | trans }} @@ -63,3 +67,12 @@ + + diff --git a/templates/web/prod/index.html.twig b/templates/web/prod/index.html.twig index 43c4255fa8..7fb2455fde 100644 --- a/templates/web/prod/index.html.twig +++ b/templates/web/prod/index.html.twig @@ -326,6 +326,9 @@
    + + +
    diff --git a/templates/web/prod/results/help.html.twig b/templates/web/prod/results/help.html.twig index 8b97cdb3c5..bc6406cb5b 100644 --- a/templates/web/prod/results/help.html.twig +++ b/templates/web/prod/results/help.html.twig @@ -30,63 +30,11 @@
  • {{ 'help::help-section-bullet: search-in-a-specific-field' | trans }}

  • - {#
    {{ 'La recherche s\'effectue grâce à la boîte de dialogue qui se trouve en haut à gauche de l\'écran.' | trans }}#} - {#{{ 'Sachez que vous pouvez utiliser les opérateurs ou caractères spéciaux suivants :' | trans }}
    #} - {#
    {{ '* , ? , ET , OU , SAUF , DANS , DERNIERS , TOUT (ou AND , OR , EXCEPT , LAST , ALL)' | trans }}
    #} - - {#
    {{ 'Caractères de troncature' | trans }}
    #} - - {##} - {##} - {##} - {##} - {##} - {##} - {##} - {##} - {##} - {#
    {{ 'auto*' | trans }} {{ 'retourne "automobile", "automate", "autoroute", ...' | trans }}
    {{ 'dé?it' | trans }} {{ 'retourne "délit", "débit", ...' | trans }}
    #} - - {#
    {{ 'Visualiser tous les enregistrements / les derniers enregistrements' | trans }}
    #} - {##} - {##} - {##} - {##} - {##} - {##} - {##} - {##} - {##} - {#
    {{ 'TOUT' | trans }}{{ 'retourne tous les enregistrements des collections selectionnees' | trans }}
    {{ 'LAST 20' | trans }}{{ 'retourne les 20 derniers enregistrements archives dans les collections selectionnees' | trans }}
    #} - - {#
    {{ 'Recherche multicritères' | trans }}
    #} - {#{{ 'Vous pouvez affiner votre recherche avec les opérateurs : ET, OU, SAUF ou DANS' | trans }}
    #} - {##} - {##} - {##} - {##} - {##} - {##} - {##} - {##} - {##} - {##} - {##} - {##} - {##} - {##} - {##} - {##} - {##} - {#
    {{ 'sport' | trans }} ET {{ 'automobile' | trans }}{{ 'retourne les documents comprenant les deux mots.' | trans }}
    {{ 'journal OU jt' | trans }}{{ 'retourne les documents comprenant un mot et/ou l\'autre.' | trans }}
    {{ 'cannes SAUF festival' | trans }}{{ 'retourne les documents comprenant cannes sans le mot festival.' | trans }}
    {{ 'thalassa DANS titre' | trans }}{{ 'retourne les documents où le terme est au moins présent dans le titre, en évitant par exemple celles où le terme est uniquement cité dans la légende.' | trans }}
    #} - - {#
    #} - {#

    {{ 'Attention' | trans }}

    #} - {#

    {{ 'pour chercher une phrase contenant un des mots-clé ci-dessus, utilisez les guillemets :' | trans }}

    #} - {#"{{ 'C dans l\'air' | trans }}"#} - {#, "{{ 'Et Dieu créa la femme' | trans }}"#} - {#, "{{ 'bijou en or' | trans }}"#} - {#, "{{ 'tout le sport' | trans }}"#} - {#
    #} +
    +

    {{ 'help::help-search: OR' | trans }}

    +
    +

    + {{ 'help::help-search: relaunch search without filter' | trans }} +

    -{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/templates/web/prod/templates/push.html.twig b/templates/web/prod/templates/push.html.twig index a769c2d3be..d975500a23 100644 --- a/templates/web/prod/templates/push.html.twig +++ b/templates/web/prod/templates/push.html.twig @@ -150,6 +150,8 @@
    + +