From 326d1375ad41acc1085c404c1e4782593544126f Mon Sep 17 00:00:00 2001 From: Santiago Castro Date: Sun, 16 Apr 2017 21:03:41 -0300 Subject: [PATCH 01/56] Fix broken Markdown headings --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7062458798..9b98fc7e6c 100644 --- a/README.md +++ b/README.md @@ -3,17 +3,17 @@ Phraseanet 4.0 - Digital Asset Management application [![Build Status](https://secure.travis-ci.org/alchemy-fr/Phraseanet.png?branch=master)](http://travis-ci.org/alchemy-fr/Phraseanet) -#Features : +# Features : - Metadata Management (include Thesaurus and DublinCore Mapping) - RestFull APIS (See Developer Documentation https://docs.phraseanet.com/Devel) - Bridge to Youtube/Dailymotion/Flickr -#Documentation : +# Documentation : https://docs.phraseanet.com/ -#Installation : +# Installation : You **must** not download the source from GitHub, but download a packaged version here : @@ -21,12 +21,12 @@ https://www.phraseanet.com/download/ And follow the install steps described at https://docs.phraseanet.com/Admin/ -#Development : +# Development : For development purpose Phraseanet is shipped with ready to use development environments using vagrant. See https://docs.phraseanet.com/Devel/ -#License : +# License : Phraseanet is licensed under GPL-v3 license. From 9b2ffed73725f4210b4e557d2f3263560f0eb4fb Mon Sep 17 00:00:00 2001 From: Xavier Rousset Date: Fri, 21 Apr 2017 18:08:29 +0200 Subject: [PATCH 02/56] Update Vagrant provisionning. fix mariaDB vars names, fix windows.sh paths --- resources/ansible/roles/mariadb/tasks/main.yml | 6 +++--- resources/ansible/windows-always.sh | 2 ++ resources/ansible/windows.sh | 6 +++--- 3 files changed, 8 insertions(+), 6 deletions(-) create mode 100644 resources/ansible/windows-always.sh diff --git a/resources/ansible/roles/mariadb/tasks/main.yml b/resources/ansible/roles/mariadb/tasks/main.yml index c28b0fb19e..55b0ece691 100644 --- a/resources/ansible/roles/mariadb/tasks/main.yml +++ b/resources/ansible/roles/mariadb/tasks/main.yml @@ -41,9 +41,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 From 3c3d324fc5e8b7ea602816c6d3d681a52d8f14fd Mon Sep 17 00:00:00 2001 From: Xavier Rousset Date: Wed, 3 May 2017 12:08:30 +0200 Subject: [PATCH 03/56] Go travis ! go ! --- resources/ansible/roles/mariadb/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/ansible/roles/mariadb/tasks/main.yml b/resources/ansible/roles/mariadb/tasks/main.yml index 55b0ece691..61e4b211c4 100644 --- a/resources/ansible/roles/mariadb/tasks/main.yml +++ b/resources/ansible/roles/mariadb/tasks/main.yml @@ -50,4 +50,4 @@ when: mariadb.dump - name: mariadb | Create users - mysql_user: name={{ mariadb.user }} password={{ mariadb.password }} priv=*.*:ALL state=present login_user=root login_password={{ mariadb.root_password }} + mysql_user: name={{ mariadb.user }} password={{ mariadb.password }} priv=*.*:ALL state=present login_user=root login_password={{ mariadb.root_password }} \ No newline at end of file From addb44583560a41605808d55152a7b5b918551ea Mon Sep 17 00:00:00 2001 From: jygaulier Date: Thu, 4 May 2017 15:25:41 +0200 Subject: [PATCH 04/56] Update main.yml --- resources/ansible/roles/mariadb/tasks/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/ansible/roles/mariadb/tasks/main.yml b/resources/ansible/roles/mariadb/tasks/main.yml index 61e4b211c4..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 @@ -50,4 +51,4 @@ when: mariadb.dump - name: mariadb | Create users - mysql_user: name={{ mariadb.user }} password={{ mariadb.password }} priv=*.*:ALL state=present login_user=root login_password={{ mariadb.root_password }} \ No newline at end of file + mysql_user: name={{ mariadb.user }} password={{ mariadb.password }} priv=*.*:ALL state=present login_user=root login_password={{ mariadb.root_password }} From 2ab7dcdd267086ec9d7b7c9975674f886555813c Mon Sep 17 00:00:00 2001 From: jygaulier Date: Thu, 4 May 2017 15:39:49 +0200 Subject: [PATCH 05/56] Update main.yml --- resources/ansible/roles/mariadb/tasks/main.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/resources/ansible/roles/mariadb/tasks/main.yml b/resources/ansible/roles/mariadb/tasks/main.yml index 275b348085..55b0ece691 100644 --- a/resources/ansible/roles/mariadb/tasks/main.yml +++ b/resources/ansible/roles/mariadb/tasks/main.yml @@ -3,7 +3,6 @@ - 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 From ef7d3e365ad349a15c6d5dc8251de08f4378fc90 Mon Sep 17 00:00:00 2001 From: jygaulier Date: Thu, 4 May 2017 15:55:31 +0200 Subject: [PATCH 06/56] Update main.yml --- resources/ansible/roles/mariadb/tasks/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/ansible/roles/mariadb/tasks/main.yml b/resources/ansible/roles/mariadb/tasks/main.yml index 55b0ece691..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 From e591a4160fee4eb82ef46829486a85dd7c445195 Mon Sep 17 00:00:00 2001 From: moctardiouf Date: Thu, 18 May 2017 11:04:20 +0200 Subject: [PATCH 07/56] PHRAS-1359_remove_back_slash_n (#2098) removing \n into SQL requests causing memcached content deletion issues. --- lib/classes/cache/databox.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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') From cf0440dda60968ba7b54e0333ceca96f920ee3c0 Mon Sep 17 00:00:00 2001 From: moctardiouf Date: Wed, 14 Jun 2017 11:05:19 +0200 Subject: [PATCH 08/56] PHRAS-1409_fix-push-list-management-error-500 --- lib/classes/User/Query.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; From 9e258cfae48cc5922d90733723e54223d9e4e286 Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Wed, 2 Aug 2017 17:18:53 +0400 Subject: [PATCH 09/56] fix navigation user list and refactor layout --- resources/www/admin/styles/main.scss | 9 ++++++++ templates/web/admin/users.html.twig | 31 +++++++++++++++++++++++----- 2 files changed, 35 insertions(+), 5 deletions(-) diff --git a/resources/www/admin/styles/main.scss b/resources/www/admin/styles/main.scss index f04f92f2b7..f7570b2c95 100644 --- a/resources/www/admin/styles/main.scss +++ b/resources/www/admin/styles/main.scss @@ -327,6 +327,15 @@ div.switch_right.unchecked { text-decoration: none; } +#users_page .user_modifier { + margin-top: 5px; + margin-left: 10px; +} + +#users_page .user_deleter { + margin-top: 5px; +} + @import './databases'; @import './fields'; @import './tables'; diff --git a/templates/web/admin/users.html.twig b/templates/web/admin/users.html.twig index 3c424a14e1..718c205d7a 100644 --- a/templates/web/admin/users.html.twig +++ b/templates/web/admin/users.html.twig @@ -54,6 +54,9 @@ + + +
{{ 'Apply a template' | trans }} @@ -207,8 +210,6 @@ {% set n_par_page = 50 %} - - @@ -434,7 +435,7 @@ }); $('#users tbody tr, #users tbody td').on('dblclick', function (evt) { - $('#users_page_form .user_modifier').trigger('click'); + $('.user_modifier').trigger('click'); }); $('#users tbody tr, #users tbody td').on('click', function (evt) { @@ -543,7 +544,7 @@ return false; }); - $('#users_page_form .user_modifier').on('click', function () { + $('.user_modifier').on('click', function () { var users = p4.users.sel.join(';'); if (users === '') { return false; @@ -564,7 +565,7 @@ return false; }); - $('#users_page_form .user_deleter').on('click', function () { + $('.user_deleter').on('click', function () { var users = p4.users.sel.join(';'); if (users === '') { return false; @@ -649,6 +650,26 @@ }); } }); + + $("#users_page_form .input-mini").keydown(function (e) { + if (e.which == 13) { + //prevent form from being submitted + e.preventDefault(); + } + }); + $("#users_page_form .input-mini").keyup(function (e) { + if (e.which == 13) { + e.preventDefault(); + var form = $('#users_page_form'); + var current_page = parseInt($('.input-mini').val()); + var perPage = parseInt($('select[name="per_page"]', form).val()); + current_page = isNaN(current_page) || current_page < 1 + || current_page > {{ pages|floor }} ? 1 : current_page; + var offset_start = (current_page-1) * perPage; + $('input[name="offset_start"]', form).val(offset_start); + $('#users_page_form').trigger('submit'); + } + }); }); function exportlist() From a07bfecd85ddff1142e3c97c7cc56c1dd05bf85f Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Thu, 3 Aug 2017 11:55:53 +0400 Subject: [PATCH 10/56] add feedback and reload side menu when activating collection --- templates/web/admin/databox/databox.html.twig | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/templates/web/admin/databox/databox.html.twig b/templates/web/admin/databox/databox.html.twig index 04273a27c3..5b023477ab 100644 --- a/templates/web/admin/databox/databox.html.twig +++ b/templates/web/admin/databox/databox.html.twig @@ -189,7 +189,7 @@
  • {{ baseId|bas_labels(app) }} - {{ "Activer" | trans }}> + {{ "Activer" | trans }}>
  • {% endfor %} @@ -375,6 +375,10 @@ } else if(submitLink.hasClass('reload-tree')) { AdminApp.LeftView.reloadTree('bases:bases', true); } + //display message + if (typeof datas.msg !== "undefined") { + alert(datas.msg); + } } else { alert(datas.msg); } From 64ad521d61440ba9218802bec0afcd5b2fce8acd Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Thu, 3 Aug 2017 14:31:03 +0400 Subject: [PATCH 11/56] add filter to user list --- templates/web/admin/users.html.twig | 54 ++++++++++++++--------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/templates/web/admin/users.html.twig b/templates/web/admin/users.html.twig index 718c205d7a..2f10642b9c 100644 --- a/templates/web/admin/users.html.twig +++ b/templates/web/admin/users.html.twig @@ -80,45 +80,45 @@ - - - - - - - - @@ -269,11 +269,11 @@ var sort = $('input', $this).val(); if ((sort == $('#users_page_form input[name="srt"]').val()) - && ($('#users_page_form input[name="ord"]').val() == 'asc')) { - var ord = 'desc'; + && ($('#users_page_form input[name="ord"]').val() == 'ASC')) { + var ord = 'DESC'; } else { - var ord = 'asc'; + var ord = 'ASC'; } $('#users_page_form input[name="srt"]').val(sort); From a0cad9ec8f606609cbc5f8a65afa4aabea6e417b Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Mon, 14 Aug 2017 10:26:52 +0400 Subject: [PATCH 12/56] Fix localization in datepicker - admin --- resources/www/common/js/components/common.js | 4 +- .../web/admin/editusers_timelimit.html.twig | 76 +++++++++-------- .../admin/editusers_timelimit_sbas.html.twig | 83 ++++++++++--------- 3 files changed, 86 insertions(+), 77 deletions(-) diff --git a/resources/www/common/js/components/common.js b/resources/www/common/js/components/common.js index 272011e0b5..5f5db50428 100644 --- a/resources/www/common/js/components/common.js +++ b/resources/www/common/js/components/common.js @@ -1,4 +1,5 @@ var p4 = p4 || {}; +var datepickerLang = []; var commonModule = (function ($, p4) { $(document).ready(function () { @@ -13,7 +14,7 @@ var commonModule = (function ($, p4) { var locale = $.cookie('locale'); - var jq_date = p4.lng = typeof locale !== "undefined" ? locale.split('_').reverse().pop() : 'en'; + var jq_date = p4.lng = typeof locale !== "undefined" ? locale.split('_').reverse().pop() : $('html').attr('lang'); if (jq_date == 'en') { jq_date = 'en-GB'; @@ -21,6 +22,7 @@ var commonModule = (function ($, p4) { $.datepicker.setDefaults({showMonthAfterYear: false}); $.datepicker.setDefaults($.datepicker.regional[jq_date]); + datepickerLang = $.datepicker.regional[jq_date]; var cache = $('#mainMenu .helpcontextmenu'); $('.context-menu-item', cache).hover(function () { diff --git a/templates/web/admin/editusers_timelimit.html.twig b/templates/web/admin/editusers_timelimit.html.twig index b57f04556e..12009c600d 100644 --- a/templates/web/admin/editusers_timelimit.html.twig +++ b/templates/web/admin/editusers_timelimit.html.twig @@ -37,41 +37,45 @@ diff --git a/templates/web/admin/editusers_timelimit_sbas.html.twig b/templates/web/admin/editusers_timelimit_sbas.html.twig index dc53730c44..8c795acba1 100644 --- a/templates/web/admin/editusers_timelimit_sbas.html.twig +++ b/templates/web/admin/editusers_timelimit_sbas.html.twig @@ -33,45 +33,48 @@ From 191a59c82791ba80c740b21fbc7151247e4433d5 Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Tue, 15 Aug 2017 12:54:16 +0400 Subject: [PATCH 13/56] add search to candidate tab refactor search_term function in backend --- .../Thesaurus/ThesaurusXmlHttpController.php | 273 ++++++++++-------- .../ControllerProvider/Thesaurus/Xmlhttp.php | 2 +- templates/web/prod/tab_thesaurus.html.twig | 49 ++-- 3 files changed, 173 insertions(+), 151 deletions(-) diff --git a/lib/Alchemy/Phrasea/Controller/Thesaurus/ThesaurusXmlHttpController.php b/lib/Alchemy/Phrasea/Controller/Thesaurus/ThesaurusXmlHttpController.php index 2e970e51d8..b5a2ff441e 100644 --- a/lib/Alchemy/Phrasea/Controller/Thesaurus/ThesaurusXmlHttpController.php +++ b/lib/Alchemy/Phrasea/Controller/Thesaurus/ThesaurusXmlHttpController.php @@ -950,6 +950,14 @@ class ThesaurusXmlHttpController extends Controller return [$term, $context]; } + /** + * @return \unicode + */ + private function getUnicode() + { + return $this->app['unicode']; + } + private function getBranchesHTML($bid, DOMElement $srcnode, &$html, $depth) { $tid = $srcnode->getAttribute('id'); @@ -1088,6 +1096,42 @@ class ThesaurusXmlHttpController extends Controller return json_encode($ret, JSON_PRETTY_PRINT); } + private function getBrancheJson($bid, DOMElement $srcnode, &$ret, $depth) + { + $tid = $srcnode->getAttribute('id'); + $nts = 0; + $allsy = array(); + for ($n = $srcnode->firstChild; $n; $n = $n->nextSibling) { + if ($n->nodeName == 'sy') { + $t = $n->getAttribute('v'); + $allsy[] = array( + 'id' => $n->getAttribute('id'), + 't' => $t, + 'lng' => $n->getAttribute('lng'), + 'bold' => (bool)$n->getAttribute('bold'), + ); + } elseif ($n->nodeName == 'te') { + $nts++; + } + } + + $nret = array( + 'id' => $tid, + 'nts' => $nts, + 'synonyms' => $allsy, + 'children' => array(), + ); + + for ($n = $srcnode->firstChild; $n; $n = $n->nextSibling) { + if ($n->nodeName == 'te') { + if ($n->getAttribute('open')) { + $nret['children'][] = $this->getBrancheJson($bid, $n, $ret['children'], $depth + 1); + } + } + } + + return $nret; + } public function openBranchesXml(Request $request) { @@ -1160,43 +1204,6 @@ class ThesaurusXmlHttpController extends Controller return new Response($zhtml, 200, array('Content-Type' => 'text/xml')); } - private function getBrancheJson($bid, DOMElement $srcnode, &$ret, $depth) - { - $tid = $srcnode->getAttribute('id'); - $nts = 0; - $allsy = array(); - for ($n = $srcnode->firstChild; $n; $n = $n->nextSibling) { - if ($n->nodeName == 'sy') { - $t = $n->getAttribute('v'); - $allsy[] = array( - 'id' => $n->getAttribute('id'), - 't' => $t, - 'lng' => $n->getAttribute('lng'), - 'bold' => (bool)$n->getAttribute('bold'), - ); - } elseif ($n->nodeName == 'te') { - $nts++; - } - } - - $nret = array( - 'id' => $tid, - 'nts' => $nts, - 'synonyms' => $allsy, - 'children' => array(), - ); - - for ($n = $srcnode->firstChild; $n; $n = $n->nextSibling) { - if ($n->nodeName == 'te') { - if ($n->getAttribute('open')) { - $nret['children'][] = $this->getBrancheJson($bid, $n, $ret['children'], $depth + 1); - } - } - } - - return $nret; - } - private function getBrancheXML($bid, DOMElement $srcnode, &$html, $depth) { $tid = $srcnode->getAttribute('id'); @@ -1428,21 +1435,26 @@ class ThesaurusXmlHttpController extends Controller $html = ''; $sbid = (int) $request->get('sbid'); + $type = $request->get('typ'); try { $databox = $this->findDataboxById($sbid); + if ($type === "CT") { + $dom = $databox->get_dom_cterms(); + $html = "" . '
  • - + {{ 'phraseanet:: aide' | trans }} diff --git a/templates/web/setup/step2.html.twig b/templates/web/setup/step2.html.twig index 35a62b8517..3984f7fd27 100644 --- a/templates/web/setup/step2.html.twig +++ b/templates/web/setup/step2.html.twig @@ -346,7 +346,7 @@
  • + {{ 'admin::compte-utilisateur id utilisateur' | trans }} - {{ parm.ord == 'asc' ? '▼' : '▲' }} - + {{ parm.ord == 'ASC' ? '▼' : '▲' }} + + {{ 'admin::compte-utilisateur identifiant' | trans }} - {{ parm.ord == 'asc' ? '▼' : '▲' }} - + {{ parm.ord == 'ASC' ? '▼' : '▲' }} + + {{ 'First/Last Name' | trans }} - {{ parm.ord == 'asc' ? '▼' : '▲' }} - + {{ parm.ord == 'ASC' ? '▼' : '▲' }} + + {{ 'admin::compte-utilisateur societe' | trans }} - {{ parm.ord == 'asc' ? '▼' : '▲' }} - + {{ parm.ord == 'ASC' ? '▼' : '▲' }} + + {{ 'admin::compte-utilisateur email' | trans }} - {{ parm.ord == 'asc' ? '▼' : '▲' }} - + {{ parm.ord == 'ASC' ? '▼' : '▲' }} + + {{ 'admin::compte-utilisateur pays' | trans }} - {{ parm.ord == 'asc' ? '▼' : '▲' }} - + {{ parm.ord == 'ASC' ? '▼' : '▲' }} + + {{ 'admin::compte-utilisateur dernier modele applique' | trans }} - {{ parm.ord == 'asc' ? '▼' : '▲' }} - + {{ parm.ord == 'ASC' ? '▼' : '▲' }} + + {{ 'admin::compte-utilisateur date de creation' | trans }} - {{ parm.ord == 'asc' ? '▼' : '▲' }} - + {{ parm.ord == 'ASC' ? '▼' : '▲' }} +

    - + {{ 'Prerequisite and Configuration' | trans }}

    From 2d17177ded262c6c0243de802789a9ba9411d099 Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Tue, 22 Aug 2017 17:07:05 +0400 Subject: [PATCH 21/56] hide facets containing single element from preference menu --- templates/web/prod/index.html.twig | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/templates/web/prod/index.html.twig b/templates/web/prod/index.html.twig index ca81ae2ab4..0653162a57 100644 --- a/templates/web/prod/index.html.twig +++ b/templates/web/prod/index.html.twig @@ -143,6 +143,8 @@ $(document).ready(function(){ prodApp.appEvents.emit('workzone.doRemoveWarning', "{% if app['settings'].getUserSetting(app.getAuthenticatedUser(), "warning_on_delete_story") %}true{% else %}false{% endif %}"); + prodApp.appEvents.emit('search.setFilterFacet', "{% if app['settings'].getUserSetting(app.getAuthenticatedUser(), "facet") %}{{ app['settings'].getUserSetting(app.getAuthenticatedUser(), "facet") }}{% else %}false{% endif %}") + }); @@ -662,6 +664,14 @@ +
    +

    {{ 'index::advance_search: facet' | trans }}

    + {% set facetFilter = app['settings'].getUserSetting(app.getAuthenticatedUser(), 'facet') %} + +
    From 1f4f6da278022c04a0a7d202ce1b3357de369a31 Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Wed, 23 Aug 2017 13:48:20 +0400 Subject: [PATCH 22/56] fix label tab thesaurus --- templates/web/thesaurus/load-thesaurus.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/web/thesaurus/load-thesaurus.html.twig b/templates/web/thesaurus/load-thesaurus.html.twig index 75cb2e7132..5270cd44d0 100644 --- a/templates/web/thesaurus/load-thesaurus.html.twig +++ b/templates/web/thesaurus/load-thesaurus.html.twig @@ -9,7 +9,7 @@ parent.currentBaseId = {{ bid }}; parent.currentBaseName = "{{ name | e('js') }}"; parent.document.title = "{{ 'phraseanet:: thesaurus' | trans | e('js') }}"; - parent.document.getElementById("baseName").innerHTML = "{{ 'phraseanet:: thesaurus' | e('js') }}"; + parent.document.getElementById("baseName").innerHTML = "{{ 'phraseanet:: thesaurus' | trans | e('js') }}"; parent.thesaurusChanged = false; parent.document.getElementById("T0").innerHTML='
    ' + From f467398bfc8729d2e2e016ff20d96c3d147bc78d Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Fri, 25 Aug 2017 10:39:26 +0400 Subject: [PATCH 23/56] update dependencies --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index fdbf9591b8..7f1aad1059 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", From c27f9728cf9fa55f531218757148f30aaf90d4eb Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Fri, 25 Aug 2017 11:31:56 +0400 Subject: [PATCH 24/56] update dependencies --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index fdbf9591b8..7f1aad1059 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", From d72739672dc06f9d21dc31614670a895f38203d9 Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Fri, 25 Aug 2017 11:42:45 +0400 Subject: [PATCH 25/56] update dependencies --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index fdbf9591b8..7f1aad1059 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", From 427a6018bfa24b618988906158934ad55cc0b3f8 Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Fri, 25 Aug 2017 12:00:02 +0400 Subject: [PATCH 26/56] update dependencies --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index fdbf9591b8..7f1aad1059 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", From 300ea8dd172e95ea9eff19b56a17ba4fc33bfcbe Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Fri, 25 Aug 2017 13:40:41 +0400 Subject: [PATCH 27/56] update dependencies --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index fdbf9591b8..7f1aad1059 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", From d7d6e1d643d8ec25f85d8e7d9f4df0b6deb4e026 Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Fri, 25 Aug 2017 13:43:28 +0400 Subject: [PATCH 28/56] update dependencies --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index fdbf9591b8..7f1aad1059 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", From 0d18b6e0f142c4a663d11eed2d64920664a12bbd Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Fri, 25 Aug 2017 13:54:19 +0400 Subject: [PATCH 29/56] update dependencies --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index fdbf9591b8..7f1aad1059 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", From 4c7228b702f367f92f79ac278b79eb38eadcbb63 Mon Sep 17 00:00:00 2001 From: mike-esokia Date: Mon, 28 Aug 2017 17:41:22 +0400 Subject: [PATCH 30/56] update gulp-sass and bower (#2234) --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index fdbf9591b8..7f1aad1059 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", From b03b050b33a80d0fa762487e171f693a14adbc0b Mon Sep 17 00:00:00 2001 From: Nicolas Maillat Date: Thu, 22 Jun 2017 21:56:03 +0200 Subject: [PATCH 31/56] Translated using Weblate (French) Currently translated at 99.6% (2276 of 2284 strings) --- resources/locales/messages.fr.xlf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/resources/locales/messages.fr.xlf b/resources/locales/messages.fr.xlf index 85e357c3de..28f43e5147 100644 --- a/resources/locales/messages.fr.xlf +++ b/resources/locales/messages.fr.xlf @@ -1,4 +1,4 @@ - +
    @@ -7,8 +7,8 @@
    - - + + Form/Configuration/EmailFormType.php Form/Login/PhraseaAuthenticationForm.php Form/Configuration/EmailFormType.php @@ -7997,9 +7997,9 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis ID de collection distante admin/collection/collection.html.twig - + admin::base:collection: numero de collection locale - admin::base:collection: numero de collection locale + Numéro de collection locale ("base_id" coté API) : admin/collection/collection.html.twig From 8e38eaae211d0aab2b65f1c9d50e4cf3362c8cbc Mon Sep 17 00:00:00 2001 From: Anthony C Date: Fri, 23 Jun 2017 11:05:24 +0200 Subject: [PATCH 32/56] Translated using Weblate (French) Currently translated at 99.8% (2280 of 2284 strings) --- resources/locales/messages.fr.xlf | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/resources/locales/messages.fr.xlf b/resources/locales/messages.fr.xlf index 28f43e5147..6fd2e99aee 100644 --- a/resources/locales/messages.fr.xlf +++ b/resources/locales/messages.fr.xlf @@ -1872,9 +1872,9 @@ Créez un compte manuellement web/login/register.html.twig - + Create index - Create index + Créer les index SearchEngine/Elastic/ElasticsearchSettingsFormType.php @@ -2405,9 +2405,9 @@ Droits web/admin/editusers_quotas.html.twig - + Drop index - Drop index + Supprimer les index SearchEngine/Elastic/ElasticsearchSettingsFormType.php @@ -6119,9 +6119,9 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Dispositif ciblé classes/databox/subdef.php - + Task Edition - Task Edition + Edition de la tâche task-manager/task-editor/task.html.twig @@ -7997,9 +7997,9 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis ID de collection distante admin/collection/collection.html.twig - + admin::base:collection: numero de collection locale - Numéro de collection locale ("base_id" coté API) : + Numéro de collection locale ("base_id" côté API) : admin/collection/collection.html.twig From c715f6319e20b4556fe249a1433dfee14303e59a Mon Sep 17 00:00:00 2001 From: moctardiouf Date: Fri, 23 Jun 2017 12:16:35 +0200 Subject: [PATCH 33/56] Translated using Weblate (French) Currently translated at 99.8% (2280 of 2284 strings) --- resources/locales/messages.fr.xlf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/locales/messages.fr.xlf b/resources/locales/messages.fr.xlf index 6fd2e99aee..0be3dfde5a 100644 --- a/resources/locales/messages.fr.xlf +++ b/resources/locales/messages.fr.xlf @@ -3166,9 +3166,9 @@ Générer un fichier audio Media/Subdef/Audio.php - + Generates an image - Generates an image + Créer une image Media/Subdef/Image.php From 29ecbcace32634cf46ea0e0758da492adc6acc75 Mon Sep 17 00:00:00 2001 From: Anthony C Date: Fri, 23 Jun 2017 14:55:08 +0200 Subject: [PATCH 34/56] Translated using Weblate (French) Currently translated at 99.8% (2280 of 2284 strings) --- resources/locales/messages.fr.xlf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/locales/messages.fr.xlf b/resources/locales/messages.fr.xlf index 0be3dfde5a..4bf49264ef 100644 --- a/resources/locales/messages.fr.xlf +++ b/resources/locales/messages.fr.xlf @@ -9160,7 +9160,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le caption YAML - Notice YAML + Notice Texte classes/record/exportElement.php From 91317460ce84b2628b8219068ff346f4a83e489e Mon Sep 17 00:00:00 2001 From: Anthony C Date: Fri, 23 Jun 2017 14:37:07 +0200 Subject: [PATCH 35/56] Translated using Weblate (English) Currently translated at 99.8% (2280 of 2284 strings) --- resources/locales/messages.en.xlf | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/resources/locales/messages.en.xlf b/resources/locales/messages.en.xlf index 7a455c3973..654e34b6f2 100644 --- a/resources/locales/messages.en.xlf +++ b/resources/locales/messages.en.xlf @@ -1,4 +1,4 @@ - +
    @@ -7,8 +7,8 @@
    - - + + Form/Configuration/EmailFormType.php Form/Login/PhraseaAuthenticationForm.php Form/Configuration/EmailFormType.php @@ -1567,9 +1567,9 @@ Change my e-mail address web/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. + Changes for rotation will be applied only on the sub-definitions of "image" type, whenever possible. actions/Tools/index.html.twig @@ -1872,9 +1872,9 @@ Create an account manually web/login/register.html.twig - + Create index - Create index + Create index SearchEngine/Elastic/ElasticsearchSettingsFormType.php @@ -2405,9 +2405,9 @@ Rights web/admin/editusers_quotas.html.twig - + Drop index - Drop index + Drop index SearchEngine/Elastic/ElasticsearchSettingsFormType.php @@ -6121,9 +6121,9 @@ Pushed documents are also available in a received basket within Phraseanet Produ Target device classes/databox/subdef.php - + Task Edition - Task Edition + Task setting task-manager/task-editor/task.html.twig @@ -7999,9 +7999,9 @@ Pushed documents are also available in a received basket within Phraseanet Produ Distant collection ID admin/collection/collection.html.twig - + admin::base:collection: numero de collection locale - admin::base:collection: numero de collection locale + Collection local number (API "base_id") : admin/collection/collection.html.twig From 510a27cf07363d0b27f244207f6c53f71660e868 Mon Sep 17 00:00:00 2001 From: Nicolas Maillat Date: Fri, 23 Jun 2017 16:49:43 +0200 Subject: [PATCH 36/56] Translated using Weblate (English) Currently translated at 99.8% (2281 of 2284 strings) --- resources/locales/messages.en.xlf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/locales/messages.en.xlf b/resources/locales/messages.en.xlf index 654e34b6f2..7a85fbcd5f 100644 --- a/resources/locales/messages.en.xlf +++ b/resources/locales/messages.en.xlf @@ -3166,9 +3166,9 @@ Creates an audio file Media/Subdef/Audio.php - + Generates an image - Generates an image + Generates an image Media/Subdef/Image.php From 0cb2f895f2d9c64ff9cdad011de3dbe8b394d9f2 Mon Sep 17 00:00:00 2001 From: Nicolas Maillat Date: Fri, 23 Jun 2017 14:58:59 +0200 Subject: [PATCH 37/56] Translated using Weblate (French) Currently translated at 99.8% (2281 of 2284 strings) --- resources/locales/messages.fr.xlf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/locales/messages.fr.xlf b/resources/locales/messages.fr.xlf index 4bf49264ef..d9ed0c4832 100644 --- a/resources/locales/messages.fr.xlf +++ b/resources/locales/messages.fr.xlf @@ -3166,9 +3166,9 @@ Générer un fichier audio Media/Subdef/Audio.php - + Generates an image - Créer une image + Generates an image Media/Subdef/Image.php From 453c21d190de5b68beaf0f3677ad49a23381c6e2 Mon Sep 17 00:00:00 2001 From: Nicolas Maillat Date: Wed, 5 Jul 2017 00:14:14 +0200 Subject: [PATCH 38/56] Translated using Weblate (English) Currently translated at 99.8% (2281 of 2284 strings) --- resources/locales/messages.en.xlf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/locales/messages.en.xlf b/resources/locales/messages.en.xlf index 7a85fbcd5f..409946a583 100644 --- a/resources/locales/messages.en.xlf +++ b/resources/locales/messages.en.xlf @@ -575,7 +575,7 @@ Activate highlight - Activate highlight + Activate highlight on full text (experimental). Impact the time performance of search. SearchEngine/Elastic/ElasticsearchSettingsFormType.php @@ -4437,14 +4437,14 @@ Order has been denied - The order has been denied. + The Record has been denied. Order/Controller/ProdOrderController.php prod/orders/order_box.html.twig prod/orders/order_item.html.twig Order has been sent - The order has been sent. + The record has been sent. Order/Controller/ProdOrderController.php prod/orders/order_box.html.twig prod/orders/order_item.html.twig From 860ae74d2362f7da4a5b9569dad694b9dd74c7ab Mon Sep 17 00:00:00 2001 From: Nicolas Maillat Date: Tue, 4 Jul 2017 21:11:27 +0200 Subject: [PATCH 39/56] Translated using Weblate (French) Currently translated at 99.8% (2281 of 2284 strings) --- resources/locales/messages.fr.xlf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/locales/messages.fr.xlf b/resources/locales/messages.fr.xlf index d9ed0c4832..8cefa3c88d 100644 --- a/resources/locales/messages.fr.xlf +++ b/resources/locales/messages.fr.xlf @@ -4444,7 +4444,7 @@ Order has been sent - La commande a été envoyée + Le record a été envoyé. Order/Controller/ProdOrderController.php prod/orders/order_box.html.twig prod/orders/order_item.html.twig From fa603256da7529c4483522a479117fb24c8e407f Mon Sep 17 00:00:00 2001 From: Nicolas Maillat Date: Thu, 3 Aug 2017 15:31:25 +0200 Subject: [PATCH 40/56] Translated using Weblate (French) Currently translated at 99.8% (2281 of 2284 strings) --- resources/locales/messages.fr.xlf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/locales/messages.fr.xlf b/resources/locales/messages.fr.xlf index 8cefa3c88d..af4b316c10 100644 --- a/resources/locales/messages.fr.xlf +++ b/resources/locales/messages.fr.xlf @@ -5975,9 +5975,9 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Nom de la sous résolution web/admin/subdefs.html.twig - + Submit - Submit + Envoyé Controller/Prod/LanguageController.php From ccaf69b0c4e085ca557ed22991f8c24915ca9c32 Mon Sep 17 00:00:00 2001 From: Jennifer Date: Tue, 8 Aug 2017 14:21:35 +0200 Subject: [PATCH 41/56] Translated using Weblate (German) Currently translated at 100.0% (5 of 5 strings) --- resources/locales/validators.de.xlf | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/resources/locales/validators.de.xlf b/resources/locales/validators.de.xlf index 5ac368b774..929fafe137 100644 --- a/resources/locales/validators.de.xlf +++ b/resources/locales/validators.de.xlf @@ -1,4 +1,4 @@ - +
    @@ -6,28 +6,28 @@ 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.
    - + Please provide the same passwords. - Please provide the same passwords. + Bitte geben Sie diesselbe Passwörter ein. Form/Login/PhraseaRecoverPasswordForm.php Form/Login/PhraseaRenewPasswordForm.php Form/Login/PhraseaRegisterForm.php - + The token provided is not valid anymore - The token provided is not valid anymore + Das Token ist nicht mehr gültig - + This email is already bound to an account - This email is already bound to an account + Diese Email ist schon mit einem Konto verbunden - + This login is already registered - This login is already registered + Dieser Benutzername ist schon registriert - + This place does not seem to exist. - This place does not seem to exist. + Dieser Ort scheint nicht zu existieren
    From 4c820d9cedd4ebbeb59486fc7a96cf7f6f555ba8 Mon Sep 17 00:00:00 2001 From: Nicolas Maillat Date: Fri, 4 Aug 2017 11:34:56 +0200 Subject: [PATCH 42/56] Translated using Weblate (English) Currently translated at 99.8% (2281 of 2284 strings) --- resources/locales/messages.en.xlf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/locales/messages.en.xlf b/resources/locales/messages.en.xlf index 409946a583..5070dc886f 100644 --- a/resources/locales/messages.en.xlf +++ b/resources/locales/messages.en.xlf @@ -9161,7 +9161,7 @@ Pushed documents are also available in a received basket within Phraseanet Produ
    caption YAML - YAML Caption + Caption as TXT classes/record/exportElement.php From 54adaebda2d648411ecf579ba7f19ebcc1aa931e Mon Sep 17 00:00:00 2001 From: Jennifer Date: Tue, 8 Aug 2017 15:16:56 +0200 Subject: [PATCH 43/56] Translated using Weblate (English) Currently translated at 99.8% (2281 of 2284 strings) --- resources/locales/messages.en.xlf | 38 ++++++++++++++----------------- 1 file changed, 17 insertions(+), 21 deletions(-) diff --git a/resources/locales/messages.en.xlf b/resources/locales/messages.en.xlf index 5070dc886f..d1dad97f7a 100644 --- a/resources/locales/messages.en.xlf +++ b/resources/locales/messages.en.xlf @@ -224,7 +224,7 @@ %total_count% results - %total_count% results. + %total_count% results web/report/generate_tab.html.twig @@ -1070,7 +1070,7 @@ Attention ! - Warning! + Warning ! Controller/Prod/LanguageController.php @@ -1090,7 +1090,7 @@ Aucun bridge disponible. Veuillez contacter un administrateur. - There is no Bridge Available . Please contact Administrator. + There is no Bridge Available . Please contact your Administrator. actions/Bridge/index.html.twig @@ -1761,7 +1761,7 @@ Confirm reset users rights before applying template - Confirm the reset of selected users'rights before applying the template + Confirm the reset of selected users' rights before applying the template web/admin/index.html.twig @@ -1827,7 +1827,7 @@ Copiez le code ci-dessous, retournez dans votre application et collez-le a l'endroit requis : - Copy the code below, go to your application then paste-it as needed: + Copy the code below, go to your application then paste it as needed: api/auth/native_app_access_token.html.twig @@ -1842,7 +1842,7 @@ Could not perform request, please contact an administrator. - Resquest can't be performed. Please contact an administrator. + Request can't be performed. Please contact an administrator. Controller/Root/AccountController.php @@ -2359,7 +2359,7 @@ Document refuse par %name% - Document refused by %name% + Document denied by %name% prod/orders/order_item.html.twig @@ -2392,7 +2392,7 @@ Download of documents - Documents downloads. + Documents downloads actions/Download/prepare.html.twig @@ -2580,7 +2580,7 @@ Empty quarantine will remove all items, are you sure you want to continue ? - Empty quanrantine will delete all its contents. This action is irreversible. Are you sure you want to continue? + Empty quarantine will delete all its contents. This action is irreversible. Are you sure you want to continue? prod/upload/lazaret.html.twig @@ -2596,7 +2596,7 @@ 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% - By clicking on Add you certify that you own the rights on the content or that you are authorized by the owner to make the content accessible to public on YouTube. This content comply with the YouTube Terms of use: %lien_term_youtube% + By clicking on "Add", you certify that you own the rights on the content or that you are authorized by the owner to make the content accessible to public on YouTube. This content complies with the YouTube Terms of use: %lien_term_youtube% Bridge/Youtube/upload.html.twig @@ -2740,7 +2740,7 @@ Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas - Either invalid settings , either distant server is not responding + Either the settings are invalid, either distant server is not responding Controller/Prod/LanguageController.php @@ -3521,7 +3521,7 @@ It stores users datas, rights, and references to DataBoxes where records are stored. - ApplicationBox stores users datas, rights, and references to DataBoxes where records are stored. + ApplicationBox stores users datas, rights and references to DataBoxes where records are stored. web/setup/step2.html.twig @@ -4116,7 +4116,7 @@ Ne pas autoriser - Do not Authorize + Do not authorize api/auth/end_user_authorization.html.twig @@ -4344,7 +4344,7 @@ Nous vous rappelons qu'il est de votre responsabilité de vous assurer que le contenu de la vidéo que vous allez mettre en ligne est conforme aux conditions d'utilisations - We remind you that it is under your responsability to make sure that the video content you are about to put online is compliant to service the Terms of Use + We remind you that it is under your responsability to make sure that the video content you are about to put online is compliant to service the Terms of Use. Bridge/Dailymotion/upload.html.twig @@ -4885,16 +4885,12 @@ Push::une validation est une demande d'appreciation a d'autres personnes - Click on the Send buton to forward a feedback request on a selection of documents to recipients. -They will receive an e-mail with a link to launch Phraseanet Lightbox, a dedicated interface for displaying documents, leave feedbacks and possibly download them. -Feedbacks are also available as a Feedback request basket within Phraseanet Production for registered users. + Click on the "Send" button to forward a feedback request on a selection of documents to recipients. They will receive an e-mail with a link to launch Phraseanet Lightbox, a dedicated interface for displaying documents, leave feedbacks and possibly download them. Feedbacks are also available as a Feedback request basket within Phraseanet Production for registered users. prod/actions/Push.html.twig Push::unpush permet d'envoyer un lot d'image a des destinataires - Use Push to send a selection of documents to recipients. -Recipients will receive an e-mail with a link to launch Phraseanet Lightbox, a dedicated interface for displaying documents and possibly download them. -Pushed documents are also available in a received basket within Phraseanet Production for registered users. + Use "Push" to send a selection of documents to recipients. Recipients will receive an e-mail with a link to launch Phraseanet Lightbox, a dedicated interface for displaying documents and possibly download them. Pushed documents are also available in a received basket within Phraseanet Production for registered users. prod/actions/Push.html.twig @@ -5232,7 +5228,7 @@ Pushed documents are also available in a received basket within Phraseanet Produ Remember me - Remember me. + Remember me Form/Login/PhraseaAuthenticationForm.php From 5c26656a9fa22d31780b102212162222865159a8 Mon Sep 17 00:00:00 2001 From: Jennifer Date: Tue, 8 Aug 2017 15:07:32 +0200 Subject: [PATCH 44/56] Translated using Weblate (French) Currently translated at 99.8% (2281 of 2284 strings) --- resources/locales/messages.fr.xlf | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/resources/locales/messages.fr.xlf b/resources/locales/messages.fr.xlf index af4b316c10..b00aaf89e3 100644 --- a/resources/locales/messages.fr.xlf +++ b/resources/locales/messages.fr.xlf @@ -518,7 +518,7 @@ Access to the above bases constitutes acceptance of the following Terms of Use (TOU). - [WRONG] Access to the above bases constitutes acceptance of the following Terms of Use (TOU). + Pour accéder aux bases ci-dessus, vous devez d'abord accepter les conditions générales d'utilisation. web/account/access.html.twig @@ -908,7 +908,7 @@ An error occurred - Un erreur est survenue + Une erreur est survenue Controller/Api/V1Controller.php Controller/Api/V1Controller.php Controller/Admin/CollectionController.php @@ -929,7 +929,7 @@ An upload on %bridge_adapter% failed, the resaon is : %reason% - Un chargement sur le %bridge_adapter% a échoué par la raison suivante : %reason% + Un chargement sur le %bridge_adapter% a échoué pour la raison suivante : %reason% Notification/Mail/MailInfoBridgeUploadFailed.php @@ -989,7 +989,7 @@ ApplicationBox is a Mysql database. - l'ApplicationBox est une base de données Mysql . + L'ApplicationBox est une base de données Mysql. web/setup/step2.html.twig @@ -2239,7 +2239,7 @@ Deselect all - Tout desélectionner + Tout désélectionner prod/actions/Push.html.twig web/report/form_date_and_base.html.twig @@ -3133,7 +3133,7 @@
    General settings - Paramètre généraux + Paramètres généraux web/admin/dashboard.html.twig @@ -3183,7 +3183,7 @@ Gives the option to your application to communicate with Phraseanet. This webhook can be used to trigger some actions on your application side. - Donne la possibilité à votre application de communiquer avec Phraseanet . Ce Webhook peut être utilisé pour déclencher des actions sur l'application distante. + Donne la possibilité à votre application de communiquer avec Phraseanet. Ce Webhook peut être utilisé pour déclencher des actions sur l'application distante. web/developers/application.html.twig @@ -3922,7 +3922,7 @@ Manage collection - Autoriser a gérer les paramètres de collection + Autoriser à gérer les paramètres de collection web/admin/editusers.html.twig @@ -4334,7 +4334,7 @@ Notify third party application when an event occurs in Phraseanet - Notifier l'application tierce lorsqu'un événement de produit dans Phraseanet + Notifier l'application tierce lorsqu'un événement se produit dans Phraseanet TaskManager/Job/WebhookJob.php @@ -4683,7 +4683,7 @@ Please provide the same emails. - Veuillez indiquer les mêmes adresses e-mails. + Veuillez indiquer les mêmes adresses e-mail. Controller/Root/LoginController.php @@ -6438,7 +6438,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Thumbnail has been successfully substitued - La vignette a été substitué + La vignette a été substituée Controller/Prod/ToolsController.php @@ -7107,7 +7107,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Vous etes authentifie avec succes - Vous êtes authentifié avec succès + Vous êtes authentifié(e) avec succès actions/Bridge/callback.html.twig @@ -7949,7 +7949,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::base:collection: activer la collection - Collection activé + Collection activée admin/collection/collection.html.twig admin/collection/collection.html.twig @@ -11680,7 +11680,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
    rotation 90 degres anti-horaires - Rotation de 90 degrés anti-horaires + Rotation de 90 degrés anti-horaire actions/Tools/index.html.twig From 7386d4417b7f240096ad613b0a61f8cb4d9cd27b Mon Sep 17 00:00:00 2001 From: Anthony C Date: Wed, 9 Aug 2017 14:34:18 +0200 Subject: [PATCH 45/56] Translated using Weblate (English) Currently translated at 99.8% (2281 of 2284 strings) --- resources/locales/messages.en.xlf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/locales/messages.en.xlf b/resources/locales/messages.en.xlf index d1dad97f7a..a334220d15 100644 --- a/resources/locales/messages.en.xlf +++ b/resources/locales/messages.en.xlf @@ -3280,7 +3280,7 @@ Hide information about users - Hide information about users. + Hide information about users Form/Configuration/ModulesFormType.php From 892a1d14243785573a46263e276d45082d8bf990 Mon Sep 17 00:00:00 2001 From: Anthony C Date: Wed, 9 Aug 2017 14:34:56 +0200 Subject: [PATCH 46/56] Translated using Weblate (French) Currently translated at 99.8% (2281 of 2284 strings) --- resources/locales/messages.fr.xlf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/locales/messages.fr.xlf b/resources/locales/messages.fr.xlf index b00aaf89e3..8c182f052c 100644 --- a/resources/locales/messages.fr.xlf +++ b/resources/locales/messages.fr.xlf @@ -3280,7 +3280,7 @@ Hide information about users - Masquer les informations à propos des utilisateurs. + Masquer les informations à propos des utilisateurs Form/Configuration/ModulesFormType.php From 9761318970d679a7447b25d1e62c046e1b789d33 Mon Sep 17 00:00:00 2001 From: Jennifer Date: Tue, 8 Aug 2017 16:48:21 +0200 Subject: [PATCH 47/56] Translated using Weblate (German) Currently translated at 99.2% (2267 of 2285 strings) --- resources/locales/messages.de.xlf | 1376 ++++++++++++++--------------- 1 file changed, 686 insertions(+), 690 deletions(-) diff --git a/resources/locales/messages.de.xlf b/resources/locales/messages.de.xlf index 60cb547c94..be77dc559d 100644 --- a/resources/locales/messages.de.xlf +++ b/resources/locales/messages.de.xlf @@ -1,4 +1,4 @@ - +
    @@ -7,22 +7,18 @@
    - - + + Form/Login/PhraseaAuthenticationForm.php Form/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.twig lightbox/IE6/index.html.twig web/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 werden prod/actions/collection_default.html.twig %d collection selected - %d Kollektion ausgewählt + %d ausgewählte Kollektion Controller/Root/LoginController.php %d collections selected - %d Kollektionen ausgewählt + %d ausgewählte Kollektionen Controller/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 werden web/common/dialog_export.html.twig @@ -80,9 +76,9 @@ %docs_orderable% bestellte Dokumente web/common/dialog_export.html.twig - + %entry_length% documents - %entry_length% documents + %entry_length% Dokumente mobile/lightbox/feed.html.twig @@ -139,75 +135,75 @@ Bridge/Dailymotion/element_informations.html.twig Bridge/Youtube/element_informations.html.twig - + selectionnes]]> - selectionnes]]> + %number% documents<br/> ausgewählt Controller/Prod/QueryController.php - + %quantity% Stories attached to the WorkZone - %quantity% Stories attached to the WorkZone + %quantity% Berichte an die WorkZone angehängt Controller/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ängt Controller/Prod/WorkzoneController.php - + %quantity% Story attached to the WorkZone - %quantity% Story attached to the WorkZone + %quantity% Bericht an die WorkZone angehängt Controller/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ängt Controller/Prod/WorkzoneController.php - + %quantity% User added to list - %quantity% User added to list + %quantity% Benutzer zur Liste hinzugefügt Controller/Prod/UsrListController.php - + %quantity% Users added to list - %quantity% Users added to list + %quantity% Benutzer zur Liste hinzugefügt Controller/Prod/UsrListController.php - + %quantity% elements en attente - %quantity% elements en attente + %quantity% Elemente in Bereitschaft Controller/Prod/BridgeController.php - + %quantity% records added - %quantity% records added + %quantity% Datensätze hinzugefügt Controller/Prod/StoryController.php Controller/Prod/BasketController.php - + %quantity% records moved - %quantity% records moved + %quantity% Datensätze bewegt Controller/Prod/BasketController.php - + %quantity% selected files - %quantity% selected files + %quantity% ausgewählte Dateien prod/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 gesendet Controller/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 gesendet Controller/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öscht Controller/Admin/FieldsController.php - + %total% reponses - %total% reponses + %total% Ergebnisse Controller/Prod/QueryController.php @@ -230,79 +226,79 @@ %total_count% Ergebnisse web/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% gesendet eventsmanager/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% aufgegeben eventsmanager/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 abgelehnt Notification/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 abgelehnt eventsmanager/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% an eventsmanager/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 ansehen Notification/Mail/MailInfoValidationDone.php - + %user% has ordered documents - %user% has ordered documents + %user% hat Dokumente bestellt Notification/Mail/MailInfoNewOrder.php - + %user% has published %title% - %user% has published %title% + %user% hat %title% veröffentlicht eventsmanager/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% angemeldet eventsmanager/notify/autoregister.php - + %user% vient de publier %title% - %user% vient de publier %title% + %user% hat nun %title% veröffentlicht Notification/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% geliefert eventsmanager/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% gesendet eventsmanager/notify/push.php - + %user% vous demande de valider %title% - %user% vous demande de valider %title% + %user% bittet Sie, %title% zu bestätigen eventsmanager/notify/validate.php %user_count% users have been created. - %user_count% benutzer wurden erstellt + %user_count% Benutzer wurden erstellt web/admin/users.html.twig @@ -327,7 +323,7 @@ (validation) session terminee - Session beendet + Sitzung beendet web/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 leeren Controller/Admin/DataboxController.php @@ -468,9 +464,9 @@ Ein Wert ist veraltet und ist nicht mehr gültig Bridge/Api/Youtube.php - + API Webhook - API Webhook + API Webhook TaskManager/Job/WebhookJob.php @@ -485,7 +481,7 @@ Access - Viewer + Zugriff actions/Feedback/List-Share.html.twig web/admin/editusers.html.twig @@ -496,7 +492,7 @@ Access history - auf Geschichte zugreifen + Zugriffshistorie web/account/sessions.html.twig @@ -506,7 +502,7 @@ Access to HD - Zugriff auf HD + Zugriff auf HD Download web/admin/editusers.html.twig @@ -519,14 +515,14 @@ Zugriff auf Vorschaubild web/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.twig Access user have readonly access - Viewer haben nur einen - Lese Zugriff + Zugriff hat nur einen Nur-Lesen Zugriff actions/Feedback/List-Share.html.twig @@ -576,9 +572,9 @@ Bridge/Youtube/actioncontainers.html.twig Bridge/Youtube/actionelements.html.twig - + Activate highlight - Activate highlight + Highlight aktivieren SearchEngine/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 aktivieren web/developers/application.html.twig @@ -644,14 +640,14 @@ Zusatzmodule Form/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 + Admin actions/Feedback/List-Share.html.twig @@ -661,7 +657,7 @@ Adresse email du nouvel utilisateur - Email Adresse der neuen Benutzer + Email Adresse des neuen Benutzers web/admin/index.html.twig @@ -696,7 +692,7 @@ Afficher les status - die Zustände anzeigen + die Status anzeigen web/prod/index.html.twig @@ -704,19 +700,19 @@ eine Ikone anzeigen web/prod/index.html.twig - + After metadata - After metadata + Nach Metadaten web/prod/index.html.twig - + Aggregation - Aggregation + Aggregation admin/fields/templates.html.twig Aide - die Hilfe + Hilfe web/prod/index.html.twig @@ -744,7 +740,7 @@ Ajouter un publisher - einen Veröffentlicher hinzufügen + eine Veröffentlichung hinzufügen admin/publications/fiche.html.twig @@ -762,9 +758,9 @@ actions/Feedback/list.html.twig WorkZone/Browser/Browser.html.twig - + All values - All values + Alle Werte admin/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 sind prod/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 Systemadministrator admin/collection/create.html.twig @@ -923,14 +919,14 @@ Ein Fehler ist beim Lesen dieser Datei aufgetreten Controller/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 Systemadministrator Controller/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örben prod/preview/appears_in.html.twig Apparait aussi dans ces reportages - ercheint auch in diesen Reportagen + auch in diesen Berichten prod/preview/appears_in.html.twig @@ -1051,9 +1047,9 @@ Controller/Prod/LanguageController.php prod/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 Parameter Controller/Prod/LanguageController.php - + Audio - Audio + Audio web/prod/index.html.twig @@ -1148,9 +1144,9 @@ Audio-Bitrate Media/Subdef/Audio.php - + Audio Codec - Audio Codec + Audio Codec Media/Subdef/Audio.php Media/Subdef/Video.php @@ -1205,9 +1201,9 @@ Verbindung mit Microsoft Office Plugin erlauben Form/Configuration/APIClientsFormType.php - + Auto - Auto + Auto Form/Configuration/ExecutablesFormType.php @@ -1220,9 +1216,9 @@ Auto Registrierungs Informationen eventsmanager/notify/autoregister.php - + Autorisation d'acces - Autorisation d'acces + Zugriffsberechtigung api/auth/end_user_authorization.html.twig @@ -1230,9 +1226,9 @@ Berechtigen api/auth/end_user_authorization.html.twig - + Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ? - Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ? + 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 aktualisiert Controller/Prod/BasketController.php - + Basket is not found - Basket is not found + Sammelkorb wurde nicht gefunden Model/Repositories/BasketRepository.php @@ -1336,9 +1332,9 @@ Sammelkorb wurde aktualisiert Controller/Prod/BasketController.php - + Bitrate - Bitrate + Bitrate Media/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 fehlgeschlagen eventsmanager/notify/bridgeuploadfail.php - + Bridge uploader - Bridge uploader + Bridge Uploader TaskManager/Job/BridgeJob.php @@ -1367,9 +1363,9 @@ web/prod/index.html.twig web/prod/index.html.twig - + Browser - Browser + Webbrowser web/account/sessions.html.twig @@ -1405,9 +1401,9 @@ Felder web/admin/tree.html.twig - + CSV export - CSV export + CSV Export web/report/generate_tab.html.twig @@ -1506,15 +1502,15 @@ Dieses Feld wird benötigt prod/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% Zeichen Bridge/Api/Dailymotion.php Bridge/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% Zeichen Bridge/Api/Flickr.php Bridge/Api/Flickr.php Bridge/Api/Dailymotion.php @@ -1567,9 +1563,9 @@ meine E-Mail Adresse verändern web/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.php eventsmanager/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 @@ Benutzer prod/actions/Push.html.twig - + Cooliris - Cooliris + Cooliris Form/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 erstellen web/login/register.html.twig - + Create index - Create index + Index erstellen SearchEngine/Elastic/ElasticsearchSettingsFormType.php Create new subdef - Neuen subdef erstellen + Neue Unterauflösung erstellen web/admin/subdefs.html.twig @@ -1943,13 +1939,13 @@ Creer une playlist - eine neue Playlist erstellen + einen neuen Playlist erstellen Bridge/Dailymotion/playlist_createcontainer.html.twig Bridge/Youtube/playlist_createcontainer.html.twig Creez une application pour commencer a utiliser l'API Phraseanet - Erstellen Sie zuerst eine 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 Sitzung web/account/sessions.html.twig - + DCES - DCES + DCES admin/fields/templates.html.twig @@ -2008,9 +2004,9 @@ Datenbank kann keine Sonderzeichen beinhalten Controller/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-Engine Controller/Admin/DataboxesController.php web/setup/step2.html.twig @@ -2019,9 +2015,9 @@ Datenbank Benutzer web/setup/step2.html.twig - + Databox - Databox + Databox task-manager/task-editor/subdefs.html.twig @@ -2039,9 +2035,9 @@ Datum prod/upload/lazaret.html.twig - + Date Added - Date Added + Hinzufügungsdatum web/prod/index.html.twig @@ -2076,9 +2072,9 @@ prod/orders/order_box.html.twig prod/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 Dokumentation web/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ösung Form/Configuration/GeneralFormType.php @@ -2131,9 +2127,9 @@ Standarddauer für die Validierungslinke Form/Configuration/ActionsFormType.php - + Define a webhook URL - Define a webhook URL + Eine Webhook URL festlegen web/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 URL prod/Share/record.html.twig - + Details - Details + Einzelheiten admin/collection/details.html.twig admin/databox/details.html.twig @@ -2268,9 +2264,9 @@ Media/Subdef/Image.php Media/Subdef/Video.php - + Disable document type sharing - Disable document type sharing + Dokumenttyp Teilen deaktivieren actions/Tools/index.html.twig @@ -2278,19 +2274,19 @@ Deaktiviert Form/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 deaktivieren Form/Configuration/ActionsFormType.php - Anzeige und Aktions-Einstellungen + Anzeige und Handlung-Einstellungen admin/fields/templates.html.twig - + Display technical data - Display technical data + Technische Informationen anzeigen web/prod/index.html.twig @@ -2298,9 +2294,9 @@ Vorschaubilder anschauen admin/fields/templates.html.twig - + Do not display - Do not display + Nicht anzeigen web/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 @@ Dokument web/prod/index.html.twig - + Document Type Sharing - Document Type Sharing + Dokumenttyp Teilen actions/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 + Download Notification/Mail/MailRecordsExport.php @@ -2398,9 +2394,9 @@ Rechte web/admin/editusers_quotas.html.twig - + Drop index - Drop index + Drop index SearchEngine/Elastic/ElasticsearchSettingsFormType.php @@ -2419,9 +2415,9 @@ Form/Login/PhraseaForgotPasswordForm.php Form/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.twig admin/task-manager/index.html.twig - + Editer - Editer + Bearbeiten actions/publish/publish_edit.html.twig @@ -2473,9 +2469,9 @@ Bearbeitung nicht möglich prod/actions/edit_default.html.twig - + Editor - Editor + Editor actions/Feedback/List-Share.html.twig @@ -2483,35 +2479,35 @@ Editor kann Inhalte verändern actions/Feedback/List-Share.html.twig - + ElasticSearch configuration - ElasticSearch configuration + ElasticSearch Einstellung admin/search-engine/elastic-search.html.twig - + ElasticSearch index name - ElasticSearch index name + ElasticSearch Index Name SearchEngine/Elastic/ElasticsearchSettingsFormType.php - + ElasticSearch server host - ElasticSearch server host + ElasticSearch Server Host SearchEngine/Elastic/ElasticsearchSettingsFormType.php - + ElasticSearch service port - ElasticSearch service port + ElasticSearch Service Schnittstelle SearchEngine/Elastic/ElasticsearchSettingsFormType.php - + Email - Email + Email Adresse admin/publications/fiche.html.twig web/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 Databank Controller/Admin/UserController.php @@ -2555,9 +2551,9 @@ Embed-Code prod/Share/record.html.twig - + Empty a collection - Empty a collection + eine Kollektion leeren TaskManager/Job/EmptyCollectionJob.php @@ -2587,9 +2583,9 @@ schwebend actions/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 aktivieren Form/Configuration/FtpExportFormType.php - + Enable Forcing authentication to see push content - Enable Forcing authentication to see push content + Aufzwingende Authentifizierung aktivieren, um den Push Inhalt anzuschauen Form/Configuration/ActionsFormType.php @@ -2639,9 +2635,9 @@ Automatische Anmeldung aktivieren Form/Configuration/RegistrationFormType.php - + Enable document type sharing - Enable document type sharing + Dokumenttyp Teilen aktivieren actions/Tools/index.html.twig @@ -2654,9 +2650,9 @@ MultiDoc modus aktivieren Form/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öffentlichen Form/Configuration/ActionsFormType.php @@ -2687,7 +2683,7 @@ End session activity - Session Aktivität beenden + Sitzung Aktivität beenden web/account/sessions.html.twig @@ -2781,9 +2777,9 @@ Fehler während Datenaktualisierung Phrasea/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.php Core/Database/DatabaseMaintenanceService.php Core/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 Verbindung Controller/Prod/ExportController.php @@ -2885,14 +2881,14 @@ Export in der Warteschlange gespeichert Controller/Prod/ExportController.php - + FTP - FTP + FTP web/account/account.html.twig - + FTP Export - FTP Export + FTP Export Form/Configuration/MainConfigurationFormType.php @@ -2905,18 +2901,18 @@ Feed Name admin/publications/list.html.twig - + Feedback - Feedback + Feedback Controller/Prod/LanguageController.php web/prod/toolbar.html.twig web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig - + Feeds - Feeds + Feeds eventsmanager/notify/feed.php @@ -2929,14 +2925,14 @@ Dateien gesendet actions/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.twig web/admin/users.html.twig - + Flash - Flash + Flash web/prod/index.html.twig web/common/technical_datas.html.twig - + Flatten layers - Flatten layers + Flatten Layers Media/Subdef/Image.php @@ -3056,9 +3052,9 @@ Brennweite web/common/technical_datas.html.twig - + Force authentication - Force authentication + Authentifizierung zwingen prod/templates/push.html.twig @@ -3104,9 +3100,9 @@ Abtastfrequenz web/common/technical_datas.html.twig - + GD - GD + GD-Bibliothek Form/Configuration/ExecutablesFormType.php @@ -3114,14 +3110,14 @@ GOP Grösse Media/Subdef/Video.php - + Gallery - Gallery + Gallery Form/Configuration/GeneralFormType.php - + General configuration - General configuration + Allgemeine Einstellungen Form/Configuration/MainConfigurationFormType.php @@ -3129,14 +3125,14 @@ Allgemeine Einstellungen web/admin/dashboard.html.twig - + Generate - Generate + Erstellen web/report/report_layout_child.html.twig - + Generate dashboard - Generate dashboard + Dashboard erstellen web/report/report_layout_child.html.twig @@ -3159,9 +3155,9 @@ Erstellt eine Audio Datei Media/Subdef/Audio.php - + Generates an image - Generates an image + Erstellt ein Bild Media/Subdef/Image.php @@ -3179,9 +3175,9 @@ Eine Nachricht erhalten wenn ein Email Export fehlschlägt eventsmanager/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 Drittanwendungen web/account/authorized_apps.html.twig - + GraphicsMagick - GraphicsMagick + GraphicsMagick Form/Configuration/ExecutablesFormType.php @@ -3224,9 +3220,9 @@ Großartig Controller/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.php Controller/Report/ActivityController.php @@ -3235,9 +3231,9 @@ Gruppieren web/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 Zugriff login/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 Download prod/actions/Push.html.twig @@ -3281,9 +3277,9 @@ Informationen über die Benutzer ausblenden Form/Configuration/ModulesFormType.php - + Home - Home + Hautpseite login/layout/base-layout.html.twig login/include/language-block.html.twig mobile/lightbox/validate.html.twig @@ -3305,9 +3301,9 @@ web/login/register-classic.html.twig web/login/register-provider.html.twig - + IP - IP + IP web/account/sessions.html.twig @@ -3335,9 +3331,9 @@ Ist es auf null gestellt, ist die Zeitdauer bleibend Form/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 beenden Notification/Mail/MailInfoValidationReminder.php @@ -3365,9 +3361,9 @@ Bild web/prod/index.html.twig - + ImageMagick - ImageMagick + ImageMagick Form/Configuration/ExecutablesFormType.php @@ -3380,14 +3376,14 @@ Vorschaubild nicht verfügbar actions/Bridge/element_list.html.twig - + Imagine driver - Imagine driver + Imagine driver Form/Configuration/ExecutablesFormType.php - + In the answer grid - In the answer grid + In einem Tooltip web/prod/index.html.twig @@ -3407,14 +3403,14 @@ indizierbar admin/fields/templates.html.twig - + Indexation task - Indexation task + Indizierungsaufgabe TaskManager/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.twig admin/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ützt admin/collection/collection.html.twig @@ -3527,9 +3523,9 @@ Beruf prod/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.php Bridge/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.twig web/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.php Bridge/Api/Youtube.php @@ -3608,9 +3604,9 @@ Das Video ist beschränkt Bridge/Api/Youtube.php - + Labels - Labels + Labels admin/statusbit/edit.html.twig admin/statusbit/edit.html.twig @@ -3634,9 +3630,9 @@ Nachname erforderlich Controller/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 mehr mobile/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.php Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php @@ -3772,9 +3768,9 @@ begrenzter Wortschatz admin/fields/templates.html.twig - + List %name% has been created - List %name% has been created + List %name% wurde geschafft Controller/Prod/UsrListController.php @@ -3849,19 +3845,19 @@ login/oauth/login.html.twig actions/Feedback/ListsMacros.html.twig - + Login %login% already exists in database - Login %login% already exists in database + Benutzername %login% existiert schon im Datenbank Controller/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% definiert Controller/Admin/UserController.php - + Login line %line% is empty - Login line %line% is empty + Benutzername Zeile %line% ist leer Controller/Admin/UserController.php @@ -3870,9 +3866,9 @@ login/providers/bind.html.twig login/providers/mapping.html.twig - + Logs - Logs + Logs admin/task-manager/templates.html.twig admin/task-manager/templates.html.twig admin/task-manager/index.html.twig @@ -3883,9 +3879,9 @@ meine letzte Suchabfrage web/prod/index.html.twig - + Mail line %line% is empty - Mail line %line% is empty + Email Zeile %line% ist leer Controller/Admin/UserController.php @@ -3943,9 +3939,9 @@ Pflichtfelder web/login/register-provider.html.twig - + Masks - Masks + Masken web/admin/editusers_masks.html.twig @@ -3979,9 +3975,9 @@ aktualisieren admin/databox/cgus.html.twig - + Mime type - Mime type + Mime Typ web/common/technical_datas.html.twig @@ -3989,9 +3985,9 @@ Mindestzeichenzahl vor der Kürzung Form/Configuration/SearchEngineFormType.php - + Missing "structure" parameter - Missing "structure" parameter + Fehlende "Struktur" Parameter Controller/Admin/RootController.php @@ -4000,9 +3996,9 @@ Controller/Admin/CollectionController.php Controller/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.twig web/developers/application.html.twig - + Monter la collection %name% - Monter la collection %name% + Kollektion %name% aufstellen admin/databox/databox.html.twig @@ -4076,9 +4072,9 @@ Einen Datensatz zur ausgewählten Kollektion verschieben prod/actions/collection_default.html.twig - + Moves records - Moves records + Datensäzte bewegen TaskManager/Job/RecordMoverJob.php @@ -4098,9 +4094,9 @@ web/setup/step2.html.twig web/setup/step2.html.twig - + Name - Name + Name Controller/Prod/LanguageController.php Bridge/Dailymotion/playlist_createcontainer.html.twig actions/Download/prepare.html.twig @@ -4140,9 +4136,9 @@ Form/Login/PhraseaRecoverPasswordForm.php Form/Login/PhraseaRenewPasswordForm.php - + New task - New task + Neue Aufgabe admin/task-manager/index.html.twig @@ -4310,9 +4306,9 @@ Nicht erlaubt web/account/authorized_apps.html.twig - + Not aggregated - Not aggregated + Nicht aggregiert admin/fields/templates.html.twig @@ -4330,9 +4326,9 @@ Allgemeine Benachrichtigungen classes/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 Ereignisses TaskManager/Job/WebhookJob.php @@ -4355,9 +4351,9 @@ Neue Bestellung eventsmanager/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 senden Form/Configuration/ActionsFormType.php - + Number of records to process per batch - Number of records to process per batch + Anzahl von Datensätzen per Stapel zu verarbeiten task-manager/task-editor/subdefs.html.twig - + Number of replicas - Number of replicas + Anzahl von Nachbauten SearchEngine/Elastic/ElasticsearchSettingsFormType.php - + Number of shards - Number of shards + Anzahl von Scherben SearchEngine/Elastic/ElasticsearchSettingsFormType.php @@ -4390,9 +4386,9 @@ Anzahl von Fäden für FFMpeg zu benutzen Form/Configuration/ExecutablesFormType.php - + OK - OK + OK Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php @@ -4416,9 +4412,9 @@ Nur einen Datensatz kann geändert werden actions/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 Fenster Core/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 angefragt Notification/Mail/MailRequestPasswordUpdate.php @@ -4546,14 +4542,14 @@ Pending access to the following collections web/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 lokal TaskManager/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 ersetzen web/setup/step2.html.twig - + Playlist - Playlist + Playlist Bridge/Dailymotion/actionelements.html.twig Bridge/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 @@ Drucken Controller/Prod/LanguageController.php - + Problemes de connexion ? - Problemes de connexion ? + Verbindungsprobleme ? api/auth/end_user_authorization.html.twig @@ -4779,14 +4775,14 @@ Registrierung verarbeiten Notification/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% Benutzer Model/Entities/ValidationSession.php @@ -4807,9 +4803,9 @@ admin/publications/wrapper.html.twig web/admin/tree.html.twig - + Publier - Publier + Veröffentlichen actions/publish/publish.html.twig @@ -4823,9 +4819,9 @@ Veröffentlicher Form/Configuration/ActionsFormType.php - + Push - Push + Push eventsmanager/notify/push.php Controller/Prod/LanguageController.php @@ -4834,9 +4830,9 @@ Push Konfiguration Form/Configuration/MainConfigurationFormType.php - + Push from %user% - Push from %user% + Push von %user% Controller/Prod/PushController.php @@ -4988,9 +4984,9 @@ tab/shift-tab : Feld ändern web/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 senden eventsmanager/notify/validationreminder.php @@ -5076,9 +5072,9 @@ Empfangskontrolle eventsmanager/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 wiederaufbauen actions/Tools/index.html.twig - + Record Mover - Record Mover + Record Mover TaskManager/Job/RecordMoverJob.php @@ -5151,9 +5147,9 @@ Datensatz wurde vom Bericht entfernt Controller/Prod/StoryController.php - + Record_id - Record_id + Record_id web/common/technical_datas.html.twig @@ -5217,19 +5213,19 @@ Rejected access to the following collections web/account/access.html.twig - + Relevance - Relevance + Relevanz web/prod/index.html.twig Remember me - Mich erinnern + Angemeldet bleiben Form/Login/PhraseaAuthenticationForm.php - + Reminder : validate '%title%' - Reminder : validate '%title%' + Errinerung : Bestätigen Sie '%title%' Notification/Mail/MailInfoValidationReminder.php @@ -5280,14 +5276,14 @@ Ablageordner der Dateien web/setup/step2.html.twig - + Report - Report + Report admin/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 Zeit web/report/report_layout_child.html.twig @@ -5331,9 +5327,9 @@ Anforderungen web/admin/dashboard.html.twig - + Reset and apply - Reset and apply + Zurücksetzen und Vorlage anwenden web/admin/index.html.twig @@ -5356,9 +5352,9 @@ Unterauflösung Media/Subdef/Image.php - + Resource URL - Resource URL + Resource URL prod/Share/record.html.twig @@ -5366,14 +5362,14 @@ Zugangsanforderung web/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 einmal task-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 erreicht task-manager/task-editor/subdefs.html.twig @@ -5412,9 +5408,9 @@ Zurück zur Bestellung prod/orders/order_item.html.twig - + Review order on %website% - Review order on %website% + Bestellung auf %website% ansehen Notification/Mail/MailInfoNewOrder.php @@ -5482,9 +5478,9 @@ SMTP Benutzer Form/Configuration/EmailFormType.php - + SSL - SSL + SSL Form/Configuration/EmailFormType.php @@ -5547,9 +5543,9 @@ Sehen WorkZone/Browser/Browser.html.twig - + See documentation at %url% - See documentation at %url% + Lesen Sie die Dokumentation auf %url% Form/Configuration/WebservicesFormType.php Form/Configuration/ExecutablesFormType.php @@ -5671,12 +5667,12 @@ Session persistente - anhaltende Session + anhaltende Sitzung web/admin/connected-users.html.twig - + Sessions - Sessions + Sitzungen web/account/base.html.twig @@ -5841,17 +5837,17 @@ Stempel Logo admin/collection/collection.html.twig - + Start - Start + Start admin/task-manager/templates.html.twig admin/task-manager/templates.html.twig admin/task-manager/index.html.twig admin/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.php Notification/Mail/MailInfoValidationRequest.php - + Started - Started + Begonnen Phrasea/Form/TaskForm.php @@ -5870,9 +5866,9 @@ Zustand der Dokumente zu suchen web/prod/index.html.twig - + Status edition - Status edition + Status Bearbeitung actions/Property/index.html.twig @@ -5890,9 +5886,9 @@ Zustand prod/orders/order_box.html.twig - + Stop - Stop + Stop prod/upload/lazaret.html.twig prod/upload/lazaret.html.twig admin/task-manager/templates.html.twig @@ -5900,9 +5896,9 @@ admin/task-manager/index.html.twig admin/task-manager/index.html.twig - + Stopped - Stopped + Gestoppt Phrasea/Form/TaskForm.php @@ -6080,9 +6076,9 @@ Bitte trennen Sie die Tags durch ein Leerzeichen: Paris Urlaub Restaurant Bridge/Dailymotion/upload.html.twig - + TLS - TLS + TLS Form/Configuration/EmailFormType.php @@ -6095,9 +6091,9 @@ Dashboard web/admin/tree.html.twig - + Tags - Tags + Tags Bridge/Flickr/upload.html.twig Bridge/Dailymotion/video_modify.html.twig Bridge/Dailymotion/upload.html.twig @@ -6109,26 +6105,26 @@ Zielgerät classes/databox/subdef.php - + Task Edition - Task Edition + Aufgabe Bearbeitung task-manager/task-editor/task.html.twig - + Task Scheduler - Task Scheduler + Aufgaben-Scheduler Controller/Admin/TaskManagerController.php Controller/Admin/TaskManagerController.php admin/task-manager/index.html.twig - + Task name - Task name + Aufgabe Name Phrasea/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ültig Bridge/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 erlaubt Controller/Prod/LazaretController.php - + The document %name% has been quarantined - The document %name% has been quarantined + Das Dokument %name% wurde unter Quarantäne gestellt eventsmanager/notify/uploadquarantine.php @@ -6284,9 +6280,9 @@ Der erforderte Sammelkorb existiert nicht Controller/Prod/BasketController.php - + The task status - The task status + Aufgabe Status Phrasea/Form/TaskForm.php @@ -6324,9 +6320,9 @@ Kein Benutzer zu hinzufügen user/import/view.html.twig - + Thesaurus Min score - Thesaurus Min score + Thesaurus Hits (minimal) SearchEngine/Elastic/ElasticsearchSettingsFormType.php @@ -6334,9 +6330,9 @@ Thesaurus Sprung admin/fields/templates.html.twig - + Thesaurus ou CTerms invalide - Thesaurus ou CTerms invalide + Thesaurus oder CTerms ungültig web/thesaurus/load-thesaurus.html.twig @@ -6375,9 +6371,9 @@ Dieses Feld ist erforderlich web/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 benutzt prod/actions/edit_default.html.twig @@ -6391,9 +6387,9 @@ Hier ist eine Schablone web/admin/users.html.twig - + This link is valid until - This link is valid until + URL ist gültig bis templates/web/email-template.html.twig @@ -6464,9 +6460,9 @@ Klicken Sie auf die Kamera, um einen Screenshot zu erstellen actions/Tools/index.html.twig - + Token - Token + Token web/developers/application.html.twig @@ -6584,9 +6580,9 @@ Es ist nicht möglich den Benutzer zur Liste hinzufügen Controller/Prod/UsrListController.php - + Unable to authenticate with %provider_name% - Unable to authenticate with %provider_name% + Unmöglich, mit %provider_name% zu authentifizieren Controller/Root/LoginController.php @@ -6596,19 +6592,19 @@ web/setup/step2.html.twig web/setup/step2.html.twig - + Unable to create list %name% - Unable to create list %name% + Unmöglich, die Liste %name% zu erstellen Controller/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 aktualisieren Controller/Prod/UsrListController.php - + Unauthorized action - Unauthorized action + Unerlaubte Handlung web/common/dialog_export.html.twig @@ -6691,14 +6687,14 @@ Unbekannter Grund prod/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 erreichbar Controller/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 erstellen user/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% hochgeladen prod/upload/lazaret.html.twig - + Use Google Chart API - Use Google Chart API + Benutzen Sie die Google Chart API Form/Configuration/WebservicesFormType.php @@ -6770,9 +6766,9 @@ Benutzen Sie einen SMTP Server Form/Configuration/EmailFormType.php - + Use latest search settings on Production loading - Use latest search settings on Production loading + die letzte gestellte Frage in Prod benutzen web/prod/index.html.twig @@ -6898,14 +6894,14 @@ eventsmanager/notify/validate.php lightbox/IE6/validate.html.twig - + Validation from %user% - Validation from %user% + Benutzer %user% hat seinen Bestätigungsbericht gesendet Controller/Prod/PushController.php - + Validation request from %user% for '%title%' - Validation request from %user% for '%title%' + Benutzer %user% hat für '%title%' eine Bestätigung angefragt Notification/Mail/MailInfoValidationRequest.php @@ -6948,19 +6944,19 @@ Entleerung von Kollektionen TaskManager/Job/EmptyCollectionJob.php - + Video - Video + Video web/prod/index.html.twig - + Video Codec - Video Codec + Video Codec Media/Subdef/Video.php - + Videos - Videos + Videos Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php @@ -6969,9 +6965,9 @@ Ansehen actions/Feedback/list.html.twig - + View on %title% - View on %title% + Auf %title% sehen Notification/Mail/MailInfoNewPublication.php @@ -7033,9 +7029,9 @@ Sie haben dieser Applikationen eine Zugriffsberechtigung auf Ihr Konto erteilt web/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 gesendet Model/Entities/ValidationSession.php @@ -7058,9 +7054,9 @@ Sie können eine Bewertung der Bilder in diesem Sammelkorb abgeben prod/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 gesendet Model/Entities/ValidationSession.php @@ -7262,9 +7258,9 @@ Meta schreiben web/admin/subdefs.html.twig - + YYYY/MM/DD - YYYY/MM/DD + YYYY/MM/DD web/prod/index.html.twig web/prod/index.html.twig @@ -7409,14 +7405,14 @@ Sie besitzen nicht genügend Zugriffsrechte, um die ausgewählte Dokumente zu löschen prod/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 bewegen Controller/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ätigen Notification/Mail/MailInfoValidationRequest.php @@ -7429,9 +7425,9 @@ Sie haben versucht, zuviele Dateien anzustehen prod/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 Sammelkorb Model/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% bekommen Notification/Mail/MailInfoPushReceived.php @@ -7490,14 +7486,14 @@ Controller/Root/LoginController.php Controller/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 bekommen Helper/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% bekommen Helper/User/Edit.php @@ -7505,9 +7501,9 @@ Ihr %provider_name% Konto entspricht einem vorhandenen Konto login/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 freizuschalten web/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 erstellt Notification/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ücksichtigt Controller/Root/AccountController.php @@ -7727,9 +7723,9 @@ prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig - + actual status - actual status + Aktuelles Status admin/task-manager/index.html.twig @@ -7836,9 +7832,9 @@ eine neue Datenbank erstellen web/admin/databases.html.twig - + admin::base: databox not found - admin::base: databox not found + Databox nicht gefunden Controller/Admin/DataboxController.php @@ -7882,9 +7878,9 @@ Struktur web/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 @@ Benutzer web/admin/connected-users.html.twig - + admin::plugins: about - admin::plugins: about + Über admin/plugins/show_fallback.html.twig - + admin::plugins: name - admin::plugins: name + Plugin Name admin/plugins/show_fallback.html.twig - + admin::plugins: plugins - admin::plugins: plugins + Plugins web/admin/tree.html.twig admin/plugins/index.html.twig - + admin::plugins: retrieveConfigurationError - admin::plugins: retrieveConfigurationError + Fehler im Konfigurationsabruf admin/plugins/show_fallback.html.twig - + admin::plugins: version - admin::plugins: version + Version admin/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 Einstellung web/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.php actions/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.php task-manager/task-editor/subdefs.html.twig - + auto* - auto* + auto* prod/results/help.html.twig @@ -8701,14 +8697,14 @@ April classes/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 @@ ablehnen classes/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 aktivieren web/report/listColumn.html.twig - + collection.label.unknown - collection.label.unknown + Unbekannte Kollektion lib/classes/phrasea.php @@ -9247,9 +9243,9 @@ Controller/Report/RootController.php Controller/Report/ActivityController.php - + copyClipboardLabel - copyClipboardLabel + in der Zwischenablage kopieren prod/Share/record.html.twig prod/Share/record.html.twig prod/Share/record.html.twig @@ -9309,9 +9305,9 @@ Na?e prod/results/help.html.twig - + edit - edit + Bearbeiten prod/WorkZone/Macros.html.twig web/account/account.html.twig web/account/account.html.twig @@ -9357,9 +9353,9 @@ Titel prod/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.php Controller/Prod/ToolsController.php - + filtrer les resultats sur la colonne %colonne% - filtrer les resultats sur la colonne %colonne% + die Ergebnisse auf die Spalte %colonne% filtern Controller/Report/InformationController.php Controller/Report/InformationController.php Controller/Report/RootController.php Controller/Report/ActivityController.php - + flash - flash + Flash Phrasea/Twig/PhraseanetExtension.php task-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 hergestellt admin/databox/databox.html.twig - + from - from + von web/report/report_layout_child.html.twig web/report/report_layout_child.html.twig @@ -9695,19 +9691,19 @@ Hier ist eine Nachricht über Ihre Zugriffanfragen Notification/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 aktualisieren actions/Tools/index.html.twig - + name - name + Name admin/task-manager/index.html.twig @@ -9804,9 +9800,9 @@ web/admin/statusbit.html.twig web/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 Berichts Controller/Prod/LanguageController.php @@ -9984,9 +9980,9 @@ web/admin/databases.html.twig web/admin/databases.html.twig - + phraseanet:: plugin.workzone - phraseanet:: plugin.workzone + Plugin WorkZone web/prod/tab_headers.html.twig @@ -10077,7 +10073,7 @@ phraseanet::chargement - ladend + Bitte warten... Controller/Prod/LanguageController.php prod/actions/edit_default.html.twig web/thesaurus/thesaurus.html.twig @@ -10168,14 +10164,14 @@ gestern lib/classes/phraseadate.php - + phraseanet::temps:: il y a %quantity% heures - phraseanet::temps:: il y a %quantity% heures + vor %quantity% Stunde lib/classes/phraseadate.php - + phraseanet::temps:: il y a %quantity% minutes - phraseanet::temps:: il y a %quantity% minutes + vor %quantity% Minuten lib/classes/phraseadate.php @@ -10303,9 +10299,9 @@ Ansicht Statistiken prod/preview/popularity.html.twig - + previewLinkLabel - previewLinkLabel + ansichten prod/Share/record.html.twig prod/Share/record.html.twig prod/Share/record.html.twig @@ -10484,19 +10480,19 @@ Suchen prod/actions/edit_default.html.twig - + prod::facet:base_label - prod::facet:base_label + Datenbanken Controller/Prod/QueryController.php - + prod::facet:collection_label - prod::facet:collection_label + Kollektionen Controller/Prod/QueryController.php - + prod::facet:doctype_label - prod::facet:doctype_label + Dokumenttyp Controller/Prod/QueryController.php @@ -10544,9 +10540,9 @@ Löschen... web/prod/index.html.twig - + prod::thesaurusTab:dlg:accepter le terme candidat "%s" ? - prod::thesaurusTab:dlg:accepter le terme candidat "%s" ? + Termkandidat "%s" akzeptieren? web/prod/index.html.twig @@ -10564,9 +10560,9 @@ %d Begriffe von der Beschreibung ersetzen durch: web/prod/index.html.twig - + prod::thesaurusTab:dlg:supprimer le terme "%s" des fiches ? - prod::thesaurusTab:dlg:supprimer le terme "%s" des fiches ? + Term "%s" vom Beschreibung löschen? web/prod/index.html.twig @@ -10604,9 +10600,9 @@ mögliche Begriffe annehmen web/prod/tab_thesaurus.html.twig - + prod::thesaurusTab:wizard:clic-droit / accepter le terme candidat "%s" - prod::thesaurusTab:wizard:clic-droit / accepter le terme candidat "%s" + Termkandidat "%s" akzeptieren web/prod/index.html.twig @@ -10619,9 +10615,9 @@ ersetzen durch den Begriff web/prod/tab_thesaurus.html.twig - + prod::tools: document - Dokument + Dokument Controller/Prod/ToolsController.php @@ -10680,14 +10676,14 @@ Controller/Prod/FeedController.php Controller/Prod/FeedController.php - + push::mail:: Rapport de validation de %user% pour %title% - push::mail:: Rapport de validation de %user% pour %title% + Bestätigungsbericht von %user% über %title% Notification/Mail/MailInfoValidationDone.php - + push::mail:: Reception de votre commande %title% - push::mail:: Reception de votre commande %title% + Eingang Ihrer Bestellung %title% Notification/Mail/MailInfoOrderDelivered.php @@ -10719,9 +10715,9 @@ Alle Felder web/prod/index.html.twig - + recordtype - recordtype + Datensatz Typ task-manager/task-editor/subdefs.html.twig @@ -10729,14 +10725,14 @@ Neuerstellung von Unterauflösungen actions/Tools/index.html.twig - + reponses:: %available% Resultats rappatries sur un total de %total% trouves - reponses:: %available% Resultats rappatries sur un total de %total% trouves + %available% Ergebnisse abgerufen, für insgesamt %total% gefunden Controller/Prod/QueryController.php - + reponses:: %total% Resultats - reponses:: %total% Resultats + %total% Ergebnisse Controller/Prod/QueryController.php @@ -10876,9 +10872,9 @@ web/report/ajax_dashboard_content_child.html.twig web/report/all_content.html.twig - + - + Downloads & Verbindungen web/report/ajax_dashboard_content_child.html.twig @@ -10926,29 +10922,29 @@ module/report/filter.php Controller/Report/RootController.php - + report:: Information sur l'enregistrement numero %number% - report:: Information sur l'enregistrement numero %number% + Information über Datensatz %number% module/report/nav.php - + report:: Information sur l'utilisateur %name% - report:: Information sur l'utilisateur %name% + Information über Benutzer %name% module/report/nav.php - + report:: Information sur le navigateur %name% - report:: Information sur le navigateur %name% + Information über Webbrowser %name% module/report/nav.php - + report:: Information sur les utilisateurs correspondant a %critere% - report:: Information sur les utilisateurs correspondant a %critere% + Information über die Benutzer entsprechend %critere% module/report/nav.php report:: Les questions les plus posees - häufigsten gestellten Fragen + Meist gestellten Fragen web/report/ajax_dashboard_content_child.html.twig web/report/report_layout_child.html.twig @@ -10957,9 +10953,9 @@ Plattform module/report/nav.php - + report:: Utilisateurs les plus actifs - report:: Utilisateurs les plus actifs + Aktivsten Benutzer web/report/ajax_dashboard_content_child.html.twig web/report/ajax_dashboard_content_child.html.twig web/report/ajax_dashboard_content_child.html.twig @@ -10967,7 +10963,7 @@ report:: Volumetrie des questions posees sur %home_title% - häufigsten Suchabfragen in %home_title% + Meist Suchabfragen in %home_title% web/report/dashboard_macro.html.twig @@ -10980,14 +10976,14 @@ web/report/report_layout_child.html.twig web/report/report_layout_child.html.twig - + report:: activite document ajoute - report:: activite document ajoute + Hinzugefügte Dokumente web/report/ajax_dashboard_content_child.html.twig - + report:: activite document edite - report:: activite document edite + Bearbeitete Dokumente web/report/ajax_dashboard_content_child.html.twig @@ -11073,9 +11069,9 @@ hinzugefügte Dokumente module/report/add.php - + report:: documents les plus telecharges - report:: documents les plus telecharges + Meist heruntergeladene Dokumente web/report/ajax_dashboard_content_child.html.twig @@ -11117,7 +11113,7 @@ report:: historique des questions - Suchabfragen History + Suchabfragen Historie Controller/Report/InformationController.php @@ -11199,9 +11195,9 @@ Controller/Report/ActivityController.php Controller/Report/ActivityController.php - + report:: nombre de vue - report:: nombre de vue + Anzahl von Ansichten web/report/ajax_dashboard_content_child.html.twig @@ -11261,14 +11257,14 @@ Controller/Report/InformationController.php Controller/Report/InformationController.php - + report:: poids document - report:: poids document + Gewicht von heruntergeladenen Dokumenten web/report/ajax_dashboard_content_child.html.twig - + report:: poids preview - report:: poids preview + Gewicht von heruntergeladenen Unterauflösungen web/report/ajax_dashboard_content_child.html.twig web/report/ajax_dashboard_content_child.html.twig @@ -11288,9 +11284,9 @@ Controller/Report/ActivityController.php web/report/ajax_dashboard_content_child.html.twig - + report:: preview les plus telecharges - report:: preview les plus telecharges + Meist heruntergeladene Ansichten web/report/ajax_dashboard_content_child.html.twig @@ -11323,7 +11319,7 @@ report:: questions les plus posees - Häufigsten gestellten Fragen + Meist gestellten Fragen module/report/activity.php @@ -11354,14 +11350,14 @@ module/report/nav.php Controller/Report/RootController.php - + report:: site - report:: site + Website web/report/ajax_dashboard_content_child.html.twig - + report:: site d'ou les photo sont les plus consultees - report:: site d'ou les photo sont les plus consultees + Website, wo die Dokumente am häufigsten angesehen sind (Referer) web/report/ajax_dashboard_content_child.html.twig @@ -11395,9 +11391,9 @@ web/report/ajax_dashboard_content_child.html.twig web/report/ajax_dashboard_content_child.html.twig - + report:: telechargements document - report:: telechargements document + Heruntergeladene Dokumente web/report/ajax_dashboard_content_child.html.twig @@ -11405,9 +11401,9 @@ Download pro Tag module/report/activity.php - + report:: telechargements preview - report:: telechargements preview + Heruntergeladene Unterauflösungen web/report/ajax_dashboard_content_child.html.twig @@ -11482,9 +11478,9 @@ Kollektion Verschiebung zu : %coll_name% prod/preview/short_history.html.twig - + report::Connexion - report::Connexion + Verbindungen web/report/ajax_dashboard_content_child.html.twig @@ -11616,23 +11612,23 @@ reportage - Reportage + Bericht Phrasea/Twig/PhraseanetExtension.php Phrasea/Twig/PhraseanetExtension.php - + resultat numero %number% - resultat numero %number% + Ergebnis Nummer %number% classes/record/preview.php - + retourne "automobile", "automate", "autoroute", ... - retourne "automobile", "automate", "autoroute", ... + gibt "Autobahn", "Autobus", "Automobilsalon", usw. zurück prod/results/help.html.twig - + retourne "délit", "débit", ... - retourne "délit", "débit", ... + gibt "nahe", "name", zurück prod/results/help.html.twig @@ -11675,9 +11671,9 @@ 90° im Uhrzeigersinn drehen actions/Tools/index.html.twig - + scheduled status - scheduled status + Erwarteten Status admin/task-manager/index.html.twig @@ -11867,9 +11863,9 @@ Angaben der Datei(en) TaskManager/Job/FtpJob.php - + task::ftp:Etat d'envoi FTP vers le serveur "%server%" avec le compte "%username%" et pour destination le dossier : "%directory%" - task::ftp:Etat d'envoi FTP vers le serveur "%server%" avec le compte "%username%" et pour destination le dossier : "%directory%" + Zustand von FTP-Senden zum Server "%server%" mit Konto "%username%" und Bestimmungsort: "%directory%" TaskManager/Job/FtpJob.php @@ -11877,26 +11873,26 @@ FTP Pull TaskManager/Job/FtpPullJob.php - + task::ftp:File "%file%" (record %record_id%) de la base "%basename%" (Export du Document) : Transfert cancelled (le document n'existe plus) - task::ftp:File "%file%" (record %record_id%) de la base "%basename%" (Export du Document) : Transfert cancelled (le document n'existe plus) + Übertragung abgebrochen für die Datei "%file%" (recordid %record_id%) von Datenbank "%basename%" (Dokument Export) : Dokument existiert nicht mehr. TaskManager/Job/FtpJob.php - + task::ftp:Record %recordid% - %filename% de la base (%databoxname% - %collectionname%) - %subdefname% - task::ftp:Record %recordid% - %filename% de la base (%databoxname% - %collectionname%) - %subdefname% + Datensatz %recordid% - %filename% von Datenbank (%databoxname% - %collectionname%) - %subdefname% TaskManager/Job/FtpJob.php TaskManager/Job/FtpJob.php - + task::ftp:Status about your FTP transfert from %application% to %server% - task::ftp:Status about your FTP transfert from %application% to %server% + Zustand von FTP Übertragung von %application% zum Server %server% Notification/Mail/MailSuccessFTPReceiver.php Notification/Mail/MailSuccessFTPSender.php - + task::ftp:TENTATIVE no %number%, %date% - task::ftp:TENTATIVE no %number%, %date% + Versuch %number% - %date% TaskManager/Job/FtpJob.php @@ -11904,19 +11900,19 @@ Alle Dokumente wurden erfolgreich übertragen TaskManager/Job/FtpJob.php - + task::ftp:chemin distant - task::ftp:chemin distant + Remote-Pfad task-manager/task-editor/ftp-pull.html.twig - + task::ftp:host - task::ftp:host + Host-Server task-manager/task-editor/ftp-pull.html.twig - + task::ftp:localpath - task::ftp:localpath + Lokalen Pfad task-manager/task-editor/ftp-pull.html.twig @@ -11924,14 +11920,14 @@ Passiv-Mode task-manager/task-editor/ftp-pull.html.twig - + task::ftp:password - task::ftp:password + FTP Passwort task-manager/task-editor/ftp-pull.html.twig - + task::ftp:port - task::ftp:port + FTP-Port task-manager/task-editor/ftp-pull.html.twig @@ -11940,9 +11936,9 @@ task-manager/task-editor/ftp-pull.html.twig task-manager/task-editor/ftp.html.twig - + task::ftp:proxy password - task::ftp:proxy password + Passwort task-manager/task-editor/ftp.html.twig @@ -11951,14 +11947,14 @@ task-manager/task-editor/ftp-pull.html.twig task-manager/task-editor/ftp.html.twig - + task::ftp:proxy user - task::ftp:proxy user + Login task-manager/task-editor/ftp.html.twig - + task::ftp:user - task::ftp:user + FTP Login task-manager/task-editor/ftp-pull.html.twig @@ -11981,9 +11977,9 @@ Zurückschreiben der Metadaten in Dokumente (und betroffenen Unterauflösungen) TaskManager/Job/WriteMetadataJob.php - + task::writemeta:Compatibilité MWG - task::writemeta:Compatibilité MWG + MWG konform Metadaten task-manager/task-editor/write-metadata.html.twig @@ -12031,9 +12027,9 @@ Begriff hinzufügen, ohne ihn zu wieder indexieren web/thesaurus/new-term.html.twig - + thesaurus:: Ce champ a ete modifie ; ancienne branche : %old_branch% }} - thesaurus:: Ce champ a ete modifie ; ancienne branche : %old_branch% }} + Dieses Feld wurde verändert. Alter Zweig : %old_branch% web/thesaurus/link-field-step2.html.twig @@ -12196,9 +12192,9 @@ ist schon ein möglicher Begriff und stammt aus dem zulässigen Feld : web/thesaurus/new-term.html.twig - + thesaurus:: est egal a - thesaurus:: est egal a + gleicht web/thesaurus/thesaurus.html.twig @@ -12259,14 +12255,14 @@ für alle Sprachen exportieren web/thesaurus/export-topics-dialog.html.twig - + thesaurus:: fichier genere : %filename% - thesaurus:: fichier genere : %filename% + erzeugte Datei: %filename% Controller/Thesaurus/ThesaurusController.php - + thesaurus:: fichier genere le %date% - thesaurus:: fichier genere le %date% + erzeugte Datei am %date% Controller/Thesaurus/ThesaurusController.php @@ -12369,9 +12365,9 @@ volltext web/thesaurus/export-topics-dialog.html.twig - + thesaurus:: recherche thesaurus *:"query" - thesaurus:: recherche thesaurus *:"query" + Thesaurus *:"query" web/thesaurus/export-topics-dialog.html.twig @@ -12526,9 +12522,9 @@ Miniaturansicht Bestätigung actions/Tools/index.html.twig - + to - to + to web/report/report_layout_child.html.twig web/report/report_layout_child.html.twig @@ -12553,14 +12549,14 @@ Alle Benachrichtigungen web/prod/notifications.html.twig - + unknown - unknown + unbekannt task-manager/task-editor/subdefs.html.twig - + untitled - untitled + unbetitelt actions/Bridge/element_list.html.twig @@ -12648,9 +12644,9 @@ Mindestens eine Kollektion muss ausgewählt werden web/report/all_content.html.twig - + video - video + Video task-manager/task-editor/subdefs.html.twig From b6e8e73dd7da4834e9b464b2de7985df7f4a4a87 Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Fri, 1 Sep 2017 10:01:29 +0400 Subject: [PATCH 48/56] update version phraseanet-production-client --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7f1aad1059..9266d3b01b 100644 --- a/package.json +++ b/package.json @@ -35,6 +35,6 @@ }, "dependencies": { "alchemy-embed-medias": "^0.4.4", - "phraseanet-production-client": "~0.19.24" + "phraseanet-production-client": "~0.32.2" } } From e5a2397370f04e51173e4b5a71d075453c876f4f Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Fri, 1 Sep 2017 10:18:46 +0400 Subject: [PATCH 49/56] update version phraseanet-production-client --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7f1aad1059..9266d3b01b 100644 --- a/package.json +++ b/package.json @@ -35,6 +35,6 @@ }, "dependencies": { "alchemy-embed-medias": "^0.4.4", - "phraseanet-production-client": "~0.19.24" + "phraseanet-production-client": "~0.32.2" } } From 162d9f7c2136e2ba43a2d705d4f79d7d911c8e5f Mon Sep 17 00:00:00 2001 From: Anthony C Date: Thu, 14 Sep 2017 13:38:07 +0200 Subject: [PATCH 50/56] Translated using Weblate (English) Currently translated at 99.8% (2281 of 2284 strings) --- resources/locales/messages.en.xlf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/locales/messages.en.xlf b/resources/locales/messages.en.xlf index a334220d15..96f43e074f 100644 --- a/resources/locales/messages.en.xlf +++ b/resources/locales/messages.en.xlf @@ -4256,7 +4256,7 @@ Nom des fichiers a l'export - FIles name to use for Download + Filename to use for downloads web/common/dialog_export.html.twig From ad37ce2c66556f4acfd2a2365bc14c9cbb0ab430 Mon Sep 17 00:00:00 2001 From: Nicolas Maillat Date: Fri, 15 Sep 2017 15:56:41 +0200 Subject: [PATCH 51/56] Translated using Weblate (English) Currently translated at 99.8% (2281 of 2284 strings) --- resources/locales/messages.en.xlf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/locales/messages.en.xlf b/resources/locales/messages.en.xlf index 96f43e074f..625746513f 100644 --- a/resources/locales/messages.en.xlf +++ b/resources/locales/messages.en.xlf @@ -7189,7 +7189,8 @@ Warning, this database is not empty - Warning, this database is not empty + Warning, this database is not empty, running install ERASE definitively content of this databases, +(user, basket etc...). web/setup/step2.html.twig From 7afd30e9d5ef252c12ced9e610274f71421d6886 Mon Sep 17 00:00:00 2001 From: Nicolas Maillat Date: Fri, 15 Sep 2017 15:54:52 +0200 Subject: [PATCH 52/56] Translated using Weblate (French) Currently translated at 99.8% (2281 of 2284 strings) --- resources/locales/messages.fr.xlf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/locales/messages.fr.xlf b/resources/locales/messages.fr.xlf index 8c182f052c..b2fbce0e24 100644 --- a/resources/locales/messages.fr.xlf +++ b/resources/locales/messages.fr.xlf @@ -7191,7 +7191,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Warning, this database is not empty - Attention cette base n'est pas vide + Attention cette base n'est pas vide, l'installeur EFFACERA le contenus de la databox. +La base de compte sera définitivement perdus. web/setup/step2.html.twig From 845d4b35551c3cf025e5c5418218818575696d4b Mon Sep 17 00:00:00 2001 From: Nicolas Maillat Date: Tue, 26 Sep 2017 11:41:31 +0200 Subject: [PATCH 53/56] Translated using Weblate (English) Currently translated at 99.8% (2281 of 2284 strings) --- resources/locales/messages.en.xlf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/locales/messages.en.xlf b/resources/locales/messages.en.xlf index 625746513f..057ad3d8d8 100644 --- a/resources/locales/messages.en.xlf +++ b/resources/locales/messages.en.xlf @@ -1197,7 +1197,7 @@ Authorize *Phraseanet Navigator* - Authorise *Phraseanet Navigator* + DEPRECATED, Authorise *Phraseanet Navigator* Form/Configuration/APIClientsFormType.php @@ -2101,7 +2101,7 @@ Default TTL in seconds of sub-definition url - Default TTL in seconds of sub-definition url + Default TTL in seconds for JWT of sub-definition url Form/Configuration/GeneralFormType.php @@ -2673,7 +2673,7 @@ Enable this setting to share on Facebook and Twitter - Enable this setting to share media content on Facebook and Twitter + Enable this setting for obtaining permalink and/or share media on social network like Facebook and Twitter etc ... Form/Configuration/ActionsFormType.php From 4dc7f968454e4accfa39aea7c1dbfcb0e2d8e6da Mon Sep 17 00:00:00 2001 From: Nicolas Maillat Date: Tue, 26 Sep 2017 11:51:00 +0200 Subject: [PATCH 54/56] Translated using Weblate (French) Currently translated at 99.8% (2281 of 2284 strings) --- resources/locales/messages.fr.xlf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/locales/messages.fr.xlf b/resources/locales/messages.fr.xlf index b2fbce0e24..ee4f4edb2f 100644 --- a/resources/locales/messages.fr.xlf +++ b/resources/locales/messages.fr.xlf @@ -1197,7 +1197,7 @@ Authorize *Phraseanet Navigator* - Autoriser *Phraseanet Navigator* + OBSOLETE Autoriser *Phraseanet Navigator* Form/Configuration/APIClientsFormType.php @@ -2101,7 +2101,7 @@ Default TTL in seconds of sub-definition url - Durée de validité, en secondes, de l'URL de la sous-définition + Durée de validité, en secondes, des URL JWT pour les sous-définition et documents Form/Configuration/GeneralFormType.php @@ -2673,7 +2673,7 @@ Enable this setting to share on Facebook and Twitter - Activer le partage sur Facebook et Twitter + Activer le partage par permalien et ou sur les reseaux sociaux Facebook et Twitter etc ... Form/Configuration/ActionsFormType.php From 858927ac920b27b1d11a3ae659ba317e82ad373d Mon Sep 17 00:00:00 2001 From: Jennifer Date: Tue, 26 Sep 2017 11:56:38 +0200 Subject: [PATCH 55/56] Translated using Weblate (German) Currently translated at 99.2% (2268 of 2285 strings) --- resources/locales/messages.de.xlf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/locales/messages.de.xlf b/resources/locales/messages.de.xlf index be77dc559d..7725ffe896 100644 --- a/resources/locales/messages.de.xlf +++ b/resources/locales/messages.de.xlf @@ -620,9 +620,9 @@ admin/fields/templates.html.twig admin/fields/templates.html.twig - + Add a position - Add a position + Ort hinzufügen Controller/Prod/LanguageController.php From b13b72cc6cb3fd962f718c7e7f9a4cb46da1e36c Mon Sep 17 00:00:00 2001 From: Nicolas Maillat Date: Tue, 17 Oct 2017 23:33:51 +0200 Subject: [PATCH 56/56] Update README.md --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9b98fc7e6c..886594c7fd 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,10 @@ Phraseanet 4.0 - Digital Asset Management application ===================================================== -[![Build Status](https://secure.travis-ci.org/alchemy-fr/Phraseanet.png?branch=master)](http://travis-ci.org/alchemy-fr/Phraseanet) + + +[![CircleCI](https://circleci.com/gh/alchemy-fr/Phraseanet/tree/master.svg?style=shield)](https://circleci.com/gh/alchemy-fr/Phraseanet/tree/master) # Features : - Metadata Management (include Thesaurus and DublinCore Mapping) @@ -30,3 +32,6 @@ See https://docs.phraseanet.com/Devel/ # License : Phraseanet is licensed under GPL-v3 license. + + +[![Build Status](https://secure.travis-ci.org/alchemy-fr/Phraseanet.png?branch=master)](http://travis-ci.org/alchemy-fr/Phraseanet)