' . "\n";
- }
- }
- }
-
- /**
- * @return \unicode
- */
- private function getUnicode()
- {
- return $this->app['unicode'];
- }
}
diff --git a/lib/Alchemy/Phrasea/ControllerProvider/Thesaurus/Xmlhttp.php b/lib/Alchemy/Phrasea/ControllerProvider/Thesaurus/Xmlhttp.php
index fc2b0250f9..1cfd39610d 100644
--- a/lib/Alchemy/Phrasea/ControllerProvider/Thesaurus/Xmlhttp.php
+++ b/lib/Alchemy/Phrasea/ControllerProvider/Thesaurus/Xmlhttp.php
@@ -55,7 +55,7 @@ class Xmlhttp implements ControllerProviderInterface, ServiceProviderInterface
$controllers->match('openbranches_prod.j.php', 'controller.thesaurus.xmlhttp:openBranchesJson');
$controllers->match('replacecandidate.j.php', 'controller.thesaurus.xmlhttp:replaceCandidateJson')
->before($requireAccessToThesaurus);
- $controllers->match('search_th_term_prod.j.php', 'controller.thesaurus.xmlhttp:searchTermJson');
+ $controllers->match('search_term_prod.j.php', 'controller.thesaurus.xmlhttp:searchTermJson');
return $controllers;
}
diff --git a/lib/classes/User/Query.php b/lib/classes/User/Query.php
index 4c1c1a8152..2d1597571a 100644
--- a/lib/classes/User/Query.php
+++ b/lib/classes/User/Query.php
@@ -683,7 +683,7 @@ class User_Query
if (trim($row['activity']) === '') {
continue;
}
- $activities[] = $row['activite'];
+ $activities[] = $row['activity'];
}
return $activities;
diff --git a/lib/classes/cache/databox.php b/lib/classes/cache/databox.php
index 4e9ed4dd82..75460fa962 100644
--- a/lib/classes/cache/databox.php
+++ b/lib/classes/cache/databox.php
@@ -78,8 +78,7 @@ class cache_databox
$key = 'record_' . $sbas_id . '_' . $row['value'] . '_' . \record_adapter::CACHE_TECHNICAL_DATA;
$databox->delete_data_from_cache($key);
- $sql = 'DELETE FROM memcached
- WHERE site_id = :site_id AND type="record" AND value = :value';
+ $sql = 'DELETE FROM memcached WHERE site_id = :site_id AND type="record" AND value = :value';
$params = [
':site_id' => $app['conf']->get('servername')
@@ -101,8 +100,7 @@ class cache_databox
case 'structure':
$app->getApplicationBox()->delete_data_from_cache(\appbox::CACHE_LIST_BASES);
- $sql = 'DELETE FROM memcached
- WHERE site_id = :site_id AND type="structure" AND value = :value';
+ $sql = 'DELETE FROM memcached WHERE site_id = :site_id AND type="structure" AND value = :value';
$params = [
':site_id' => $app['conf']->get('servername')
diff --git a/lib/classes/record/preview.php b/lib/classes/record/preview.php
index 210c4f1c5f..8712b0c1fe 100644
--- a/lib/classes/record/preview.php
+++ b/lib/classes/record/preview.php
@@ -74,6 +74,8 @@ class record_preview extends record_adapter
protected $query;
protected $options;
+ protected $statistics;
+
public function __construct(Application $app, $env, $pos, $contId, SearchEngineInterface $search_engine = null, $query = '', SearchEngineOptions $options = null)
{
$number = null;
@@ -83,6 +85,7 @@ class record_preview extends record_adapter
$this->searchEngine = $search_engine;
$this->query = $query;
$this->options = $options;
+ $this->statistics = null;
switch ($env) {
case "RESULT":
@@ -366,6 +369,181 @@ class record_preview extends record_adapter
return $this->short_history;
}
+ /**
+ * get statistics about the record during the last nbDays
+ * - nb of dowloads, nb of views, referrers.
+ *
+ * @param int $nbDays
+ * @return array|bool false if user is not allowed to see stats (aka report)
+ * @throws Exception
+ * @throws \Doctrine\DBAL\DBALException
+ */
+ public function getStatistics($nbDays)
+ {
+ if(is_null($this->statistics)) {
+ if($nbDays < 1) {
+ throw new \Alchemy\Phrasea\Exception\InvalidArgumentException("nbDays must be > 0");
+ }
+ if(!$this->app->getAclForUser($this->app->getAuthenticatedUser())
+ ->has_right_on_base($this->getBaseId(), \ACL::CANREPORT)) {
+ return( ($this->statistics = false) );
+ }
+ $this->statistics = [
+ 'days' => $nbDays,
+ 'from' => '',
+ 'to' => '',
+ 'max_views' => 0,
+ 'max_downloads' => 0,
+ 'by_day' => [
+ // '2012-01-02' => [
+ // 'label' => '2012-01-02',
+ // 'views' => 123,
+ // 'downloads' => 456,
+ // ],
+ ],
+ 'referrers' => [
+ 'report::acces direct' => [
+ 'label' => $this->app->trans('report::acces direct'),
+ 'count' => 0
+ ],
+ 'admin::monitor: module production' => [
+ 'label' => $this->app->trans('admin::monitor: module production'),
+ 'count' => 0
+ ],
+ 'admin::monitor: module client' => [
+ 'label' => $this->app->trans('admin::monitor: module client'),
+ 'count' => 0
+ ],
+ 'report:: page d\'accueil' => [
+ 'label' => $this->app->trans('report:: page d\'accueil'),
+ 'count' => 0
+ ],
+ 'report:: visualiseur cooliris' => [
+ 'label' => $this->app->trans('report:: visualiseur cooliris'),
+ 'count' => 0
+ ],
+ // ...
+ // some more entries can be added if the referrer does not match anything
+ ]
+ ];
+ // preset 30 dates in the past
+ //
+ $nbDays--; // because 0 is included
+ for ($d=$nbDays; $d>=0; $d--) {
+ $datetime = new DateTime('-' . $d . ' days');
+ $date = date_format($datetime, 'Y-m-d');
+ if($d == $nbDays) {
+ $this->statistics['from'] = $date;
+ }
+ elseif($d == 0) {
+ $this->statistics['to'] = $date;
+ }
+ $this->statistics['by_day'][$date] = [
+ 'label' => $date,
+ 'views' => 0,
+ 'downloads' => 0
+ ];
+ }
+ //------- views stats
+ //
+ $sql = "SELECT COUNT(id) AS n, DATE_FORMAT(date, '%Y-%m-%d') AS datee FROM `log_view`\n"
+ . " WHERE record_id = :record_id\n"
+ . " AND date >= :from AND date <= :to\n"
+ . " AND site_id = :site\n"
+ . " GROUP BY datee ORDER BY datee ASC";
+ $result = $this->getDataboxConnection()
+ ->executeQuery($sql, [
+ ':record_id' => $this->getRecordId(),
+ ':site' => $this->app['conf']->get(['main', 'key']),
+ ':from' => $this->statistics['from'],
+ ':to' => $this->statistics['to']
+ ])
+ ->fetchAll(PDO::FETCH_ASSOC);
+ foreach ($result as $row) {
+ $date = $row['datee'];
+ if(array_key_exists($date, $this->statistics['by_day'])) {
+ $this->statistics['by_day'][$date]['views'] += (int)($row['n']);
+ if($this->statistics['by_day'][$date]['views'] > $this->statistics['max_views']) {
+ $this->statistics['max_views'] = $this->statistics['by_day'][$date]['views'];
+ }
+ }
+ }
+ //------- downloads stats
+ //
+ $sql = "SELECT COUNT(d.id) AS n, DATE_FORMAT(d.date, '%Y-%m-%d') AS datee\n"
+ . " FROM `log_docs` AS d, log AS l\n"
+ . " WHERE action='download'\n"
+ . " AND log_id=l.id\n"
+ . " AND record_id= :record_id\n"
+ . " AND d.date >= :from AND d.date <= :to\n"
+ . " AND site= :site\n"
+ . " GROUP BY datee ORDER BY datee ASC";
+ $result = $this->getDataboxConnection()
+ ->executeQuery($sql, [
+ ':record_id' => $this->getRecordId(),
+ ':site' => $this->app['conf']->get(['main', 'key']),
+ ':from' => $this->statistics['from'],
+ ':to' => $this->statistics['to']
+ ])
+ ->fetchAll(PDO::FETCH_ASSOC);
+ foreach ($result as $row) {
+ $date = $row['datee'];
+ if(array_key_exists($date, $this->statistics['by_day'])) {
+ $this->statistics['by_day'][$date]['downloads'] += (int)($row['n']);
+ if($this->statistics['by_day'][$date]['downloads'] > $this->statistics['max_downloads']) {
+ $this->statistics['max_downloads'] = $this->statistics['by_day'][$date]['downloads'];
+ }
+ }
+ }
+ //------- referers stats
+ //
+ $sql = "SELECT count( id ) AS n, referrer FROM `log_view`\n"
+ . " WHERE record_id = :record_id\n"
+ . " AND date >= :from AND date <= :to\n"
+ . " GROUP BY referrer ORDER BY referrer ASC";
+ $result = $this->getDataboxConnection()
+ ->executeQuery($sql, [
+ ':record_id' => $this->getRecordId(),
+ ':from' => $this->statistics['from'],
+ ':to' => $this->statistics['to']
+ ])
+ ->fetchAll(PDO::FETCH_ASSOC);
+ foreach ($result as $row) {
+ $k = $row['referrer'];
+ if ($k == 'NO REFERRER') {
+ $k = $this->app->trans('report::acces direct');
+ }
+ elseif ($k == $this->app['conf']->get('servername') . 'prod/') {
+ $k = $this->app->trans('admin::monitor: module production');
+ }
+ elseif ($k == $this->app['conf']->get('servername') . 'client/') {
+ $k = $this->app->trans('admin::monitor: module client');
+ }
+ elseif (strpos($k, 'http://apps.cooliris.com/') !== false) {
+ $k = $this->app->trans('report:: visualiseur cooliris');
+ }
+ elseif (strpos($k, $this->app['conf']->get('servername') . 'login/') !== false) {
+ $k = $this->app->trans('report:: page d\'accueil');
+ }
+ elseif (strpos($k, $this->app['conf']->get('servername') . 'document/') !== false) {
+ $k = $this->app->trans('report::acces direct');
+ }
+ elseif (strpos($k, $this->app['conf']->get('servername') . 'permalink/') !== false) {
+ $k = $this->app->trans('report::acces direct');
+ }
+ if (!isset($this->statistics['referrers'][$k])) {
+ // the referrer does not match anything, just add it untranslated
+ $this->statistics['referrers'][$k] = [
+ 'label' => $k,
+ 'count' => 0
+ ];
+ }
+ $this->statistics['referrers'][$k]['count'] += (int)$row['n'];
+ }
+ }
+ return $this->statistics;
+ }
+
/**
* @return media_adapter
*/
diff --git a/package.json b/package.json
index fdbf9591b8..9266d3b01b 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "phraseanet",
"version": "4.0.0",
"devDependencies": {
- "bower": "~1.3",
+ "bower": "^1.6.5",
"bower-files": "^3.11.3",
"browser-sync": "^2.10.0",
"del": "^2.1.0",
@@ -16,7 +16,7 @@
"gulp-install": "^0.6.0",
"gulp-qunit": "^1.2.1",
"gulp-rename": "^1.2.2",
- "gulp-sass": "^2.1.0",
+ "gulp-sass": "^3.1.0",
"gulp-uglify": "^1.4.2",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.5",
@@ -35,6 +35,6 @@
},
"dependencies": {
"alchemy-embed-medias": "^0.4.4",
- "phraseanet-production-client": "~0.19.24"
+ "phraseanet-production-client": "~0.32.2"
}
}
diff --git a/resources/ansible/roles/mariadb/tasks/main.yml b/resources/ansible/roles/mariadb/tasks/main.yml
index c28b0fb19e..275b348085 100644
--- a/resources/ansible/roles/mariadb/tasks/main.yml
+++ b/resources/ansible/roles/mariadb/tasks/main.yml
@@ -3,6 +3,7 @@
- shell: hostname
register: current_hostname
+
- name: Add MariaDB-Repository
sudo: yes
apt_repository: repo='deb http://mirror6.layerjet.com/mariadb/repo/10.1/ubuntu {{ ansible_distribution_release }} main' state=present
@@ -41,9 +42,9 @@
- name: mariadb | Create databases
mysql_db: name={{ item }} state=present login_user=root login_password={{ mariadb.root_password }}
with_items:
- - "{{ mariadb.database }}"
- - "{{ mariadb.databox_db }}"
- - "{{ mariadb.alt_db }}"
+ - "{{ mariadb.appbox_db }}"
+ - "{{ mariadb.databox_db }}"
+ - "{{ mariadb.alt_databox_db }}"
- name: mariadb | Import dump
mysql_db: name={{ mariadb.database }} state=import login_user=root login_password={{ mariadb.root_password }} target=/vagrant/{{ mariadb.dump }}
diff --git a/resources/ansible/windows-always.sh b/resources/ansible/windows-always.sh
new file mode 100644
index 0000000000..fe32d32067
--- /dev/null
+++ b/resources/ansible/windows-always.sh
@@ -0,0 +1,2 @@
+#!/usr/bin/env bash
+sudo ansible-playbook /vagrant/resources/ansible/playbook-always.yml -e hostname=$1 --extra-vars "{\"hostname\": \"$1\", \"postfix\": { \"postfix_domain\": \"$1.vb\" }, \"parade_var\": \"$2\" }" --connection=local
diff --git a/resources/ansible/windows.sh b/resources/ansible/windows.sh
index eab5d9a5bf..65573918a0 100644
--- a/resources/ansible/windows.sh
+++ b/resources/ansible/windows.sh
@@ -25,7 +25,7 @@ sudo apt-get update
sudo apt-get install -y ansible
# Setup Ansible for Local Use and Run
-cp /vagrant/ansible/inventories/dev /etc/ansible/hosts -f
+cp /vagrant/resources/ansible/inventories/dev /etc/ansible/hosts -f
chmod 666 /etc/ansible/hosts
-cat /vagrant/ansible/files/authorized_keys >> /home/vagrant/.ssh/authorized_keys
-sudo ansible-playbook /vagrant/ansible/playbook.yml -e hostname=$1 --connection=local
\ No newline at end of file
+cat /vagrant/resources/ansible/files/authorized_keys >> /home/vagrant/.ssh/authorized_keys
+sudo ansible-playbook /vagrant/resources/ansible/playbook.yml -e hostname=$1 --connection=local
\ No newline at end of file
diff --git a/resources/locales/messages.de.xlf b/resources/locales/messages.de.xlf
index 60cb547c94..7725ffe896 100644
--- a/resources/locales/messages.de.xlf
+++ b/resources/locales/messages.de.xlf
@@ -1,4 +1,4 @@
-
+
@@ -7,22 +7,18 @@
-
-
+
+ Form/Login/PhraseaAuthenticationForm.phpForm/Configuration/EmailFormType.php
-
+ The parameter "force authentication" forces the recipient(s) of the push to possess a Phraseanet account
to see its contents.
This avoids anonymous users to access to the content of the push if they were able to get the display
url through a forwarded mail for example.
- The parameter "force authentication" forces the recipient(s) of the push to possess a Phraseanet account
- to see its contents.
- This avoids anonymous users to access to the content of the push if they were able to get the display
- url through a forwarded mail for example.
-
+ Parameter "Authentifizierung erzwingen" erzwingt den Push Empfänger, ein Phraseanet Konto zu haben, um den Inhalt anzuschauen. Es vermeidet, unautorisierte Benutzer dem Push Inhalt zuzugreifen, falls sie die URL bekämen (Email wurde weitergeleitet, zum Beispiel).prod/templates/push.html.twig
@@ -38,7 +34,7 @@
%basket_length% documents
- %basket_length% dokument(e)
+ %basket_length% Dokument(e)lightbox/IE6/index.html.twiglightbox/IE6/index.html.twigweb/lightbox/index.html.twig
@@ -47,17 +43,17 @@
%countable% documents can not be modified.
- %countable% dokumente können nicht geändert werden
+ %countable% Dokumente können nicht geändert werdenprod/actions/collection_default.html.twig%d collection selected
- %d Kollektion ausgewählt
+ %d ausgewählte KollektionController/Root/LoginController.php%d collections selected
- %d Kollektionen ausgewählt
+ %d ausgewählte KollektionenController/Root/LoginController.php
@@ -72,7 +68,7 @@
%docs_not_orderable% documents ne peuvent pas etre commandes
- %docs_not_orderable% dokumente können nicht bestellt werden
+ %docs_not_orderable% Dokumente können nicht bestellt werdenweb/common/dialog_export.html.twig
@@ -80,9 +76,9 @@
%docs_orderable% bestellte Dokumenteweb/common/dialog_export.html.twig
-
+ %entry_length% documents
- %entry_length% documents
+ %entry_length% Dokumentemobile/lightbox/feed.html.twig
@@ -139,75 +135,75 @@
Bridge/Dailymotion/element_informations.html.twigBridge/Youtube/element_informations.html.twig
-
+ selectionnes]]>
- selectionnes]]>
+ %number% documents<br/> ausgewähltController/Prod/QueryController.php
-
+ %quantity% Stories attached to the WorkZone
- %quantity% Stories attached to the WorkZone
+ %quantity% Berichte an die WorkZone angehängtController/Prod/WorkzoneController.php
-
+ %quantity% Stories attached to the WorkZone, %quantity_already% already attached
- %quantity% Stories attached to the WorkZone, %quantity_already% already attached
+ %quantity% Berichte an die WorkZone angehängt, %quantity_already% schon angehängtController/Prod/WorkzoneController.php
-
+ %quantity% Story attached to the WorkZone
- %quantity% Story attached to the WorkZone
+ %quantity% Bericht an die WorkZone angehängtController/Prod/WorkzoneController.php
-
+ %quantity% Story attached to the WorkZone, %quantity_already% already attached
- %quantity% Story attached to the WorkZone, %quantity_already% already attached
+ %quantity% Bericht and die WorkZone angehängt, %quantity_already% schon angehängtController/Prod/WorkzoneController.php
-
+ %quantity% User added to list
- %quantity% User added to list
+ %quantity% Benutzer zur Liste hinzugefügtController/Prod/UsrListController.php
-
+ %quantity% Users added to list
- %quantity% Users added to list
+ %quantity% Benutzer zur Liste hinzugefügtController/Prod/UsrListController.php
-
+ %quantity% elements en attente
- %quantity% elements en attente
+ %quantity% Elemente in BereitschaftController/Prod/BridgeController.php
-
+ %quantity% records added
- %quantity% records added
+ %quantity% Datensätze hinzugefügtController/Prod/StoryController.phpController/Prod/BasketController.php
-
+ %quantity% records moved
- %quantity% records moved
+ %quantity% Datensätze bewegtController/Prod/BasketController.php
-
+ %quantity% selected files
- %quantity% selected files
+ %quantity% ausgewählte Dateienprod/upload/upload.html.twig
-
+ %quantity_records% records have been sent for validation to %quantity_users% users
- %quantity_records% records have been sent for validation to %quantity_users% users
+ %quantity_records% Datensätze wurden für die Bestätigung zu %quantity_users% Benutzer gesendetController/Prod/PushController.php
-
+ %quantity_records% records have been sent to %quantity_users% users
- %quantity_records% records have been sent to %quantity_users% users
+ %quantity_records% Datensätze wurden für die Bestätigung zu %quantity_users% Benutzer gesendetController/Prod/PushController.php%record_count% records match the unique identifier :
- %record_count% Datensätze entsprechen dem eindeutigen Bezeichner :
+ %record_count% Datensätze entsprechen dem eindeutigen Bezeichner:prod/upload/lazaret.html.twig
@@ -220,9 +216,9 @@
%s Feld wurde erfolgreich gelöschtController/Admin/FieldsController.php
-
+ %total% reponses
- %total% reponses
+ %total% ErgebnisseController/Prod/QueryController.php
@@ -230,79 +226,79 @@
%total_count% Ergebnisseweb/report/generate_tab.html.twig
-
+ %user% a envoye son rapport de validation de %title%
- %user% a envoye son rapport de validation de %title%
+ %user% hat seinen Bestätigungsbericht von %title% gesendeteventsmanager/notify/validationdone.php
-
+ %user% a passe une %opening_link% commande %end_link%
- %user% a passe une %opening_link% commande %end_link%
+ %user% hat eine %opening_link% Bestellung %end_link% aufgegebeneventsmanager/notify/order.php
-
+ %user% a refuse %quantity% elements de votre commande
- %user% a refuse %quantity% elements de votre commande
+ %user% hat %quantity% Bestandteile von Ihrer Bestellung abgelehntNotification/Mail/MailInfoOrderCancelled.php
-
+ %user% a refuse la livraison de %quantity% document(s) pour votre commande
- %user% a refuse la livraison de %quantity% document(s) pour votre commande
+ %user% hat die Lieferung von %quantity% Dokument(e) für Ihre Bestellung abgelehnteventsmanager/notify/ordernotdelivered.php
-
+ %user% demande votre approbation sur une ou plusieurs %before_link% collections %after_link%
- %user% demande votre approbation sur une ou plusieurs %before_link% collections %after_link%
+ %user% meldet Ihre Zustimmung auf eine oder mehrere %before_link% Kollektion(en) %after_link% aneventsmanager/notify/register.php
-
+ %user% has just sent its validation report, you can now see it
- %user% has just sent its validation report, you can now see it
+ %user% hat gerade seinen Bestätigungsbericht gesendet, Sie können nun diesen Bericht ansehenNotification/Mail/MailInfoValidationDone.php
-
+ %user% has ordered documents
- %user% has ordered documents
+ %user% hat Dokumente bestelltNotification/Mail/MailInfoNewOrder.php
-
+ %user% has published %title%
- %user% has published %title%
+ %user% hat %title% veröffentlichteventsmanager/notify/feed.php
-
+ %user% s'est enregistre sur une ou plusieurs %before_link% scollections %after_link%
- %user% s'est enregistre sur une ou plusieurs %before_link% scollections %after_link%
+ %user% hat sich auf eine oder mehrere %before_link% Kollektion(en) %after_link% angemeldeteventsmanager/notify/autoregister.php
-
+ %user% vient de publier %title%
- %user% vient de publier %title%
+ %user% hat nun %title% veröffentlichtNotification/Mail/MailInfoNewPublication.php
-
+ %user% vous a delivre %quantity% document(s) pour votre commande %title%
- %user% vous a delivre %quantity% document(s) pour votre commande %title%
+ %user% hat %quantity% Dokument(e) für Ihre Bestellung %title% gelieferteventsmanager/notify/orderdeliver.php
-
+ %user% vous a delivre votre commande, consultez la en ligne a l'adresse suivante
- %user% vous a delivre votre commande, consultez la en ligne a l'adresse suivante
+ %user% hat Ihre Bestellung geliefert, verfügbar auf der Website:Notification/Mail/MailInfoOrderDelivered.php
-
+ %user% vous a envoye un %before_link% panier %after_link%
- %user% vous a envoye un %before_link% panier %after_link%
+ %user% hat Ihnen einen %before_link% Sammelkorb %after_link% gesendeteventsmanager/notify/push.php
-
+ %user% vous demande de valider %title%
- %user% vous demande de valider %title%
+ %user% bittet Sie, %title% zu bestätigeneventsmanager/notify/validate.php%user_count% users have been created.
- %user_count% benutzer wurden erstellt
+ %user_count% Benutzer wurden erstelltweb/admin/users.html.twig
@@ -327,7 +323,7 @@
(validation) session terminee
- Session beendet
+ Sitzung beendetweb/lightbox/index.html.twig
@@ -440,7 +436,7 @@
A task has been created, please run it to complete empty collection
- Eine Aufgabe wurde erschafft, bitte führen Sie sie aus, um die Kollektion zu leeren
+ Eine Aufgabe wurde erschafft; bitte führen Sie sie aus, um die Kollektion zu leerenController/Admin/DataboxController.php
@@ -468,9 +464,9 @@
Ein Wert ist veraltet und ist nicht mehr gültigBridge/Api/Youtube.php
-
+ API Webhook
- API Webhook
+ API WebhookTaskManager/Job/WebhookJob.php
@@ -485,7 +481,7 @@
Access
- Viewer
+ Zugriffactions/Feedback/List-Share.html.twigweb/admin/editusers.html.twig
@@ -496,7 +492,7 @@
Access history
- auf Geschichte zugreifen
+ Zugriffshistorieweb/account/sessions.html.twig
@@ -506,7 +502,7 @@
Access to HD
- Zugriff auf HD
+ Zugriff auf HD Downloadweb/admin/editusers.html.twig
@@ -519,14 +515,14 @@
Zugriff auf Vorschaubildweb/admin/editusers.html.twig
-
+ Access to the above bases constitutes acceptance of the following Terms of Use (TOU).
- Access to the above bases constitutes acceptance of the following Terms of Use (TOU).
+ Wenn Sie auf die Datenbanken oben zugreifen, erklären Sie sich damit einverstanden, die folgenden Nutzungsbedingungen zu beachten.web/account/access.html.twigAccess user have readonly access
- Viewer haben nur einen - Lese Zugriff
+ Zugriff hat nur einen Nur-Lesen Zugriffactions/Feedback/List-Share.html.twig
@@ -576,9 +572,9 @@
Bridge/Youtube/actioncontainers.html.twigBridge/Youtube/actionelements.html.twig
-
+ Activate highlight
- Activate highlight
+ Highlight aktivierenSearchEngine/Elastic/ElasticsearchSettingsFormType.php
@@ -595,7 +591,7 @@
Activer le grant_type de type password pour votre application
- Passwort Typgenehmigung für Ihre Anwendung aktivieren
+ Passwort Typgenehmigung grant_type für Ihre Anwendung aktivierenweb/developers/application.html.twig
@@ -624,9 +620,9 @@
admin/fields/templates.html.twigadmin/fields/templates.html.twig
-
+ Add a position
- Add a position
+ Ort hinzufügenController/Prod/LanguageController.php
@@ -644,14 +640,14 @@
ZusatzmoduleForm/Configuration/MainConfigurationFormType.php
-
+ Adds an option to the push form submission to restrict push recipient(s) to Phraseanet users only.
- Adds an option to the push form submission to restrict push recipient(s) to Phraseanet users only.
+ Fügt eine Option im Push Registrierungsformular hinzu, um Push Zugriff nur für die Phraseanet Benutzer zu erlauben.Form/Configuration/ActionsFormType.php
-
+ Admin
- Admin
+ Adminactions/Feedback/List-Share.html.twig
@@ -661,7 +657,7 @@
Adresse email du nouvel utilisateur
- Email Adresse der neuen Benutzer
+ Email Adresse des neuen Benutzersweb/admin/index.html.twig
@@ -696,7 +692,7 @@
Afficher les status
- die Zustände anzeigen
+ die Status anzeigenweb/prod/index.html.twig
@@ -704,19 +700,19 @@
eine Ikone anzeigenweb/prod/index.html.twig
-
+ After metadata
- After metadata
+ Nach Metadatenweb/prod/index.html.twig
-
+ Aggregation
- Aggregation
+ Aggregationadmin/fields/templates.html.twigAide
- die Hilfe
+ Hilfeweb/prod/index.html.twig
@@ -744,7 +740,7 @@
Ajouter un publisher
- einen Veröffentlicher hinzufügen
+ eine Veröffentlichung hinzufügenadmin/publications/fiche.html.twig
@@ -762,9 +758,9 @@
actions/Feedback/list.html.twigWorkZone/Browser/Browser.html.twig
-
+ All values
- All values
+ Alle Werteadmin/fields/templates.html.twig
@@ -774,7 +770,7 @@
Allow the website to be indexed by search engines like Google
- Die Website ermöglichen, von Suchmaschinen wie Google indexiert zu werden.
+ Die Website ermöglichen, von Suchmaschinen (wie Google) indexiert zu werden.Form/Configuration/GeneralFormType.php
@@ -834,7 +830,7 @@
Also delete records that rely on groupings.
- Auch Datensätze, die auf Geschichten angewiesen sind, löschen
+ Auch Datensätze löschen, die auf Berichte angewiesen sindprod/actions/delete_records_confirm.html.twig
@@ -898,7 +894,7 @@
An error occured, please retry or contact an admin if problem persist
- Ein Fehler ist aufgetreten, bitte bitte wiederholen Sie oder wenden Sie sich an Ihren Systemadministrator
+ Ein Fehler ist aufgetreten, bitte wiederholen Sie oder wenden Sie sich an Ihren Systemadministratoradmin/collection/create.html.twig
@@ -923,14 +919,14 @@
Ein Fehler ist beim Lesen dieser Datei aufgetretenController/Prod/LanguageController.php
-
+ An unexpected error occurred during authentication process, please contact an admin
- An unexpected error occurred during authentication process, please contact an admin
+ Ein Fehler ist bei Ihre Authentifizierung aufgetreten. Bitte wenden Sie sich an Ihren SystemadministratorController/Root/LoginController.php
-
+ An upload on %bridge_adapter% failed, the resaon is : %reason%
- An upload on %bridge_adapter% failed, the resaon is : %reason%
+ Upload auf %bridge_adapter% ist fehlgeschlagen, aus folgendem Grund : %reason%Notification/Mail/MailInfoBridgeUploadFailed.php
@@ -950,12 +946,12 @@
Apparait aussi dans ces paniers
- erscheint auch in diesen Sammelkörben
+ auch in diesen Sammelkörbenprod/preview/appears_in.html.twigApparait aussi dans ces reportages
- ercheint auch in diesen Reportagen
+ auch in diesen Berichtenprod/preview/appears_in.html.twig
@@ -1051,9 +1047,9 @@
Controller/Prod/LanguageController.phpprod/templates/push.html.twig
-
+ Are you sure you want to rebuild the sub-definitions of selected records?
- Are you sure you want to rebuild the sub-definitions of selected records?
+ Sind Sie sicher, dass Sie die Unterauflösungen von ausgewählte Datensätzen wiederherstellen möchten?actions/Tools/index.html.twig
@@ -1138,9 +1134,9 @@
keine Veröffentlichung ausgeführt, überprüfen Sie Ihre ParameterController/Prod/LanguageController.php
-
+ Audio
- Audio
+ Audioweb/prod/index.html.twig
@@ -1148,9 +1144,9 @@
Audio-BitrateMedia/Subdef/Audio.php
-
+ Audio Codec
- Audio Codec
+ Audio CodecMedia/Subdef/Audio.phpMedia/Subdef/Video.php
@@ -1205,9 +1201,9 @@
Verbindung mit Microsoft Office Plugin erlaubenForm/Configuration/APIClientsFormType.php
-
+ Auto
- Auto
+ AutoForm/Configuration/ExecutablesFormType.php
@@ -1220,9 +1216,9 @@
Auto Registrierungs Informationeneventsmanager/notify/autoregister.php
-
+ Autorisation d'acces
- Autorisation d'acces
+ Zugriffsberechtigungapi/auth/end_user_authorization.html.twig
@@ -1230,9 +1226,9 @@
Berechtigenapi/auth/end_user_authorization.html.twig
-
+ Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ?
- Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ?
+ Ermächtigen Sie die Anwendung %application_name%, Ihren Inhalt auf %home_title% zuzugreifen?api/auth/end_user_authorization.html.twig
@@ -1326,9 +1322,9 @@
Sammelkorb wurde aktualisiertController/Prod/BasketController.php
-
+ Basket is not found
- Basket is not found
+ Sammelkorb wurde nicht gefundenModel/Repositories/BasketRepository.php
@@ -1336,9 +1332,9 @@
Sammelkorb wurde aktualisiertController/Prod/BasketController.php
-
+ Bitrate
- Bitrate
+ BitrateMedia/Subdef/Video.php
@@ -1348,7 +1344,7 @@
Bonjour, vous etes sur le point d'installer Phraseanet.
- Hallo! Sie sind im Begriff Phraseanet IV zu installieren.
+ Hallo! Sie sind im Begriff, Phraseanet zu installieren.web/setup/step2.html.twig
@@ -1356,9 +1352,9 @@
Bridge Upload fehlgeschlageneventsmanager/notify/bridgeuploadfail.php
-
+ Bridge uploader
- Bridge uploader
+ Bridge UploaderTaskManager/Job/BridgeJob.php
@@ -1367,9 +1363,9 @@
web/prod/index.html.twigweb/prod/index.html.twig
-
+ Browser
- Browser
+ Webbrowserweb/account/sessions.html.twig
@@ -1405,9 +1401,9 @@
Felderweb/admin/tree.html.twig
-
+ CSV export
- CSV export
+ CSV Exportweb/report/generate_tab.html.twig
@@ -1506,15 +1502,15 @@
Dieses Feld wird benötigtprod/Tooltip/DataboxField.html.twig
-
+ Ce champ est trop court %length% caracteres min
- Ce champ est trop court %length% caracteres min
+ Dieses Feld ist zu kurz, mindestens %length% ZeichenBridge/Api/Dailymotion.phpBridge/Api/Dailymotion.php
-
+ Ce champ est trop long %length% caracteres max
- Ce champ est trop long %length% caracteres max
+ Dieses Feld ist zu lang, maximal %length% ZeichenBridge/Api/Flickr.phpBridge/Api/Flickr.phpBridge/Api/Dailymotion.php
@@ -1567,9 +1563,9 @@
meine E-Mail Adresse verändernweb/account/reset-email.html.twig
-
+ Changes for rotation will be applied only on the sub-definitions of "image" type.
- Changes for rotation will be applied only on the sub-definitions of "image" type, whenever possible.
+ Drehung wird nur für die Unterauflösungen von Typ "Bilder" angewendet sein.actions/Tools/index.html.twig
@@ -1579,7 +1575,7 @@
Chargement
- Ladend
+ Bitte warten...web/prod/index.html.twig
@@ -1702,9 +1698,9 @@
eventsmanager/notify/orderdeliver.phpeventsmanager/notify/ordernotdelivered.php
-
+ Commande du %date%
- Commande du %date%
+ Bestellung vom %date%Phrasea/Order/OrderBasketProvider.php
@@ -1808,9 +1804,9 @@
Fortsetzen?module/console/systemUpgrade.php
-
+ Continuer quand meme
- Continuer quand meme
+ Fortsetzen?admin/collection/suggested_value.html.twig
@@ -1818,14 +1814,14 @@
Benutzerprod/actions/Push.html.twig
-
+ Cooliris
- Cooliris
+ CoolirisForm/Configuration/GeneralFormType.php
-
+ Copiez le code ci-dessous, retournez dans votre application et collez-le a l'endroit requis :
- Copiez le code ci-dessous, retournez dans votre application et collez-le a l'endroit requis :
+ Kopieren Sie bitte einfach die Kode unten und einfügen Sie sie in der Anwendung an entsprechend Stelle:api/auth/native_app_access_token.html.twig
@@ -1869,14 +1865,14 @@
Ein Konto manuell erstellenweb/login/register.html.twig
-
+ Create index
- Create index
+ Index erstellenSearchEngine/Elastic/ElasticsearchSettingsFormType.phpCreate new subdef
- Neuen subdef erstellen
+ Neue Unterauflösung erstellenweb/admin/subdefs.html.twig
@@ -1943,13 +1939,13 @@
Creer une playlist
- eine neue Playlist erstellen
+ einen neuen Playlist erstellenBridge/Dailymotion/playlist_createcontainer.html.twigBridge/Youtube/playlist_createcontainer.html.twigCreez une application pour commencer a utiliser l'API Phraseanet
- Erstellen Sie zuerst eine Applikation, um das Phraseanet API danach zu benutzen.
+ Erstellen Sie zuerst eine Anwendung, um das Phraseanet API danach zu benutzen.web/developers/applications.html.twig
@@ -1974,12 +1970,12 @@
Current session
- Aktuelle Session
+ Aktuelle Sitzungweb/account/sessions.html.twig
-
+ DCES
- DCES
+ DCESadmin/fields/templates.html.twig
@@ -2008,9 +2004,9 @@
Datenbank kann keine Sonderzeichen beinhaltenController/Admin/DataboxesController.php
-
+ Database server does not support InnoDB storage engine
- Database server does not support InnoDB storage engine
+ Datenbankserver unterstützt nicht InnoDB Speicher-EngineController/Admin/DataboxesController.phpweb/setup/step2.html.twig
@@ -2019,9 +2015,9 @@
Datenbank Benutzerweb/setup/step2.html.twig
-
+ Databox
- Databox
+ Databoxtask-manager/task-editor/subdefs.html.twig
@@ -2039,9 +2035,9 @@
Datumprod/upload/lazaret.html.twig
-
+ Date Added
- Date Added
+ Hinzufügungsdatumweb/prod/index.html.twig
@@ -2076,9 +2072,9 @@
prod/orders/order_box.html.twigprod/orders/order_item.html.twig
-
+ Dear %user%,
- Dear %user%,
+ Sehr geehrte(r) Dame/Herr %user%,Notification/Mail/MailSuccessEmailUpdate.php
@@ -2096,9 +2092,9 @@
Lesen Sie die Dokumentationweb/developers/applications.html.twig
-
+ Default TTL in seconds of sub-definition url
- Default TTL in seconds of sub-definition url
+ Standard-TTL in Sekunden, von URL UnterauflösungForm/Configuration/GeneralFormType.php
@@ -2131,9 +2127,9 @@
Standarddauer für die ValidierungslinkeForm/Configuration/ActionsFormType.php
-
+ Define a webhook URL
- Define a webhook URL
+ Eine Webhook URL festlegenweb/developers/application.html.twig
@@ -2179,7 +2175,7 @@
Delete the subdef ?
- Subdef löschen?
+ Unterauflösung löschen?web/admin/subdefs.html.twig
@@ -2246,9 +2242,9 @@
Detailansicht URLprod/Share/record.html.twig
-
+ Details
- Details
+ Einzelheitenadmin/collection/details.html.twigadmin/databox/details.html.twig
@@ -2268,9 +2264,9 @@
Media/Subdef/Image.phpMedia/Subdef/Video.php
-
+ Disable document type sharing
- Disable document type sharing
+ Dokumenttyp Teilen deaktivierenactions/Tools/index.html.twig
@@ -2278,19 +2274,19 @@
DeaktiviertForm/Configuration/ActionsFormType.php
-
+ Disallow the possibility for the end user to disable push authentication
- Disallow the possibility for the end user to disable push authentication
+ Möglichkeit verweigern, die Push Authentifizierung für die EndBenutzer zu deaktivierenForm/Configuration/ActionsFormType.php
- Anzeige und Aktions-Einstellungen
+ Anzeige und Handlung-Einstellungenadmin/fields/templates.html.twig
-
+ Display technical data
- Display technical data
+ Technische Informationen anzeigenweb/prod/index.html.twig
@@ -2298,9 +2294,9 @@
Vorschaubilder anschauenadmin/fields/templates.html.twig
-
+ Do not display
- Do not display
+ Nicht anzeigenweb/prod/index.html.twig
@@ -2320,7 +2316,7 @@
Do you really want to end the activity of this session?
- Möchten Sie wirklich, die Aktivität von dieser Session beenden?
+ Möchten Sie wirklich, die Aktivität von dieser Sitzung beenden?web/account/sessions.html.twig
@@ -2335,9 +2331,9 @@
Dokumentweb/prod/index.html.twig
-
+ Document Type Sharing
- Document Type Sharing
+ Dokumenttyp Teilenactions/Tools/index.html.twig
@@ -2378,9 +2374,9 @@
Keine Sorge: Sie können die Konfiguration später verändern.web/setup/step2.html.twig
-
+ Download
- Download
+ DownloadNotification/Mail/MailRecordsExport.php
@@ -2398,9 +2394,9 @@
Rechteweb/admin/editusers_quotas.html.twig
-
+ Drop index
- Drop index
+ Drop indexSearchEngine/Elastic/ElasticsearchSettingsFormType.php
@@ -2419,9 +2415,9 @@
Form/Login/PhraseaForgotPasswordForm.phpForm/Login/PhraseaRegisterForm.php
-
+ ERREUR : La classe de subdef est necessaire et egal a "thumbnail","preview" ou "document"
- ERREUR : La classe de subdef est necessaire et egal a "thumbnail","preview" ou "document"
+ FEHLER : Unterauflösung Kategorie ist erforderlich und ist gleich "Miniaturansicht","Voransicht" oder "Dokument"lib/classes/databox.php
@@ -2441,9 +2437,9 @@
admin/task-manager/templates.html.twigadmin/task-manager/index.html.twig
-
+ Editer
- Editer
+ Bearbeitenactions/publish/publish_edit.html.twig
@@ -2473,9 +2469,9 @@
Bearbeitung nicht möglichprod/actions/edit_default.html.twig
-
+ Editor
- Editor
+ Editoractions/Feedback/List-Share.html.twig
@@ -2483,35 +2479,35 @@
Editor kann Inhalte verändernactions/Feedback/List-Share.html.twig
-
+ ElasticSearch configuration
- ElasticSearch configuration
+ ElasticSearch Einstellungadmin/search-engine/elastic-search.html.twig
-
+ ElasticSearch index name
- ElasticSearch index name
+ ElasticSearch Index NameSearchEngine/Elastic/ElasticsearchSettingsFormType.php
-
+ ElasticSearch server host
- ElasticSearch server host
+ ElasticSearch Server HostSearchEngine/Elastic/ElasticsearchSettingsFormType.php
-
+ ElasticSearch service port
- ElasticSearch service port
+ ElasticSearch Service SchnittstelleSearchEngine/Elastic/ElasticsearchSettingsFormType.php
-
+ Email
- Email
+ Email Adresseadmin/publications/fiche.html.twigweb/admin/dashboard.html.twig
-
+ Email '%email%' for login '%login%' already exists in database
- Email '%email%' for login '%login%' already exists in database
+ Email '%email%' für Login '%login%' existiert schon in der DatabankController/Admin/UserController.php
@@ -2555,9 +2551,9 @@
Embed-Codeprod/Share/record.html.twig
-
+ Empty a collection
- Empty a collection
+ eine Kollektion leerenTaskManager/Job/EmptyCollectionJob.php
@@ -2587,9 +2583,9 @@
schwebendactions/Bridge/records_list.html.twig
-
+ En cliquant sur "ajouter" vous certifiez que vous possedez les droits pour le contenu ou que vous etes autorisé par le proprietaire à rendre le contenu accessible au public sur YouTube, et qu'il est autrement conforme aux Conditions d'utilisation de YouTubesitue a %lien_term_youtube%
- En cliquant sur "ajouter" vous certifiez que vous possedez les droits pour le contenu ou que vous etes autorisé par le proprietaire à rendre le contenu accessible au public sur YouTube, et qu'il est autrement conforme aux Conditions d'utilisation de YouTubesitue a %lien_term_youtube%
+ Mit Klick auf "Hinzufügen", bestätigen Sie, dass Sie die Rechte für den Inhalt verfügen oder dass Sie vom Besitzer berechtigt sind, den Inhalt auf YouTube öffentlich zu machen, und entspricht die YouTube Nutzungsbedingungen: %lien_term_youtube%.Bridge/Youtube/upload.html.twig
@@ -2614,9 +2610,9 @@
FTP für die Benutzer aktivierenForm/Configuration/FtpExportFormType.php
-
+ Enable Forcing authentication to see push content
- Enable Forcing authentication to see push content
+ Aufzwingende Authentifizierung aktivieren, um den Push Inhalt anzuschauenForm/Configuration/ActionsFormType.php
@@ -2639,9 +2635,9 @@
Automatische Anmeldung aktivierenForm/Configuration/RegistrationFormType.php
-
+ Enable document type sharing
- Enable document type sharing
+ Dokumenttyp Teilen aktivierenactions/Tools/index.html.twig
@@ -2654,9 +2650,9 @@
MultiDoc modus aktivierenForm/Configuration/ModulesFormType.php
-
+ Enable possibility to notify users when publishing a new feed entry
- Enable possibility to notify users when publishing a new feed entry
+ Ermöglichen, Benutzern zu benachritigen, als sie eine neue Eingabe veröffentlichenForm/Configuration/ActionsFormType.php
@@ -2687,7 +2683,7 @@
End session activity
- Session Aktivität beenden
+ Sitzung Aktivität beendenweb/account/sessions.html.twig
@@ -2781,9 +2777,9 @@
Fehler während DatenaktualisierungPhrasea/Controller/LightboxController.php
-
+ Erreur lors de la tentative ; errreur : %message%
- Erreur lors de la tentative ; errreur : %message%
+ Fehler beim Versuch ; Fehler : %message%Core/Database/DatabaseMaintenanceService.phpCore/Database/DatabaseMaintenanceService.phpCore/Database/DatabaseMaintenanceService.php
@@ -2803,9 +2799,9 @@
Fehler: Sie haben versucht eine Anfrage die von YouTube nicht unterstützt wird auszuführen.Bridge/Api/Youtube.php
-
+ Error while connecting to FTP
- Error while connecting to FTP
+ Fehler bei der FTP VerbindungController/Prod/ExportController.php
@@ -2885,14 +2881,14 @@
Export in der Warteschlange gespeichertController/Prod/ExportController.php
-
+ FTP
- FTP
+ FTPweb/account/account.html.twig
-
+ FTP Export
- FTP Export
+ FTP ExportForm/Configuration/MainConfigurationFormType.php
@@ -2905,18 +2901,18 @@
Feed Nameadmin/publications/list.html.twig
-
+ Feedback
- Feedback
+ FeedbackController/Prod/LanguageController.phpweb/prod/toolbar.html.twigweb/prod/toolbar.html.twigprod/WorkZone/Story.html.twigprod/WorkZone/Basket.html.twig
-
+ Feeds
- Feeds
+ Feedseventsmanager/notify/feed.php
@@ -2929,14 +2925,14 @@
Dateien gesendetactions/Bridge/wrapper.html.twig
-
+ Field %name% could not be created, please try again or contact an admin.
- Field %name% could not be created, please try again or contact an admin.
+ Feld %name% könnte nicht geschafft werden, bitte versuchen Sie einmal oder kontaktieren Sie einen Administrator.Controller/Admin/FieldsController.php
-
+ Field %name% could not be saved, please try again or contact an admin.
- Field %name% could not be saved, please try again or contact an admin.
+ Feld %name% könnte nicht gespeichert werden, bitte versuchen Sie noch einmal oder kontaktieren Sie einen Administrator.Controller/Admin/FieldsController.php
@@ -3040,15 +3036,15 @@
web/admin/users.html.twigweb/admin/users.html.twig
-
+ Flash
- Flash
+ Flashweb/prod/index.html.twigweb/common/technical_datas.html.twig
-
+ Flatten layers
- Flatten layers
+ Flatten LayersMedia/Subdef/Image.php
@@ -3056,9 +3052,9 @@
Brennweiteweb/common/technical_datas.html.twig
-
+ Force authentication
- Force authentication
+ Authentifizierung zwingenprod/templates/push.html.twig
@@ -3104,9 +3100,9 @@
Abtastfrequenzweb/common/technical_datas.html.twig
-
+ GD
- GD
+ GD-BibliothekForm/Configuration/ExecutablesFormType.php
@@ -3114,14 +3110,14 @@
GOP GrösseMedia/Subdef/Video.php
-
+ Gallery
- Gallery
+ GalleryForm/Configuration/GeneralFormType.php
-
+ General configuration
- General configuration
+ Allgemeine EinstellungenForm/Configuration/MainConfigurationFormType.php
@@ -3129,14 +3125,14 @@
Allgemeine Einstellungenweb/admin/dashboard.html.twig
-
+ Generate
- Generate
+ Erstellenweb/report/report_layout_child.html.twig
-
+ Generate dashboard
- Generate dashboard
+ Dashboard erstellenweb/report/report_layout_child.html.twig
@@ -3159,9 +3155,9 @@
Erstellt eine Audio DateiMedia/Subdef/Audio.php
-
+ Generates an image
- Generates an image
+ Erstellt ein BildMedia/Subdef/Image.php
@@ -3179,9 +3175,9 @@
Eine Nachricht erhalten wenn ein Email Export fehlschlägteventsmanager/notify/downloadmailfail.php
-
+ Gives the option to your application to communicate with Phraseanet. This webhook can be used to trigger some actions on your application side.
- Gives the option to your application to communicate with Phraseanet. This webhook can be used to trigger some actions on your application side.
+ Gibt Ihrer Applikation die Möglichkeit, mit Phraseanet zu kommunizieren. Diese Webhook kann benutzt werden, um einige Aktionen auf Ihrer Applikationsseite auszulösen.web/developers/application.html.twig
@@ -3209,9 +3205,9 @@
gewährte Drittanwendungenweb/account/authorized_apps.html.twig
-
+ GraphicsMagick
- GraphicsMagick
+ GraphicsMagickForm/Configuration/ExecutablesFormType.php
@@ -3224,9 +3220,9 @@
GroßartigController/Root/LoginController.php
-
+ Groupement des resultats sur le champ %name%
- Groupement des resultats sur le champ %name%
+ Ergebnisse Gruppierung auf Feld %name%Controller/Report/RootController.phpController/Report/ActivityController.php
@@ -3235,9 +3231,9 @@
Gruppierenweb/report/generate_tab.html.twig
-
+ Groupez 2 ou plusieurs mots avec des guillemets: "Michael Jackson"
- Groupez 2 ou plusieurs mots avec des guillemets: "Michael Jackson"
+ Gruppieren Sie 2 oder mehrere Wörter mit Anführungszeichen : "Michael Jackson"Bridge/Dailymotion/upload.html.twig
@@ -3250,14 +3246,14 @@
Gast Zugrifflogin/include/guest-access-block.html.twig
-
+ Guest, you must be authenticated to have the right to download.
- Guest, you must be authenticated to have the right to download.
+ Gast, sie müssen authentifizieren, um die Dateien herunterzuladen.web/common/dialog_export.html.twig
-
+ HD Download
- HD Download
+ HD Downloadprod/actions/Push.html.twig
@@ -3281,9 +3277,9 @@
Informationen über die Benutzer ausblendenForm/Configuration/ModulesFormType.php
-
+ Home
- Home
+ Hautpseitelogin/layout/base-layout.html.twiglogin/include/language-block.html.twigmobile/lightbox/validate.html.twig
@@ -3305,9 +3301,9 @@
web/login/register-classic.html.twigweb/login/register-provider.html.twig
-
+ IP
- IP
+ IPweb/account/sessions.html.twig
@@ -3335,9 +3331,9 @@
Ist es auf null gestellt, ist die Zeitdauer bleibendForm/Configuration/ActionsFormType.php
-
+ If you notice any unfamiliar devices or locations, click on button %button% to end the session.
- If you notice any unfamiliar devices or locations, click on button %button% to end the session.
+ Wenn Sie ungewohnte Geräte oder Orten bemerken, klicken Sie auf %button%, um die Sitzung zu schliessen.web/account/sessions.html.twig
@@ -3345,9 +3341,9 @@
Wenn Sie vorhaben, grossen Dateien zu speichern, bitte vergewissern Sie, dass sie in diese Verzeichnisse einpassen werden.web/setup/step2.html.twig
-
+ Il ne vous reste plus que %quantity% jours pour terminer votre validation
- Il ne vous reste plus que %quantity% jours pour terminer votre validation
+ Sie haben %quantity% verbleidende Tage, um Ihr Feedback zu beendenNotification/Mail/MailInfoValidationReminder.php
@@ -3365,9 +3361,9 @@
Bildweb/prod/index.html.twig
-
+ ImageMagick
- ImageMagick
+ ImageMagickForm/Configuration/ExecutablesFormType.php
@@ -3380,14 +3376,14 @@
Vorschaubild nicht verfügbaractions/Bridge/element_list.html.twig
-
+ Imagine driver
- Imagine driver
+ Imagine driverForm/Configuration/ExecutablesFormType.php
-
+ In the answer grid
- In the answer grid
+ In einem Tooltipweb/prod/index.html.twig
@@ -3407,14 +3403,14 @@
indizierbaradmin/fields/templates.html.twig
-
+ Indexation task
- Indexation task
+ IndizierungsaufgabeTaskManager/Job/IndexerJob.php
-
+ Indexing Batch (collections/databox)
- Indexing Batch (collections/databox)
+ Batchindizierung (Kollektionen/Databox)TaskManager/Job/IndexerJob.php
@@ -3474,9 +3470,9 @@
user/import/file.html.twigadmin/databox/databox.html.twig
-
+ Invalid file type, only (%supported_file_types%) file formats are supported'
- Invalid file type, only (%supported_file_types%) file formats are supported'
+ Ungültiger Dateityp, nur (%supported_file_types%) Datei Formats werden unterstütztadmin/collection/collection.html.twig
@@ -3527,9 +3523,9 @@
Berufprod/User/Add.html.twig
-
+ Keep synchronization between bridge and client APIs.
- Keep synchronization between bridge and client APIs.
+ Synchronisierung zwischen Bridge und Client APIs erhalten.TaskManager/Job/BridgeJob.php
@@ -3543,9 +3539,9 @@
Bridge/Api/Flickr.phpBridge/Api/Youtube.php
-
+ L'upload concernant le record %title% sur le compte %bridge_name% a echoue pour les raisons suivantes : %reason%
- L'upload concernant le record %title% sur le compte %bridge_name% a echoue pour les raisons suivantes : %reason%
+ Upload von Datensatz %title% auf Konto %bridge_name% ist aus folgenden Gründen fehlgeschlagen: %reason%eventsmanager/notify/bridgeuploadfail.php
@@ -3585,9 +3581,9 @@
web/common/dialog_export.html.twigweb/common/dialog_export.html.twig
-
+ La taille maximale d'une video est de %duration% minutes.
- La taille maximale d'une video est de %duration% minutes.
+ Maximale Dauer für eine Video ist %duration% Minuten.Bridge/Api/Dailymotion.phpBridge/Api/Youtube.php
@@ -3608,9 +3604,9 @@
Das Video ist beschränktBridge/Api/Youtube.php
-
+ Labels
- Labels
+ Labelsadmin/statusbit/edit.html.twigadmin/statusbit/edit.html.twig
@@ -3634,9 +3630,9 @@
Nachname erforderlichController/Prod/PushController.php
-
+ Last update on %updateTime%
- Last update on %updateTime%
+ Letzte Aktualisierung %updateTime%admin/task-manager/index.html.twig
@@ -3689,9 +3685,9 @@
Sammelkorb existiert nicht mehrmobile/lightbox/error.html.twig
-
+ Le poids maximum d'un fichier est de %size%
- Le poids maximum d'un fichier est de %size%
+ Maximales Gewicht von Datei ist %size%Bridge/Api/Flickr.phpBridge/Api/Dailymotion.phpBridge/Api/Youtube.php
@@ -3772,9 +3768,9 @@
begrenzter Wortschatzadmin/fields/templates.html.twig
-
+ List %name% has been created
- List %name% has been created
+ List %name% wurde geschafftController/Prod/UsrListController.php
@@ -3849,19 +3845,19 @@
login/oauth/login.html.twigactions/Feedback/ListsMacros.html.twig
-
+ Login %login% already exists in database
- Login %login% already exists in database
+ Benutzername %login% existiert schon im DatenbankController/Admin/UserController.php
-
+ Login %login% is already defined in the file at line %line%
- Login %login% is already defined in the file at line %line%
+ Benutzername %login% ist schon in Datei in Linie %line% definiertController/Admin/UserController.php
-
+ Login line %line% is empty
- Login line %line% is empty
+ Benutzername Zeile %line% ist leerController/Admin/UserController.php
@@ -3870,9 +3866,9 @@
login/providers/bind.html.twiglogin/providers/mapping.html.twig
-
+ Logs
- Logs
+ Logsadmin/task-manager/templates.html.twigadmin/task-manager/templates.html.twigadmin/task-manager/index.html.twig
@@ -3883,9 +3879,9 @@
meine letzte Suchabfrageweb/prod/index.html.twig
-
+ Mail line %line% is empty
- Mail line %line% is empty
+ Email Zeile %line% ist leerController/Admin/UserController.php
@@ -3943,9 +3939,9 @@
Pflichtfelderweb/login/register-provider.html.twig
-
+ Masks
- Masks
+ Maskenweb/admin/editusers_masks.html.twig
@@ -3979,9 +3975,9 @@
aktualisierenadmin/databox/cgus.html.twig
-
+ Mime type
- Mime type
+ Mime Typweb/common/technical_datas.html.twig
@@ -3989,9 +3985,9 @@
Mindestzeichenzahl vor der KürzungForm/Configuration/SearchEngineFormType.php
-
+ Missing "structure" parameter
- Missing "structure" parameter
+ Fehlende "Struktur" ParameterController/Admin/RootController.php
@@ -4000,9 +3996,9 @@
Controller/Admin/CollectionController.phpController/Admin/DataboxController.php
-
+ Missing mandatory parameter %parameter%
- Missing mandatory parameter %parameter%
+ Fehlende zwingender Parameter %parameter%Controller/Prod/PushController.php
@@ -4051,9 +4047,9 @@
web/developers/application.html.twigweb/developers/application.html.twig
-
+ Monter la collection %name%
- Monter la collection %name%
+ Kollektion %name% aufstellenadmin/databox/databox.html.twig
@@ -4076,9 +4072,9 @@
Einen Datensatz zur ausgewählten Kollektion verschiebenprod/actions/collection_default.html.twig
-
+ Moves records
- Moves records
+ Datensäzte bewegenTaskManager/Job/RecordMoverJob.php
@@ -4098,9 +4094,9 @@
web/setup/step2.html.twigweb/setup/step2.html.twig
-
+ Name
- Name
+ NameController/Prod/LanguageController.phpBridge/Dailymotion/playlist_createcontainer.html.twigactions/Download/prepare.html.twig
@@ -4140,9 +4136,9 @@
Form/Login/PhraseaRecoverPasswordForm.phpForm/Login/PhraseaRenewPasswordForm.php
-
+ New task
- New task
+ Neue Aufgabeadmin/task-manager/index.html.twig
@@ -4310,9 +4306,9 @@
Nicht erlaubtweb/account/authorized_apps.html.twig
-
+ Not aggregated
- Not aggregated
+ Nicht aggregiertadmin/fields/templates.html.twig
@@ -4330,9 +4326,9 @@
Allgemeine Benachrichtigungenclasses/eventsmanager/broker.php
-
+ Notify third party application when an event occurs in Phraseanet
- Notify third party application when an event occurs in Phraseanet
+ Drittanwendung benachrichtigen, beim Eintreten eines EreignissesTaskManager/Job/WebhookJob.php
@@ -4355,9 +4351,9 @@
Neue Bestellungeventsmanager/notify/order.php
-
+ Nouvelle publication : %title%
- Nouvelle publication : %title%
+ Neue Veröffentlichung : %title%Notification/Mail/MailInfoNewPublication.php
@@ -4367,22 +4363,22 @@
Number of days before the end of the validation to send a reminder email
- Anzahl von Tagen vor der Ende der Validierung, um eine E-Mail Errinerung zu senden
+ Anzahl von Tagen vor der Ende der Validierung, um eine Erinnerungsmail zu sendenForm/Configuration/ActionsFormType.php
-
+ Number of records to process per batch
- Number of records to process per batch
+ Anzahl von Datensätzen per Stapel zu verarbeitentask-manager/task-editor/subdefs.html.twig
-
+ Number of replicas
- Number of replicas
+ Anzahl von NachbautenSearchEngine/Elastic/ElasticsearchSettingsFormType.php
-
+ Number of shards
- Number of shards
+ Anzahl von ScherbenSearchEngine/Elastic/ElasticsearchSettingsFormType.php
@@ -4390,9 +4386,9 @@
Anzahl von Fäden für FFMpeg zu benutzenForm/Configuration/ExecutablesFormType.php
-
+ OK
- OK
+ OKBridge/Api/Dailymotion.phpBridge/Api/Youtube.php
@@ -4416,9 +4412,9 @@
Nur einen Datensatz kann geändert werdenactions/Property/index.html.twig
-
+ Open the URL in a new window
- Open the URL in a new window
+ Öffnen Sie die URL in einem neuen FensterCore/Provider/TwigServiceProvider.php
@@ -4526,14 +4522,14 @@
Passwort (Bestätigung)Form/Login/PhraseaRegisterForm.php
-
+ Password is empty at line %line%
- Password is empty at line %line%
+ Passwort ist leer in Zeile %line%Controller/Admin/UserController.php
-
+ Password renewal for login "%login%" has been requested
- Password renewal for login "%login%" has been requested
+ Passworterneuerung für Benutzer "%login%" wurde angefragtNotification/Mail/MailRequestPasswordUpdate.php
@@ -4546,14 +4542,14 @@
Pending access to the following collectionsweb/account/access.html.twig
-
+ Periodically fetches an FTP repository content locally
- Periodically fetches an FTP repository content locally
+ Holt regelmässig einen FTP Repository Inhalt lokalTaskManager/Job/FtpPullJob.php
-
+ Periodically push data to FTP servers.
- Periodically push data to FTP servers.
+ Push Daten regelmässig zu FTP Servers.TaskManager/Job/FtpJob.php
@@ -4602,9 +4598,9 @@
Phraseanet empfiehlt dringend die Benutzung von %link_start%MariaDB%link_end%, um MySQL zu ersetzenweb/setup/step2.html.twig
-
+ Playlist
- Playlist
+ PlaylistBridge/Dailymotion/actionelements.html.twigBridge/Youtube/actionelements.html.twig
@@ -4639,9 +4635,9 @@
Bitte prüfen Sie, ob Sie dieseBewertung zu folgenden Benutzern senden möchten: %recommendation%prod/actions/Push.html.twig
-
+ Please enter the databox name to reset or create
- Please enter the databox name to reset or create
+ Bitte geben Sie die Databox Name ein, um zurückzusetzen oder zu erstellen.Command/Developer/IniReset.php
@@ -4686,7 +4682,7 @@
Please provide the same passwords.
- Bitte geben Sie die selbe Passwörter ein
+ Bitte geben Sie diesselbe Passwörter ein.Controller/Root/LoginController.php
@@ -4769,9 +4765,9 @@
DruckenController/Prod/LanguageController.php
-
+ Problemes de connexion ?
- Problemes de connexion ?
+ Verbindungsprobleme ?api/auth/end_user_authorization.html.twig
@@ -4779,14 +4775,14 @@
Registrierung verarbeitenNotification/Mail/MailInfoUserRegistered.php
-
+ Processus de validation recu de %user%
- Processus de validation recu de %user%
+ Feedback bekommen von %user%Model/Entities/ValidationSession.php
-
+ Processus de validation recu de %user% et concernant %n% utilisateurs
- Processus de validation recu de %user% et concernant %n% utilisateurs
+ Feedback bekommen von %user% über %n% BenutzerModel/Entities/ValidationSession.php
@@ -4807,9 +4803,9 @@
admin/publications/wrapper.html.twigweb/admin/tree.html.twig
-
+ Publier
- Publier
+ Veröffentlichenactions/publish/publish.html.twig
@@ -4823,9 +4819,9 @@
VeröffentlicherForm/Configuration/ActionsFormType.php
-
+ Push
- Push
+ Pusheventsmanager/notify/push.phpController/Prod/LanguageController.php
@@ -4834,9 +4830,9 @@
Push KonfigurationForm/Configuration/MainConfigurationFormType.php
-
+ Push from %user%
- Push from %user%
+ Push von %user%Controller/Prod/PushController.php
@@ -4988,9 +4984,9 @@
tab/shift-tab : Feld ändernweb/prod/index.html.twig
-
+ Rappel : Il vous reste %number% jours pour valider %title% de %user%
- Rappel : Il vous reste %number% jours pour valider %title% de %user%
+ Errinerung : Sie haben %number% verbleidende Tage, um Ihr Feedback über %title% von %user% zu sendeneventsmanager/notify/validationreminder.php
@@ -5076,9 +5072,9 @@
Empfangskontrolleeventsmanager/notify/orderdeliver.php
-
+ Reception of %basket_name%
- Reception of %basket_name%
+ Empfang von %basket_name%Notification/Mail/MailInfoPushReceived.php
@@ -5131,9 +5127,9 @@
Unterauflösungen wiederaufbauenactions/Tools/index.html.twig
-
+ Record Mover
- Record Mover
+ Record MoverTaskManager/Job/RecordMoverJob.php
@@ -5151,9 +5147,9 @@
Datensatz wurde vom Bericht entferntController/Prod/StoryController.php
-
+ Record_id
- Record_id
+ Record_idweb/common/technical_datas.html.twig
@@ -5217,19 +5213,19 @@
Rejected access to the following collectionsweb/account/access.html.twig
-
+ Relevance
- Relevance
+ Relevanzweb/prod/index.html.twigRemember me
- Mich erinnern
+ Angemeldet bleibenForm/Login/PhraseaAuthenticationForm.php
-
+ Reminder : validate '%title%'
- Reminder : validate '%title%'
+ Errinerung : Bestätigen Sie '%title%'Notification/Mail/MailInfoValidationReminder.php
@@ -5280,14 +5276,14 @@
Ablageordner der Dateienweb/setup/step2.html.twig
-
+ Report
- Report
+ Reportadmin/fields/templates.html.twig
-
+ Report generation may take a long time to generate, depending on the number of collections and the period selected.
- Report generation may take a long time to generate, depending on the number of collections and the period selected.
+ Report Erzeugung kann lange dauern, anhängig von der Anzahl von Kollektionen und der ausgewählten Zeitweb/report/report_layout_child.html.twig
@@ -5331,9 +5327,9 @@
Anforderungenweb/admin/dashboard.html.twig
-
+ Reset and apply
- Reset and apply
+ Zurücksetzen und Vorlage anwendenweb/admin/index.html.twig
@@ -5356,9 +5352,9 @@
UnterauflösungMedia/Subdef/Image.php
-
+ Resource URL
- Resource URL
+ Resource URLprod/Share/record.html.twig
@@ -5366,14 +5362,14 @@
Zugangsanforderungweb/login/register-provider.html.twig
-
+ Restart the task every X records
- Restart the task every X records
+ Starten Sie die Aufgabe alle n Datensätze noch einmaltask-manager/task-editor/subdefs.html.twig
-
+ Restart the task if memory reaches
- Restart the task if memory reaches
+ Starten Sie die Aufgabe noch einmal, wenn der Speicher erreichttask-manager/task-editor/subdefs.html.twig
@@ -5412,9 +5408,9 @@
Zurück zur Bestellungprod/orders/order_item.html.twig
-
+ Review order on %website%
- Review order on %website%
+ Bestellung auf %website% ansehenNotification/Mail/MailInfoNewOrder.php
@@ -5482,9 +5478,9 @@
SMTP BenutzerForm/Configuration/EmailFormType.php
-
+ SSL
- SSL
+ SSLForm/Configuration/EmailFormType.php
@@ -5547,9 +5543,9 @@
SehenWorkZone/Browser/Browser.html.twig
-
+ See documentation at %url%
- See documentation at %url%
+ Lesen Sie die Dokumentation auf %url%Form/Configuration/WebservicesFormType.phpForm/Configuration/ExecutablesFormType.php
@@ -5671,12 +5667,12 @@
Session persistente
- anhaltende Session
+ anhaltende Sitzungweb/admin/connected-users.html.twig
-
+ Sessions
- Sessions
+ Sitzungenweb/account/base.html.twig
@@ -5841,17 +5837,17 @@
Stempel Logoadmin/collection/collection.html.twig
-
+ Start
- Start
+ Startadmin/task-manager/templates.html.twigadmin/task-manager/templates.html.twigadmin/task-manager/index.html.twigadmin/task-manager/index.html.twig
-
+ Start by creating one by using the "add" button on the left !
- Start by creating one by using the "add" button on the left !
+ Beginnen Sie mit der Erstellung: Klicken sie auf "Hinzufügen" links !prod/actions/Push.html.twig
@@ -5860,9 +5856,9 @@
Notification/Mail/MailInfoValidationReminder.phpNotification/Mail/MailInfoValidationRequest.php
-
+ Started
- Started
+ BegonnenPhrasea/Form/TaskForm.php
@@ -5870,9 +5866,9 @@
Zustand der Dokumente zu suchenweb/prod/index.html.twig
-
+ Status edition
- Status edition
+ Status Bearbeitungactions/Property/index.html.twig
@@ -5890,9 +5886,9 @@
Zustandprod/orders/order_box.html.twig
-
+ Stop
- Stop
+ Stopprod/upload/lazaret.html.twigprod/upload/lazaret.html.twigadmin/task-manager/templates.html.twig
@@ -5900,9 +5896,9 @@
admin/task-manager/index.html.twigadmin/task-manager/index.html.twig
-
+ Stopped
- Stopped
+ GestopptPhrasea/Form/TaskForm.php
@@ -6080,9 +6076,9 @@
Bitte trennen Sie die Tags durch ein Leerzeichen: Paris Urlaub RestaurantBridge/Dailymotion/upload.html.twig
-
+ TLS
- TLS
+ TLSForm/Configuration/EmailFormType.php
@@ -6095,9 +6091,9 @@
Dashboardweb/admin/tree.html.twig
-
+ Tags
- Tags
+ TagsBridge/Flickr/upload.html.twigBridge/Dailymotion/video_modify.html.twigBridge/Dailymotion/upload.html.twig
@@ -6109,26 +6105,26 @@
Zielgerätclasses/databox/subdef.php
-
+ Task Edition
- Task Edition
+ Aufgabe Bearbeitungtask-manager/task-editor/task.html.twig
-
+ Task Scheduler
- Task Scheduler
+ Aufgaben-SchedulerController/Admin/TaskManagerController.phpController/Admin/TaskManagerController.phpadmin/task-manager/index.html.twig
-
+ Task name
- Task name
+ Aufgabe NamePhrasea/Form/TaskForm.php
-
+ Task period (in seconds)
- Task period (in seconds)
+ Aufgabe Zeit (in Sekunden)Phrasea/Form/TaskForm.php
@@ -6201,9 +6197,9 @@
Authentisierungs Token in angegebenen Authentisierungskopf ist nicht gültigBridge/Api/Youtube.php
-
+ The delivery to %email% failed for the following reason : %reason%
- The delivery to %email% failed for the following reason : %reason%
+ Die Ablieferung zu %email% ist fehlgeschlagen, aus folgendem Grund : %reason%eventsmanager/notify/downloadmailfail.php
@@ -6211,9 +6207,9 @@
Zieldatensatz wird nicht erlaubtController/Prod/LazaretController.php
-
+ The document %name% has been quarantined
- The document %name% has been quarantined
+ Das Dokument %name% wurde unter Quarantäne gestellteventsmanager/notify/uploadquarantine.php
@@ -6284,9 +6280,9 @@
Der erforderte Sammelkorb existiert nichtController/Prod/BasketController.php
-
+ The task status
- The task status
+ Aufgabe StatusPhrasea/Form/TaskForm.php
@@ -6324,9 +6320,9 @@
Kein Benutzer zu hinzufügenuser/import/view.html.twig
-
+ Thesaurus Min score
- Thesaurus Min score
+ Thesaurus Hits (minimal)SearchEngine/Elastic/ElasticsearchSettingsFormType.php
@@ -6334,9 +6330,9 @@
Thesaurus Sprungadmin/fields/templates.html.twig
-
+ Thesaurus ou CTerms invalide
- Thesaurus ou CTerms invalide
+ Thesaurus oder CTerms ungültigweb/thesaurus/load-thesaurus.html.twig
@@ -6375,9 +6371,9 @@
Dieses Feld ist erforderlichweb/admin/index.html.twig
-
+ This field represents the title of the document
- This field represents the title of the document
+ Dieses Feld wird für den Titel des Dokuments benutztprod/actions/edit_default.html.twig
@@ -6391,9 +6387,9 @@
Hier ist eine Schabloneweb/admin/users.html.twig
-
+ This link is valid until
- This link is valid until
+ URL ist gültig bistemplates/web/email-template.html.twig
@@ -6464,9 +6460,9 @@
Klicken Sie auf die Kamera, um einen Screenshot zu erstellenactions/Tools/index.html.twig
-
+ Token
- Token
+ Tokenweb/developers/application.html.twig
@@ -6584,9 +6580,9 @@
Es ist nicht möglich den Benutzer zur Liste hinzufügenController/Prod/UsrListController.php
-
+ Unable to authenticate with %provider_name%
- Unable to authenticate with %provider_name%
+ Unmöglich, mit %provider_name% zu authentifizierenController/Root/LoginController.php
@@ -6596,19 +6592,19 @@
web/setup/step2.html.twigweb/setup/step2.html.twig
-
+ Unable to create list %name%
- Unable to create list %name%
+ Unmöglich, die Liste %name% zu erstellenController/Prod/UsrListController.php
-
+ Unable to create template, the name is already used.
- Unable to create template, the name is already used.
+ Unmöglich, eine Vorlage zu erstellen; die Name wird schon benutzt.Controller/Admin/UserController.php
-
+ Unable to create the user.
- Unable to create the user.
+ Unmöglich, den Benutzer zu erstellen.Controller/Admin/UserController.php
@@ -6653,9 +6649,9 @@
Es ist nicht möglich, die Liste zu aktualisierenController/Prod/UsrListController.php
-
+ Unauthorized action
- Unauthorized action
+ Unerlaubte Handlungweb/common/dialog_export.html.twig
@@ -6691,14 +6687,14 @@
Unbekannter Grundprod/upload/upload-flash.html.twig
-
+ Unknown user %user_id%
- Unknown user %user_id%
+ Unbekannter Benutzer %user_id%Controller/Prod/PushController.php
-
+ Unknown user %usr_id%
- Unknown user %usr_id%
+ Unbekannter Benutzer %usr_id%Controller/Prod/PushController.php
@@ -6706,9 +6702,9 @@
Server nicht erreichbarController/Admin/DataboxesController.php
-
+ Update of your email address on %application%
- Update of your email address on %application%
+ Aktualisierung von Ihrer Email Adresse auf %application%Notification/Mail/MailSuccessEmailUpdate.php
@@ -6745,9 +6741,9 @@
Hochladen Sie eine csv Datei, um Benutzer zu erstellenuser/import/file.html.twig
-
+ Upload failed on %application%
- Upload failed on %application%
+ Upload ist fehlgeschlagen auf %application%Notification/Mail/MailInfoBridgeUploadFailed.php
@@ -6760,9 +6756,9 @@
von: %username% hochgeladenprod/upload/lazaret.html.twig
-
+ Use Google Chart API
- Use Google Chart API
+ Benutzen Sie die Google Chart APIForm/Configuration/WebservicesFormType.php
@@ -6770,9 +6766,9 @@
Benutzen Sie einen SMTP ServerForm/Configuration/EmailFormType.php
-
+ Use latest search settings on Production loading
- Use latest search settings on Production loading
+ die letzte gestellte Frage in Prod benutzenweb/prod/index.html.twig
@@ -6898,14 +6894,14 @@
eventsmanager/notify/validate.phplightbox/IE6/validate.html.twig
-
+ Validation from %user%
- Validation from %user%
+ Benutzer %user% hat seinen Bestätigungsbericht gesendetController/Prod/PushController.php
-
+ Validation request from %user% for '%title%'
- Validation request from %user% for '%title%'
+ Benutzer %user% hat für '%title%' eine Bestätigung angefragtNotification/Mail/MailInfoValidationRequest.php
@@ -6948,19 +6944,19 @@
Entleerung von KollektionenTaskManager/Job/EmptyCollectionJob.php
-
+ Video
- Video
+ Videoweb/prod/index.html.twig
-
+ Video Codec
- Video Codec
+ Video CodecMedia/Subdef/Video.php
-
+ Videos
- Videos
+ VideosBridge/Api/Dailymotion.phpBridge/Api/Youtube.php
@@ -6969,9 +6965,9 @@
Ansehenactions/Feedback/list.html.twig
-
+ View on %title%
- View on %title%
+ Auf %title% sehenNotification/Mail/MailInfoNewPublication.php
@@ -7033,9 +7029,9 @@
Sie haben dieser Applikationen eine Zugriffsberechtigung auf Ihr Konto erteiltweb/account/authorized_apps.html.twig
-
+ Vous avez envoye cette demande a %n% utilisateurs
- Vous avez envoye cette demande a %n% utilisateurs
+ Sie haben diese Anfrage zu %n% Benutzer gesendetModel/Entities/ValidationSession.php
@@ -7058,9 +7054,9 @@
Sie können eine Bewertung der Bilder in diesem Sammelkorb abgebenprod/WorkZone/Macros.html.twig
-
+ Vous aviez envoye cette demande a %n% utilisateurs
- Vous aviez envoye cette demande a %n% utilisateurs
+ Sie hatten diese Anfrage zu %n% Benutzer gesendetModel/Entities/ValidationSession.php
@@ -7262,9 +7258,9 @@
Meta schreibenweb/admin/subdefs.html.twig
-
+ YYYY/MM/DD
- YYYY/MM/DD
+ YYYY/MM/DDweb/prod/index.html.twigweb/prod/index.html.twig
@@ -7409,14 +7405,14 @@
Sie besitzen nicht genügend Zugriffsrechte, um die ausgewählte Dokumente zu löschenprod/actions/delete_records_confirm.html.twig
-
+ You do not have the permission to move records to %collection%
- You do not have the permission to move records to %collection%
+ Sie dürfen nicht, Datensätze zu %collection% zu bewegenController/Prod/MoveCollectionController.php
-
+ You have %quantity% days to validate the selection.
- You have %quantity% days to validate the selection.
+ Sie haben noch %quantity% Tage, um die Auswahl zu bestätigenNotification/Mail/MailInfoValidationRequest.php
@@ -7429,9 +7425,9 @@
Sie haben versucht, zuviele Dateien anzustehenprod/upload/upload-flash.html.twig
-
+ You have not access to this basket
- You have not access to this basket
+ Sie haben keinen Zugriff auf diesen SammelkorbModel/Repositories/BasketRepository.php
@@ -7454,9 +7450,9 @@
Für Ihre Zugriffsanfrage müssen Sie eine Benehmigung von einem Administrator warten.Notification/Mail/MailSuccessEmailConfirmationUnregistered.php
-
+ You just received a push containing %quantity% documents from %user%
- You just received a push containing %quantity% documents from %user%
+ Sie haben gerade einen Push mit %quantity% Dokumente von %user% bekommenNotification/Mail/MailInfoPushReceived.php
@@ -7490,14 +7486,14 @@
Controller/Root/LoginController.phpController/Root/LoginController.php
-
+ You will no longer receive notifications at %old_email%
- You will no longer receive notifications at %old_email%
+ Sie werden Benachrichtigungen auf %old_email% nicht mehr bekommenHelper/User/Edit.php
-
+ You will now receive notifications at %new_email%
- You will now receive notifications at %new_email%
+ Sie werden nun Benachrichtigungen auf %new_email% bekommenHelper/User/Edit.php
@@ -7505,9 +7501,9 @@
Ihr %provider_name% Konto entspricht einem vorhandenen Kontologin/providers/mapping.html.twig
-
+ Your access on %application%
- Your access on %application%
+ Ihr Zugriff auf %application%Notification/Mail/MailSuccessEmailConfirmationRegistered.php
@@ -7515,14 +7511,14 @@
Ihr Konto ist gesperrt, bitte folgen Sie das Link, um es freizuschaltenweb/login/index.html.twig
-
+ Your account on %application%
- Your account on %application%
+ Ihr Konto auf %application%Notification/Mail/MailRequestPasswordSetup.php
-
+ Your account with the login %login% as been created
- Your account with the login %login% as been created
+ Ihr Konto mit Benutzername %login% wurde erfolgreich erstelltNotification/Mail/MailRequestPasswordSetup.php
@@ -7542,7 +7538,7 @@
Your documents are ready. If the download does not start, %before_link%click here%after_link%
- Ihre Dokumente sind fertig. Falls das Herunterladen nicht startet, bitte %before_link%klicken Sie hier%after_link%
+ Ihre Dokumente sind fertig. Falls das Herunterladen nicht startet, bitte %before_link% klicken Sie hier %after_link%actions/Download/prepare.html.twig
@@ -7576,9 +7572,9 @@
Ihre Media und Unterauflösungen (Voransichten, Miniaturansichten..) werden in diese Verzeichnisse gespeichert.web/setup/step2.html.twig
-
+ Your registration requests have been taken into account.
- Your registration requests have been taken into account.
+ Ihre Registrierungsanfragen wurden berücksichtigtController/Root/AccountController.php
@@ -7727,9 +7723,9 @@
prod/WorkZone/Macros.html.twigprod/WorkZone/Macros.html.twig
-
+ actual status
- actual status
+ Aktuelles Statusadmin/task-manager/index.html.twig
@@ -7836,9 +7832,9 @@
eine neue Datenbank erstellenweb/admin/databases.html.twig
-
+ admin::base: databox not found
- admin::base: databox not found
+ Databox nicht gefundenController/Admin/DataboxController.php
@@ -7882,9 +7878,9 @@
Strukturweb/admin/structure.html.twig
-
+ admin::base: subdefs to be created :
- admin::base: subdefs to be created :
+ Anzahl von Unterauflösungen zu erstellen :admin/databox/databox.html.twig
@@ -8483,45 +8479,45 @@
Benutzerweb/admin/connected-users.html.twig
-
+ admin::plugins: about
- admin::plugins: about
+ Überadmin/plugins/show_fallback.html.twig
-
+ admin::plugins: name
- admin::plugins: name
+ Plugin Nameadmin/plugins/show_fallback.html.twig
-
+ admin::plugins: plugins
- admin::plugins: plugins
+ Pluginsweb/admin/tree.html.twigadmin/plugins/index.html.twig
-
+ admin::plugins: retrieveConfigurationError
- admin::plugins: retrieveConfigurationError
+ Fehler im Konfigurationsabrufadmin/plugins/show_fallback.html.twig
-
+ admin::plugins: version
- admin::plugins: version
+ Versionadmin/plugins/show_fallback.html.twig
-
+ admin::register: Inscription automatique sur %application%
- admin::register: Inscription automatique sur %application%
+ Automatische Anmeldung auf %application%Notification/Mail/MailInfoSomebodyAutoregistered.php
-
+ admin::register: Nouvelle commande sur %application%
- admin::register: Nouvelle commande sur %application%
+ Neue Bestellung auf %application%Notification/Mail/MailInfoNewOrder.php
-
+ admin::register: demande d'inscription sur %application%
- admin::register: demande d'inscription sur %application%
+ Anmeldungsanfrage auf %application%Notification/Mail/MailInfoUserRegistered.php
@@ -8566,9 +8562,9 @@
Struktur Einstellungweb/admin/tree.html.twig
-
+ admin::sugval: Attention, passer en mode graphique implique la perte des modifications du xml si vous n'appliquez pas les changements avant.
- admin::sugval: Attention, passer en mode graphique implique la perte des modifications du xml si vous n'appliquez pas les changements avant.
+ Vorsicht ! Als Grafikmodus werden Sie die ungespeicherte Veränderungen in XML lösen. Bitte wenden Sie die Veränderungen zuerst an.admin/collection/suggested_value.html.twig
@@ -8655,9 +8651,9 @@
Controller/Prod/ToolsController.phpactions/Tools/index.html.twig
-
+ an error occured : %message%
- an error occured : %message%
+ Ein Fehler ist aufgetreten : %message%Phrasea/Controller/SetupController.php
@@ -8686,9 +8682,9 @@
Phrasea/Twig/PhraseanetExtension.phptask-manager/task-editor/subdefs.html.twig
-
+ auto*
- auto*
+ auto*prod/results/help.html.twig
@@ -8701,14 +8697,14 @@
Aprilclasses/module/report.php
-
+ bad character at line %line%
- bad character at line %line%
+ Falsches Zeichen in Zeile %line%Controller/Thesaurus/ThesaurusController.php
-
+ bad encoding at line %line%
- bad encoding at line %line%
+ Falsche Codierung in Zeile %line%Controller/Thesaurus/ThesaurusController.php
@@ -9170,14 +9166,14 @@
ablehnenclasses/databox/cgu.php
-
+ cgus:: CGUs de la base %databox_name%
- cgus:: CGUs de la base %databox_name%
+ Nutzungsbedingungen von Databank %databox_name%classes/databox/cgu.php
-
+ cgus:: CGUs de la base %name%
- cgus:: CGUs de la base %name%
+ Nutzungsbedingungen von Databank %name%classes/databox/cgu.php
@@ -9226,9 +9222,9 @@
Alles aktivierenweb/report/listColumn.html.twig
-
+ collection.label.unknown
- collection.label.unknown
+ Unbekannte Kollektionlib/classes/phrasea.php
@@ -9247,9 +9243,9 @@
Controller/Report/RootController.phpController/Report/ActivityController.php
-
+ copyClipboardLabel
- copyClipboardLabel
+ in der Zwischenablage kopierenprod/Share/record.html.twigprod/Share/record.html.twigprod/Share/record.html.twig
@@ -9309,9 +9305,9 @@
Na?eprod/results/help.html.twig
-
+ edit
- edit
+ Bearbeitenprod/WorkZone/Macros.html.twigweb/account/account.html.twigweb/account/account.html.twig
@@ -9357,9 +9353,9 @@
Titelprod/actions/edit_default.html.twig
-
+ effacer (OK) ou quitter (Annuler) ?
- effacer (OK) ou quitter (Annuler) ?
+ Löschen (OK) oder schliessen (Abbrechen) ?web/thesaurus/load-thesaurus.html.twig
@@ -9449,23 +9445,23 @@
Controller/Prod/ToolsController.phpController/Prod/ToolsController.php
-
+ filtrer les resultats sur la colonne %colonne%
- filtrer les resultats sur la colonne %colonne%
+ die Ergebnisse auf die Spalte %colonne% filternController/Report/InformationController.phpController/Report/InformationController.phpController/Report/RootController.phpController/Report/ActivityController.php
-
+ flash
- flash
+ FlashPhrasea/Twig/PhraseanetExtension.phptask-manager/task-editor/subdefs.html.twig
-
+ for the following reasons : %reasons%
- for the following reasons : %reasons%
+ aus folgenden Gründen : %reasons%eventsmanager/notify/uploadquarantine.php
@@ -9525,9 +9521,9 @@
Änderungen wurden hergestelltadmin/databox/databox.html.twig
-
+ from
- from
+ vonweb/report/report_layout_child.html.twigweb/report/report_layout_child.html.twig
@@ -9695,19 +9691,19 @@
Hier ist eine Nachricht über Ihre ZugriffanfragenNotification/Mail/MailSuccessAccessRequest.php
-
+ login::register:email: Votre compte %application%
- login::register:email: Votre compte %application%
+ Ihr Konto %application%Notification/Mail/MailSuccessAccessRequest.php
-
+ login::register:email: Vous avez ete accepte sur les collections suivantes :
- login::register:email: Vous avez ete accepte sur les collections suivantes :
+ Ihr Zugriff wurde für die folgende Kollektionen genehmigt :Controller/Admin/UserController.php
-
+ login::register:email: Vous avez ete refuse sur les collections suivantes :
- login::register:email: Vous avez ete refuse sur les collections suivantes :
+ Ihr Zugriff wurde für die folgende Kollektionen abgelehnt :Controller/Admin/UserController.php
@@ -9741,9 +9737,9 @@
ursprüngliche Dateiname nach Ersetzung aktualisierenactions/Tools/index.html.twig
-
+ name
- name
+ Nameadmin/task-manager/index.html.twig
@@ -9804,9 +9800,9 @@
web/admin/statusbit.html.twigweb/admin/statusbit.html.twig
-
+ over-indent at line %line%
- over-indent at line %line%
+ Schlechte Einrückung Zeile %line%Controller/Thesaurus/ThesaurusController.php
@@ -9857,7 +9853,7 @@
panier::Supression d'un element d'un reportage
- Löschen von einem Element einer Reportage
+ Löschen von einem Element eines BerichtsController/Prod/LanguageController.php
@@ -9984,9 +9980,9 @@
web/admin/databases.html.twigweb/admin/databases.html.twig
-
+ phraseanet:: plugin.workzone
- phraseanet:: plugin.workzone
+ Plugin WorkZoneweb/prod/tab_headers.html.twig
@@ -10077,7 +10073,7 @@
phraseanet::chargement
- ladend
+ Bitte warten...Controller/Prod/LanguageController.phpprod/actions/edit_default.html.twigweb/thesaurus/thesaurus.html.twig
@@ -10168,14 +10164,14 @@
gesternlib/classes/phraseadate.php
-
+ phraseanet::temps:: il y a %quantity% heures
- phraseanet::temps:: il y a %quantity% heures
+ vor %quantity% Stundelib/classes/phraseadate.php
-
+ phraseanet::temps:: il y a %quantity% minutes
- phraseanet::temps:: il y a %quantity% minutes
+ vor %quantity% Minutenlib/classes/phraseadate.php
@@ -10303,9 +10299,9 @@
Ansicht Statistikenprod/preview/popularity.html.twig
-
+ previewLinkLabel
- previewLinkLabel
+ ansichtenprod/Share/record.html.twigprod/Share/record.html.twigprod/Share/record.html.twig
@@ -10484,19 +10480,19 @@
Suchenprod/actions/edit_default.html.twig
-
+ prod::facet:base_label
- prod::facet:base_label
+ DatenbankenController/Prod/QueryController.php
-
+