diff --git a/composer.lock b/composer.lock
index 4a03a78bef..41a8b05beb 100644
--- a/composer.lock
+++ b/composer.lock
@@ -275,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": {
@@ -300,6 +300,7 @@
},
"require-dev": {
"jms/serializer": "~0.12.0",
+ "phpunit/phpunit": "^4.0|^5.0",
"silex/silex": "~1.0",
"symfony/yaml": "~2.0"
},
@@ -333,7 +334,7 @@
"keywords": [
"metadata"
],
- "time": "2019-01-22T11:23:34+00:00"
+ "time": "2020-02-18T13:37:45+00:00"
},
{
"name": "alchemy/oauth2php",
@@ -6168,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"
},
{
diff --git a/config/configuration.sample.yml b/config/configuration.sample.yml
index fbaa368ed9..b7fef2618a 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 5f488cdd5a..d17062de4c 100644
--- a/lib/Alchemy/Phrasea/Core/Version.php
+++ b/lib/Alchemy/Phrasea/Core/Version.php
@@ -16,7 +16,7 @@ class Version
/**
* @var string
*/
- private $number = '4.1.0-alpha.20a';
+ private $number = '4.1.0-alpha.22a';
/**
* @var string
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/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/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/410alpha20a.php b/lib/classes/patch/410alpha21a.php
similarity index 96%
rename from lib/classes/patch/410alpha20a.php
rename to lib/classes/patch/410alpha21a.php
index ff02a35c96..58091e62f2 100644
--- a/lib/classes/patch/410alpha20a.php
+++ b/lib/classes/patch/410alpha21a.php
@@ -11,10 +11,10 @@
use Alchemy\Phrasea\Application;
-class patch_410alpha20a implements patchInterface
+class patch_410alpha21a implements patchInterface
{
/** @var string */
- private $release = '4.1.0-alpha.20a';
+ private $release = '4.1.0-alpha.21a';
/** @var array */
private $concern = [base::DATA_BOX];
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 1be5477ff4..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.126-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 23cdd27aa3..3eabcb3949 100644
--- a/resources/locales/messages.de.xlf
+++ b/resources/locales/messages.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.
@@ -118,8 +118,8 @@
%basket_length% documents
%basket_length% Dokument(e)
mobile/lightbox/validate.html.twig
- web/lightbox/index.html.twig
- web/lightbox/index.html.twig
+ web/lightbox/index.html.twig
+ web/lightbox/index.html.twig
%countable% documents can not be modified.
@@ -198,16 +198,16 @@
%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]]>
@@ -252,8 +252,8 @@
%quantity% records added
%quantity% Datensätze hinzugefügt
- Controller/Prod/StoryController.php
Controller/Prod/BasketController.php
+ Controller/Prod/StoryController.php
%quantity% records moved
@@ -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
@@ -549,8 +549,8 @@
Access
Zugriff
- web/admin/editusers.html.twig
actions/Feedback/List-Share.html.twig
+ web/admin/editusers.html.twig
Access code
@@ -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
@@ -676,9 +676,9 @@
Add
Hinzufügen
prod/actions/Push.html.twig
- prod/User/Add.html.twig
prod/upload/lazaret.html.twig
prod/upload/lazaret.html.twig
+ prod/User/Add.html.twig
Add a
@@ -776,37 +776,42 @@
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/Baskets/Create.html.twig
prod/Story/Create.html.twig
+ prod/orders/order_item.html.twig
Ajouter un nouvel utilisateur
@@ -856,7 +861,6 @@
All
Alle
Form/Configuration/CustomLinkFormType.php
- task-manager/task-editor/subdefs.html.twig
WorkZone/Browser/Browser.html.twig
actions/Feedback/list.html.twig
actions/Feedback/list.html.twig
@@ -864,16 +868,12 @@
actions/Feedback/list.html.twig
actions/Feedback/list.html.twig
actions/Feedback/list.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
@@ -938,14 +938,14 @@
Alphabetic asc
aufsteigender alphabetischer Reihenfolge
- 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
absteigender alphabetischer Reihenfolge
- web/prod/index.html.twig
+ web/prod/index.html.twig
Also delete records that rely on groupings.
@@ -955,6 +955,18 @@
An error occured
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
@@ -967,29 +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/ToolsController.php
- Controller/Prod/StoryController.php
Controller/Prod/BasketController.php
+ Controller/Prod/ToolsController.php
Controller/Prod/LazaretController.php
Controller/Prod/MoveCollectionController.php
- Model/Manipulator/LazaretManipulator.php
- Model/Manipulator/LazaretManipulator.php
- admin/databox/databox.html.twig
+ Controller/Prod/StoryController.php
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!
@@ -1030,14 +1030,14 @@
An error occurred
Ein Fehler ist aufgetreten
+ Order/Controller/ProdOrderController.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
Controller/Api/V1Controller.php
- Controller/Admin/CollectionController.php
- Controller/Admin/DataboxController.php
- Controller/Admin/SearchEngineController.php
- Controller/Prod/BasketController.php
- Order/Controller/ProdOrderController.php
web/admin/statusbit.html.twig
@@ -1068,7 +1068,7 @@
Aperture
Blende
- SearchEngine/Elastic/ElasticsearchOptions.php
+ SearchEngine/Elastic/ElasticsearchOptions.php
web/common/technical_datas.html.twig
@@ -1129,8 +1129,8 @@
Apply a template
Eine Schablone anwenden
- web/admin/users.html.twig
web/admin/editusers.html.twig
+ web/admin/users.html.twig
Apply changes
@@ -1275,13 +1275,13 @@
Audio Codec
Audio Codec
- Media/Subdef/Video.php
Media/Subdef/Audio.php
+ Media/Subdef/Video.php
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
@@ -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
@@ -1438,8 +1438,8 @@
Base %base%
Datenbank %base%
web/admin/editusers_quotas.html.twig
- web/admin/editusers_timelimit_sbas.html.twig
web/admin/editusers_timelimit.html.twig
+ web/admin/editusers_timelimit_sbas.html.twig
Base could not be created
@@ -1554,7 +1554,7 @@
By field
Nach Feld
- web/prod/index.html.twig
+ web/prod/index.html.twig
CHAMPS
@@ -1564,26 +1564,26 @@
Camera Model
Kameramodell
- SearchEngine/Elastic/ElasticsearchOptions.php
+ SearchEngine/Elastic/ElasticsearchOptions.php
web/common/technical_datas.html.twig
Cancel
Abbrechen
Controller/Prod/LanguageController.php
- user/import/view.html.twig
- admin/fields/templates.html.twig
- task-manager/task-editor/task.html.twig
prod/actions/delete_records_confirm.html.twig
actions/Property/type.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
Alle abbrechen
- prod/upload/upload-flash.html.twig
prod/upload/upload.html.twig
+ prod/upload/upload-flash.html.twig
Cannot upload Zero Byte files
@@ -1603,9 +1603,9 @@
Categorie
Kategorie
- Bridge/Youtube/video_modify.html.twig
- Bridge/Youtube/upload.html.twig
Bridge/Dailymotion/video_modify.html.twig
+ Bridge/Youtube/upload.html.twig
+ Bridge/Youtube/video_modify.html.twig
Ce champ est decrit comme element du %DublinCoreElementSet%
@@ -1635,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
@@ -1663,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
@@ -1744,6 +1744,8 @@
Choisir
wählen
+ 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
@@ -1751,8 +1753,6 @@
web/admin/subdefs.html.twig
web/admin/subdefs.html.twig
web/admin/subdefs.html.twig
- prod/Baskets/Reorder.html.twig
- prod/Story/Reorder.html.twig
Choose a new password
@@ -1779,8 +1779,8 @@
Clear list
Liste löschen
- prod/upload/upload-flash.html.twig
prod/upload/upload.html.twig
+ prod/upload/upload-flash.html.twig
Client application
@@ -1810,8 +1810,8 @@
Codec Audio
Audio Codec
- web/common/technical_datas.html.twig
actions/Tools/videoEditor.html.twig
+ web/common/technical_datas.html.twig
Codec Video
@@ -1821,9 +1821,9 @@
Collection
Kollektion
- admin/databox/details.html.twig
- prod/upload/lazaret.html.twig
prod/Story/Create.html.twig
+ prod/upload/lazaret.html.twig
+ admin/databox/details.html.twig
Collection %collection%
@@ -1839,7 +1839,7 @@
Collection order
Kollektionen Ordnung
- web/prod/index.html.twig
+ web/prod/index.html.twig
Color Depth
@@ -1854,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%
@@ -1875,8 +1875,8 @@
Company
Unternehmen
- actions/Feedback/ListsMacros.html.twig
actions/Feedback/list.html.twig
+ actions/Feedback/ListsMacros.html.twig
prod/User/Add.html.twig
@@ -1892,10 +1892,10 @@
Confidentialite
Vertraulichkeit
- Bridge/Youtube/video_modify.html.twig
- Bridge/Youtube/upload.html.twig
- Bridge/Dailymotion/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
Konfiguration
- web/prod/index.html.twig
+ web/prod/index.html.twig
Confirm new email address
@@ -1935,13 +1935,13 @@
Connection
Verbindung
- login/oauth/login.html.twig
- web/login/index.html.twig
- web/login/index.html.twig
- login/providers/bind.html.twig
- login/providers/bind.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
enthält
- web/prod/index.html.twig
+ web/prod/index.html.twig
Continuer ?
@@ -2021,13 +2021,13 @@
Couleur de selection
Farbauswahl
- web/prod/index.html.twig
+ web/prod/index.html.twig
Country
Land
- actions/Feedback/ListsMacros.html.twig
actions/Feedback/list.html.twig
+ actions/Feedback/ListsMacros.html.twig
Create a user
@@ -2042,7 +2042,7 @@
Create index
Index erstellen
- SearchEngine/Elastic/ElasticsearchSettingsFormType.php
+ SearchEngine/Elastic/ElasticsearchSettingsFormType.php
Creation date
@@ -2062,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
@@ -2109,8 +2109,8 @@
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
@@ -2131,7 +2131,7 @@
Current configuration contains some
errors
Die aktuelle Konfiguration enthält einige Fehler
- 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
@@ -2234,7 +2234,7 @@
Date Added
Hinzufügungsdatum
- web/prod/index.html.twig
+ web/prod/index.html.twig
Date Creation
@@ -2244,7 +2244,7 @@
Date Updated
Aktualisierungsdatum
- web/prod/index.html.twig
+ web/prod/index.html.twig
Date de connexion
@@ -2273,13 +2273,13 @@
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
@@ -2351,7 +2351,7 @@
Defined by admin
Von Administrator festgelegt
- web/prod/index.html.twig
+ web/prod/index.html.twig
Defined in Apache configuration
@@ -2371,9 +2371,9 @@
Delete
Löschen
- admin/task-manager/templates.html.twig
prod/upload/lazaret.html.twig
prod/upload/lazaret.html.twig
+ admin/task-manager/templates.html.twig
Delete account successfull
@@ -2383,8 +2383,8 @@
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
@@ -2419,16 +2419,16 @@
Deny
verweigern
- login/oauth/authorize-access.html.twig
prod/orders/order_item.html.twig
prod/orders/order_item.html.twig
+ login/oauth/authorize-access.html.twig
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
@@ -2454,24 +2454,24 @@
Description
Beschreibung
- web/developers/application_form.html.twig
- Bridge/Youtube/video_modify.html.twig
- Bridge/Youtube/upload.html.twig
- Bridge/Youtube/playlist_createcontainer.html.twig
- Bridge/Flickr/photoset_createcontainer.html.twig
- Bridge/Flickr/photo_modify.html.twig
- Bridge/Flickr/upload.html.twig
- Bridge/Dailymotion/video_modify.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
prod/Tooltip/DCESFieldInfo.html.twig
+ web/developers/application_form.html.twig
Deselect all
Alle abwählen
prod/actions/Push.html.twig
actions/Feedback/list.html.twig
- web/report/form_date_and_base.html.twig
web/report/report_layout_child.html.twig
+ web/report/form_date_and_base.html.twig
Design of personalization logo section
@@ -2502,9 +2502,9 @@
Dimension
Grösse
- Media/Subdef/Video.php
- Media/Subdef/Unknown.php
Media/Subdef/Image.php
+ Media/Subdef/Unknown.php
+ Media/Subdef/Video.php
Disable document type sharing
@@ -2529,7 +2529,7 @@
Display technical data
Technische Informationen anzeigen
- web/prod/index.html.twig
+ web/prod/index.html.twig
Display thumbnails
@@ -2539,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
@@ -2639,7 +2639,7 @@
Drop index
Drop index
- SearchEngine/Elastic/ElasticsearchSettingsFormType.php
+ SearchEngine/Elastic/ElasticsearchSettingsFormType.php
Duree
@@ -2654,8 +2654,8 @@
E-mail
E-Mail Adresse
- Form/Login/PhraseaRegisterForm.php
Form/Login/PhraseaForgotPasswordForm.php
+ Form/Login/PhraseaRegisterForm.php
E-mail domain
@@ -2710,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%
@@ -2747,19 +2747,19 @@
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
@@ -2872,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
@@ -3010,7 +3010,7 @@
Equals
gleicht
- web/prod/index.html.twig
+ web/prod/index.html.twig
Erreur
@@ -3114,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
@@ -3125,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 ?
@@ -3141,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
@@ -3168,9 +3168,9 @@
Export
Exportieren
- Controller/Prod/LanguageController.php
Controller/Prod/DoDownloadController.php
Controller/Prod/DoDownloadController.php
+ Controller/Prod/LanguageController.php
Export ranges
@@ -3212,8 +3212,8 @@
Feedback
Controller/Prod/LanguageController.php
prod/WorkZone/Story.html.twig
- prod/WorkZone/Basket.html.twig
prod/WorkZone/Macros.html.twig
+ prod/WorkZone/Basket.html.twig
web/prod/toolbar.html.twig
@@ -3269,11 +3269,11 @@
File is not present in quarantine anymore, please refresh
Datei befindet sich nicht mehr in der Quarantäne, bitte aktualisieren
- Controller/Prod/LazaretController.php
- Controller/Prod/LazaretController.php
Model/Manipulator/LazaretManipulator.php
Model/Manipulator/LazaretManipulator.php
Model/Manipulator/LazaretManipulator.php
+ Controller/Prod/LazaretController.php
+ Controller/Prod/LazaretController.php
File is too big : 64k max
@@ -3308,8 +3308,8 @@
Fils disponibles
verfügbare Threads
- actions/publish/publish_edit.html.twig
actions/publish/publish.html.twig
+ actions/publish/publish_edit.html.twig
Filter
@@ -3329,26 +3329,26 @@
First/Last Name
Vorname / Nachname
+ actions/Feedback/ListsMacros.html.twig
web/admin/users.html.twig
web/admin/users.html.twig
- actions/Feedback/ListsMacros.html.twig
Flash
Flash
- web/common/technical_datas.html.twig
web/prod/index.html.twig
+ web/common/technical_datas.html.twig
FlashFired
FlashFired
- SearchEngine/Elastic/ElasticsearchOptions.php
+ SearchEngine/Elastic/ElasticsearchOptions.php
Flatten layers
Flatten Layers
- Media/Subdef/Unknown.php
Media/Subdef/Image.php
+ Media/Subdef/Unknown.php
Focal length
@@ -3378,10 +3378,10 @@
Forgot password?
Passwort vergessen ?
- login/oauth/login.html.twig
- web/login/index.html.twig
- login/providers/bind.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?
@@ -3401,7 +3401,7 @@
FrameRate
Framerate
- SearchEngine/Elastic/ElasticsearchOptions.php
+ SearchEngine/Elastic/ElasticsearchOptions.php
Frequence d'echantillonage
@@ -3466,8 +3466,8 @@
Generates an image
Erstellt ein Bild
- Media/Subdef/Unknown.php
Media/Subdef/Image.php
+ Media/Subdef/Unknown.php
Geo Search
@@ -3487,7 +3487,7 @@
Get setting form index
Index Daten erhalten
- 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.
@@ -3547,7 +3547,7 @@
Graphiste (preview au rollover)
Grafiker (Voransicht mit Rollover)
- web/prod/index.html.twig
+ web/prod/index.html.twig
Great
@@ -3594,8 +3594,8 @@
Hello %username%
Hallo %username%
- api/auth/native_app_access_token.html.twig
api/auth/end_user_authorization.html.twig
+ api/auth/native_app_access_token.html.twig
api/auth/end_user_authorization.html.twig
@@ -3616,11 +3616,11 @@
Home
Hautpseite
- mobile/lightbox/feed.html.twig
mobile/lightbox/basket_element.html.twig
+ mobile/lightbox/feed.html.twig
mobile/lightbox/validate.html.twig
- login/layout/base-layout.html.twig
login/include/language-block.html.twig
+ login/layout/base-layout.html.twig
Homepage slideshow
@@ -3635,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
@@ -3646,7 +3646,7 @@
ISO
ISO
- SearchEngine/Elastic/ElasticsearchOptions.php
+ SearchEngine/Elastic/ElasticsearchOptions.php
ISO sensibility
@@ -3656,7 +3656,7 @@
Iconographe (description au rollover)
Bildredakteur (Beschreibung mit Rollover)
- web/prod/index.html.twig
+ web/prod/index.html.twig
Id
@@ -3711,8 +3711,8 @@
Images par secondes
Bilder pro Sekunde
- web/common/technical_datas.html.twig
actions/Tools/videoEditor.html.twig
+ web/common/technical_datas.html.twig
Imagette indisponible
@@ -3727,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,8 +3760,8 @@
Informations
Informationen
web/account/base.html.twig
- admin/user/registrations.html.twig
web/admin/dashboard.html.twig
+ admin/user/registrations.html.twig
Informations personnelles
@@ -3776,8 +3776,8 @@
Inscription
Anmeldung
- web/login/register.html.twig
web/login/register-classic.html.twig
+ web/login/register.html.twig
Install in progess
@@ -3797,20 +3797,20 @@
Invalid file format
Ungültiges Datei Format
- Controller/Admin/CollectionController.php
Controller/Admin/DataboxController.php
+ Controller/Admin/CollectionController.php
Invalid file type
Ungültiger Dateityp
- admin/collection/collection.html.twig
prod/upload/upload-flash.html.twig
+ admin/collection/collection.html.twig
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
@@ -3821,8 +3821,8 @@
Invalid labels parameter
ungültige Labels Parameter
- Controller/Admin/CollectionController.php
Controller/Admin/DataboxController.php
+ Controller/Admin/CollectionController.php
Invalid link.
@@ -3884,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%
@@ -3922,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
@@ -3951,7 +3951,7 @@
Language
Sprache
- web/prod/index.html.twig
+ web/prod/index.html.twig
Last Name
@@ -4031,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
@@ -4061,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.
@@ -4088,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
@@ -4104,8 +4104,8 @@
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
@@ -4183,10 +4183,10 @@
Login
Benutzername
Form/Login/PhraseaAuthenticationForm.php
- login/oauth/login.html.twig
- login/providers/bind.html.twig
- login/providers/mapping.html.twig
actions/Feedback/ListsMacros.html.twig
+ login/providers/mapping.html.twig
+ login/providers/bind.html.twig
+ login/oauth/login.html.twig
Login %login% already exists in database
@@ -4206,8 +4206,8 @@
Login to link your account
Einloggen, um Ihr Konto zu verknüpfen
- login/providers/bind.html.twig
login/providers/mapping.html.twig
+ login/providers/bind.html.twig
Logs
@@ -4218,7 +4218,7 @@
Ma derniere question
meine letzte Suchabfrage
- web/prod/index.html.twig
+ web/prod/index.html.twig
Mail line %line% is empty
@@ -4324,7 +4324,7 @@
MimeType
MimeType
- SearchEngine/Elastic/ElasticsearchOptions.php
+ SearchEngine/Elastic/ElasticsearchOptions.php
Minimum number of letters before truncation
@@ -4339,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%
@@ -4375,7 +4375,7 @@
Mode de presentation
Anzeigemodus
- web/prod/index.html.twig
+ web/prod/index.html.twig
Modele de donnees
@@ -4385,8 +4385,8 @@
Models
Vorlage
- admin/user/registrations.html.twig
actions/Feedback/list.html.twig
+ admin/user/registrations.html.twig
Modify
@@ -4459,10 +4459,10 @@
Name
Name
Controller/Prod/LanguageController.php
- admin/fields/templates.html.twig
- prod/templates/push.html.twig
- actions/Download/prepare.html.twig
Bridge/Dailymotion/playlist_createcontainer.html.twig
+ actions/Download/prepare.html.twig
+ prod/templates/push.html.twig
+ admin/fields/templates.html.twig
Name or email
@@ -4499,14 +4499,14 @@
New password
Neues Passwort
- Form/Login/PhraseaRecoverPasswordForm.php
Form/Login/PhraseaRenewPasswordForm.php
+ Form/Login/PhraseaRecoverPasswordForm.php
New password (confirmation)
Neues Passwort (Bestätigung)
- Form/Login/PhraseaRecoverPasswordForm.php
Form/Login/PhraseaRenewPasswordForm.php
+ Form/Login/PhraseaRecoverPasswordForm.php
New task
@@ -4644,21 +4644,21 @@
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
Keine
Form/Configuration/EmailFormType.php
- admin/user/registrations.html.twig
web/admin/users.html.twig
+ admin/user/registrations.html.twig
None of the records can be modified.
@@ -4688,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
@@ -4754,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
@@ -4771,14 +4772,14 @@
OK
OK
- Bridge/Api/Dailymotion.php
Bridge/Api/Youtube.php
+ Bridge/Api/Dailymotion.php
Ok
OK
- admin/fields/templates.html.twig
prod/actions/delete_records_confirm.html.twig
+ admin/fields/templates.html.twig
One document can not be modified.
@@ -4798,7 +4799,7 @@
One of these conditions
Eine von diesen Bedingungen
- web/prod/index.html.twig
+ web/prod/index.html.twig
Only %nbEditableDocuments% records can be modified.
@@ -4823,10 +4824,10 @@
Or login with
Oder Anmeldung mit
- api/auth/end_user_authorization.html.twig
- login/oauth/login.html.twig
- web/login/index.html.twig
web/login/register.html.twig
+ web/login/index.html.twig
+ login/oauth/login.html.twig
+ api/auth/end_user_authorization.html.twig
Order
@@ -4861,7 +4862,7 @@
Orientation
Ausrichtung
- SearchEngine/Elastic/ElasticsearchOptions.php
+ SearchEngine/Elastic/ElasticsearchOptions.php
Original name
@@ -4900,10 +4901,10 @@
Sammelkörbe
mobile/lightbox/index.html.twig
mobile/lightbox/index.html.twig
- lightbox/IE6/validate.html.twig
- web/lightbox/index.html.twig
- web/lightbox/validate.html.twig
web/account/account.html.twig
+ web/lightbox/index.html.twig
+ lightbox/IE6/validate.html.twig
+ web/lightbox/validate.html.twig
Par %author%
@@ -5013,14 +5014,14 @@
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.
@@ -5143,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
@@ -5159,12 +5160,12 @@
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
@@ -5217,10 +5218,10 @@
Publications
Veröffentlichungen
- web/common/menubar.html.twig
- web/admin/tree.html.twig
+ web/prod/index.html.twig
admin/publications/wrapper.html.twig
- web/prod/index.html.twig
+ web/admin/tree.html.twig
+ web/common/menubar.html.twig
Publier
@@ -5230,8 +5231,8 @@
Publique
öffentliche
- admin/publications/list.html.twig
admin/publications/fiche.html.twig
+ admin/publications/list.html.twig
Publishers
@@ -5258,26 +5259,26 @@
Push::filter on companies
Unternehmensname
- web/admin/users.html.twig
actions/Feedback/list.html.twig
+ web/admin/users.html.twig
Push::filter on countries
Land
- web/admin/users.html.twig
actions/Feedback/list.html.twig
+ web/admin/users.html.twig
Push::filter on emails
E-Mail
- web/admin/users.html.twig
actions/Feedback/list.html.twig
+ web/admin/users.html.twig
Push::filter on login
Benutzername
- web/admin/users.html.twig
actions/Feedback/list.html.twig
+ web/admin/users.html.twig
Push::filter on name
@@ -5292,8 +5293,8 @@
Push::filter starts
beginnt mit
- web/admin/users.html.twig
actions/Feedback/list.html.twig
+ web/admin/users.html.twig
Push::une validation est une demande d'appreciation a d'autres personnes
@@ -5308,14 +5309,14 @@
Quality
Qualität
- Media/Subdef/Unknown.php
Media/Subdef/Image.php
+ Media/Subdef/Unknown.php
Quarantine
Quarantäne
- prod/upload/upload-flash.html.twig
prod/upload/upload.html.twig
+ prod/upload/upload-flash.html.twig
Quarantine notificaton
@@ -5330,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%
@@ -5423,20 +5424,20 @@
Re-initialiser
Zurücksetzen
- web/prod/index.html.twig
prod/Baskets/Reorder.html.twig
prod/Story/Reorder.html.twig
+ web/prod/index.html.twig
Re-ordonner
wieder ordnen
+ 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/Baskets/Reorder.html.twig
prod/Story/Reorder.html.twig
@@ -5472,8 +5473,8 @@
Received from %user_name%
Von %user_name% bekommen
- WorkZone/Browser/Results.html.twig
WorkZone/Browser/Basket.html.twig
+ WorkZone/Browser/Results.html.twig
Reception d'un rapport de validation
@@ -5528,7 +5529,7 @@
Rechercher dans un champ date
im Feld "Datum" suchen
- web/prod/index.html.twig
+ web/prod/index.html.twig
Recommendations
@@ -5589,10 +5590,10 @@
Register
Registrieren
- web/login/register-provider.html.twig
- web/login/register.html.twig
- login/include/register-link-block.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
@@ -5607,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
@@ -5634,8 +5635,8 @@
Remove ICC Profile
Entfernt ICC-Profil
- Media/Subdef/Unknown.php
Media/Subdef/Image.php
+ Media/Subdef/Unknown.php
Remove current Range
@@ -5749,8 +5750,8 @@
Resolution
Unterauflösung
- Media/Subdef/Unknown.php
Media/Subdef/Image.php
+ Media/Subdef/Unknown.php
Resource URL
@@ -5780,8 +5781,8 @@
Restriction
Einschränkung
- web/admin/editusers_quotas.html.twig
admin/publications/list.html.twig
+ web/admin/editusers_quotas.html.twig
Restrictions de telechargement
@@ -5896,14 +5897,14 @@
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
web/login/renew-password.html.twig
- admin/search-engine/elastic-search.html.twig
- admin/search-engine/general-aggregation.html.twig
- task-manager/task-editor/task.html.twig
- actions/Feedback/list.html.twig
Save all changes
@@ -5976,8 +5977,8 @@
See my order
Meine Bestellung ansehen
- Notification/Mail/MailInfoOrderDelivered.php
Notification/Mail/MailInfoOrderCancelled.php
+ Notification/Mail/MailInfoOrderDelivered.php
See others
@@ -5997,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 !
@@ -6009,8 +6010,8 @@
Alle auswählen
prod/actions/Push.html.twig
actions/Feedback/list.html.twig
- web/report/form_date_and_base.html.twig
web/report/report_layout_child.html.twig
+ web/report/form_date_and_base.html.twig
Select all collections
@@ -6020,19 +6021,19 @@
Select files...
Dateien auswählen...
- user/import/file.html.twig
- admin/statusbit/edit.html.twig
- admin/statusbit/edit.html.twig
+ prod/upload/upload.html.twig
+ prod/upload/upload-flash.html.twig
admin/collection/collection.html.twig
admin/collection/collection.html.twig
admin/collection/collection.html.twig
- prod/upload/upload-flash.html.twig
- prod/upload/upload.html.twig
+ user/import/file.html.twig
+ admin/statusbit/edit.html.twig
+ admin/statusbit/edit.html.twig
Selected base(s)
Ausgewählte Datenbank(en) :
- web/prod/index.html.twig
+ web/prod/index.html.twig
Selected files
@@ -6043,14 +6044,14 @@
Send
Senden
Controller/Prod/LanguageController.php
- web/login/forgot-password.html.twig
- web/admin/dashboard.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
- prod/upload/upload-flash.html.twig
- prod/upload/upload.html.twig
+ web/admin/dashboard.html.twig
+ web/login/forgot-password.html.twig
Send an email to the user to setup his password
@@ -6082,8 +6083,8 @@
Sent for validation to %list_participants%
Für die Bestätigung zu %list_participants% gesendet
- WorkZone/Browser/Results.html.twig
WorkZone/Browser/Basket.html.twig
+ WorkZone/Browser/Results.html.twig
Separator
@@ -6129,8 +6130,8 @@
Setup
Aufstellung
- web/admin/tree.html.twig
web/admin/setup.html.twig
+ web/admin/tree.html.twig
Setup my password
@@ -6160,13 +6161,13 @@
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
@@ -6202,9 +6203,9 @@
Size
Grösse
- web/common/technical_datas.html.twig
- actions/Download/prepare.html.twig
actions/Tools/videoEditor.html.twig
+ actions/Download/prepare.html.twig
+ web/common/technical_datas.html.twig
Slide show
@@ -6259,15 +6260,15 @@
Source
Quelle
+ prod/Tooltip/DataboxField.html.twig
admin/fields/templates.html.twig
admin/fields/templates.html.twig
- prod/Tooltip/DataboxField.html.twig
Sous-titre
Untertitel
- admin/publications/list.html.twig
admin/publications/fiche.html.twig
+ admin/publications/list.html.twig
Space bar
@@ -6309,7 +6310,7 @@
Status des documents a rechercher
Zustand der Dokumente
- web/prod/index.html.twig
+ web/prod/index.html.twig
Status edition
@@ -6329,10 +6330,10 @@
Stop
Stop
- admin/task-manager/templates.html.twig
- admin/task-manager/templates.html.twig
prod/upload/lazaret.html.twig
prod/upload/lazaret.html.twig
+ admin/task-manager/templates.html.twig
+ admin/task-manager/templates.html.twig
Stopped
@@ -6426,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
@@ -6449,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
web/admin/databases.html.twig
admin/collection/collection.html.twig
admin/collection/suggested_value.html.twig
- actions/Tools/videoEditor.html.twig
Successfull connection
@@ -6482,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
@@ -6525,11 +6526,11 @@
Tags
Tags
- Bridge/Youtube/video_modify.html.twig
- Bridge/Youtube/upload.html.twig
- Bridge/Flickr/upload.html.twig
- Bridge/Dailymotion/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
+ Bridge/Flickr/upload.html.twig
Target Device
@@ -6588,9 +6589,9 @@
Terms of use
Nutzungsbedingungen
Controller/Prod/TOUController.php
- login/layout/base-layout.html.twig
- web/login/cgus.html.twig
web/admin/tree.html.twig
+ web/login/cgus.html.twig
+ login/layout/base-layout.html.twig
The Phraseanet Web API allows other web application to rely on this instance
@@ -6671,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
@@ -6687,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
@@ -6729,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
@@ -6749,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
@@ -6785,8 +6786,8 @@
This feed is public
Dieses Feed ist öffentlich
- admin/publications/list.html.twig
actions/publish/publish.html.twig
+ admin/publications/list.html.twig
This field is required
@@ -6858,19 +6859,19 @@
Titre
Titel
+ 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
+ prod/Story/Reorder.html.twig
+ admin/publications/fiche.html.twig
admin/publications/list.html.twig
admin/publications/list.html.twig
- admin/publications/fiche.html.twig
- Bridge/Youtube/video_modify.html.twig
- Bridge/Youtube/upload.html.twig
- Bridge/Youtube/playlist_createcontainer.html.twig
- Bridge/Flickr/photoset_createcontainer.html.twig
- Bridge/Flickr/photo_modify.html.twig
- Bridge/Flickr/upload.html.twig
- Bridge/Dailymotion/video_modify.html.twig
- Bridge/Dailymotion/upload.html.twig
- prod/Baskets/Reorder.html.twig
- prod/Story/Reorder.html.twig
Toggle loop
@@ -6926,13 +6927,13 @@
Transmited files
Übermittelte Dateien
- prod/upload/upload-flash.html.twig
prod/upload/upload.html.twig
+ prod/upload/upload-flash.html.twig
Trier par
Sortieren nach
- web/prod/index.html.twig
+ web/prod/index.html.twig
Try to extract embedded thumbnails
@@ -6957,7 +6958,7 @@
Type de documents
Dokumenttyp
- web/prod/index.html.twig
+ web/prod/index.html.twig
Type nombre
@@ -6972,8 +6973,8 @@
URL de callback
Callback URL
- web/developers/application.html.twig
web/developers/application_form.html.twig
+ web/developers/application.html.twig
Un document commande
@@ -6999,8 +7000,8 @@
Unable to authenticate with %provider_name%
Unmöglich, mit %provider_name% zu authentifizieren
- Controller/Api/OAuth2Controller.php
Controller/Root/LoginController.php
+ Controller/Api/OAuth2Controller.php
Unable to connect to MySQL server
@@ -7042,8 +7043,8 @@
Unable to retrieve provider identity
unmöglich, Provider Identität abzurufen
- Controller/Api/OAuth2Controller.php
Controller/Root/LoginController.php
+ Controller/Api/OAuth2Controller.php
Unable to send the documents
@@ -7080,7 +7081,7 @@
Une question personnelle
eine persönliche Frage
- web/prod/index.html.twig
+ web/prod/index.html.twig
Une selection
@@ -7138,16 +7139,16 @@
Upload
Upload
- web/common/menubar.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
- Bridge/Dailymotion/upload.html.twig
- Bridge/Dailymotion/upload.html.twig
- prod/upload/upload-flash.html.twig
prod/upload/upload.html.twig
+ prod/upload/upload-flash.html.twig
+ web/common/menubar.html.twig
Upload URL is not set, please contact an admin
@@ -7192,7 +7193,7 @@
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
@@ -7207,16 +7208,16 @@
Use the Flash uploader
Benutzen Sie den Flash Uploader
- prod/upload/upload-flash.html.twig
prod/upload/upload.html.twig
prod/upload/upload.html.twig
+ prod/upload/upload-flash.html.twig
Use the HTML5 uploader
Benutzen Sie den HTML5 Uploader
+ prod/upload/upload.html.twig
prod/upload/upload-flash.html.twig
prod/upload/upload-flash.html.twig
- prod/upload/upload.html.twig
Use with mod_token. Attention requires the apache modules and mod_h264_streaming mod_auth_token
@@ -7277,10 +7278,10 @@
Users
Benutzer
Vocabulary/ControlProvider/UserProvider.php
- user/import/view.html.twig
- web/admin/users.html.twig
prod/actions/Push.html.twig
actions/Feedback/list.html.twig
+ web/admin/users.html.twig
+ user/import/view.html.twig
Users must accept Terms of Use for each export
@@ -7333,8 +7334,8 @@
Bestätigung
mobile/lightbox/index.html.twig
mobile/lightbox/index.html.twig
- lightbox/IE6/validate.html.twig
web/lightbox/index.html.twig
+ lightbox/IE6/validate.html.twig
web/lightbox/validate.html.twig
@@ -7380,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%
@@ -7401,13 +7402,13 @@
Vocabulary type
Wortschatz Typ
- admin/fields/templates.html.twig
+ admin/fields/templates.html.twig
Voici vos paniers
Ihre Sammelkörbe
mobile/lightbox/index.html.twig
- web/lightbox/index.html.twig
+ web/lightbox/index.html.twig
Voici vos validations en cours
@@ -7538,10 +7539,10 @@
Vous n'avez selectionne aucun element
Sie haben kein Element ausgewählt.
+ Bridge/Dailymotion/upload.html.twig
Bridge/Youtube/upload.html.twig
actions/Bridge/index.html.twig
Bridge/Flickr/upload.html.twig
- Bridge/Dailymotion/upload.html.twig
Vous ne pouvez pas editer plusieurs elements simultanement
@@ -7567,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 !
@@ -7628,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.
@@ -7668,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/account/account.html.twig
- web/developers/applications.html.twig
user/import/view.html.twig
+ web/developers/applications.html.twig
You are Admin
@@ -7768,8 +7769,8 @@
You can not upload files
Sie dürfen Dateien nicht hochladen
- prod/upload/upload-flash.html.twig
prod/upload/upload.html.twig
+ prod/upload/upload-flash.html.twig
You do not enough rights to update status
@@ -7990,7 +7991,7 @@
action : bridge
Bridge
- web/prod/index.html.twig
+ web/prod/index.html.twig
action : collection
@@ -8010,18 +8011,18 @@
action : exporter
Exportieren
- lightbox/IE6/feed.html.twig
- lightbox/IE6/validate.html.twig
- web/lightbox/feed.html.twig
- web/lightbox/validate.html.twig
- prod/results/record.html.twig
- prod/results/record.html.twig
- prod/results/record.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
prod/preview/tools.html.twig
- web/prod/index.html.twig
+ web/prod/index.html.twig
+ web/lightbox/feed.html.twig
+ lightbox/IE6/feed.html.twig
+ lightbox/IE6/validate.html.twig
+ web/lightbox/validate.html.twig
action : outils
@@ -8033,12 +8034,12 @@
action : print
Drucken
- prod/results/record.html.twig
- prod/results/record.html.twig
- prod/results/record.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
prod/preview/tools.html.twig
@@ -8047,7 +8048,7 @@
prod/WorkZone/Story.html.twig
prod/WorkZone/Basket.html.twig
web/prod/toolbar.html.twig
- web/prod/index.html.twig
+ web/prod/index.html.twig
action : push
@@ -8471,8 +8472,8 @@
Controller/Admin/UserController.php
Core/Provider/RegistrationServiceProvider.php
web/account/account.html.twig
- admin/user/registrations.html.twig
web/admin/editusers.html.twig
+ admin/user/registrations.html.twig
admin::compte-utilisateur adresse
@@ -8480,9 +8481,9 @@
Controller/Admin/UserController.php
Core/Provider/RegistrationServiceProvider.php
web/account/account.html.twig
- web/common/dialog_export.html.twig
- admin/user/registrations.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,8 +8496,8 @@
Controller/Admin/UserController.php
Core/Provider/RegistrationServiceProvider.php
web/account/account.html.twig
- web/common/dialog_export.html.twig
web/admin/editusers.html.twig
+ web/common/dialog_export.html.twig
admin::compte-utilisateur confirmer la nouvelle adresse email
@@ -8519,11 +8520,11 @@
Controller/Admin/UserController.php
Event/Subscriber/RegistrationSubscriber.php
web/account/account.html.twig
- web/common/dialog_export.html.twig
- web/admin/connected-users.html.twig
- admin/user/registrations.html.twig
- web/admin/users.html.twig
web/admin/editusers.html.twig
+ web/admin/users.html.twig
+ admin/user/registrations.html.twig
+ web/admin/connected-users.html.twig
+ web/common/dialog_export.html.twig
admin::compte-utilisateur fax
@@ -8531,8 +8532,8 @@
Controller/Admin/UserController.php
Core/Provider/RegistrationServiceProvider.php
web/account/account.html.twig
- web/common/dialog_export.html.twig
web/admin/editusers.html.twig
+ web/common/dialog_export.html.twig
admin::compte-utilisateur id utilisateur
@@ -8547,10 +8548,10 @@
web/account/reset-email.html.twig
web/account/account.html.twig
web/account/account.html.twig
- web/common/dialog_export.html.twig
- admin/user/registrations.html.twig
- web/admin/users.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
@@ -8565,13 +8566,13 @@
admin::compte-utilisateur nom
Name
Controller/Admin/UserController.php
- Event/Subscriber/RegistrationSubscriber.php
Core/Provider/RegistrationServiceProvider.php
+ Event/Subscriber/RegistrationSubscriber.php
web/account/account.html.twig
- web/common/dialog_export.html.twig
- web/admin/connected-users.html.twig
- admin/user/registrations.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,20 +8591,20 @@
Controller/Admin/UserController.php
Core/Provider/RegistrationServiceProvider.php
web/account/account.html.twig
- web/common/dialog_export.html.twig
- admin/user/registrations.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
- Event/Subscriber/RegistrationSubscriber.php
Core/Provider/RegistrationServiceProvider.php
+ Event/Subscriber/RegistrationSubscriber.php
web/account/account.html.twig
- web/common/dialog_export.html.twig
- admin/user/registrations.html.twig
web/admin/editusers.html.twig
+ admin/user/registrations.html.twig
+ web/common/dialog_export.html.twig
admin::compte-utilisateur sexe
@@ -8618,11 +8619,11 @@
Controller/Admin/UserController.php
Core/Provider/RegistrationServiceProvider.php
web/account/account.html.twig
- web/common/dialog_export.html.twig
- web/admin/connected-users.html.twig
- admin/user/registrations.html.twig
- web/admin/users.html.twig
web/admin/editusers.html.twig
+ web/admin/users.html.twig
+ admin/user/registrations.html.twig
+ web/admin/connected-users.html.twig
+ web/common/dialog_export.html.twig
admin::compte-utilisateur tel
@@ -8634,10 +8635,10 @@
Telefon
Controller/Admin/UserController.php
web/account/account.html.twig
- web/common/dialog_export.html.twig
- web/admin/connected-users.html.twig
- admin/user/registrations.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,8 +8651,8 @@
Controller/Admin/UserController.php
Core/Provider/RegistrationServiceProvider.php
web/account/account.html.twig
- web/common/dialog_export.html.twig
web/admin/editusers.html.twig
+ web/common/dialog_export.html.twig
admin::compte-utilisateur: L'email a correctement ete mis a jour
@@ -8746,24 +8747,24 @@
Frau
Core/Provider/RegistrationServiceProvider.php
web/account/account.html.twig
- web/common/dialog_export.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/account/account.html.twig
- web/common/dialog_export.html.twig
web/admin/editusers.html.twig
+ web/common/dialog_export.html.twig
admin::compte-utilisateur:sexe: monsieur
Herr
Core/Provider/RegistrationServiceProvider.php
web/account/account.html.twig
- web/common/dialog_export.html.twig
web/admin/editusers.html.twig
+ web/common/dialog_export.html.twig
admin::monitor: bases sur lesquelles l'utilisateur est connecte :
@@ -8785,8 +8786,8 @@
Admin
lib/classes/phrasea.php
Controller/Admin/ConnectedUsersController.php
- web/common/menubar.html.twig
web/admin/connected-users.html.twig
+ web/common/menubar.html.twig
admin::monitor: module client
@@ -8825,16 +8826,16 @@
Report
lib/classes/phrasea.php
Controller/Admin/ConnectedUsersController.php
- web/common/menubar.html.twig
web/admin/connected-users.html.twig
+ web/common/menubar.html.twig
admin::monitor: module thesaurus
Thesaurus
lib/classes/phrasea.php
Controller/Admin/ConnectedUsersController.php
- web/common/menubar.html.twig
web/admin/connected-users.html.twig
+ web/common/menubar.html.twig
admin::monitor: module upload
@@ -8847,10 +8848,10 @@
admin::monitor: module validation
Lightbox
lib/classes/phrasea.php
- Controller/Admin/ConnectedUsersController.php
Phrasea/Controller/LightboxController.php
Phrasea/Controller/LightboxController.php
Phrasea/Controller/LightboxController.php
+ Controller/Admin/ConnectedUsersController.php
web/common/menubar.html.twig
@@ -8886,8 +8887,8 @@
admin::plugins: plugins
Plugins
- web/admin/tree.html.twig
admin/plugins/index.html.twig
+ web/admin/tree.html.twig
admin::plugins: retrieveConfigurationError
@@ -9061,8 +9062,8 @@
admin::utilisateurs: utilisateurs connectes
Eingeloggte Benutzer
- web/admin/connected-users.html.twig
web/admin/tree.html.twig
+ web/admin/connected-users.html.twig
alert
@@ -9152,53 +9153,53 @@
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
hinzufügen
- admin/collection/suggested_value.html.twig
prod/actions/edit_default.html.twig
prod/actions/edit_default.html.twig
+ admin/collection/suggested_value.html.twig
boutton::annuler
abbrechen
Controller/Prod/LanguageController.php
Controller/Prod/LanguageController.php
- web/account/reset-email.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/thesaurus/accept.html.twig
- web/thesaurus/accept.html.twig
- web/thesaurus/import-dialog.html.twig
- web/thesaurus/link-field-step2.html.twig
- web/thesaurus/export-text-dialog.html.twig
- web/thesaurus/export-topics-dialog.html.twig
- web/thesaurus/link-field-step1.html.twig
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/new-term.html.twig
- web/thesaurus/new-term.html.twig
- web/admin/index.html.twig
- admin/publications/fiche.html.twig
- admin/collection/create.html.twig
- 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
+ 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/import-dialog.html.twig
+ web/thesaurus/link-field-step2.html.twig
+ web/thesaurus/accept.html.twig
+ web/thesaurus/accept.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/report/all_content.html.twig
@@ -9209,16 +9210,16 @@
boutton::chercher
suchen
+ web/prod/index.html.twig
web/thesaurus/thesaurus.html.twig
web/thesaurus/thesaurus.html.twig
web/admin/users.html.twig
- web/prod/index.html.twig
boutton::choisir
Auswählen
- web/admin/users.html.twig
web/admin/editusers.html.twig
+ web/admin/users.html.twig
boutton::commander
@@ -9268,16 +9269,16 @@
boutton::fermer
schliessen
Controller/Prod/LanguageController.php
- web/lightbox/sc_note.html.twig
- web/common/dialog_export.html.twig
- web/thesaurus/link-field-step3.html.twig
+ prod/actions/Push.html.twig
+ prod/actions/edit_default.html.twig
+ prod/actions/edit_default.html.twig
web/thesaurus/properties.html.twig
web/thesaurus/accept.html.twig
web/thesaurus/accept.html.twig
web/thesaurus/export-topics.html.twig
- prod/actions/Push.html.twig
- prod/actions/edit_default.html.twig
- prod/actions/edit_default.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
@@ -9293,10 +9294,10 @@
boutton::modifier
ändern
- web/admin/users.html.twig
+ 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
boutton::monter
@@ -9312,16 +9313,16 @@
boutton::precedent
vorherige
- 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
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
@@ -9352,26 +9353,26 @@
boutton::retour
Zurück
- web/developers/application.html.twig
- web/developers/application_form.html.twig
- user/import/file.html.twig
- admin/databox/details.html.twig
- admin/statusbit/edit.html.twig
- admin/publications/fiche.html.twig
- web/admin/editusers.html.twig
- admin/collection/details.html.twig
- Bridge/Youtube/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
Bridge/Youtube/video_deleteelement.html.twig
- Bridge/Youtube/playlist_deleteelement.html.twig
Bridge/Youtube/playlist_createcontainer.html.twig
- Bridge/Flickr/photoset_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/Dailymotion/video_moveinto_playlist.html.twig
- Bridge/Dailymotion/video_deleteelement.html.twig
- Bridge/Dailymotion/playlist_deleteelement.html.twig
- Bridge/Dailymotion/playlist_createcontainer.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
@@ -9381,40 +9382,40 @@
boutton::suivant
folgende
- 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
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
+ 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
+ prod/results/feeds_entry.html.twig
+ prod/results/entry.html.twig
+ web/prod/index.html.twig
web/thesaurus/presets.html.twig
- web/admin/subdefs.html.twig
- admin/publications/list.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/collection/suggested_value.html.twig
- prod/results/feeds_entry.html.twig
- prod/results/entry.html.twig
- web/prod/index.html.twig
- Bridge/Youtube/actionelements.html.twig
- Bridge/Youtube/actioncontainers.html.twig
- actions/Bridge/disconnected.html.twig
- Bridge/Flickr/actionelements.html.twig
- Bridge/Flickr/actioncontainers.html.twig
- Bridge/Dailymotion/actionelements.html.twig
- Bridge/Dailymotion/actioncontainers.html.twig
+ web/admin/subdefs.html.twig
boutton::telecharger
@@ -9426,9 +9427,9 @@
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
@@ -9442,68 +9443,68 @@
Bestätigen
Controller/Prod/LanguageController.php
mobile/lightbox/note_form.html.twig
- web/account/access.html.twig
- web/account/reset-email.html.twig
- web/account/account.html.twig
- web/thesaurus/accept.html.twig
- web/thesaurus/import-dialog.html.twig
- web/thesaurus/link-field-step2.html.twig
- web/thesaurus/export-text-dialog.html.twig
- web/thesaurus/export-topics-dialog.html.twig
- web/thesaurus/index.html.twig
- web/thesaurus/link-field-step1.html.twig
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/new-term.html.twig
- web/thesaurus/new-term.html.twig
- web/developers/application_form.html.twig
- web/admin/structure.html.twig
- admin/user/registrations.html.twig
- user/import/view.html.twig
- web/admin/dashboard.html.twig
- admin/statusbit/edit.html.twig
- web/admin/subdefs.html.twig
- admin/publications/list.html.twig
- admin/publications/fiche.html.twig
- web/admin/editusers.html.twig
- admin/collection/reorder.html.twig
- admin/collection/collection.html.twig
- admin/collection/suggested_value.html.twig
- admin/collection/create.html.twig
- web/admin/setup.html.twig
- web/prod/index.html.twig
- prod/actions/edit_default.html.twig
- prod/actions/edit_default.html.twig
- Bridge/Youtube/video_modify.html.twig
- Bridge/Youtube/video_moveinto_playlist.html.twig
+ prod/Baskets/Update.html.twig
+ prod/Baskets/Reorder.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_deleteelement.html.twig
Bridge/Youtube/playlist_createcontainer.html.twig
- Bridge/Flickr/photoset_createcontainer.html.twig
- Bridge/Flickr/photo_modify.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/Dailymotion/video_modify.html.twig
- Bridge/Dailymotion/video_moveinto_playlist.html.twig
- Bridge/Dailymotion/video_deleteelement.html.twig
- Bridge/Dailymotion/playlist_deleteelement.html.twig
- Bridge/Dailymotion/playlist_createcontainer.html.twig
- prod/Baskets/Reorder.html.twig
- prod/Baskets/Update.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/link-field-step1.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
+ admin/statusbit/edit.html.twig
+ web/developers/application_form.html.twig
web/report/all_content.html.twig
boutton::vue graphique
Grafische Ansicht
- task-manager/task-editor/task.html.twig
admin/collection/suggested_value.html.twig
+ task-manager/task-editor/task.html.twig
boutton::vue xml
XML Ansicht
- task-manager/task-editor/task.html.twig
admin/collection/suggested_value.html.twig
+ task-manager/task-editor/task.html.twig
button::Install
@@ -9588,9 +9589,9 @@
choisir
wählen
+ web/prod/index.html.twig
admin/databox/databox.html.twig
admin/collection/create.html.twig
- web/prod/index.html.twig
classe
@@ -9611,8 +9612,8 @@
commande::utilisation prevue
Verwendungszweck
- web/common/dialog_export.html.twig
prod/orders/order_item.html.twig
+ web/common/dialog_export.html.twig
copyClipboardLabel
@@ -9670,7 +9671,7 @@
created_on
erstellt am
- web/prod/index.html.twig
+ web/prod/index.html.twig
dans %category%
@@ -9730,10 +9731,10 @@
edit
Bearbeiten
+ prod/WorkZone/Macros.html.twig
web/account/account.html.twig
web/account/account.html.twig
web/account/account.html.twig
- prod/WorkZone/Macros.html.twig
edit: chosiir limage du regroupement
@@ -9941,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
@@ -10016,42 +10028,42 @@
index::advance_search: disable-facet
Facetten mit nur einem Ergebnis ausblenden (experimentell)
- web/prod/index.html.twig
+ web/prod/index.html.twig
index::advance_search: facet
Einstellungen für Facetten
- web/prod/index.html.twig
+ 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
Versteckte Facetten
- web/prod/index.html.twig
+ 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
Trunkierung aktivieren
- web/prod/index.html.twig
+ web/prod/index.html.twig
invite:: Redirection vers la zone d'authentification, cliquez sur OK pour continuer ou annulez
@@ -10083,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
@@ -10095,6 +10117,16 @@
web/lightbox/agreement_box.html.twig
web/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
meine E-Mail Adresse ändern
@@ -10131,8 +10163,8 @@
login::erreur: Erreur d'authentification
Anmeldefehler
- Controller/Api/OAuth2Controller.php
Controller/Root/LoginController.php
+ Controller/Api/OAuth2Controller.php
login::erreur: No available connection - Please contact sys-admin
@@ -10175,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 :
@@ -10211,8 +10243,8 @@
maximum : %maxFileSizeReadable%
Maximum : %maxFileSizeReadable%
- prod/upload/upload-flash.html.twig
prod/upload/upload.html.twig
+ prod/upload/upload-flash.html.twig
mediatype
@@ -10243,9 +10275,9 @@
no
Nein
web/account/sessions.html.twig
- web/common/technical_datas.html.twig
- user/import/view.html.twig
web/admin/subdefs.html.twig
+ user/import/view.html.twig
+ web/common/technical_datas.html.twig
no image selected
@@ -10262,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
@@ -10613,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%
@@ -10682,9 +10714,9 @@
Adresse
web/setup/step2.html.twig
web/account/account.html.twig
- web/common/dialog_export.html.twig
- web/admin/connected-users.html.twig
admin/collection/collection.html.twig
+ web/admin/connected-users.html.twig
+ web/common/dialog_export.html.twig
phraseanet:: aide
@@ -10721,9 +10753,9 @@
phraseanet:: deconnection
Abmeldung
+ actions/Bridge/wrapper.html.twig
web/common/menubar.html.twig
web/common/menubar.html.twig
- actions/Bridge/wrapper.html.twig
phraseanet:: details
@@ -10797,13 +10829,13 @@
phraseanet:: thesaurus
Thesaurus
+ prod/actions/edit_default.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
- web/thesaurus/thesaurus.html.twig
- web/thesaurus/thesaurus.html.twig
- web/prod/tab_headers.html.twig
- prod/actions/edit_default.html.twig
phraseanet:: tri
@@ -10813,10 +10845,10 @@
phraseanet:: tri par date
nach Datum sortieren
- web/thesaurus/export-topics-dialog.html.twig
web/prod/index.html.twig
web/prod/index.html.twig
web/prod/index.html.twig
+ web/thesaurus/export-topics-dialog.html.twig
phraseanet:: tri par nom
@@ -10890,9 +10922,9 @@
phraseanet::chargement
Bitte warten...
Controller/Prod/LanguageController.php
+ prod/actions/edit_default.html.twig
web/thesaurus/thesaurus.html.twig
admin/collection/suggested_value.html.twig
- prod/actions/edit_default.html.twig
phraseanet::erreur: La connection au serveur Phraseanet semble etre indisponible
@@ -11008,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
@@ -11059,35 +11091,35 @@
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/reg_train.html.twig
+ prod/preview/basket_train.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
- prod/preview/basket_train.html.twig
preview:: demarrer le diaporama
Dia-Schau
- prod/preview/reg_train.html.twig
+ prod/preview/basket_train.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
- prod/preview/basket_train.html.twig
preview::date
@@ -11259,14 +11291,14 @@
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
@@ -11288,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
Suchen Sie den Inhalt der Felder
- web/prod/index.html.twig
+ web/prod/index.html.twig
prod::collection deplacer egalement les documents rattaches a ce(s) regroupement(s)
@@ -11413,17 +11445,17 @@
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
@@ -11639,40 +11671,40 @@
public
öffentlich
- Bridge/Youtube/video_modify.html.twig
- Bridge/Youtube/upload.html.twig
- Bridge/Dailymotion/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
@@ -11683,14 +11715,14 @@
publications::Ne le partagez pas, il est strictement confidentiel
Dieses RSS nicht weiterleiten - es ist vertraulich
- Controller/Prod/FeedController.php
- Controller/Prod/FeedController.php
+ 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%
@@ -11710,21 +11742,21 @@
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
+ web/prod/index.html.twig
rafraichir
Aktualisieren
+ prod/WorkZone/Story.html.twig
+ prod/WorkZone/Macros.html.twig
+ prod/WorkZone/Basket.html.twig
prod/results/feeds.html.twig
prod/results/feeds.html.twig
- prod/WorkZone/Story.html.twig
- prod/WorkZone/Basket.html.twig
- prod/WorkZone/Macros.html.twig
recordtype
@@ -11784,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
@@ -11816,7 +11848,7 @@
reponses:: taille des images :
Miniaturansichtengrösse
- web/prod/index.html.twig
+ web/prod/index.html.twig
reponses::document sans titre
@@ -11983,8 +12015,8 @@
report:: modules
Module
- module/report/filter.php
module/report/nav.php
+ module/report/filter.php
report:: navigateur
@@ -12004,21 +12036,21 @@
report:: non-renseigne
nicht ausgefüllt
- module/report/filter.php
- module/report/edit.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/push.php
- module/report/validate.php
- module/report/sent.php
- module/report/download.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/add.php
- module/report/question.php
+ module/report/edit.php
+ module/report/filter.php
report:: page d'accueil
@@ -12051,8 +12083,8 @@
report:: question
Anfrage
classes/module/report.php
- module/report/filter.php
module/report/question.php
+ module/report/filter.php
report:: questions
@@ -12709,8 +12741,8 @@
thesaurus:: Lier la branche de thesaurus
die Verzweigung verbinden?
- web/thesaurus/link-field-step3.html.twig
web/thesaurus/link-field-step2.html.twig
+ web/thesaurus/link-field-step3.html.twig
thesaurus:: Lier la branche de thesaurus au champ
@@ -12871,8 +12903,8 @@
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
@@ -13200,20 +13232,20 @@
updated_on
aktualisiert am
- web/prod/index.html.twig
+ web/prod/index.html.twig
upload:: Destination (collection) :
Kollektion
- prod/upload/upload-flash.html.twig
prod/upload/upload.html.twig
+ prod/upload/upload-flash.html.twig
upload:: Status :
Status
+ prod/upload/upload.html.twig
prod/upload/upload-flash.html.twig
prod/upload/lazaret.html.twig
- prod/upload/upload.html.twig
users rights have been reseted
@@ -13294,8 +13326,8 @@
yes
Ja
web/account/sessions.html.twig
- web/common/technical_datas.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 1b8311a2b0..bce7b53ce0 100644
--- a/resources/locales/messages.en.xlf
+++ b/resources/locales/messages.en.xlf
@@ -1,14 +1,14 @@
-
+
-
+
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/Login/PhraseaAuthenticationForm.php
Form/Configuration/EmailFormType.php
@@ -118,8 +118,8 @@
%basket_length% documents
%basket_length% document(s)
mobile/lightbox/validate.html.twig
- web/lightbox/index.html.twig
- web/lightbox/index.html.twig
+ web/lightbox/index.html.twig
+ web/lightbox/index.html.twig
%countable% documents can not be modified.
@@ -198,16 +198,16 @@
%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]]>
@@ -252,8 +252,8 @@
%quantity% records added
%quantity% records added
- Controller/Prod/StoryController.php
Controller/Prod/BasketController.php
+ Controller/Prod/StoryController.php
%quantity% records moved
@@ -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
@@ -549,8 +549,8 @@
Access
Access
- web/admin/editusers.html.twig
actions/Feedback/List-Share.html.twig
+ web/admin/editusers.html.twig
Access code
@@ -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/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/Baskets/Create.html.twig
prod/Story/Create.html.twig
+ prod/orders/order_item.html.twig
Ajouter un nouvel utilisateur
@@ -857,7 +862,6 @@
All
All
Form/Configuration/CustomLinkFormType.php
- task-manager/task-editor/subdefs.html.twig
WorkZone/Browser/Browser.html.twig
actions/Feedback/list.html.twig
actions/Feedback/list.html.twig
@@ -865,16 +869,12 @@
actions/Feedback/list.html.twig
actions/Feedback/list.html.twig
actions/Feedback/list.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.
@@ -956,6 +956,18 @@
An error occured
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
@@ -968,29 +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/ToolsController.php
- Controller/Prod/StoryController.php
Controller/Prod/BasketController.php
+ Controller/Prod/ToolsController.php
Controller/Prod/LazaretController.php
Controller/Prod/MoveCollectionController.php
- Model/Manipulator/LazaretManipulator.php
- Model/Manipulator/LazaretManipulator.php
- admin/databox/databox.html.twig
+ Controller/Prod/StoryController.php
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,14 +1031,14 @@
An error occurred
An error occurred
+ Order/Controller/ProdOrderController.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
Controller/Api/V1Controller.php
- Controller/Admin/CollectionController.php
- Controller/Admin/DataboxController.php
- Controller/Admin/SearchEngineController.php
- Controller/Prod/BasketController.php
- Order/Controller/ProdOrderController.php
web/admin/statusbit.html.twig
@@ -1069,7 +1069,7 @@
Aperture
Aperture
- SearchEngine/Elastic/ElasticsearchOptions.php
+ SearchEngine/Elastic/ElasticsearchOptions.php
web/common/technical_datas.html.twig
@@ -1130,8 +1130,8 @@
Apply a template
Apply a template
- web/admin/users.html.twig
web/admin/editusers.html.twig
+ web/admin/users.html.twig
Apply changes
@@ -1276,13 +1276,13 @@
Audio Codec
Audio Codec
- Media/Subdef/Video.php
Media/Subdef/Audio.php
+ Media/Subdef/Video.php
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
@@ -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
@@ -1439,8 +1439,8 @@
Base %base%
Database %base%
web/admin/editusers_quotas.html.twig
- web/admin/editusers_timelimit_sbas.html.twig
web/admin/editusers_timelimit.html.twig
+ web/admin/editusers_timelimit_sbas.html.twig
Base could not be created
@@ -1555,7 +1555,7 @@
By field
By field
- web/prod/index.html.twig
+ web/prod/index.html.twig
CHAMPS
@@ -1565,26 +1565,26 @@
Camera Model
Camera model
- SearchEngine/Elastic/ElasticsearchOptions.php
+ SearchEngine/Elastic/ElasticsearchOptions.php
web/common/technical_datas.html.twig
Cancel
Cancel
Controller/Prod/LanguageController.php
- user/import/view.html.twig
- admin/fields/templates.html.twig
- task-manager/task-editor/task.html.twig
prod/actions/delete_records_confirm.html.twig
actions/Property/type.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
Cancel all
- prod/upload/upload-flash.html.twig
prod/upload/upload.html.twig
+ prod/upload/upload-flash.html.twig
Cannot upload Zero Byte files
@@ -1604,9 +1604,9 @@
Categorie
Category
- Bridge/Youtube/video_modify.html.twig
- Bridge/Youtube/upload.html.twig
Bridge/Dailymotion/video_modify.html.twig
+ Bridge/Youtube/upload.html.twig
+ Bridge/Youtube/video_modify.html.twig
Ce champ est decrit comme element du %DublinCoreElementSet%
@@ -1636,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
@@ -1664,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
@@ -1746,6 +1746,8 @@
Choisir
Choose
+ 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,8 +1755,6 @@
web/admin/subdefs.html.twig
web/admin/subdefs.html.twig
web/admin/subdefs.html.twig
- prod/Baskets/Reorder.html.twig
- prod/Story/Reorder.html.twig
Choose a new password
@@ -1781,8 +1781,8 @@
Clear list
Clear list
- prod/upload/upload-flash.html.twig
prod/upload/upload.html.twig
+ prod/upload/upload-flash.html.twig
Client application
@@ -1812,8 +1812,8 @@
Codec Audio
Audio codec
- web/common/technical_datas.html.twig
actions/Tools/videoEditor.html.twig
+ web/common/technical_datas.html.twig
Codec Video
@@ -1823,9 +1823,9 @@
Collection
Collection
- admin/databox/details.html.twig
- prod/upload/lazaret.html.twig
prod/Story/Create.html.twig
+ prod/upload/lazaret.html.twig
+ admin/databox/details.html.twig
Collection %collection%
@@ -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%
@@ -1877,8 +1877,8 @@
Company
Company
- actions/Feedback/ListsMacros.html.twig
actions/Feedback/list.html.twig
+ actions/Feedback/ListsMacros.html.twig
prod/User/Add.html.twig
@@ -1894,10 +1894,10 @@
Confidentialite
Confidentiality
- Bridge/Youtube/video_modify.html.twig
- Bridge/Youtube/upload.html.twig
- Bridge/Dailymotion/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
- login/oauth/login.html.twig
- web/login/index.html.twig
- web/login/index.html.twig
- login/providers/bind.html.twig
- login/providers/bind.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,13 +2023,13 @@
Couleur de selection
Selection color
- web/prod/index.html.twig
+ web/prod/index.html.twig
Country
Country
- actions/Feedback/ListsMacros.html.twig
actions/Feedback/list.html.twig
+ actions/Feedback/ListsMacros.html.twig
Create a user
@@ -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
@@ -2237,7 +2237,7 @@
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
@@ -2276,13 +2276,13 @@
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,9 +2374,9 @@
Delete
Delete
- admin/task-manager/templates.html.twig
prod/upload/lazaret.html.twig
prod/upload/lazaret.html.twig
+ admin/task-manager/templates.html.twig
Delete account successfull
@@ -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
@@ -2422,16 +2422,16 @@
Deny
Deny
- login/oauth/authorize-access.html.twig
prod/orders/order_item.html.twig
prod/orders/order_item.html.twig
+ login/oauth/authorize-access.html.twig
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,24 +2457,24 @@
Description
Caption
- web/developers/application_form.html.twig
- Bridge/Youtube/video_modify.html.twig
- Bridge/Youtube/upload.html.twig
- Bridge/Youtube/playlist_createcontainer.html.twig
- Bridge/Flickr/photoset_createcontainer.html.twig
- Bridge/Flickr/photo_modify.html.twig
- Bridge/Flickr/upload.html.twig
- Bridge/Dailymotion/video_modify.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
prod/Tooltip/DCESFieldInfo.html.twig
+ web/developers/application_form.html.twig
Deselect all
Deselect all
prod/actions/Push.html.twig
actions/Feedback/list.html.twig
- web/report/form_date_and_base.html.twig
web/report/report_layout_child.html.twig
+ web/report/form_date_and_base.html.twig
Design of personalization logo section
@@ -2505,9 +2505,9 @@
Dimension
Size
- Media/Subdef/Video.php
- Media/Subdef/Unknown.php
Media/Subdef/Image.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
@@ -2657,8 +2657,8 @@
E-mail
E-mail
- Form/Login/PhraseaRegisterForm.php
Form/Login/PhraseaForgotPasswordForm.php
+ Form/Login/PhraseaRegisterForm.php
E-mail domain
@@ -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,19 +2750,19 @@
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
@@ -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
@@ -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
@@ -3171,9 +3171,9 @@
Export
Export
- Controller/Prod/LanguageController.php
Controller/Prod/DoDownloadController.php
Controller/Prod/DoDownloadController.php
+ Controller/Prod/LanguageController.php
Export ranges
@@ -3215,8 +3215,8 @@
Feedback
Controller/Prod/LanguageController.php
prod/WorkZone/Story.html.twig
- prod/WorkZone/Basket.html.twig
prod/WorkZone/Macros.html.twig
+ prod/WorkZone/Basket.html.twig
web/prod/toolbar.html.twig
@@ -3272,11 +3272,11 @@
File is not present in quarantine anymore, please refresh
Document is not in quarantine anymore, please refresh
- Controller/Prod/LazaretController.php
- Controller/Prod/LazaretController.php
Model/Manipulator/LazaretManipulator.php
Model/Manipulator/LazaretManipulator.php
Model/Manipulator/LazaretManipulator.php
+ Controller/Prod/LazaretController.php
+ Controller/Prod/LazaretController.php
File is too big : 64k max
@@ -3311,8 +3311,8 @@
Fils disponibles
Available feed
- actions/publish/publish_edit.html.twig
actions/publish/publish.html.twig
+ actions/publish/publish_edit.html.twig
Filter
@@ -3332,26 +3332,26 @@
First/Last Name
First/Last name
+ actions/Feedback/ListsMacros.html.twig
web/admin/users.html.twig
web/admin/users.html.twig
- actions/Feedback/ListsMacros.html.twig
Flash
Flash
- web/common/technical_datas.html.twig
web/prod/index.html.twig
+ web/common/technical_datas.html.twig
FlashFired
FlashFired
- SearchEngine/Elastic/ElasticsearchOptions.php
+ SearchEngine/Elastic/ElasticsearchOptions.php
Flatten layers
Flatten layers
- Media/Subdef/Unknown.php
Media/Subdef/Image.php
+ Media/Subdef/Unknown.php
Focal length
@@ -3381,10 +3381,10 @@
Forgot password?
Forgot password?
- login/oauth/login.html.twig
- web/login/index.html.twig
- login/providers/bind.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?
@@ -3404,7 +3404,7 @@
FrameRate
FrameRate
- SearchEngine/Elastic/ElasticsearchOptions.php
+ SearchEngine/Elastic/ElasticsearchOptions.php
Frequence d'echantillonage
@@ -3469,8 +3469,8 @@
Generates an image
Generates an image
- Media/Subdef/Unknown.php
Media/Subdef/Image.php
+ Media/Subdef/Unknown.php
Geo Search
@@ -3490,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.
@@ -3550,7 +3550,7 @@
Graphiste (preview au rollover)
Graphist (preview on thumbnail rollover)
- web/prod/index.html.twig
+ web/prod/index.html.twig
Great
@@ -3597,8 +3597,8 @@
Hello %username%
Hi %username%
- api/auth/native_app_access_token.html.twig
api/auth/end_user_authorization.html.twig
+ api/auth/native_app_access_token.html.twig
api/auth/end_user_authorization.html.twig
@@ -3619,11 +3619,11 @@
Home
Home
- mobile/lightbox/feed.html.twig
mobile/lightbox/basket_element.html.twig
+ mobile/lightbox/feed.html.twig
mobile/lightbox/validate.html.twig
- login/layout/base-layout.html.twig
login/include/language-block.html.twig
+ login/layout/base-layout.html.twig
Homepage slideshow
@@ -3638,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
@@ -3649,7 +3649,7 @@
ISO
ISO
- SearchEngine/Elastic/ElasticsearchOptions.php
+ SearchEngine/Elastic/ElasticsearchOptions.php
ISO sensibility
@@ -3659,7 +3659,7 @@
Iconographe (description au rollover)
Iconograph (caption on thumbnail rollover)
- web/prod/index.html.twig
+ web/prod/index.html.twig
Id
@@ -3714,8 +3714,8 @@
Images par secondes
Image per second
- web/common/technical_datas.html.twig
actions/Tools/videoEditor.html.twig
+ web/common/technical_datas.html.twig
Imagette indisponible
@@ -3730,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
@@ -3763,8 +3763,8 @@
Informations
Info
web/account/base.html.twig
- admin/user/registrations.html.twig
web/admin/dashboard.html.twig
+ admin/user/registrations.html.twig
Informations personnelles
@@ -3779,8 +3779,8 @@
Inscription
Registration
- web/login/register.html.twig
web/login/register-classic.html.twig
+ web/login/register.html.twig
Install in progess
@@ -3800,20 +3800,20 @@
Invalid file format
Invalid file format
- Controller/Admin/CollectionController.php
Controller/Admin/DataboxController.php
+ Controller/Admin/CollectionController.php
Invalid file type
Invalid file type
- admin/collection/collection.html.twig
prod/upload/upload-flash.html.twig
+ admin/collection/collection.html.twig
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
@@ -3824,8 +3824,8 @@
Invalid labels parameter
Invalid label parameters
- Controller/Admin/CollectionController.php
Controller/Admin/DataboxController.php
+ Controller/Admin/CollectionController.php
Invalid link.
@@ -3887,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%
@@ -3925,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
@@ -3954,7 +3954,7 @@
Language
Language
- web/prod/index.html.twig
+ web/prod/index.html.twig
Last Name
@@ -4034,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
@@ -4064,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.
@@ -4091,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
@@ -4107,8 +4107,8 @@
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,10 +4186,10 @@
Login
Login
Form/Login/PhraseaAuthenticationForm.php
- login/oauth/login.html.twig
- login/providers/bind.html.twig
- login/providers/mapping.html.twig
actions/Feedback/ListsMacros.html.twig
+ login/providers/mapping.html.twig
+ login/providers/bind.html.twig
+ login/oauth/login.html.twig
Login %login% already exists in database
@@ -4209,8 +4209,8 @@
Login to link your account
Login to link your account
- login/providers/bind.html.twig
login/providers/mapping.html.twig
+ login/providers/bind.html.twig
Logs
@@ -4221,7 +4221,7 @@
Ma derniere question
My last query
- web/prod/index.html.twig
+ web/prod/index.html.twig
Mail line %line% is empty
@@ -4327,7 +4327,7 @@
MimeType
MimeType
- SearchEngine/Elastic/ElasticsearchOptions.php
+ SearchEngine/Elastic/ElasticsearchOptions.php
Minimum number of letters before truncation
@@ -4342,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%
@@ -4378,7 +4378,7 @@
Mode de presentation
Display mode
- web/prod/index.html.twig
+ web/prod/index.html.twig
Modele de donnees
@@ -4388,8 +4388,8 @@