diff --git a/.circleci/config.yml b/.circleci/config.yml index 6ab1d246b2..ce2f8c9a5c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,100 +1,149 @@ -version: 2 +version: 2.1 +orbs: + aws-ecr: circleci/aws-ecr@4.0.1 +executors: + docker_build: + machine: + docker_layer_caching: true jobs: - build: - working_directory: ~/alchemy-fr/Phraseanet - parallelism: 2 - shell: /bin/bash --login - environment: - CIRCLE_ARTIFACTS: /tmp/circleci-artifacts - CIRCLE_TEST_REPORTS: /tmp/circleci-test-results - docker: - - image: circleci/build-image:ubuntu-14.04-XXL-upstart-1189-5614f37 - command: /sbin/init - steps: - - checkout - - run: mkdir -p $CIRCLE_ARTIFACTS $CIRCLE_TEST_REPORTS - - run: + build: working_directory: ~/alchemy-fr/Phraseanet - command: nvm install v10.12.0 && nvm alias default v10.12.0 - - run: - working_directory: ~/alchemy-fr/Phraseanet - command: 'sudo service memcached status || sudo service memcached start; sudo - redis-cli ping >/dev/null 2>&1 || sudo service redis-server start; sudo - service mysql status || sudo service mysql start; sudo service rabbitmq-server - status || sudo service rabbitmq-server start; ' - # Dependencies - # This would typically go in either a build or a build-and-test job when using workflows - # Restore the dependency cache - - restore_cache: - keys: - # This branch if available - - v1-dep-{{ .Branch }}- - # Default branch if not - - v1-dep-master- - # Any branch if there are none on the default branch - this should be unnecessary if you have your default branch configured correctly - - v1-dep- - # This is based on your 1.0 configuration file or project settings - - run: git clone https://github.com/alanxz/rabbitmq-c - - run: cd rabbitmq-c && git checkout 2ca1774489328cde71195f5fa95e17cf3a80cb8a - - run: cd rabbitmq-c && git submodule init && git submodule update && autoreconf -i && ./configure && make && sudo make install - - run: pecl channel-update pear.php.net - - run: yes '' | pecl install amqp-1.9.3 - - run: yes '' | pecl install imagick - - run: sudo apt-get install libzmq-dev - - run: yes '' | pecl install zmq-beta - - run: echo "extension = amqp.so" > /opt/circleci/php/$(phpenv global)/etc/conf.d/amqp.ini - - run: echo "extension = zmq.so" > /opt/circleci/php/$(phpenv global)/etc/conf.d/zmq.ini - - run: echo "date.timezone = UTC" > /opt/circleci/php/$(phpenv global)/etc/conf.d/timezone.ini - - run: sed -i 's/^\(session.cache_limiter = \).*/\1""/' /opt/circleci/php/$(phpenv global)/etc/php.ini - - run: npm rebuild node-sass - # This is based on your 1.0 configuration file or project settings - - run: composer install --no-progress --no-interaction --optimize-autoloader - # This is based on your 1.0 configuration file or project settings - - run: node -v - - run: npm -v - - run: npm install - - run: if [[ ! -e elasticsearch-2.3.3 ]]; then wget --no-check-certificate https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-2.3.3.tar.gz && tar -xvf elasticsearch-2.3.3.tar.gz && elasticsearch-2.3.3/bin/plugin install analysis-icu; fi - - run: - command: elasticsearch-2.3.3/bin/elasticsearch - background: true - # Save dependency cache - - save_cache: - key: v1-dep-{{ .Branch }}-{{ epoch }} - paths: - # This is a broad list of cache paths to include many possible development environments - # You can probably delete some of these entries - - vendor/bundle - - ~/virtualenvs - - ~/.m2 - - ~/.ivy2 - - ~/.bundle - - ~/.go_workspace - - ~/.gradle - - ~/.cache/bower - # These cache paths were specified in the 1.0 config - - elasticsearch-2.3.3 - - node_modules - - ~/.composer - # This is based on your 1.0 configuration file or project settings - - run: mysql -u ubuntu -e 'CREATE DATABASE update39_test;CREATE DATABASE ab_test;CREATE DATABASE db_test;SET @@global.sql_mode=STRICT_ALL_TABLES;SET @@global.max_allowed_packet=33554432;SET @@global.wait_timeout=999999;'; - # This is based on your 1.0 configuration file or project settings - - run: ./bin/developer system:uninstall -v - - run: ./bin/setup system:install -v --email=test@phraseanet.com --password=test --db-host=127.0.0.1 --db-user=ubuntu --db-template=fr-simple --db-password= --databox=db_test --appbox=ab_test --server-name=http://127.0.0.1 -y; - - run: ./bin/developer ini:setup-tests-dbs -v - - run: ./bin/console searchengine:index:create -v - - run: ./bin/developer phraseanet:regenerate-sqlite -v - - run: ./bin/developer phraseanet:generate-js-fixtures -v - # Test - # This would typically be a build job when using workflows, possibly combined with build - # This is based on your 1.0 configuration file or project settings - - run: case $CIRCLE_NODE_INDEX in 0) EXIT=0; php -d memory_limit=-1 bin/phpunit --log-junit $CIRCLE_TEST_REPORTS/phpunit/junit-unit.xml --exclude-group legacy || EXIT=$?; php -d memory_limit=-1 bin/phpunit --log-junit $CIRCLE_TEST_REPORTS/phpunit/junit-legacy-no-web.xml --group legacy --exclude-group web || EXIT=$?; exit $EXIT;; 1) php -d memory_limit=-1 bin/phpunit --log-junit $CIRCLE_TEST_REPORTS/phpunit/junit-legacy-web.xml --group web ;; esac - # Teardown - # If you break your build into multiple jobs with workflows, you will probably want to do the parts of this that are relevant in each - # Save test results - - store_test_results: - path: /tmp/circleci-test-results - # Save artifacts - - store_artifacts: - path: /tmp/circleci-artifacts - - store_artifacts: - path: /tmp/circleci-test-results + parallelism: 2 + shell: /bin/bash --login + environment: + CIRCLE_ARTIFACTS: /tmp/circleci-artifacts + CIRCLE_TEST_REPORTS: /tmp/circleci-test-results + docker: + - image: circleci/build-image:ubuntu-14.04-XXL-upstart-1189-5614f37 + - image: circleci/rabbitmq:3.7.7 + steps: + - checkout + - run: mkdir -p $CIRCLE_ARTIFACTS $CIRCLE_TEST_REPORTS + - run: + working_directory: ~/alchemy-fr/Phraseanet + command: nvm install v10.12.0 && nvm alias default v10.12.0 + - run: + working_directory: ~/alchemy-fr/Phraseanet + command: 'sudo service mysql status || sudo service mysql start;' + # Dependencies + # This would typically go in either a build or a build-and-test job when using workflows + # Restore the dependency cache + - restore_cache: + keys: + # This branch if available + - v1-dep-{{ .Branch }}- + # Default branch if not + - v1-dep-master- + # Any branch if there are none on the default branch - this should be unnecessary if you have your default branch configured correctly + - v1-dep- + # This is based on your 1.0 configuration file or project settings + - run: echo 127.0.0.1 redis elasticsearch db rabbitmq | sudo tee -a /etc/hosts + - run: git clone https://github.com/alanxz/rabbitmq-c + - run: cd rabbitmq-c && git checkout 2ca1774489328cde71195f5fa95e17cf3a80cb8a + - run: cd rabbitmq-c && git submodule init && git submodule update && autoreconf -i && ./configure && make && sudo make install + # disabled because pear.php.net is down cause of security failure + #- run: pecl channel-update pear.php.net + - run: yes '' | pecl install amqp-1.9.3 + - run: yes '' | pecl install imagick + - run: sudo apt-get install libzmq-dev + - run: yes '' | pecl install zmq-beta + - run: echo "extension = amqp.so" > /opt/circleci/php/$(phpenv global)/etc/conf.d/amqp.ini + - run: echo "extension = zmq.so" > /opt/circleci/php/$(phpenv global)/etc/conf.d/zmq.ini + - run: echo "date.timezone = UTC" > /opt/circleci/php/$(phpenv global)/etc/conf.d/timezone.ini + - run: sed -i 's/^\(session.cache_limiter = \).*/\1""/' /opt/circleci/php/$(phpenv global)/etc/php.ini + - run: npm rebuild node-sass + # This is based on your 1.0 configuration file or project settings + - run: composer install --no-progress --no-interaction --optimize-autoloader + # This is based on your 1.0 configuration file or project settings + - run: node -v + - run: npm -v + - run: npm install -g yarn + - run: rm ~/.yarn/bin/yarn + - run: ln -s /opt/circleci/nodejs/v10.12.0/bin/yarn ~/.yarn/bin/yarn + - run: yarn install + - run: if [[ ! -e elasticsearch-2.3.3 ]]; then wget --no-check-certificate https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-2.3.3.tar.gz && tar -xvf elasticsearch-2.3.3.tar.gz && elasticsearch-2.3.3/bin/plugin install analysis-icu; fi + - run: + command: elasticsearch-2.3.3/bin/elasticsearch + background: true + # Save dependency cache + - save_cache: + key: v1-dep-{{ .Branch }}-{{ epoch }} + paths: + # This is a broad list of cache paths to include many possible development environments + # You can probably delete some of these entries + - vendor/bundle + - ~/virtualenvs + - ~/.m2 + - ~/.ivy2 + - ~/.bundle + - ~/.go_workspace + - ~/.gradle + - ~/.cache/bower + # These cache paths were specified in the 1.0 config + - elasticsearch-2.3.3 + - node_modules + - ~/.composer + # This is based on your 1.0 configuration file or project settings + - run: mysql -u ubuntu -e 'CREATE DATABASE update39_test;CREATE DATABASE ab_test;CREATE DATABASE db_test;SET @@global.sql_mode=STRICT_ALL_TABLES;SET @@global.max_allowed_packet=33554432;SET @@global.wait_timeout=999999;'; + # This is based on your 1.0 configuration file or project settings + - run: ./bin/developer system:uninstall -v + - run: ./bin/setup system:install -v --email=test@phraseanet.com --password=test --db-host=127.0.0.1 --db-user=ubuntu --db-template=fr-simple --db-password= --databox=db_test --appbox=ab_test --server-name=http://127.0.0.1 -y; + - run: ./bin/developer ini:setup-tests-dbs -v + - run: ./bin/console searchengine:index:create -v + - run: ./bin/developer phraseanet:regenerate-sqlite -v + - run: ./bin/developer phraseanet:generate-js-fixtures -v + # Test + # This would typically be a build job when using workflows, possibly combined with build + # This is based on your 1.0 configuration file or project settings + - run: case $CIRCLE_NODE_INDEX in 0) EXIT=0; php -d memory_limit=-1 bin/phpunit --log-junit $CIRCLE_TEST_REPORTS/phpunit/junit-unit.xml --exclude-group legacy || EXIT=$?; php -d memory_limit=-1 bin/phpunit --log-junit $CIRCLE_TEST_REPORTS/phpunit/junit-legacy-no-web.xml --group legacy --exclude-group web || EXIT=$?; exit $EXIT;; 1) php -d memory_limit=-1 bin/phpunit --log-junit $CIRCLE_TEST_REPORTS/phpunit/junit-legacy-web.xml --group web ;; esac + # Teardown + # If you break your build into multiple jobs with workflows, you will probably want to do the parts of this that are relevant in each + # Save test results + - store_test_results: + path: /tmp/circleci-test-results + # Save artifacts + - store_artifacts: + path: /tmp/circleci-artifacts + - store_artifacts: + path: /tmp/circleci-test-results + +workflows: + version: 2 + oldfashion: + jobs: + - build + newfashion: + jobs: + - aws-ecr/build_and_push_image: + account-url: AWS_ACCOUNT_URL + aws-access-key-id: AWS_ACCESS_KEY_ID + aws-secret-access-key: AWS_SECRET_ACCESS_KEY + context: "AWS London" + create-repo: true + dockerfile: Dockerfile + extra-build-args: "--target phraseanet-fpm" + region: AWS_DEFAULT_REGION + repo: "${AWS_RESOURCE_NAME_PREFIX}/phraseanet" + tag: "alpha-0.1" + - aws-ecr/build_and_push_image: + account-url: AWS_ACCOUNT_URL + aws-access-key-id: AWS_ACCESS_KEY_ID + aws-secret-access-key: AWS_SECRET_ACCESS_KEY + context: "AWS London" + create-repo: true + dockerfile: Dockerfile + extra-build-args: "--target phraseanet-nginx" + region: AWS_DEFAULT_REGION + repo: "${AWS_RESOURCE_NAME_PREFIX}/phraseanet-nginx" + tag: "alpha-0.1" + - aws-ecr/build_and_push_image: + account-url: AWS_ACCOUNT_URL + aws-access-key-id: AWS_ACCESS_KEY_ID + aws-secret-access-key: AWS_SECRET_ACCESS_KEY + context: "AWS London" + create-repo: true + dockerfile: Dockerfile + extra-build-args: "--target phraseanet-worker" + region: AWS_DEFAULT_REGION + repo: "${AWS_RESOURCE_NAME_PREFIX}/phraseanet" + tag: "alpha-0.1" diff --git a/.gitignore b/.gitignore index c115c61f35..dc81372af0 100644 --- a/.gitignore +++ b/.gitignore @@ -21,7 +21,7 @@ !/config/configuration.sample.yml # Exclude generated proxies from doctrine2 -/resources/proxies +#/resources/proxies # Exclude temporaries resources (zip files, quarantine documents etc ..) folder /tmp @@ -69,3 +69,5 @@ grammar/jison-* pimple.json playbook.retry npm-debug.log + +/Phrasea_datas diff --git a/AUTHORS b/AUTHORS index d749eb8fcf..bb6d529b85 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,30 +1,43 @@ ** Phraseanet is written and maintained by the Phraseanet Developer Team ** - Benoît Burnichon - Jean-Yves Gaulier - Andrey Kalinovsky - Nicolas Legoff - Romain Neutron + - Jean-Yves Gaulier + - Milos M + - Mike NG + - Xavier Rousset + - Aina Sitraka + - Filip Vilic + ** Proudly Powered by Alchemy ** - Nicolas Amendola - Nathanaël Attar - Aurélie Bachelet - Anthony Cabot - Moctar Diouf - Jennifer Guérin - Nicolas Honoré - Nicolas Maillat - Guillaume Maubert - Jonathan Schneider + - Aurélie Bachelet + - Laetitia Bianchi + - Anthony Cabot + - Moctar Diouf + - Jennifer Guérin + - Félix Noir + - Nicolas Maillat + - Guillaume Maubert + ** They gave some love to Phraseanet ** - Ysoline Gresille + - Nicolas Amendola + - Nathanaël Attar + - Florian Blouet + - Benoît Burnichon + - Thibaud Fabre + - Ysoline Gresille + - Nicolas Honoré + - Andrey Kalinovsky + - Nicolas Legoff + - Romain Neutron + - Jonathan Schneider + Phraseanet c/o Alchemy 30 Place Saint Georges 75009 Paris - France +33 1 53 20 43 80 info@alchemy.fr + diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fb781ce38..a00034c35d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,140 @@ # CHANGELOG +## 4.0.9 -## 4.0.0 (xxxx-xx-xx) +### Adds - - Convert Orders custom adapter to Doctrine entity. - - Convert Feeds custom adapter to Doctrine entity. - - Convert Users custom adapter to Doctrine entity. - - Convert Ftp Export custom adapter to Doctrine entity. - - Convert Ftp Export custom adapter to Doctrine entity. - - Session management is now part of Phraseanet configuration. + - PHRAS-2535 - Back / Front - Unsubscription: It's now possible to request a validation by email to delete a Phraseanet user account. + - PHRAS-2480 - Back / Front - It's now possible to add a user model as order manager on a collection:All users with this model applied can manage orders on this collection. This features fixes an issue when users is provided by SAML and the orders manager is lost when user logs in. + - PHRAS-2474 - Back / front. - Searched terms are now found even if the searched terms are split in Business Field and regular Field. + - PHRAS-2462 - Front - Share media on LinkedIn as you can do on Facebook, Twitter. + - PHRAS-2417 - Front - Skin: grey and white, graphic enhancements. + - PHRAS-2067 - Front - Introducing thumbnail & preview generic images for Fonts + +### Fixes + +* PHRAS-2491 - Front - Click on facets title (expand/collapse) launched a bad query, due to jquery error. +* PHRAS-2510 - Front - Facets values appear Truncated after 15th character. +* PHRAS-2153 - Front - No user search possible with the field "Company" and field "Country". +* PHRAS-2154 - Front - Bug on Chrome only - selected 1 document instead of all for the feedback. +* PHRAS-2538 - Back - Some MP4 files were not correctly detected by Phraseanet. + +## 4.0.8 + +### Adds: + + - Upload: Distant files can be added via their URL in GUI and by API. Phraseanet downloads the file before archiving it. + - Search optimisation when searching in full text, there was a problem when the query mixed different types of fields. + - Search optimisation, it’s now possible to search a partial date in full text. + - Populate optimisation, now populating time: 3 times faster. + - It is now possible to migrate from 3.1 3.0 version to 4.X, without an intermediate step in 3.8.Fix: + +### Fixes + + - Search filter were not taken into account due to a bug in JS. + - Overlay title: In this field, text was repeated twice if : one or several words were highlighted in the field, and if the title contained more than 102 characters. + - List Manager: it was impossible to add users in the list manager after page 3. + - List of fields was not refreshed in the exported fields section. + - Push and Feedback fix error when adding a user when Geonames was not set (null value in Geonames). + +## 4.0.7 + +### Adds: + + - Advanced search refacto + - Thesaurus search is now in strict mode + - Refactoring of report module + - Refactoring query storage and changing strategy for field search restriction + - It is now possible to search for terms in thesaurus and candidates in all languages, not only on the login language + - Enhancements on archive task + - Graphic enhancements for menu and icons + - Video file enhancement, support of MXF container + - Extraction of a video soundtrack (MP3, MP4, WAVE, etc.) + - For Office Documents, all generated subviews will be PDF assets by default. The flexpaper preview still exists but will be optional. + - In Prod Gui, there will be 5 facets but the possibility to view more. + +### Fixes: + + - Quarantine: Fix for the “Substitute” action: alert when selection is empty + - Quarantine: File name with a special character can’t be added + - Fix for the Adobe CC default token + - XSS vulnerabilities in Prod, Admin & Lightbox. Many thanks to Kris (@HV_hat_) + - PDF containing (XMP-xmp:PageImage) fails generating subview + - MIME types are trucated + -Vagrant dev environment fix + - Feedback: Sort assets “Order by best choice” has no effect + +## 4.0.3 + +### Adds: + + - Prod: For a record, show the current day in the statistics section of the detailed view. + - Prod: Store state (open or closed) of facet answer. eg: Database or collection, store in session. + - Admin: Access to scheduler and task local menu when parameter is set to false in .yml configuration. + - Prod: Database, collection and document type facets are fixed on top + - Prod: Better rendering for values of exposure, shutter speed and flash status in facets. eg for shutter speed: 1/30 instead of 0,0333333. + - Versions 4 are now compliant with the Phraseanet plugins for Adobe CC Suite. + - White list mode: extending autoregistration and adding wildcard access condition by mail domain. Automatically grant access to a user according to the email entered in the request. + - Find your documents from the colors in the facets (AI plugin) + - Generate a PDF from a Word document or a picture, it’s now possible to define a pdf subview type + - Specify a temporary work repository for building video subdefs, to accelerate video generation. + +### Fixes: + + - Prod: In Upload, correct status are not loaded + - Prod:Arrow keys navigation adds last selected facet as filter + - Admin:Subdef presets, sizes and bitrates (bits/s) not OK + - Admin: App error on loading in French due to a simple quote + - Prod: Deletion message is not fully readable when deleting a story + - Fixing highlight with Elasticsearch for full text only, not for the thesaurus + - 500 error at the first authentication for a user with the SAML Phraseanet pluginDev + - Dev: Fix API version returned in answer + - Dev: Fix vagrant provisioning for Windows + +## 4.0.2 + +### Adds: + + - Prod: Message Improv, when selected records are in Trash and another one. + - Prod: alt-click on active facets (filter) to invert it. + - Prod: do not erase facets in filter when returning 0 answers. + - Core: Add preference to authorize user connection without an email + - Core: Add preference to set default validity period of download link + +### Fixes: + + - Thesaurus: 0 character terms are blocked + - Admin: fix action create and drop index from elasticsearch + - Prod: Fix advanced sarch: no filters possible on fields using IE + - Prod: 500 error in publication reader when record is missing (deleted from db)Unit test: fix error in Json serialization for custom link + - Prod: fix field list in advanced search with Edge browser + - Upload: fix 500 error when missing collection + - Install wizard: fix error in graphical installer + +## 4.0.0 + +### Adds: + +#### Phraseanet gets a new search engine: Elasticsearch + - Faceted navigation enables to create a “mapping” of the response. Browse in a very intuitive way by creating several associations of filters. Facets can be used on the databases, collections, documentary fields and technical data. + - Speed of processing search and results display has been improved + - Possibility to use Kibana (open source visualization plugin for Elasticsearch) + +#### API enhancement + - New API routes are available (orders, facets, quarantine) + - Enhancement of new, faster routes + + #### Redesign of the Prod interface + - Enhanced, redesigned ergonomics: the detailed view windows; redesign of the workzone (baskets and stories, facets, webgalleries) + - New white and grey skins are now available + - New order manager + + #### Other + - Permalinks sharing: activate/deactivate sharing links for the document and sub resolutions + - New: the applicative trash: you can now define a collection named _TRASH_. Then, all deleted records from collections (except from Trash) go to the Trash collection. Permalinks on subdefs are deactivated. When you delete a record from the Trash collection, it is permanently deleted. When you move a record from the Trash collection to another, the permalinks are reactivated. + - Rewriting of the task scheduler based on the web sockets + - Quarantine enhancement + - Drag and drop upload ## 3.8.8 (2015-12-02) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 4c9772eaed..794f49dee1 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1,3 +1,7 @@ +#version 4.0 + - Krzysztof Szulski Security + - Ideepix Docker Deploiement + #version 3.7 - Pieter Demonie (Dutch localization) diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000..c40dfc4347 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,181 @@ +FROM php:7.0-fpm-stretch as builder + +RUN apt-get update \ + && apt-get install -y \ + apt-transport-https \ + ca-certificates \ + gnupg2 \ + && apt-get update \ + && apt-get install -y --no-install-recommends zlib1g-dev \ + git \ + ghostscript \ + gpac \ + imagemagick \ + libav-tools \ + libfreetype6-dev \ + libicu-dev \ + libjpeg62-turbo-dev \ + libmagickwand-dev \ + libmcrypt-dev \ + libpng-dev \ + librabbitmq-dev \ + libssl-dev \ + libxslt-dev \ + libzmq3-dev \ + locales \ + mcrypt \ + swftools \ + unoconv \ + unzip \ + xpdf \ + && update-locale "LANG=fr_FR.UTF-8 UTF-8" \ + && dpkg-reconfigure --frontend noninteractive locales \ + && docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \ + && docker-php-ext-install -j$(nproc) gd \ + && docker-php-ext-install zip exif iconv mbstring pcntl sockets xsl intl pdo_mysql gettext bcmath mcrypt \ + && pecl install redis amqp-1.9.3 zmq-beta imagick-beta \ + && docker-php-ext-enable redis amqp zmq imagick \ + && pecl clear-cache \ + && docker-php-source delete \ + && rm -rf /var/lib/apt/lists/* + +RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" \ + && php -r "if (hash_file('sha384', 'composer-setup.php') === 'a5c698ffe4b8e849a443b120cd5ba38043260d5c4023dbf93e1558871f1f07f58274fc6f4c93bcfd858c6bd0775cd8d1') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" \ + && php composer-setup.php --install-dir=/usr/local/bin --filename=composer \ + && php -r "unlink('composer-setup.php');" + +# Node Installation (node + yarn) +# Reference : +# https://linuxize.com/post/how-to-install-node-js-on-ubuntu-18.04/ +# https://yarnpkg.com/lang/en/docs/install/#debian-stable +RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - \ + && apt install -y nodejs \ + && curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ + && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ + && apt-get update && apt-get install -y --no-install-recommends yarn \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/ + +RUN mkdir /entrypoint /var/alchemy \ + && useradd -u 1000 app \ + && mkdir -p /home/app/.composer \ + && chown -R app: /home/app /var/alchemy + +WORKDIR /var/alchemy/ + +COPY gulpfile.js /var/alchemy/ +COPY Makefile /var/alchemy/ +COPY package.json /var/alchemy/ +COPY phpunit.xml.dist /var/alchemy/ +COPY yarn.lock /var/alchemy/ +COPY bin /var/alchemy/bin +COPY composer.json /var/alchemy/ +COPY composer.lock /var/alchemy/ +RUN make install_composer +COPY resources /var/alchemy/resources +COPY www /var/alchemy/www +RUN make clean_assets +RUN make install_asset_dependencies +RUN make install_assets + +ADD ./docker/phraseanet/ / +COPY lib /var/alchemy/lib +COPY tmp /var/alchemy/tmp +COPY config /var/alchemy/config +COPY grammar /var/alchemy/grammar +COPY templates-profiler /var/alchemy/templates-profiler +COPY templates /var/alchemy/templates +COPY tests /var/alchemy/tests +RUN mkdir -p /var/alchemy/Phraseanet/logs \ + && chmod -R 777 /var/alchemy/Phraseanet/logs \ + && mkdir -p /var/alchemy/Phraseanet/cache \ + && chmod -R 777 /var/alchemy/Phraseanet/cache \ + && mkdir -p /var/alchemy/Phraseanet/datas \ + && chmod -R 777 /var/alchemy/Phraseanet/datas \ + && mkdir -p /var/alchemy/Phraseanet/tmp \ + && chmod -R 777 /var/alchemy/Phraseanet/tmp \ + && mkdir -p /var/alchemy/Phraseanet/www/custom \ + && chmod -R 777 /var/alchemy/Phraseanet/www/custom \ + && mkdir -p /var/alchemy/Phraseanet/config \ + && chmod -R 777 /var/alchemy/Phraseanet/config + +# Phraseanet +FROM php:7.0-fpm-stretch as phraseanet-fpm +RUN apt-get update \ + && apt-get install -y \ + apt-transport-https \ + ca-certificates \ + gnupg2 \ + && apt-get update \ + && apt-get install -y --no-install-recommends zlib1g-dev \ + gettext \ + git \ + ghostscript \ + gpac \ + imagemagick \ + libav-tools \ + libfreetype6-dev \ + libicu-dev \ + libjpeg62-turbo-dev \ + libmagickwand-dev \ + libmcrypt-dev \ + libpng-dev \ + librabbitmq-dev \ + libssl-dev \ + libxslt-dev \ + libzmq3-dev \ + locales \ + mcrypt \ + swftools \ + unoconv \ + unzip \ + xpdf \ + && update-locale "LANG=fr_FR.UTF-8 UTF-8" \ + && dpkg-reconfigure --frontend noninteractive locales \ + && docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \ + && docker-php-ext-install -j$(nproc) gd \ + && docker-php-ext-install zip exif iconv mbstring pcntl sockets xsl intl pdo_mysql gettext bcmath mcrypt \ + && pecl install redis amqp-1.9.3 zmq-beta imagick-beta \ + && docker-php-ext-enable redis amqp zmq imagick \ + && pecl clear-cache \ + && docker-php-source delete \ + && rm -rf /var/lib/apt/lists/* + +RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" \ + && php -r "if (hash_file('sha384', 'composer-setup.php') === 'a5c698ffe4b8e849a443b120cd5ba38043260d5c4023dbf93e1558871f1f07f58274fc6f4c93bcfd858c6bd0775cd8d1') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" \ + && php composer-setup.php --install-dir=/usr/local/bin --filename=composer \ + && php -r "unlink('composer-setup.php');" + +# Node Installation (node + yarn) +# Reference : +# https://linuxize.com/post/how-to-install-node-js-on-ubuntu-18.04/ +# https://yarnpkg.com/lang/en/docs/install/#debian-stable +RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - \ + && apt install -y nodejs \ + && curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ + && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ + && apt-get update && apt-get install -y --no-install-recommends yarn \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/ + +RUN mkdir /entrypoint /var/alchemy \ + && useradd -u 1000 app \ + && mkdir -p /home/app/.composer \ + && chown -R app: /home/app /var/alchemy + +COPY --from=builder --chown=app /var/alchemy /var/alchemy/Phraseanet +ADD ./docker/phraseanet/ / +WORKDIR /var/alchemy/Phraseanet +ENTRYPOINT ["/phraseanet-entrypoint.sh"] +CMD ["/boot.sh"] + +# phraseanet-worker +FROM phraseanet-fpm as phraseanet-worker +CMD ["/worker-boot.sh"] + +# phraseanet-nginx +FROM nginx:1.15 as phraseanet-nginx +RUN useradd -u 1000 app +ADD ./docker/nginx/ / +COPY --from=builder /var/alchemy/www /var/alchemy/Phraseanet/www +CMD ["/boot.sh"] diff --git a/Dockerfile-debug b/Dockerfile-debug new file mode 100644 index 0000000000..ac52e11669 --- /dev/null +++ b/Dockerfile-debug @@ -0,0 +1,18 @@ +ARG phraseanet +FROM $phraseanet + +RUN apt-get update \ + && apt-get install -y --no-install-recommends \ + iproute2 \ + && rm -rf /var/lib/apt/lists/* \ + && pecl install xdebug \ + && docker-php-ext-enable xdebug \ + && pecl clear-cache + +ADD ./docker/phraseanet-debug/ / + +RUN chmod +x /entrypoint.sh /usr/local/bin/docker-* + +ENTRYPOINT ["/entrypoint.sh"] + +CMD ["php-fpm"] diff --git a/Makefile b/Makefile index 1c4bff3692..192ae889bb 100644 --- a/Makefile +++ b/Makefile @@ -5,20 +5,18 @@ install: make install_assets install_composer: - composer install + composer install --ignore-platform-reqs install_asset_dependencies: - yarn upgrade + yarn install ./node_modules/.bin/gulp build install_assets: ./node_modules/.bin/gulp install-assets clean_assets: - rm -rf ./node_modules rm -rf ./www/assets - mkdir ./node_modules - touch ./node_modules/.gitkeep + rm -Rf ./cache/* config: @php bin/console compile:configuration diff --git a/README.md b/README.md index d7f49f6acc..751efed810 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,18 @@ -Phraseanet 4.0 - Digital Asset Management application +Phraseanet 4.1 - Digital Asset Management application ===================================================== - - - [![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) - - RestFull APIS (See Developer Documentation https://docs.phraseanet.com/Devel) - - Bridge to Youtube/Dailymotion/Flickr + - RestFull APIS + - Elasticsearch search engine + - Multiple resolution assets generation + +# License : + +Phraseanet is licensed under GPL-v3 license. # Documentation : @@ -21,16 +24,51 @@ You **must** not download the source from GitHub, but download a packaged versio https://www.phraseanet.com/download/ -And follow the install steps described at https://docs.phraseanet.com/Admin/ +And follow the install steps described at https://docs.phraseanet.com/4.0/en/Admin/Install.html + +# Try Phraseanet : + +You can also download a testing pre installed Virtual Machine in OVA format here : + +https://www.phraseanet.com/download/ # Development : For development purpose Phraseanet is shipped with ready to use development environments using vagrant. +You can easily choose betweeen a complete build or a prebuild box, with a specific PHP version. -See https://docs.phraseanet.com/Devel/ + git clone + vagrant up --provision -# License : +then, a prompt allow you to choose PHP version, and another one to choose a complete build or an Alchemy prebuilt boxes. -Phraseanet is licensed under GPL-v3 license. +Ex: +- vagrant up --provision //// 5.6 ///// 1 >> Build an ubuntu/xenial box with php5.6 +- vagrant up --provision //// 7.0 ///// 1 >> Build an ubuntu/xenial with php7.0 +- vagrant up --provision //// 7.2 ///// 2 >> Build the alchemy/phraseanet-php-7.2 box +- vagrant up --provision //// 5.6 ///// 1 >> Build the alchemy/phraseanet-php-5.6 box +For development with Phraseanet API see https://docs.phraseanet.com/4.0/en/Devel/index.html + + +# Docker build + +WARNING : still in a work-in-progress status and can be used only for test purposes. + +The docker distribution come with 3 differents containers : +* An nginx that act as the front http server. +* The php-fpm who serves the php files through nginx. +* The worker who execute Phraseanet scheduler. + +## How to build + +You can build all the images with the following command at the root directory, choosing an arbirary TAG name : + + ./build.sh + +It will build and tag the following images : + + local/phraseanet-worker: + local/phraseanet-fpm: + local/phraseanet-nginx: diff --git a/Vagrantfile b/Vagrantfile index 863b1be769..f4d4ea0049 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,16 +1,6 @@ Vagrant.require_version ">= 1.5" +require 'json' -class MyCustomError < StandardError - attr_reader :code - - def initialize(code) - @code = code - end - - def to_s - "[#{code} #{super}]" - end -end # Check to determine whether we're on a windows or linux/os-x host, # later on we use this to launch ansible in the supported way # source: https://stackoverflow.com/questions/2108727/which-in-ruby-checking-if-program-exists-in-path-from-ruby @@ -34,15 +24,62 @@ else if which('ifconfig') end end -$php = [ "5.6", "7.0", "7.1", "7.2" ] -$phpVersion = ENV['phpversion'] ? ENV['phpversion'] : "5.6"; - unless Vagrant.has_plugin?('vagrant-hostmanager') raise "vagrant-hostmanager is not installed! Please run\n vagrant plugin install vagrant-hostmanager\n\n" end -unless $php.include?($phpVersion) - raise "You should specify php version before running vagrant\n\n (Available : 5.6, 7.0, 7.1, 7.2 | default => 5.6)\n\n Exemple: phpversion='7.0' vagrant up \n\n" +# Check to determine if box_meta JSON is present +# if provisionned : pick name of box +if File.file?(".vagrant/machines/default/virtualbox/box_meta") + data = File.read(".vagrant/machines/default/virtualbox/box_meta") + parsed_json = JSON.parse(data) + $box = parsed_json["name"] +end + +# if not : run prompt to configure provisioning +if !File.file?(".vagrant/machines/default/virtualbox/box_meta") && ARGV[0] == 'up' + print "\033[34m \nChoose a Build type :\n\n(1) Use prebuilt Phraseanet Box\n(2) Build Phraseanet from scratch (xenial)\n\033[00m" + type = STDIN.gets.chomp + print "\n" + # Switch between Phraseanet box and native trusty64 + case (type) + when '1' + $box = "alchemy/Phraseanet-vagrant-dev_php" + $playbook = "resources/ansible/playbook-boxes.yml" + when '2' + $box = "ubuntu/xenial64" + $playbook = "resources/ansible/playbook.yml" + else + raise "\033[31mYou should specify Build type before running vagrant\n\n (Available : 1, 2)\n\n\033[00m" + end + print "\033[32m-----------------------------------------------\n" + print "Build with "+$box+" box\n" + print "-----------------------------------------------\n\n\033[00m" + + print "\033[34mChoose a PHP version for your build (Available : 5.6, 7.0, 7.1, 7.2)\n\033[00m" + phpversion = STDIN.gets.chomp + print "\n" + # Php version selection + case (phpversion) + when "5.6", "7.0", "7.1", "7.2" + print "\033[32mSelected PHP version : "+phpversion+"\n\033[00m" + print "Continue ? (Y/n) \n" + continue = STDIN.gets.chomp + case continue + when 'n', 'no', 'N', 'NO' + raise "\033[31mBuild aborted\033[00m" + else + if (type == '1') + $box.concat(phpversion) + end + print "\033[32m-----------------------------------------------\n" + print "Build with PHP"+phpversion+"\n" + print "-----------------------------------------------\n\n\033[00m" + + end + else + raise "\033[31mYou should specify php version before running vagrant\n\n (Available : 5.6, 7.0, 7.1, 7.2)\n\n\033[00m" + end end $root = File.dirname(File.expand_path(__FILE__)) @@ -70,6 +107,9 @@ def config_net(config) vb.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/vagrant", "1"] end end + + config.vm.network :public_network, bridge:"en0: Ethernet" + config.hostmanager.ip_resolver = proc do |vm, resolving_vm| if vm.id if $env == "mac" || $env == "linux" @@ -92,8 +132,6 @@ else if $env == "linux" $hostIps = `ifconfig | sed -nE 's/[[:space:]]*inet ([0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3})(.*)$/\\1/p'`.split("\n"); else $hostIps = `resources/ansible/inventories/GetIpAdresses.cmd`; - # raise MyCustomError.new($hostIps), "HOST IP" - end end @@ -116,26 +154,28 @@ Vagrant.configure("2") do |config| ] end - config.vm.box = "ubuntu/trusty64" - + config.vm.box = $box config.ssh.forward_agent = true config_net(config) # If ansible is in your path it will provision from your HOST machine # If ansible is not found in the path it will be instaled in the VM and provisioned from there if which('ansible-playbook') - config.vm.provision "ansible_local" do |ansible| - ansible.playbook = "resources/ansible/playbook.yml" - ansible.limit = 'all' - ansible.verbose = 'vvv' - ansible.extra_vars = { - hostname: $hostname, - host_addresses: $hostIps, - phpversion: $phpVersion, - postfix: { - postfix_domain: $hostname + ".vb" + + if $playbook + config.vm.provision "ansible_local" do |ansible| + ansible.playbook = $playbook + ansible.limit = 'all' + ansible.verbose = 'vvv' + ansible.extra_vars = { + hostname: $hostname, + host_addresses: $hostIps, + phpversion: phpversion, + postfix: { + postfix_domain: $hostname + ".vb" + } } - } + end end config.vm.provision "ansible_local", run: "always" do |ansible| @@ -148,10 +188,6 @@ Vagrant.configure("2") do |config| } end else - # raise MyCustomError.new([$hostname, $phpVersion, $hostIps]), "HOST IP" - # raise MyCustomError.new($hostIps), "HOST IP" - # raise MyCustomError.new($hostIps), "HOST IP" - config.vm.provision :shell, path: "resources/ansible/windows.sh", args: [$hostname, $phpVersion, $hostIps] # config.vm.provision :shell, run: "always", path: "resources/ansible/windows-always.sh", args: ["default"] end @@ -163,4 +199,4 @@ Vagrant.configure("2") do |config| config.vm.synced_folder "./", "/vagrant" end -end \ No newline at end of file +end diff --git a/bin/setup b/bin/setup index 2b553dab3a..fa8296b1d4 100755 --- a/bin/setup +++ b/bin/setup @@ -13,6 +13,7 @@ namespace KonsoleKommander; use Alchemy\Phrasea\Command\Setup\ConfigurationEditor; use Alchemy\Phrasea\Command\Setup\FixAutoincrements; +use Alchemy\Phrasea\Command\Setup\FixLogCollId; use Alchemy\Phrasea\Core\Version; use Alchemy\Phrasea\Command\UpgradeDBDatas; use Alchemy\Phrasea\Command\Setup\Install; @@ -23,6 +24,7 @@ use Alchemy\Phrasea\Command\Plugin\AddPlugin; use Alchemy\Phrasea\Command\Plugin\RemovePlugin; use Alchemy\Phrasea\Command\Plugin\EnablePlugin; use Alchemy\Phrasea\Command\Plugin\DisablePlugin; +use Alchemy\Phrasea\Command\Plugin\DownloadPlugin; use Alchemy\Phrasea\CLI; use Alchemy\Phrasea\Command\Setup\CheckEnvironment; use Alchemy\Phrasea\Core\CLIProvider\DoctrineMigrationServiceProvider; @@ -49,7 +51,7 @@ $app = new CLI(" This program comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions; type `about:license' for details.\n\n" - . ' SETUP', $version->getName() . ' ' . $version->getNumber()); + . ' SETUP', $version->getName() . ' ' . $version->getNumber()); $app->register(new DoctrineMigrationServiceProvider()); @@ -69,6 +71,7 @@ if ($configurationTester->isInstalled()) { } $app->command(new AddPlugin()); +$app->command(new DownloadPlugin()); $app->command(new ListPlugin()); $app->command(new RemovePlugin()); $app->command(new PluginsReset()); @@ -78,6 +81,7 @@ $app->command(new CheckEnvironment('check:system')); $app->command(new Install('system:install', $app['phraseanet.structure-template'])); $app->command(new CrossDomainGenerator()); $app->command(new FixAutoincrements('system:fix-autoincrements')); +$app->command(new FixLogCollId()); $app['phraseanet.setup_mode'] = true; diff --git a/build.sh b/build.sh new file mode 100755 index 0000000000..0f983ccac4 --- /dev/null +++ b/build.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +# nginx server +docker build --target phraseanet-nginx -t local/phraseanet-nginx:$1 . + +# php-fpm application +docker build --target phraseanet-fpm -t local/phraseanet-fpm:$1 . + +# worker +docker build --target phraseanet-worker -t local/phraseanet-worker:$1 . + diff --git a/composer.json b/composer.json index e1c1bcb27f..47635b0e47 100644 --- a/composer.json +++ b/composer.json @@ -47,10 +47,10 @@ "php": ">=5.5.9", "ext-intl": "*", "alchemy-fr/tcpdf-clone": "~6.0", - "alchemy/embed-bundle": "^0.3.4", + "alchemy/embed-bundle": "^2.0.7", "alchemy/geonames-api-consumer": "~0.1.0", "alchemy/mediavorus": "^0.4.4", - "alchemy/oauth2php": "1.0.0", + "alchemy/oauth2php": "1.1.0", "alchemy/phlickr": "0.2.9", "alchemy/phpexiftool": "^0.7.0", "alchemy/rest-bundle": "^0.0.5", @@ -78,7 +78,6 @@ "hoa/router": "~2.0", "igorw/get-in": "~1.0", "imagine/imagine": "0.6.x-dev", - "ircmaxell/random-lib": "~1.0", "jms/serializer": "~0.10", "jms/translation-bundle": "dev-rebase-2015-10-20", "justinrainbow/json-schema": "2.0.3 as 1.6.1", @@ -119,10 +118,13 @@ "alchemy/worker-bundle": "^0.1.6", "alchemy/queue-bundle": "^0.1.5", "google/recaptcha": "^1.1", - "facebook/graph-sdk": "^5.6" + "facebook/graph-sdk": "^5.6", + "box/spout": "^2.7", + "paragonie/random-lib": "^2.0", + "czproject/git-php": "^3.17" }, "require-dev": { - "mikey179/vfsStream": "~1.5", + "mikey179/vfsstream": "~1.5", "phpunit/phpunit": "^4.8|^5.0" }, "autoload": { diff --git a/composer.lock b/composer.lock index 5bd7b638fa..482cce9daf 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,8 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "content-hash": "27b7c5232802fb93dcf5dc79141df96f", + "hash": "e5bed7b0b8cb8b45ffffc4965a7689db", + "content-hash": "f3b1fc0a30bf14b05e57ce673550d9c0", "packages": [ { "name": "alchemy-fr/tcpdf-clone", @@ -70,7 +71,7 @@ "source": "https://github.com/alchemy-fr/tcpdf-clone/tree/6.0.039", "issues": "https://github.com/alchemy-fr/tcpdf-clone/issues" }, - "time": "2013-10-13T16:11:17+00:00" + "time": "2013-10-13 16:11:17" }, { "name": "alchemy/binary-driver", @@ -127,21 +128,15 @@ "binary", "driver" ], - "time": "2016-03-02T13:49:15+00:00" + "time": "2016-03-02 13:49:15" }, { "name": "alchemy/embed-bundle", - "version": "0.3.7", + "version": "2.0.8", "source": { "type": "git", "url": "https://github.com/alchemy-fr/embed-bundle.git", - "reference": "ce7408c7a47387eed3df2a743577d6e0e25f991f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/alchemy-fr/embed-bundle/zipball/ce7408c7a47387eed3df2a743577d6e0e25f991f", - "reference": "ce7408c7a47387eed3df2a743577d6e0e25f991f", - "shasum": "" + "reference": "cbaa5e34b7b6ccbe128f8c804649c8a3ecd1e621" }, "require-dev": { "phpunit/phpunit": "^4.7", @@ -177,11 +172,7 @@ } ], "description": "Embed resources bundle", - "support": { - "source": "https://github.com/alchemy-fr/embed-bundle/tree/0.3.7", - "issues": "https://github.com/alchemy-fr/embed-bundle/issues" - }, - "time": "2017-05-30T13:18:21+00:00" + "time": "2019-10-09 14:34:23" }, { "name": "alchemy/geonames-api-consumer", @@ -219,7 +210,7 @@ "keywords": [ "geonames" ], - "time": "2014-02-05T15:29:39+00:00" + "time": "2014-02-05 15:29:39" }, { "name": "alchemy/ghostscript", @@ -271,20 +262,20 @@ "ghostscript", "pdf" ], - "time": "2013-06-25T09:12:58+00:00" + "time": "2013-06-25 09:12:58" }, { "name": "alchemy/mediavorus", - "version": "0.4.8", + "version": "0.4.9", "source": { "type": "git", "url": "https://github.com/alchemy-fr/MediaVorus.git", - "reference": "6a50c397211dfdf6da108ea1ebc7527c37419ab7" + "reference": "1a96dc4142ff8474c11285cab9eab11df9683255" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/alchemy-fr/MediaVorus/zipball/6a50c397211dfdf6da108ea1ebc7527c37419ab7", - "reference": "6a50c397211dfdf6da108ea1ebc7527c37419ab7", + "url": "https://api.github.com/repos/alchemy-fr/MediaVorus/zipball/1a96dc4142ff8474c11285cab9eab11df9683255", + "reference": "1a96dc4142ff8474c11285cab9eab11df9683255", "shasum": "" }, "require": { @@ -333,20 +324,20 @@ "keywords": [ "metadata" ], - "time": "2018-05-03T14:17:10+00:00" + "time": "2019-01-22 11:23:34" }, { "name": "alchemy/oauth2php", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/alchemy-fr/oauth2-php.git", - "reference": "cb4fcb73e30ab54e0fb85a65b4d57147f7a0df15" + "reference": "801510972240555fa182813851efd96659d37a68" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/alchemy-fr/oauth2-php/zipball/cb4fcb73e30ab54e0fb85a65b4d57147f7a0df15", - "reference": "cb4fcb73e30ab54e0fb85a65b4d57147f7a0df15", + "url": "https://api.github.com/repos/alchemy-fr/oauth2-php/zipball/801510972240555fa182813851efd96659d37a68", + "reference": "801510972240555fa182813851efd96659d37a68", "shasum": "" }, "type": "library", @@ -356,7 +347,7 @@ ] }, "notification-url": "https://packagist.org/downloads/", - "time": "2013-07-01T09:46:59+00:00" + "time": "2019-01-17 14:34:10" }, { "name": "alchemy/phlickr", @@ -379,20 +370,20 @@ } }, "notification-url": "https://packagist.org/downloads/", - "time": "2014-12-15T14:27:57+00:00" + "time": "2014-12-15 14:27:57" }, { "name": "alchemy/phpexiftool", - "version": "0.7.0", + "version": "0.7.2", "source": { "type": "git", "url": "https://github.com/alchemy-fr/PHPExiftool.git", - "reference": "7372ca4e43473328bf06bca810558fbad7bb2f95" + "reference": "ba1cb51eceb6562d7996023478977a8739de188b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/alchemy-fr/PHPExiftool/zipball/7372ca4e43473328bf06bca810558fbad7bb2f95", - "reference": "7372ca4e43473328bf06bca810558fbad7bb2f95", + "url": "https://api.github.com/repos/alchemy-fr/PHPExiftool/zipball/ba1cb51eceb6562d7996023478977a8739de188b", + "reference": "ba1cb51eceb6562d7996023478977a8739de188b", "shasum": "" }, "require": { @@ -452,7 +443,7 @@ "exiftool", "metadata" ], - "time": "2017-05-18T19:04:04+00:00" + "time": "2019-02-13 13:06:43" }, { "name": "alchemy/queue-bundle", @@ -500,7 +491,7 @@ } ], "description": "Symfony bundle for alchemy/queue-component", - "time": "2016-10-04T14:19:39+00:00" + "time": "2016-10-04 14:19:39" }, { "name": "alchemy/queue-component", @@ -545,7 +536,7 @@ "MIT" ], "description": "Message queue component", - "time": "2016-10-05T10:41:36+00:00" + "time": "2016-10-05 10:41:36" }, { "name": "alchemy/rest-bundle", @@ -597,7 +588,7 @@ } ], "description": "Simple REST utility bundle", - "time": "2016-05-16T09:37:34+00:00" + "time": "2016-05-16 09:37:34" }, { "name": "alchemy/symfony-cors", @@ -644,7 +635,7 @@ } ], "description": "A library that adds CORS services to Silex/Symfony Applications", - "time": "2015-12-17T15:34:43+00:00" + "time": "2015-12-17 15:34:43" }, { "name": "alchemy/task-manager", @@ -707,7 +698,7 @@ "parallel", "process" ], - "time": "2016-11-30T13:34:30+00:00" + "time": "2016-11-30 13:34:30" }, { "name": "alchemy/worker-bundle", @@ -756,7 +747,7 @@ } ], "description": "Symfony bundle for alchemy/worker-component", - "time": "2016-12-06T10:39:58+00:00" + "time": "2016-12-06 10:39:58" }, { "name": "alchemy/worker-component", @@ -802,7 +793,7 @@ "MIT" ], "description": "Message queue worker component", - "time": "2016-11-14T16:41:16+00:00" + "time": "2016-11-14 16:41:16" }, { "name": "alchemy/zippy", @@ -864,7 +855,7 @@ "tar", "zip" ], - "time": "2016-02-15T22:46:40+00:00" + "time": "2016-02-15 22:46:40" }, { "name": "aws/aws-sdk-php", @@ -927,7 +918,7 @@ "s3", "sdk" ], - "time": "2016-07-25T18:03:20+00:00" + "time": "2016-07-25 18:03:20" }, { "name": "beberlei/assert", @@ -982,7 +973,7 @@ "assertion", "validation" ], - "time": "2017-01-24T15:14:39+00:00" + "time": "2017-01-24 15:14:39" }, { "name": "behat/transliterator", @@ -1022,7 +1013,75 @@ "slug", "transliterator" ], - "time": "2015-09-28T16:26:35+00:00" + "time": "2015-09-28 16:26:35" + }, + { + "name": "box/spout", + "version": "v2.7.3", + "source": { + "type": "git", + "url": "https://github.com/box/spout.git", + "reference": "3681a3421a868ab9a65da156c554f756541f452b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/box/spout/zipball/3681a3421a868ab9a65da156c554f756541f452b", + "reference": "3681a3421a868ab9a65da156c554f756541f452b", + "shasum": "" + }, + "require": { + "ext-xmlreader": "*", + "ext-zip": "*", + "php": ">=5.4.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.0" + }, + "suggest": { + "ext-iconv": "To handle non UTF-8 CSV files (if \"php-intl\" is not already installed or is too limited)", + "ext-intl": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.8.x-dev" + } + }, + "autoload": { + "psr-4": { + "Box\\Spout\\": "src/Spout" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Adrien Loison", + "email": "adrien@box.com" + } + ], + "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way", + "homepage": "https://www.github.com/box/spout", + "keywords": [ + "OOXML", + "csv", + "excel", + "memory", + "odf", + "ods", + "office", + "open", + "php", + "read", + "scale", + "spreadsheet", + "stream", + "write", + "xlsx" + ], + "time": "2017-09-25 19:44:35" }, { "name": "cocur/slugify", @@ -1086,7 +1145,49 @@ "slug", "slugify" ], - "time": "2016-08-09T20:10:17+00:00" + "time": "2016-08-09 20:10:17" + }, + { + "name": "czproject/git-php", + "version": "v3.17.0", + "source": { + "type": "git", + "url": "https://github.com/czproject/git-php.git", + "reference": "a7b911b81a2fe626f748a4ac8955353c5777bc6c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/czproject/git-php/zipball/a7b911b81a2fe626f748a4ac8955353c5777bc6c", + "reference": "a7b911b81a2fe626f748a4ac8955353c5777bc6c", + "shasum": "" + }, + "require": { + "php": ">=5.4.0" + }, + "require-dev": { + "nette/tester": "^1.1" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jan Pecha", + "email": "janpecha@email.cz" + } + ], + "description": "Library for work with Git repository in PHP.", + "keywords": [ + "git" + ], + "time": "2019-02-09 13:11:36" }, { "name": "dailymotion/sdk", @@ -1119,7 +1220,7 @@ "dailymotion", "sdk" ], - "time": "2015-11-20T11:18:32+00:00" + "time": "2015-11-20 11:18:32" }, { "name": "data-uri/data-uri", @@ -1164,7 +1265,7 @@ "data-uri", "uri" ], - "time": "2014-08-22T15:01:57+00:00" + "time": "2014-08-22 15:01:57" }, { "name": "dflydev/doctrine-orm-service-provider", @@ -1226,7 +1327,7 @@ "pimple", "silex" ], - "time": "2015-09-07T12:16:54+00:00" + "time": "2015-09-07 12:16:54" }, { "name": "doctrine/annotations", @@ -1294,7 +1395,7 @@ "docblock", "parser" ], - "time": "2015-08-31T12:32:49+00:00" + "time": "2015-08-31 12:32:49" }, { "name": "doctrine/cache", @@ -1306,7 +1407,7 @@ }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/cache/zipball/b6f544a20f4807e81f7044d31e679ccbb1866dc3", + "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b", "reference": "b6f544a20f4807e81f7044d31e679ccbb1866dc3", "shasum": "" }, @@ -1364,7 +1465,7 @@ "cache", "caching" ], - "time": "2016-10-29T11:16:17+00:00" + "time": "2016-10-29 11:16:17" }, { "name": "doctrine/collections", @@ -1430,7 +1531,7 @@ "collections", "iterator" ], - "time": "2015-04-14T22:21:58+00:00" + "time": "2015-04-14 22:21:58" }, { "name": "doctrine/common", @@ -1503,7 +1604,7 @@ "persistence", "spl" ], - "time": "2016-11-30T16:50:46+00:00" + "time": "2016-11-30 16:50:46" }, { "name": "doctrine/dbal", @@ -1574,7 +1675,7 @@ "persistence", "queryobject" ], - "time": "2017-01-23T23:17:10+00:00" + "time": "2017-01-23 23:17:10" }, { "name": "doctrine/inflector", @@ -1641,7 +1742,7 @@ "singularize", "string" ], - "time": "2015-11-06T14:35:42+00:00" + "time": "2015-11-06 14:35:42" }, { "name": "doctrine/instantiator", @@ -1695,7 +1796,7 @@ "constructor", "instantiate" ], - "time": "2015-06-14T21:17:01+00:00" + "time": "2015-06-14 21:17:01" }, { "name": "doctrine/lexer", @@ -1749,7 +1850,7 @@ "lexer", "parser" ], - "time": "2014-09-09T13:34:57+00:00" + "time": "2014-09-09 13:34:57" }, { "name": "doctrine/migrations", @@ -1823,19 +1924,19 @@ "database", "migrations" ], - "time": "2016-12-25T22:54:00+00:00" + "time": "2016-12-25 22:54:00" }, { "name": "doctrine/orm", "version": "v2.5.6", "source": { "type": "git", - "url": "https://github.com/doctrine/doctrine2.git", + "url": "https://github.com/doctrine/orm.git", "reference": "e6c434196c8ef058239aaa0724b4aadb0107940b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/e6c434196c8ef058239aaa0724b4aadb0107940b", + "url": "https://api.github.com/repos/doctrine/orm/zipball/e6c434196c8ef058239aaa0724b4aadb0107940b", "reference": "e6c434196c8ef058239aaa0724b4aadb0107940b", "shasum": "" }, @@ -1899,7 +2000,7 @@ "database", "orm" ], - "time": "2016-12-18T15:42:34+00:00" + "time": "2016-12-18 15:42:34" }, { "name": "elasticsearch/elasticsearch", @@ -1953,7 +2054,7 @@ "elasticsearch", "search" ], - "time": "2016-11-30T17:15:05+00:00" + "time": "2016-11-30 17:15:05" }, { "name": "evenement/evenement", @@ -1993,7 +2094,7 @@ "keywords": [ "event-dispatcher" ], - "time": "2012-05-30T15:01:08+00:00" + "time": "2012-05-30 15:01:08" }, { "name": "facebook/graph-sdk", @@ -2051,7 +2152,7 @@ "facebook", "sdk" ], - "time": "2017-08-16T17:28:07+00:00" + "time": "2017-08-16 17:28:07" }, { "name": "firebase/php-jwt", @@ -2094,7 +2195,7 @@ ], "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.", "homepage": "https://github.com/firebase/php-jwt", - "time": "2015-07-22T18:31:08+00:00" + "time": "2015-07-22 18:31:08" }, { "name": "gedmo/doctrine-extensions", @@ -2172,7 +2273,7 @@ "tree", "uploadable" ], - "time": "2015-02-24T21:41:37+00:00" + "time": "2015-02-24 21:41:37" }, { "name": "goodby/csv", @@ -2229,19 +2330,19 @@ "export", "import" ], - "time": "2015-06-29T10:28:19+00:00" + "time": "2015-06-29 10:28:19" }, { "name": "google/apiclient", "version": "v2.2.1", "source": { "type": "git", - "url": "https://github.com/google/google-api-php-client.git", + "url": "https://github.com/googleapis/google-api-php-client.git", "reference": "b69b8ac4bf6501793c389d4e013a79d09c85c5f2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/google/google-api-php-client/zipball/b69b8ac4bf6501793c389d4e013a79d09c85c5f2", + "url": "https://api.github.com/repos/googleapis/google-api-php-client/zipball/b69b8ac4bf6501793c389d4e013a79d09c85c5f2", "reference": "b69b8ac4bf6501793c389d4e013a79d09c85c5f2", "shasum": "" }, @@ -2288,19 +2389,19 @@ "keywords": [ "google" ], - "time": "2017-11-03T01:19:53+00:00" + "time": "2017-11-03 01:19:53" }, { "name": "google/apiclient-services", "version": "v0.36", "source": { "type": "git", - "url": "https://github.com/google/google-api-php-client-services.git", + "url": "https://github.com/googleapis/google-api-php-client-services.git", "reference": "2fd7d2876fbc0174faddba3241956a1393536159" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/google/google-api-php-client-services/zipball/2fd7d2876fbc0174faddba3241956a1393536159", + "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/2fd7d2876fbc0174faddba3241956a1393536159", "reference": "2fd7d2876fbc0174faddba3241956a1393536159", "shasum": "" }, @@ -2325,19 +2426,19 @@ "keywords": [ "google" ], - "time": "2017-11-25T00:23:12+00:00" + "time": "2017-11-25 00:23:12" }, { "name": "google/auth", "version": "v1.1.0", "source": { "type": "git", - "url": "https://github.com/google/google-auth-library-php.git", + "url": "https://github.com/googleapis/google-auth-library-php.git", "reference": "548d27d670f0236dc5258fa4cdde6e7b63464cfd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/google/google-auth-library-php/zipball/548d27d670f0236dc5258fa4cdde6e7b63464cfd", + "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/548d27d670f0236dc5258fa4cdde6e7b63464cfd", "reference": "548d27d670f0236dc5258fa4cdde6e7b63464cfd", "shasum": "" }, @@ -2370,7 +2471,7 @@ "google", "oauth2" ], - "time": "2017-10-10T17:01:45+00:00" + "time": "2017-10-10 17:01:45" }, { "name": "google/recaptcha", @@ -2415,7 +2516,7 @@ "recaptcha", "spam" ], - "time": "2017-03-09T18:44:34+00:00" + "time": "2017-03-09 18:44:34" }, { "name": "guzzle/guzzle", @@ -2511,7 +2612,7 @@ "web service" ], "abandoned": "guzzlehttp/guzzle", - "time": "2015-03-18T18:23:50+00:00" + "time": "2015-03-18 18:23:50" }, { "name": "guzzlehttp/guzzle", @@ -2576,7 +2677,7 @@ "rest", "web service" ], - "time": "2017-06-22T18:50:49+00:00" + "time": "2017-06-22 18:50:49" }, { "name": "guzzlehttp/promises", @@ -2627,7 +2728,7 @@ "keywords": [ "promise" ], - "time": "2016-12-20T10:07:11+00:00" + "time": "2016-12-20 10:07:11" }, { "name": "guzzlehttp/psr7", @@ -2692,7 +2793,7 @@ "uri", "url" ], - "time": "2017-03-20T17:10:46+00:00" + "time": "2017-03-20 17:10:46" }, { "name": "guzzlehttp/ringphp", @@ -2743,7 +2844,7 @@ } ], "description": "Provides a simple API and specification that abstracts away the details of HTTP into a single PHP function.", - "time": "2015-05-20T03:37:09+00:00" + "time": "2015-05-20 03:37:09" }, { "name": "guzzlehttp/streams", @@ -2793,7 +2894,7 @@ "Guzzle", "stream" ], - "time": "2014-10-12T19:18:40+00:00" + "time": "2014-10-12 19:18:40" }, { "name": "hoa/compiler", @@ -2873,7 +2974,7 @@ "trace", "uniform" ], - "time": "2015-10-29T21:35:12+00:00" + "time": "2015-10-29 21:35:12" }, { "name": "hoa/console", @@ -2945,7 +3046,7 @@ "tput", "window" ], - "time": "2015-07-27T07:52:10+00:00" + "time": "2015-07-27 07:52:10" }, { "name": "hoa/core", @@ -3013,7 +3114,7 @@ "protocol" ], "abandoned": "hoa/consistency", - "time": "2015-11-09T06:51:06+00:00" + "time": "2015-11-09 06:51:06" }, { "name": "hoa/dispatcher", @@ -3073,7 +3174,7 @@ "kit", "library" ], - "time": "2015-11-09T06:52:08+00:00" + "time": "2015-11-09 06:52:08" }, { "name": "hoa/file", @@ -3133,7 +3234,7 @@ "link", "temporary" ], - "time": "2015-11-09T06:55:20+00:00" + "time": "2015-11-09 06:55:20" }, { "name": "hoa/iterator", @@ -3186,7 +3287,7 @@ "iterator", "library" ], - "time": "2015-10-29T21:37:16+00:00" + "time": "2015-10-29 21:37:16" }, { "name": "hoa/math", @@ -3248,7 +3349,7 @@ "sampler", "set" ], - "time": "2015-10-26T15:22:52+00:00" + "time": "2015-10-26 15:22:52" }, { "name": "hoa/regex", @@ -3302,7 +3403,7 @@ "library", "regex" ], - "time": "2015-08-13T06:48:47+00:00" + "time": "2015-08-13 06:48:47" }, { "name": "hoa/router", @@ -3354,7 +3455,7 @@ "library", "router" ], - "time": "2015-10-21T14:12:51+00:00" + "time": "2015-10-21 14:12:51" }, { "name": "hoa/stream", @@ -3412,7 +3513,7 @@ "stream", "wrapper" ], - "time": "2015-10-26T12:21:43+00:00" + "time": "2015-10-26 12:21:43" }, { "name": "hoa/ustring", @@ -3471,7 +3572,7 @@ "string", "unicode" ], - "time": "2015-11-09T06:44:33+00:00" + "time": "2015-11-09 06:44:33" }, { "name": "hoa/visitor", @@ -3526,7 +3627,7 @@ "visit", "visitor" ], - "time": "2015-08-17T06:30:58+00:00" + "time": "2015-08-17 06:30:58" }, { "name": "igorw/get-in", @@ -3571,7 +3672,7 @@ "assoc-array", "hash-map" ], - "time": "2014-12-15T23:03:51+00:00" + "time": "2014-12-15 23:03:51" }, { "name": "imagine/imagine", @@ -3630,7 +3731,7 @@ "support": { "source": "https://github.com/alchemy-fr/Imagine/tree/alchemy-0.6.2" }, - "time": "2015-01-13T18:12:26+00:00" + "time": "2015-01-13 18:12:26" }, { "name": "ircmaxell/password-compat", @@ -3672,62 +3773,7 @@ "hashing", "password" ], - "time": "2014-11-20T16:49:30+00:00" - }, - { - "name": "ircmaxell/random-lib", - "version": "v1.2.0", - "source": { - "type": "git", - "url": "https://github.com/ircmaxell/RandomLib.git", - "reference": "e9e0204f40e49fa4419946c677eccd3fa25b8cf4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/ircmaxell/RandomLib/zipball/e9e0204f40e49fa4419946c677eccd3fa25b8cf4", - "reference": "e9e0204f40e49fa4419946c677eccd3fa25b8cf4", - "shasum": "" - }, - "require": { - "ircmaxell/security-lib": "^1.1", - "php": ">=5.3.2" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "^1.11", - "mikey179/vfsstream": "^1.6", - "phpunit/phpunit": "^4.8|^5.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.1.x-dev" - } - }, - "autoload": { - "psr-0": { - "RandomLib": "lib" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Anthony Ferrara", - "email": "ircmaxell@ircmaxell.com", - "homepage": "http://blog.ircmaxell.com" - } - ], - "description": "A Library For Generating Secure Random Numbers", - "homepage": "https://github.com/ircmaxell/RandomLib", - "keywords": [ - "cryptography", - "random", - "random-numbers", - "random-strings" - ], - "time": "2016-09-07T15:52:06+00:00" + "time": "2014-11-20 16:49:30" }, { "name": "ircmaxell/security-lib", @@ -3773,7 +3819,7 @@ ], "description": "A Base Security Library", "homepage": "https://github.com/ircmaxell/SecurityLib", - "time": "2015-03-20T14:31:23+00:00" + "time": "2015-03-20 14:31:23" }, { "name": "jms/metadata", @@ -3824,7 +3870,7 @@ "xml", "yaml" ], - "time": "2016-12-05T10:18:33+00:00" + "time": "2016-12-05 10:18:33" }, { "name": "jms/parser-lib", @@ -3859,7 +3905,7 @@ "Apache2" ], "description": "A library for easily creating recursive-descent parsers.", - "time": "2012-11-18T18:08:43+00:00" + "time": "2012-11-18 18:08:43" }, { "name": "jms/serializer", @@ -3929,7 +3975,7 @@ "serialization", "xml" ], - "time": "2014-03-18T08:39:00+00:00" + "time": "2014-03-18 08:39:00" }, { "name": "jms/translation-bundle", @@ -4005,7 +4051,7 @@ "support": { "source": "https://github.com/alchemy-fr/JMSTranslationBundle/tree/rebase-2015-10-20" }, - "time": "2015-11-04T15:09:44+00:00" + "time": "2015-11-04 15:09:44" }, { "name": "justinrainbow/json-schema", @@ -4071,7 +4117,7 @@ "json", "schema" ], - "time": "2016-05-10T20:38:51+00:00" + "time": "2016-05-10 20:38:51" }, { "name": "league/flysystem", @@ -4154,7 +4200,7 @@ "sftp", "storage" ], - "time": "2017-01-30T17:41:17+00:00" + "time": "2017-01-30 17:41:17" }, { "name": "league/flysystem-aws-s3-v2", @@ -4201,7 +4247,7 @@ } ], "description": "Flysystem adapter for AWS S3 SDK v2", - "time": "2015-10-15T15:55:48+00:00" + "time": "2015-10-15 15:55:48" }, { "name": "league/fractal", @@ -4262,20 +4308,20 @@ "league", "rest" ], - "time": "2016-12-02T14:55:48+00:00" + "time": "2016-12-02 14:55:48" }, { "name": "media-alchemyst/media-alchemyst", - "version": "0.5.1", + "version": "0.5.2", "source": { "type": "git", "url": "https://github.com/alchemy-fr/Media-Alchemyst.git", - "reference": "b82bb891640cb1ce5d5523235047c34c64194514" + "reference": "5d2fe6dd95215804202ecf0466fd9cfaeedd0140" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/alchemy-fr/Media-Alchemyst/zipball/b82bb891640cb1ce5d5523235047c34c64194514", - "reference": "b82bb891640cb1ce5d5523235047c34c64194514", + "url": "https://api.github.com/repos/alchemy-fr/Media-Alchemyst/zipball/5d2fe6dd95215804202ecf0466fd9cfaeedd0140", + "reference": "5d2fe6dd95215804202ecf0466fd9cfaeedd0140", "shasum": "" }, "require": { @@ -4336,7 +4382,7 @@ "video", "video processing" ], - "time": "2016-03-16T13:11:52+00:00" + "time": "2019-01-25 12:09:11" }, { "name": "monolog/monolog", @@ -4414,7 +4460,7 @@ "logging", "psr-3" ], - "time": "2016-11-26T00:15:39+00:00" + "time": "2016-11-26 00:15:39" }, { "name": "mrclay/minify", @@ -4454,7 +4500,7 @@ ], "description": "Minify is a PHP5 app that helps you follow several rules for client-side performance. It combines multiple CSS or Javascript files, removes unnecessary whitespace and comments, and serves them with gzip encoding and optimal client-side cache headers", "homepage": "http://code.google.com/p/minify/", - "time": "2013-07-23T19:58:28+00:00" + "time": "2013-07-23 19:58:28" }, { "name": "neutron/process-manager", @@ -4493,7 +4539,7 @@ "homepage": "http://www.lickmychip.com/" } ], - "time": "2014-02-13T20:27:33+00:00" + "time": "2014-02-13 20:27:33" }, { "name": "neutron/recaptcha", @@ -4537,7 +4583,7 @@ } ], "description": "ReCaptcha Client", - "time": "2013-02-14T13:42:00+00:00" + "time": "2013-02-14 13:42:00" }, { "name": "neutron/signal-handler", @@ -4580,7 +4626,7 @@ "keywords": [ "signal" ], - "time": "2014-01-15T17:24:13+00:00" + "time": "2014-01-15 17:24:13" }, { "name": "neutron/silex-filesystem-provider", @@ -4624,7 +4670,7 @@ "silex", "temporary-filesystem" ], - "time": "2012-11-08T21:07:08+00:00" + "time": "2012-11-08 21:07:08" }, { "name": "neutron/silex-imagine-provider", @@ -4671,7 +4717,7 @@ "imagine", "silex" ], - "time": "2013-05-03T18:48:51+00:00" + "time": "2013-05-03 18:48:51" }, { "name": "neutron/temporary-filesystem", @@ -4711,7 +4757,7 @@ } ], "description": "Symfony filesystem extension to handle temporary files", - "time": "2016-03-05T10:22:50+00:00" + "time": "2016-03-05 10:22:50" }, { "name": "nikic/php-parser", @@ -4756,7 +4802,7 @@ "parser", "php" ], - "time": "2015-09-19T14:15:08+00:00" + "time": "2015-09-19 14:15:08" }, { "name": "ocramius/proxy-manager", @@ -4819,7 +4865,7 @@ "proxy pattern", "service proxies" ], - "time": "2015-08-09T04:28:19+00:00" + "time": "2015-08-09 04:28:19" }, { "name": "pagerfanta/pagerfanta", @@ -4886,7 +4932,69 @@ "paginator", "paging" ], - "time": "2016-11-28T09:17:04+00:00" + "time": "2016-11-28 09:17:04" + }, + { + "name": "paragonie/random-lib", + "version": "v2.0.0", + "source": { + "type": "git", + "url": "https://github.com/paragonie/RandomLib.git", + "reference": "b73a1cb8eae7a346824ccee42298046dedbf2415" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/paragonie/RandomLib/zipball/b73a1cb8eae7a346824ccee42298046dedbf2415", + "reference": "b73a1cb8eae7a346824ccee42298046dedbf2415", + "shasum": "" + }, + "require": { + "ircmaxell/security-lib": "^1.1", + "paragonie/random_compat": "^2", + "paragonie/sodium_compat": "^1.3", + "php": ">=5.3.2" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^1.11", + "mikey179/vfsstream": "^1.6", + "phpunit/phpunit": "^4.8 || >=5.0.0 <5.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1.x-dev" + } + }, + "autoload": { + "psr-0": { + "RandomLib": "lib" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Anthony Ferrara", + "email": "ircmaxell@ircmaxell.com", + "homepage": "http://blog.ircmaxell.com" + }, + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com", + "homepage": "https://paragonie.com" + } + ], + "description": "A Library For Generating Secure Random Numbers", + "homepage": "https://github.com/ircmaxell/RandomLib", + "keywords": [ + "cryptography", + "random", + "random-numbers", + "random-strings" + ], + "time": "2017-10-06 23:34:21" }, { "name": "paragonie/random_compat", @@ -4934,7 +5042,89 @@ "pseudorandom", "random" ], - "time": "2016-11-07T23:38:38+00:00" + "time": "2016-11-07 23:38:38" + }, + { + "name": "paragonie/sodium_compat", + "version": "v1.9.1", + "source": { + "type": "git", + "url": "https://github.com/paragonie/sodium_compat.git", + "reference": "87125d5b265f98c4d1b8d83a1f0726607c229421" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/87125d5b265f98c4d1b8d83a1f0726607c229421", + "reference": "87125d5b265f98c4d1b8d83a1f0726607c229421", + "shasum": "" + }, + "require": { + "paragonie/random_compat": ">=1", + "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8" + }, + "require-dev": { + "phpunit/phpunit": "^3|^4|^5" + }, + "suggest": { + "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.", + "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security." + }, + "type": "library", + "autoload": { + "files": [ + "autoload.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "ISC" + ], + "authors": [ + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com" + }, + { + "name": "Frank Denis", + "email": "jedisct1@pureftpd.org" + } + ], + "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists", + "keywords": [ + "Authentication", + "BLAKE2b", + "ChaCha20", + "ChaCha20-Poly1305", + "Chapoly", + "Curve25519", + "Ed25519", + "EdDSA", + "Edwards-curve Digital Signature Algorithm", + "Elliptic Curve Diffie-Hellman", + "Poly1305", + "Pure-PHP cryptography", + "RFC 7748", + "RFC 8032", + "Salpoly", + "Salsa20", + "X25519", + "XChaCha20-Poly1305", + "XSalsa20-Poly1305", + "Xchacha20", + "Xsalsa20", + "aead", + "cryptography", + "ecdh", + "elliptic curve", + "elliptic curve cryptography", + "encryption", + "libsodium", + "php", + "public-key cryptography", + "secret-key cryptography", + "side-channel resistant" + ], + "time": "2019-03-20 17:19:05" }, { "name": "php-ffmpeg/php-ffmpeg", @@ -5003,7 +5193,7 @@ "video", "video processing" ], - "time": "2014-08-26T08:46:56+00:00" + "time": "2014-08-26 08:46:56" }, { "name": "php-mp4box/php-mp4box", @@ -5054,7 +5244,7 @@ "gpac", "mp4box" ], - "time": "2013-06-25T10:13:06+00:00" + "time": "2013-06-25 10:13:06" }, { "name": "php-unoconv/php-unoconv", @@ -5104,7 +5294,7 @@ "keywords": [ "unoconv" ], - "time": "2013-06-25T10:09:59+00:00" + "time": "2013-06-25 10:09:59" }, { "name": "php-xpdf/php-xpdf", @@ -5156,7 +5346,7 @@ "pdf", "xpdf" ], - "time": "2016-07-04T07:30:16+00:00" + "time": "2016-07-04 07:30:16" }, { "name": "phpcollection/phpcollection", @@ -5204,7 +5394,7 @@ "sequence", "set" ], - "time": "2015-05-17T12:39:23+00:00" + "time": "2015-05-17 12:39:23" }, { "name": "phpexiftool/exiftool", @@ -5237,7 +5427,7 @@ "exiftool", "metadatas" ], - "time": "2016-01-25T11:10:14+00:00" + "time": "2016-01-25 11:10:14" }, { "name": "phpoption/phpoption", @@ -5287,7 +5477,7 @@ "php", "type" ], - "time": "2015-07-25T16:39:46+00:00" + "time": "2015-07-25 16:39:46" }, { "name": "phpseclib/phpseclib", @@ -5379,7 +5569,7 @@ "x.509", "x509" ], - "time": "2017-10-23T05:04:54+00:00" + "time": "2017-10-23 05:04:54" }, { "name": "pimple/pimple", @@ -5425,7 +5615,7 @@ "container", "dependency injection" ], - "time": "2013-11-22T08:30:29+00:00" + "time": "2013-11-22 08:30:29" }, { "name": "psr/cache", @@ -5471,7 +5661,7 @@ "psr", "psr-6" ], - "time": "2016-08-06T20:24:11+00:00" + "time": "2016-08-06 20:24:11" }, { "name": "psr/http-message", @@ -5521,7 +5711,7 @@ "request", "response" ], - "time": "2016-08-06T14:39:51+00:00" + "time": "2016-08-06 14:39:51" }, { "name": "psr/log", @@ -5568,7 +5758,7 @@ "psr", "psr-3" ], - "time": "2016-10-10T12:19:37+00:00" + "time": "2016-10-10 12:19:37" }, { "name": "ramsey/uuid", @@ -5650,7 +5840,7 @@ "identifier", "uuid" ], - "time": "2016-11-22T19:21:44+00:00" + "time": "2016-11-22 19:21:44" }, { "name": "react/promise", @@ -5693,7 +5883,7 @@ "promise", "promises" ], - "time": "2016-12-22T14:09:01+00:00" + "time": "2016-12-22 14:09:01" }, { "name": "roave/security-advisories", @@ -5701,13 +5891,7 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "3db4b0df21d1f527304650e717c66af48981f1c4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/3db4b0df21d1f527304650e717c66af48981f1c4", - "reference": "3db4b0df21d1f527304650e717c66af48981f1c4", - "shasum": "" + "reference": "0698207bf8a9bed212fdde2d8c7cdc77085660c4" }, "conflict": { "adodb/adodb-php": "<5.20.6", @@ -5824,7 +6008,7 @@ } ], "description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it", - "time": "2017-01-24T18:32:04+00:00" + "time": "2017-01-24 18:32:04" }, { "name": "seld/jsonlint", @@ -5870,7 +6054,7 @@ "parser", "validator" ], - "time": "2016-11-14T17:59:58+00:00" + "time": "2016-11-14 17:59:58" }, { "name": "silex/silex", @@ -5947,7 +6131,8 @@ "keywords": [ "microframework" ], - "time": "2016-01-06T14:59:35+00:00" + "abandoned": "symfony/flex", + "time": "2016-01-06 14:59:35" }, { "name": "silex/web-profiler", @@ -5992,7 +6177,8 @@ ], "description": "A WebProfiler for Silex", "homepage": "http://silex.sensiolabs.org/", - "time": "2016-01-10T11:39:13+00:00" + "abandoned": true, + "time": "2016-01-10 11:39:13" }, { "name": "simple-bus/doctrine-orm-bridge", @@ -6046,7 +6232,7 @@ "doctrine", "event bus" ], - "time": "2015-04-29T12:27:27+00:00" + "time": "2015-04-29 12:27:27" }, { "name": "simple-bus/jms-serializer-bridge", @@ -6095,7 +6281,7 @@ "message", "serialization" ], - "time": "2015-07-29T07:48:42+00:00" + "time": "2015-07-29 07:48:42" }, { "name": "simple-bus/message-bus", @@ -6145,7 +6331,7 @@ "message", "message bus" ], - "time": "2016-02-12T08:35:53+00:00" + "time": "2016-02-12 08:35:53" }, { "name": "simple-bus/serialization", @@ -6193,7 +6379,7 @@ "messages", "serialization" ], - "time": "2015-05-08T13:34:17+00:00" + "time": "2015-05-08 13:34:17" }, { "name": "sorien/silex-dbal-profiler", @@ -6241,7 +6427,7 @@ "profiler", "silex" ], - "time": "2016-10-26T11:08:02+00:00" + "time": "2016-10-26 11:08:02" }, { "name": "sorien/silex-pimple-dumper", @@ -6283,7 +6469,7 @@ "plugin", "silex" ], - "time": "2015-11-11T07:16:28+00:00" + "time": "2015-11-11 07:16:28" }, { "name": "swftools/swftools", @@ -6337,7 +6523,7 @@ "flash", "swf" ], - "time": "2013-07-03T13:11:36+00:00" + "time": "2013-07-03 13:11:36" }, { "name": "swiftmailer/swiftmailer", @@ -6391,7 +6577,7 @@ "mail", "mailer" ], - "time": "2016-12-29T10:02:40+00:00" + "time": "2016-12-29 10:02:40" }, { "name": "symfony/polyfill-apcu", @@ -6444,7 +6630,7 @@ "portable", "shim" ], - "time": "2016-11-14T01:06:16+00:00" + "time": "2016-11-14 01:06:16" }, { "name": "symfony/polyfill-intl-icu", @@ -6502,7 +6688,7 @@ "portable", "shim" ], - "time": "2016-11-14T01:06:16+00:00" + "time": "2016-11-14 01:06:16" }, { "name": "symfony/polyfill-mbstring", @@ -6561,7 +6747,7 @@ "portable", "shim" ], - "time": "2016-11-14T01:06:16+00:00" + "time": "2016-11-14 01:06:16" }, { "name": "symfony/polyfill-php54", @@ -6619,7 +6805,7 @@ "portable", "shim" ], - "time": "2016-11-14T01:06:16+00:00" + "time": "2016-11-14 01:06:16" }, { "name": "symfony/polyfill-php55", @@ -6675,7 +6861,7 @@ "portable", "shim" ], - "time": "2016-11-14T01:06:16+00:00" + "time": "2016-11-14 01:06:16" }, { "name": "symfony/polyfill-php56", @@ -6731,7 +6917,7 @@ "portable", "shim" ], - "time": "2016-11-14T01:06:16+00:00" + "time": "2016-11-14 01:06:16" }, { "name": "symfony/polyfill-php70", @@ -6790,7 +6976,7 @@ "portable", "shim" ], - "time": "2016-11-14T01:06:16+00:00" + "time": "2016-11-14 01:06:16" }, { "name": "symfony/polyfill-util", @@ -6842,7 +7028,7 @@ "polyfill", "shim" ], - "time": "2016-11-14T01:06:16+00:00" + "time": "2016-11-14 01:06:16" }, { "name": "symfony/security-acl", @@ -6903,7 +7089,7 @@ ], "description": "Symfony Security Component - ACL (Access Control List)", "homepage": "https://symfony.com", - "time": "2015-12-28T09:39:46+00:00" + "time": "2015-12-28 09:39:46" }, { "name": "symfony/symfony", @@ -7038,7 +7224,7 @@ "keywords": [ "framework" ], - "time": "2017-01-12T20:27:46+00:00" + "time": "2017-01-12 20:27:46" }, { "name": "themattharris/tmhoauth", @@ -7080,7 +7266,7 @@ "oauth", "twitter" ], - "time": "2014-08-06T22:29:35+00:00" + "time": "2014-08-06 22:29:35" }, { "name": "twig/extensions", @@ -7132,7 +7318,7 @@ "i18n", "text" ], - "time": "2016-10-25T17:34:14+00:00" + "time": "2016-10-25 17:34:14" }, { "name": "twig/twig", @@ -7193,7 +7379,7 @@ "keywords": [ "templating" ], - "time": "2017-01-11T19:36:15+00:00" + "time": "2017-01-11 19:36:15" }, { "name": "vierbergenlars/php-semver", @@ -7241,7 +7427,7 @@ "semver", "versioning" ], - "time": "2013-09-20T10:41:27+00:00" + "time": "2013-09-20 10:41:27" }, { "name": "webmozart/assert", @@ -7291,7 +7477,7 @@ "check", "validate" ], - "time": "2016-11-23T20:04:58+00:00" + "time": "2016-11-23 20:04:58" }, { "name": "webmozart/json", @@ -7340,7 +7526,7 @@ } ], "description": "A robust JSON decoder/encoder with support for schema validation.", - "time": "2016-01-14T12:11:46+00:00" + "time": "2016-01-14 12:11:46" }, { "name": "webmozart/path-util", @@ -7386,7 +7572,7 @@ } ], "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.", - "time": "2015-12-17T08:42:14+00:00" + "time": "2015-12-17 08:42:14" }, { "name": "willdurand/negotiation", @@ -7438,7 +7624,7 @@ "header", "negotiation" ], - "time": "2016-10-14T09:17:47+00:00" + "time": "2016-10-14 09:17:47" }, { "name": "zend/gdata", @@ -7479,7 +7665,7 @@ "gdata", "zend" ], - "time": "2013-01-30T15:31:21+00:00" + "time": "2013-01-30 15:31:21" }, { "name": "zendframework/zend-code", @@ -7531,7 +7717,7 @@ "code", "zf2" ], - "time": "2016-04-20T17:26:42+00:00" + "time": "2016-04-20 17:26:42" }, { "name": "zendframework/zend-eventmanager", @@ -7585,7 +7771,7 @@ "events", "zf2" ], - "time": "2016-02-18T20:53:00+00:00" + "time": "2016-02-18 20:53:00" } ], "packages-dev": [ @@ -7594,12 +7780,12 @@ "version": "v1.6.4", "source": { "type": "git", - "url": "https://github.com/mikey179/vfsStream.git", + "url": "https://github.com/bovigo/vfsStream.git", "reference": "0247f57b2245e8ad2e689d7cee754b45fbabd592" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mikey179/vfsStream/zipball/0247f57b2245e8ad2e689d7cee754b45fbabd592", + "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/0247f57b2245e8ad2e689d7cee754b45fbabd592", "reference": "0247f57b2245e8ad2e689d7cee754b45fbabd592", "shasum": "" }, @@ -7633,77 +7819,7 @@ ], "description": "Virtual file system to mock the real file system in unit tests.", "homepage": "http://vfs.bovigo.org/", - "time": "2016-07-18T14:02:57+00:00" - }, - { - "name": "php-amqplib/php-amqplib", - "version": "v2.6.3", - "source": { - "type": "git", - "url": "https://github.com/php-amqplib/php-amqplib.git", - "reference": "fa2f0d4410a11008cb36b379177291be7ee9e4f6" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/fa2f0d4410a11008cb36b379177291be7ee9e4f6", - "reference": "fa2f0d4410a11008cb36b379177291be7ee9e4f6", - "shasum": "" - }, - "require": { - "ext-bcmath": "*", - "ext-mbstring": "*", - "php": ">=5.3.0" - }, - "replace": { - "videlalvaro/php-amqplib": "self.version" - }, - "require-dev": { - "phpunit/phpunit": "^4.8", - "scrutinizer/ocular": "^1.1", - "squizlabs/php_codesniffer": "^2.5" - }, - "suggest": { - "ext-sockets": "Use AMQPSocketConnection" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.7-dev" - } - }, - "autoload": { - "psr-4": { - "PhpAmqpLib\\": "PhpAmqpLib/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "LGPL-2.1" - ], - "authors": [ - { - "name": "Alvaro Videla", - "role": "Original Maintainer" - }, - { - "name": "John Kelly", - "email": "johnmkelly86@gmail.com", - "role": "Maintainer" - }, - { - "name": "Raúl Araya", - "email": "nubeiro@gmail.com", - "role": "Maintainer" - } - ], - "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.", - "homepage": "https://github.com/php-amqplib/php-amqplib/", - "keywords": [ - "message", - "queue", - "rabbitmq" - ], - "time": "2016-04-11T14:30:01+00:00" + "time": "2016-07-18 14:02:57" }, { "name": "phpdocumentor/reflection-common", @@ -7757,7 +7873,7 @@ "reflection", "static analysis" ], - "time": "2015-12-27T11:43:31+00:00" + "time": "2015-12-27 11:43:31" }, { "name": "phpdocumentor/reflection-docblock", @@ -7802,7 +7918,7 @@ } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "time": "2016-09-30T07:12:33+00:00" + "time": "2016-09-30 07:12:33" }, { "name": "phpdocumentor/type-resolver", @@ -7849,7 +7965,7 @@ "email": "me@mikevanriel.com" } ], - "time": "2016-11-25T06:54:22+00:00" + "time": "2016-11-25 06:54:22" }, { "name": "phpspec/prophecy", @@ -7912,7 +8028,7 @@ "spy", "stub" ], - "time": "2016-11-21T14:58:47+00:00" + "time": "2016-11-21 14:58:47" }, { "name": "phpunit/php-code-coverage", @@ -7974,7 +8090,7 @@ "testing", "xunit" ], - "time": "2015-10-06T15:47:00+00:00" + "time": "2015-10-06 15:47:00" }, { "name": "phpunit/php-file-iterator", @@ -8021,7 +8137,7 @@ "filesystem", "iterator" ], - "time": "2016-10-03T07:40:28+00:00" + "time": "2016-10-03 07:40:28" }, { "name": "phpunit/php-text-template", @@ -8062,7 +8178,7 @@ "keywords": [ "template" ], - "time": "2015-06-21T13:50:34+00:00" + "time": "2015-06-21 13:50:34" }, { "name": "phpunit/php-timer", @@ -8106,7 +8222,7 @@ "keywords": [ "timer" ], - "time": "2016-05-12T18:03:57+00:00" + "time": "2016-05-12 18:03:57" }, { "name": "phpunit/php-token-stream", @@ -8155,7 +8271,7 @@ "keywords": [ "tokenizer" ], - "time": "2016-11-15T14:06:22+00:00" + "time": "2016-11-15 14:06:22" }, { "name": "phpunit/phpunit", @@ -8227,7 +8343,7 @@ "testing", "xunit" ], - "time": "2017-01-26T16:15:36+00:00" + "time": "2017-01-26 16:15:36" }, { "name": "phpunit/phpunit-mock-objects", @@ -8283,7 +8399,8 @@ "mock", "xunit" ], - "time": "2015-10-02T06:51:40+00:00" + "abandoned": true, + "time": "2015-10-02 06:51:40" }, { "name": "sebastian/comparator", @@ -8347,7 +8464,7 @@ "compare", "equality" ], - "time": "2017-01-29T09:50:25+00:00" + "time": "2017-01-29 09:50:25" }, { "name": "sebastian/diff", @@ -8399,7 +8516,7 @@ "keywords": [ "diff" ], - "time": "2015-12-08T07:14:41+00:00" + "time": "2015-12-08 07:14:41" }, { "name": "sebastian/environment", @@ -8449,7 +8566,7 @@ "environment", "hhvm" ], - "time": "2016-08-18T05:49:44+00:00" + "time": "2016-08-18 05:49:44" }, { "name": "sebastian/exporter", @@ -8516,7 +8633,7 @@ "export", "exporter" ], - "time": "2016-06-17T09:04:28+00:00" + "time": "2016-06-17 09:04:28" }, { "name": "sebastian/global-state", @@ -8567,7 +8684,7 @@ "keywords": [ "global state" ], - "time": "2015-10-12T03:26:01+00:00" + "time": "2015-10-12 03:26:01" }, { "name": "sebastian/recursion-context", @@ -8620,7 +8737,7 @@ ], "description": "Provides functionality to recursively process PHP variables", "homepage": "http://www.github.com/sebastianbergmann/recursion-context", - "time": "2015-11-11T19:50:13+00:00" + "time": "2015-11-11 19:50:13" }, { "name": "sebastian/version", @@ -8655,7 +8772,7 @@ ], "description": "Library that helps with managing the version number of Git-hosted PHP projects", "homepage": "https://github.com/sebastianbergmann/version", - "time": "2015-06-21T13:59:46+00:00" + "time": "2015-06-21 13:59:46" } ], "aliases": [ diff --git a/config/configuration.sample.yml b/config/configuration.sample.yml index 5ae54d2134..fbaa368ed9 100644 --- a/config/configuration.sample.yml +++ b/config/configuration.sample.yml @@ -7,6 +7,8 @@ main: languages: [] key: '' api_require_ssl: true + api_token_header: false + delete-account-require-email-confirmation: true database: host: 127.0.0.1 port: 3306 @@ -89,7 +91,9 @@ main: client_secret: null border-manager: enabled: true - extension-mapping: { } + extension-mapping: + otc: application/vnd.oasis.opendocument.chart-template + ttc: application/x-font-ttf checkers: - type: Checker\Sha256 @@ -227,17 +231,19 @@ embed_bundle: video: player: videojs autoplay: false - coverSubdef: previewx4 - available-speeds: + cover_subdef: thumbnail + message_start: StartOfMessage + available_speeds: - 1 - 1.5 - 3 audio: player: videojs autoplay: false + cover_subdef: thumbnail document: player: flexpaper - enable-pdfjs: true + enable_pdfjs: true geocoding-providers: - map-provider: mapboxWebGL @@ -282,3 +288,7 @@ workers: user: guest password: guest vhost: / + +user_account: + deleting_policies: + email_confirmation: true diff --git a/docker/nginx/boot.sh b/docker/nginx/boot.sh new file mode 100755 index 0000000000..2684d8c0f7 --- /dev/null +++ b/docker/nginx/boot.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +set -xe + +cat nginx.conf.sample | sed "s/\$MAX_BODY_SIZE/$MAX_BODY_SIZE/g" > /etc/nginx/conf.d/default.conf +nginx -g "daemon off;" diff --git a/docker/nginx/etc/nginx/nginx.conf b/docker/nginx/etc/nginx/nginx.conf new file mode 100755 index 0000000000..71a94ee98f --- /dev/null +++ b/docker/nginx/etc/nginx/nginx.conf @@ -0,0 +1,31 @@ + +user app; +worker_processes 1; + +error_log /var/log/ngnix_error.log info; +pid /var/run/nginx.pid; + +events { + worker_connections 1024; +} + +http { + include /etc/nginx/mime.types; + default_type application/octet-stream; + + log_format main '$remote_addr - $remote_user [$time_local] "$request" ' + '$status $body_bytes_sent "$http_referer" ' + '"$http_user_agent" "$http_x_forwarded_for"'; + + access_log /var/log/nginx/access.log main; + + sendfile on; + #tcp_nopush on; + + keepalive_timeout 65; + + #gzip on; + + include /etc/nginx/conf.d/*.conf; + +} diff --git a/docker/nginx/nginx.conf.sample b/docker/nginx/nginx.conf.sample new file mode 100644 index 0000000000..ad015e7c5a --- /dev/null +++ b/docker/nginx/nginx.conf.sample @@ -0,0 +1,39 @@ +upstream backend { + server phraseanet:9000; +} + +server { + listen 80; + root /var/alchemy/Phraseanet/www; + + index index.php; + client_max_body_size $MAX_BODY_SIZE; + + location /api { + rewrite ^(.*)$ /api.php/$1 last; + } + + location / { + # First attempt to serve request as file, then + # as directory, then fall back to index.html + try_files $uri $uri/ @rewriteapp; + } + + location @rewriteapp { + rewrite ^(.*)$ /index.php/$1 last; + } + + # PHP scripts -> PHP-FPM server listening on 127.0.0.1:9000 + location ~ ^/(index|index_dev|api)\.php(/|$) { + fastcgi_pass backend; + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + include fastcgi_params; + } + + location ~ ^/(status|ping)$ { + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + fastcgi_index index.php; + include fastcgi_params; + fastcgi_pass backend; + } +} diff --git a/docker/phraseanet-debug/entrypoint.sh b/docker/phraseanet-debug/entrypoint.sh new file mode 100644 index 0000000000..a7a9f915b1 --- /dev/null +++ b/docker/phraseanet-debug/entrypoint.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +set -e + +if [ ! -z ${DOCKER_XDEBUG_ENABLED} ]; then + . usr-bin/docker-xdebug-enable +fi + +exec "$@" diff --git a/docker/phraseanet-debug/usr/bin/docker-get-host-ip b/docker/phraseanet-debug/usr/bin/docker-get-host-ip new file mode 100644 index 0000000000..752c1566ea --- /dev/null +++ b/docker/phraseanet-debug/usr/bin/docker-get-host-ip @@ -0,0 +1,4 @@ +#!/bin/sh + +/sbin/ip route|awk '/default/ { print $3 }' +# TODO support MacOS & Windows host IP diff --git a/docker/phraseanet-debug/usr/bin/docker-xdebug-disable b/docker/phraseanet-debug/usr/bin/docker-xdebug-disable new file mode 100644 index 0000000000..7d9de59329 --- /dev/null +++ b/docker/phraseanet-debug/usr/bin/docker-xdebug-disable @@ -0,0 +1,5 @@ +#!/bin/sh + +unset HOST_IP +unset XDEBUG_CONFIG +unset XDEBUG_REMOTE_HOST diff --git a/docker/phraseanet-debug/usr/bin/docker-xdebug-enable b/docker/phraseanet-debug/usr/bin/docker-xdebug-enable new file mode 100644 index 0000000000..24b7fcd97b --- /dev/null +++ b/docker/phraseanet-debug/usr/bin/docker-xdebug-enable @@ -0,0 +1,9 @@ +#!/bin/sh + +set -e + +HOST_IP=$(docker-get-host-ip); + +export HOST_IP +export XDEBUG_CONFIG="remote_enable=1 remote_host=${HOST_IP} idekey=PHPSTORM"; +export XDEBUG_REMOTE_HOST="${HOST_IP}"; diff --git a/docker/phraseanet/auto-install.sh b/docker/phraseanet/auto-install.sh new file mode 100755 index 0000000000..b69490fd03 --- /dev/null +++ b/docker/phraseanet/auto-install.sh @@ -0,0 +1,54 @@ +#!/bin/bash + +set -xe + +if [ $INSTALL_ACCOUNT_EMAIL = ""]; then + echo "INSTALL_ACCOUNT_EMAIL var is not set." + exit 1 +fi + +if [ $INSTALL_ACCOUNT_PASSWORD = ""]; then + echo "INSTALL_ACCOUNT_PASSWORD var is not set." + exit 1 +fi + +/var/alchemy/Phraseanet/bin/setup system:install \ + --email=$INSTALL_ACCOUNT_EMAIL \ + --password=$INSTALL_ACCOUNT_PASSWORD \ + --db-host=$INSTALL_DB_HOST \ + --db-port=$INSTALL_DB_PORT \ + --db-user=$INSTALL_DB_USER \ + --db-password=$INSTALL_DB_PASSWORD \ + --db-template=$INSTALL_DB_TEMPLATE \ + --appbox=$INSTALL_APPBOX \ + --databox=$INSTALL_DATABOX \ + --server-name=$INSTALL_SERVER_NAME \ + --data-path=/var/alchemy/Phraseanet/datas -y + +/var/alchemy/Phraseanet/bin/setup system:config set main.search-engine.options.host elasticsearch +/var/alchemy/Phraseanet/bin/setup system:config set main.search-engine.options.minScore 2 +/var/alchemy/Phraseanet/bin/setup system:config set main.search-engine.options.base_aggregate_limit 10 +/var/alchemy/Phraseanet/bin/setup system:config set main.search-engine.options.collection_aggregate_limit 10 +/var/alchemy/Phraseanet/bin/setup system:config set main.search-engine.options.doctype_aggregate_limit 10 + +## Redis +/var/alchemy/Phraseanet/bin/setup system:config set main.cache.options.host redis +/var/alchemy/Phraseanet/bin/setup system:config set main.cache.options.port 6379 +/var/alchemy/Phraseanet/bin/setup system:config set main.cache.options.domain $INSTALL_SERVER_NAME +/var/alchemy/Phraseanet/bin/setup system:config set main.cache.type redis + +# RabbitMQ + +bin/setup system:config set rabbitmq.server.host rabbitmq +bin/setup system:config set rabbitmq.server.port 5672 +bin/setup system:config set rabbitmq.server.user $INSTALL_RABBITMQ_USER +bin/setup system:config set rabbitmq.server.password $INSTALL_RABBITMQ_PASSWORD +bin/setup system:config set rabbitmq.server.vhost / + + +/var/alchemy/Phraseanet/bin/console searchengine:index -c + +## enable API and disable ssl on it +/var/alchemy/Phraseanet/bin/setup system:config set registry.api-clients.api-enabled true +/var/alchemy/Phraseanet/bin/setup system:config set main.api_require_ssl false +/var/alchemy/Phraseanet/bin/console compile:configuration diff --git a/docker/phraseanet/boot.sh b/docker/phraseanet/boot.sh new file mode 100755 index 0000000000..444b63a64c --- /dev/null +++ b/docker/phraseanet/boot.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +set -xe + +chown -R app:app /var/alchemy/Phraseanet/config +chown -R app:app /var/alchemy/Phraseanet/datas +chown -R app:app /var/alchemy/Phraseanet/tmp +chown -R app:app /var/alchemy/Phraseanet/www/thumbnails +FILE=/var/alchemy/Phraseanet/config/configuration.yml +if [ -f "$FILE" ]; then + echo "$FILE exist, skip setup." +else + echo "$FILE doesn't exist, entering setup..." + runuser app -c '/auto-install.sh' +fi + +php-fpm diff --git a/docker/phraseanet/php-fpm.conf.sample b/docker/phraseanet/php-fpm.conf.sample new file mode 100644 index 0000000000..beb7ef081f --- /dev/null +++ b/docker/phraseanet/php-fpm.conf.sample @@ -0,0 +1,125 @@ +;;;;;;;;;;;;;;;;;;;;; +; FPM Configuration ; +;;;;;;;;;;;;;;;;;;;;; + +; All relative paths in this configuration file are relative to PHP's install +; prefix (/usr/local). This prefix can be dynamically changed by using the +; '-p' argument from the command line. + +;;;;;;;;;;;;;;;;;; +; Global Options ; +;;;;;;;;;;;;;;;;;; + +[global] +; Pid file +; Note: the default prefix is /usr/local/var +; Default Value: none +;pid = run/php-fpm.pid + +; Error log file +; If it's set to "syslog", log is sent to syslogd instead of being written +; in a local file. +; Note: the default prefix is /usr/local/var +; Default Value: log/php-fpm.log +error_log = /var/lib/phraseanet/logs/php-fpm.log + +; syslog_facility is used to specify what type of program is logging the +; message. This lets syslogd specify that messages from different facilities +; will be handled differently. +; See syslog(3) for possible values (ex daemon equiv LOG_DAEMON) +; Default Value: daemon +;syslog.facility = daemon + +; syslog_ident is prepended to every message. If you have multiple FPM +; instances running on the same server, you can change the default value +; which must suit common needs. +; Default Value: php-fpm +;syslog.ident = php-fpm + +; Log level +; Possible Values: alert, error, warning, notice, debug +; Default Value: notice +log_level = $PHP_LOG_LEVEL + +; If this number of child processes exit with SIGSEGV or SIGBUS within the time +; interval set by emergency_restart_interval then FPM will restart. A value +; of '0' means 'Off'. +; Default Value: 0 +;emergency_restart_threshold = 0 + +; Interval of time used by emergency_restart_interval to determine when +; a graceful restart will be initiated. This can be useful to work around +; accidental corruptions in an accelerator's shared memory. +; Available Units: s(econds), m(inutes), h(ours), or d(ays) +; Default Unit: seconds +; Default Value: 0 +;emergency_restart_interval = 0 + +; Time limit for child processes to wait for a reaction on signals from master. +; Available units: s(econds), m(inutes), h(ours), or d(ays) +; Default Unit: seconds +; Default Value: 0 +;process_control_timeout = 0 + +; The maximum number of processes FPM will fork. This has been design to control +; the global number of processes when using dynamic PM within a lot of pools. +; Use it with caution. +; Note: A value of 0 indicates no limit +; Default Value: 0 +; process.max = 128 + +; Specify the nice(2) priority to apply to the master process (only if set) +; The value can vary from -19 (highest priority) to 20 (lower priority) +; Note: - It will only work if the FPM master process is launched as root +; - The pool process will inherit the master process priority +; unless it specified otherwise +; Default Value: no set +; process.priority = -19 + +; Send FPM to background. Set to 'no' to keep FPM in foreground for debugging. +; Default Value: yes +;daemonize = yes + +; Set open file descriptor rlimit for the master process. +; Default Value: system defined value +;rlimit_files = 1024 + +; Set max core size rlimit for the master process. +; Possible Values: 'unlimited' or an integer greater or equal to 0 +; Default Value: system defined value +;rlimit_core = 0 + +; Specify the event mechanism FPM will use. The following is available: +; - select (any POSIX os) +; - poll (any POSIX os) +; - epoll (linux >= 2.5.44) +; - kqueue (FreeBSD >= 4.1, OpenBSD >= 2.9, NetBSD >= 2.0) +; - /dev/poll (Solaris >= 7) +; - port (Solaris >= 10) +; Default Value: not set (auto detection) +;events.mechanism = epoll + +; When FPM is build with systemd integration, specify the interval, +; in second, between health report notification to systemd. +; Set to 0 to disable. +; Available Units: s(econds), m(inutes), h(ours) +; Default Unit: seconds +; Default value: 10 +;systemd_interval = 10 + +;;;;;;;;;;;;;;;;;;;; +; Pool Definitions ; +;;;;;;;;;;;;;;;;;;;; + +; Multiple pools of child processes may be started with different listening +; ports and different management options. The name of the pool will be +; used in logs and stats. There is no limitation on the number of pools which +; FPM can handle. Your system will tell you anyway :) + +; Include one or more files. If glob(3) exists, it is used to include a bunch of +; files from a glob(3) pattern. This directive can be used everywhere in the +; file. +; Relative path can also be used. They will be prefixed by: +; - the global prefix if it's been set (-p argument) +; - /usr/local otherwise +include=etc/php-fpm.d/*.conf diff --git a/docker/phraseanet/php.ini.sample b/docker/phraseanet/php.ini.sample new file mode 100644 index 0000000000..774389b614 --- /dev/null +++ b/docker/phraseanet/php.ini.sample @@ -0,0 +1,1893 @@ +[PHP] + +;;;;;;;;;;;;;;;;;;; +; About php.ini ; +;;;;;;;;;;;;;;;;;;; +; PHP's initialization file, generally called php.ini, is responsible for +; configuring many of the aspects of PHP's behavior. + +; PHP attempts to find and load this configuration from a number of locations. +; The following is a summary of its search order: +; 1. SAPI module specific location. +; 2. The PHPRC environment variable. (As of PHP 5.2.0) +; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0) +; 4. Current working directory (except CLI) +; 5. The web server's directory (for SAPI modules), or directory of PHP +; (otherwise in Windows) +; 6. The directory from the --with-config-file-path compile time option, or the +; Windows directory (C:\windows or C:\winnt) +; See the PHP docs for more specific information. +; http://php.net/configuration.file + +; The syntax of the file is extremely simple. Whitespace and lines +; beginning with a semicolon are silently ignored (as you probably guessed). +; Section headers (e.g. [Foo]) are also silently ignored, even though +; they might mean something in the future. + +; Directives following the section heading [PATH=/www/mysite] only +; apply to PHP files in the /www/mysite directory. Directives +; following the section heading [HOST=www.example.com] only apply to +; PHP files served from www.example.com. Directives set in these +; special sections cannot be overridden by user-defined INI files or +; at runtime. Currently, [PATH=] and [HOST=] sections only work under +; CGI/FastCGI. +; http://php.net/ini.sections + +; Directives are specified using the following syntax: +; directive = value +; Directive names are *case sensitive* - foo=bar is different from FOO=bar. +; Directives are variables used to configure PHP or PHP extensions. +; There is no name validation. If PHP can't find an expected +; directive because it is not set or is mistyped, a default value will be used. + +; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one +; of the INI constants (On, Off, True, False, Yes, No and None) or an expression +; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a +; previously set variable or directive (e.g. ${foo}) + +; Expressions in the INI file are limited to bitwise operators and parentheses: +; | bitwise OR +; ^ bitwise XOR +; & bitwise AND +; ~ bitwise NOT +; ! boolean NOT + +; Boolean flags can be turned on using the values 1, On, True or Yes. +; They can be turned off using the values 0, Off, False or No. + +; An empty string can be denoted by simply not writing anything after the equal +; sign, or by using the None keyword: + +; foo = ; sets foo to an empty string +; foo = None ; sets foo to an empty string +; foo = "None" ; sets foo to the string 'None' + +; If you use constants in your value, and these constants belong to a +; dynamically loaded extension (either a PHP extension or a Zend extension), +; you may only use these constants *after* the line that loads the extension. + +;;;;;;;;;;;;;;;;;;; +; About this file ; +;;;;;;;;;;;;;;;;;;; +; PHP comes packaged with two INI files. One that is recommended to be used +; in production environments and one that is recommended to be used in +; development environments. + +; php.ini-production contains settings which hold security, performance and +; best practices at its core. But please be aware, these settings may break +; compatibility with older or less security conscience applications. We +; recommending using the production ini in production and testing environments. + +; php.ini-development is very similar to its production variant, except it is +; much more verbose when it comes to errors. We recommend using the +; development version only in development environments, as errors shown to +; application users can inadvertently leak otherwise secure information. + +; This is php.ini-production INI file. + +;;;;;;;;;;;;;;;;;;; +; Quick Reference ; +;;;;;;;;;;;;;;;;;;; +; The following are all the settings which are different in either the production +; or development versions of the INIs with respect to PHP's default behavior. +; Please see the actual settings later in the document for more details as to why +; we recommend these changes in PHP's behavior. + +; display_errors +; Default Value: On +; Development Value: On +; Production Value: Off + +; display_startup_errors +; Default Value: Off +; Development Value: On +; Production Value: Off + +; error_reporting +; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED +; Development Value: E_ALL +; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT + +; html_errors +; Default Value: On +; Development Value: On +; Production value: On + +; log_errors +; Default Value: Off +; Development Value: On +; Production Value: On + +; max_input_time +; Default Value: -1 (Unlimited) +; Development Value: 60 (60 seconds) +; Production Value: 60 (60 seconds) + +; output_buffering +; Default Value: Off +; Development Value: 4096 +; Production Value: 4096 + +; register_argc_argv +; Default Value: On +; Development Value: Off +; Production Value: Off + +; request_order +; Default Value: None +; Development Value: "GP" +; Production Value: "GP" + +; session.gc_divisor +; Default Value: 100 +; Development Value: 1000 +; Production Value: 1000 + +; session.sid_bits_per_character +; Default Value: 4 +; Development Value: 5 +; Production Value: 5 + +; short_open_tag +; Default Value: On +; Development Value: Off +; Production Value: Off + +; track_errors +; Default Value: Off +; Development Value: On +; Production Value: Off + +; variables_order +; Default Value: "EGPCS" +; Development Value: "GPCS" +; Production Value: "GPCS" + +;;;;;;;;;;;;;;;;;;;; +; php.ini Options ; +;;;;;;;;;;;;;;;;;;;; +; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini" +;user_ini.filename = ".user.ini" + +; To disable this feature set this option to empty value +;user_ini.filename = + +; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes) +;user_ini.cache_ttl = 300 + +;;;;;;;;;;;;;;;;;;;; +; Language Options ; +;;;;;;;;;;;;;;;;;;;; + +; Enable the PHP scripting language engine under Apache. +; http://php.net/engine +engine = On + +; This directive determines whether or not PHP will recognize code between +; tags as PHP source which should be processed as such. It is +; generally recommended that should be used and that this feature +; should be disabled, as enabling it may result in issues when generating XML +; documents, however this remains supported for backward compatibility reasons. +; Note that this directive does not control the would work. +; http://php.net/syntax-highlighting +;highlight.string = #DD0000 +;highlight.comment = #FF9900 +;highlight.keyword = #007700 +;highlight.default = #0000BB +;highlight.html = #000000 + +; If enabled, the request will be allowed to complete even if the user aborts +; the request. Consider enabling it if executing long requests, which may end up +; being interrupted by the user or a browser timing out. PHP's default behavior +; is to disable this feature. +; http://php.net/ignore-user-abort +;ignore_user_abort = On + +; Determines the size of the realpath cache to be used by PHP. This value should +; be increased on systems where PHP opens many files to reflect the quantity of +; the file operations performed. +; http://php.net/realpath-cache-size +;realpath_cache_size = 4096k + +; Duration of time, in seconds for which to cache realpath information for a given +; file or directory. For systems with rarely changing files, consider increasing this +; value. +; http://php.net/realpath-cache-ttl +;realpath_cache_ttl = 120 + +; Enables or disables the circular reference collector. +; http://php.net/zend.enable-gc +zend.enable_gc = On + +; If enabled, scripts may be written in encodings that are incompatible with +; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such +; encodings. To use this feature, mbstring extension must be enabled. +; Default: Off +;zend.multibyte = Off + +; Allows to set the default encoding for the scripts. This value will be used +; unless "declare(encoding=...)" directive appears at the top of the script. +; Only affects if zend.multibyte is set. +; Default: "" +;zend.script_encoding = + +;;;;;;;;;;;;;;;;; +; Miscellaneous ; +;;;;;;;;;;;;;;;;; + +; Decides whether PHP may expose the fact that it is installed on the server +; (e.g. by adding its signature to the Web server header). It is no security +; threat in any way, but it makes it possible to determine whether you use PHP +; on your server or not. +; http://php.net/expose-php +expose_php = On + +;;;;;;;;;;;;;;;;;;; +; Resource Limits ; +;;;;;;;;;;;;;;;;;;; + +; Maximum execution time of each script, in seconds +; http://php.net/max-execution-time +; Note: This directive is hardcoded to 0 for the CLI SAPI +max_execution_time = 9999 + +; Maximum amount of time each script may spend parsing request data. It's a good +; idea to limit this time on productions servers in order to eliminate unexpectedly +; long running scripts. +; Note: This directive is hardcoded to -1 for the CLI SAPI +; Default Value: -1 (Unlimited) +; Development Value: 60 (60 seconds) +; Production Value: 60 (60 seconds) +; http://php.net/max-input-time +max_input_time = 60 + +; Maximum input variable nesting level +; http://php.net/max-input-nesting-level +;max_input_nesting_level = 64 + +; How many GET/POST/COOKIE input variables may be accepted +max_input_vars = $MAX_INPUT_VARS + +; Maximum amount of memory a script may consume (128MB) +; http://php.net/memory-limit +memory_limit = 2048M + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +; Error handling and logging ; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +; This directive informs PHP of which errors, warnings and notices you would like +; it to take action for. The recommended way of setting values for this +; directive is through the use of the error level constants and bitwise +; operators. The error level constants are below here for convenience as well as +; some common settings and their meanings. +; By default, PHP is set to take action on all errors, notices and warnings EXCEPT +; those related to E_NOTICE and E_STRICT, which together cover best practices and +; recommended coding standards in PHP. For performance reasons, this is the +; recommend error reporting setting. Your production server shouldn't be wasting +; resources complaining about best practices and coding standards. That's what +; development servers and development settings are for. +; Note: The php.ini-development file has this setting as E_ALL. This +; means it pretty much reports everything which is exactly what you want during +; development and early testing. +; +; Error Level Constants: +; E_ALL - All errors and warnings (includes E_STRICT as of PHP 5.4.0) +; E_ERROR - fatal run-time errors +; E_RECOVERABLE_ERROR - almost fatal run-time errors +; E_WARNING - run-time warnings (non-fatal errors) +; E_PARSE - compile-time parse errors +; E_NOTICE - run-time notices (these are warnings which often result +; from a bug in your code, but it's possible that it was +; intentional (e.g., using an uninitialized variable and +; relying on the fact it is automatically initialized to an +; empty string) +; E_STRICT - run-time notices, enable to have PHP suggest changes +; to your code which will ensure the best interoperability +; and forward compatibility of your code +; E_CORE_ERROR - fatal errors that occur during PHP's initial startup +; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's +; initial startup +; E_COMPILE_ERROR - fatal compile-time errors +; E_COMPILE_WARNING - compile-time warnings (non-fatal errors) +; E_USER_ERROR - user-generated error message +; E_USER_WARNING - user-generated warning message +; E_USER_NOTICE - user-generated notice message +; E_DEPRECATED - warn about code that will not work in future versions +; of PHP +; E_USER_DEPRECATED - user-generated deprecation warnings +; +; Common Values: +; E_ALL (Show all errors, warnings and notices including coding standards.) +; E_ALL & ~E_NOTICE (Show all errors, except for notices) +; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.) +; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors) +; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED +; Development Value: E_ALL +; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT +; http://php.net/error-reporting +error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT + +; This directive controls whether or not and where PHP will output errors, +; notices and warnings too. Error output is very useful during development, but +; it could be very dangerous in production environments. Depending on the code +; which is triggering the error, sensitive information could potentially leak +; out of your application such as database usernames and passwords or worse. +; For production environments, we recommend logging errors rather than +; sending them to STDOUT. +; Possible Values: +; Off = Do not display any errors +; stderr = Display errors to STDERR (affects only CGI/CLI binaries!) +; On or stdout = Display errors to STDOUT +; Default Value: On +; Development Value: On +; Production Value: Off +; http://php.net/display-errors +display_errors = Off + +; The display of errors which occur during PHP's startup sequence are handled +; separately from display_errors. PHP's default behavior is to suppress those +; errors from clients. Turning the display of startup errors on can be useful in +; debugging configuration problems. We strongly recommend you +; set this to 'off' for production servers. +; Default Value: Off +; Development Value: On +; Production Value: Off +; http://php.net/display-startup-errors +display_startup_errors = Off + +; Besides displaying errors, PHP can also log errors to locations such as a +; server-specific log, STDERR, or a location specified by the error_log +; directive found below. While errors should not be displayed on productions +; servers they should still be monitored and logging is a great way to do that. +; Default Value: Off +; Development Value: On +; Production Value: On +; http://php.net/log-errors +log_errors = On + +; Set maximum length of log_errors. In error_log information about the source is +; added. The default is 1024 and 0 allows to not apply any maximum length at all. +; http://php.net/log-errors-max-len +log_errors_max_len = 1024 + +; Do not log repeated messages. Repeated errors must occur in same file on same +; line unless ignore_repeated_source is set true. +; http://php.net/ignore-repeated-errors +ignore_repeated_errors = Off + +; Ignore source of message when ignoring repeated messages. When this setting +; is On you will not log errors with repeated messages from different files or +; source lines. +; http://php.net/ignore-repeated-source +ignore_repeated_source = Off + +; If this parameter is set to Off, then memory leaks will not be shown (on +; stdout or in the log). This has only effect in a debug compile, and if +; error reporting includes E_WARNING in the allowed list +; http://php.net/report-memleaks +report_memleaks = On + +; This setting is on by default. +;report_zend_debug = 0 + +; Store the last error/warning message in $php_errormsg (boolean). Setting this value +; to On can assist in debugging and is appropriate for development servers. It should +; however be disabled on production servers. +; This directive is DEPRECATED. +; Default Value: Off +; Development Value: Off +; Production Value: Off +; http://php.net/track-errors +;track_errors = Off + +; Turn off normal error reporting and emit XML-RPC error XML +; http://php.net/xmlrpc-errors +;xmlrpc_errors = 0 + +; An XML-RPC faultCode +;xmlrpc_error_number = 0 + +; When PHP displays or logs an error, it has the capability of formatting the +; error message as HTML for easier reading. This directive controls whether +; the error message is formatted as HTML or not. +; Note: This directive is hardcoded to Off for the CLI SAPI +; Default Value: On +; Development Value: On +; Production value: On +; http://php.net/html-errors +html_errors = On + +; If html_errors is set to On *and* docref_root is not empty, then PHP +; produces clickable error messages that direct to a page describing the error +; or function causing the error in detail. +; You can download a copy of the PHP manual from http://php.net/docs +; and change docref_root to the base URL of your local copy including the +; leading '/'. You must also specify the file extension being used including +; the dot. PHP's default behavior is to leave these settings empty, in which +; case no links to documentation are generated. +; Note: Never use this feature for production boxes. +; http://php.net/docref-root +; Examples +;docref_root = "/phpmanual/" + +; http://php.net/docref-ext +;docref_ext = .html + +; String to output before an error message. PHP's default behavior is to leave +; this setting blank. +; http://php.net/error-prepend-string +; Example: +;error_prepend_string = "" + +; String to output after an error message. PHP's default behavior is to leave +; this setting blank. +; http://php.net/error-append-string +; Example: +;error_append_string = "" + +; Log errors to specified file. PHP's default behavior is to leave this value +; empty. +; http://php.net/error-log +; Example: +;error_log = php_errors.log +; Log errors to syslog (Event Log on Windows). +;error_log = syslog + +;windows.show_crt_warning +; Default value: 0 +; Development value: 0 +; Production value: 0 + +;;;;;;;;;;;;;;;;; +; Data Handling ; +;;;;;;;;;;;;;;;;; + +; The separator used in PHP generated URLs to separate arguments. +; PHP's default setting is "&". +; http://php.net/arg-separator.output +; Example: +;arg_separator.output = "&" + +; List of separator(s) used by PHP to parse input URLs into variables. +; PHP's default setting is "&". +; NOTE: Every character in this directive is considered as separator! +; http://php.net/arg-separator.input +; Example: +;arg_separator.input = ";&" + +; This directive determines which super global arrays are registered when PHP +; starts up. G,P,C,E & S are abbreviations for the following respective super +; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty +; paid for the registration of these arrays and because ENV is not as commonly +; used as the others, ENV is not recommended on productions servers. You +; can still get access to the environment variables through getenv() should you +; need to. +; Default Value: "EGPCS" +; Development Value: "GPCS" +; Production Value: "GPCS"; +; http://php.net/variables-order +variables_order = "GPCS" + +; This directive determines which super global data (G,P & C) should be +; registered into the super global array REQUEST. If so, it also determines +; the order in which that data is registered. The values for this directive +; are specified in the same manner as the variables_order directive, +; EXCEPT one. Leaving this value empty will cause PHP to use the value set +; in the variables_order directive. It does not mean it will leave the super +; globals array REQUEST empty. +; Default Value: None +; Development Value: "GP" +; Production Value: "GP" +; http://php.net/request-order +request_order = "GP" + +; This directive determines whether PHP registers $argv & $argc each time it +; runs. $argv contains an array of all the arguments passed to PHP when a script +; is invoked. $argc contains an integer representing the number of arguments +; that were passed when the script was invoked. These arrays are extremely +; useful when running scripts from the command line. When this directive is +; enabled, registering these variables consumes CPU cycles and memory each time +; a script is executed. For performance reasons, this feature should be disabled +; on production servers. +; Note: This directive is hardcoded to On for the CLI SAPI +; Default Value: On +; Development Value: Off +; Production Value: Off +; http://php.net/register-argc-argv +register_argc_argv = Off + +; When enabled, the ENV, REQUEST and SERVER variables are created when they're +; first used (Just In Time) instead of when the script starts. If these +; variables are not used within a script, having this directive on will result +; in a performance gain. The PHP directive register_argc_argv must be disabled +; for this directive to have any affect. +; http://php.net/auto-globals-jit +auto_globals_jit = On + +; Whether PHP will read the POST data. +; This option is enabled by default. +; Most likely, you won't want to disable this option globally. It causes $_POST +; and $_FILES to always be empty; the only way you will be able to read the +; POST data will be through the php://input stream wrapper. This can be useful +; to proxy requests or to process the POST data in a memory efficient fashion. +; http://php.net/enable-post-data-reading +;enable_post_data_reading = Off + +; Maximum size of POST data that PHP will accept. +; Its value may be 0 to disable the limit. It is ignored if POST data reading +; is disabled through enable_post_data_reading. +; http://php.net/post-max-size +post_max_size = $MAX_BODY_SIZE + +; Automatically add files before PHP document. +; http://php.net/auto-prepend-file +auto_prepend_file = + +; Automatically add files after PHP document. +; http://php.net/auto-append-file +auto_append_file = + +; By default, PHP will output a media type using the Content-Type header. To +; disable this, simply set it to be empty. +; +; PHP's built-in default media type is set to text/html. +; http://php.net/default-mimetype +default_mimetype = "text/html" + +; PHP's default character set is set to UTF-8. +; http://php.net/default-charset +default_charset = "UTF-8" + +; PHP internal character encoding is set to empty. +; If empty, default_charset is used. +; http://php.net/internal-encoding +;internal_encoding = + +; PHP input character encoding is set to empty. +; If empty, default_charset is used. +; http://php.net/input-encoding +;input_encoding = + +; PHP output character encoding is set to empty. +; If empty, default_charset is used. +; See also output_buffer. +; http://php.net/output-encoding +;output_encoding = + +;;;;;;;;;;;;;;;;;;;;;;;;; +; Paths and Directories ; +;;;;;;;;;;;;;;;;;;;;;;;;; + +; UNIX: "/path1:/path2" +;include_path = ".:/php/includes" +; +; Windows: "\path1;\path2" +;include_path = ".;c:\php\includes" +; +; PHP's default setting for include_path is ".;/path/to/php/pear" +; http://php.net/include-path + +; The root of the PHP pages, used only if nonempty. +; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root +; if you are running php as a CGI under any web server (other than IIS) +; see documentation for security issues. The alternate is to use the +; cgi.force_redirect configuration below +; http://php.net/doc-root +doc_root = + +; The directory under which PHP opens the script using /~username used only +; if nonempty. +; http://php.net/user-dir +user_dir = + +; Directory in which the loadable extensions (modules) reside. +; http://php.net/extension-dir +;extension_dir = "./" +; On windows: +;extension_dir = "ext" + +; Directory where the temporary files should be placed. +; Defaults to the system default (see sys_get_temp_dir) +;sys_temp_dir = "/tmp" + +; Whether or not to enable the dl() function. The dl() function does NOT work +; properly in multithreaded servers, such as IIS or Zeus, and is automatically +; disabled on them. +; http://php.net/enable-dl +enable_dl = Off + +; cgi.force_redirect is necessary to provide security running PHP as a CGI under +; most web servers. Left undefined, PHP turns this on by default. You can +; turn it off here AT YOUR OWN RISK +; **You CAN safely turn this off for IIS, in fact, you MUST.** +; http://php.net/cgi.force-redirect +;cgi.force_redirect = 1 + +; if cgi.nph is enabled it will force cgi to always sent Status: 200 with +; every request. PHP's default behavior is to disable this feature. +;cgi.nph = 1 + +; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape +; (iPlanet) web servers, you MAY need to set an environment variable name that PHP +; will look for to know it is OK to continue execution. Setting this variable MAY +; cause security issues, KNOW WHAT YOU ARE DOING FIRST. +; http://php.net/cgi.redirect-status-env +;cgi.redirect_status_env = + +; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's +; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok +; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting +; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting +; of zero causes PHP to behave as before. Default is 1. You should fix your scripts +; to use SCRIPT_FILENAME rather than PATH_TRANSLATED. +; http://php.net/cgi.fix-pathinfo +;cgi.fix_pathinfo=1 + +; if cgi.discard_path is enabled, the PHP CGI binary can safely be placed outside +; of the web tree and people will not be able to circumvent .htaccess security. +;cgi.discard_path=1 + +; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate +; security tokens of the calling client. This allows IIS to define the +; security context that the request runs under. mod_fastcgi under Apache +; does not currently support this feature (03/17/2002) +; Set to 1 if running under IIS. Default is zero. +; http://php.net/fastcgi.impersonate +;fastcgi.impersonate = 1 + +; Disable logging through FastCGI connection. PHP's default behavior is to enable +; this feature. +;fastcgi.logging = 0 + +; cgi.rfc2616_headers configuration option tells PHP what type of headers to +; use when sending HTTP response code. If set to 0, PHP sends Status: header that +; is supported by Apache. When this option is set to 1, PHP will send +; RFC2616 compliant header. +; Default is zero. +; http://php.net/cgi.rfc2616-headers +;cgi.rfc2616_headers = 0 + +; cgi.check_shebang_line controls whether CGI PHP checks for line starting with #! +; (shebang) at the top of the running script. This line might be needed if the +; script support running both as stand-alone script and via PHP CGI<. PHP in CGI +; mode skips this line and ignores its content if this directive is turned on. +; http://php.net/cgi.check-shebang-line +;cgi.check_shebang_line=1 + +;;;;;;;;;;;;;;;; +; File Uploads ; +;;;;;;;;;;;;;;;; + +; Whether to allow HTTP file uploads. +; http://php.net/file-uploads +file_uploads = On + +; Temporary directory for HTTP uploaded files (will use system default if not +; specified). +; http://php.net/upload-tmp-dir +;upload_tmp_dir = + +; Maximum allowed size for uploaded files. +; http://php.net/upload-max-filesize +upload_max_filesize = $MAX_BODY_SIZE + +; Maximum number of files that can be uploaded via a single request +max_file_uploads = 20 + +;;;;;;;;;;;;;;;;;; +; Fopen wrappers ; +;;;;;;;;;;;;;;;;;; + +; Whether to allow the treatment of URLs (like http:// or ftp://) as files. +; http://php.net/allow-url-fopen +allow_url_fopen = On + +; Whether to allow include/require to open URLs (like http:// or ftp://) as files. +; http://php.net/allow-url-include +allow_url_include = Off + +; Define the anonymous ftp password (your email address). PHP's default setting +; for this is empty. +; http://php.net/from +;from="john@doe.com" + +; Define the User-Agent string. PHP's default setting for this is empty. +; http://php.net/user-agent +;user_agent="PHP" + +; Default timeout for socket based streams (seconds) +; http://php.net/default-socket-timeout +default_socket_timeout = 60 + +; If your scripts have to deal with files from Macintosh systems, +; or you are running on a Mac and need to deal with files from +; unix or win32 systems, setting this flag will cause PHP to +; automatically detect the EOL character in those files so that +; fgets() and file() will work regardless of the source of the file. +; http://php.net/auto-detect-line-endings +;auto_detect_line_endings = Off + +;;;;;;;;;;;;;;;;;;;;;; +; Dynamic Extensions ; +;;;;;;;;;;;;;;;;;;;;;; + +; If you wish to have an extension loaded automatically, use the following +; syntax: +; +; extension=modulename +; +; For example: +; +; extension=mysqli +; +; When the extension library to load is not located in the default extension +; directory, You may specify an absolute path to the library file: +; +; extension=/path/to/extension/mysqli.so +; +; Note : The syntax used in previous PHP versions ('extension=.so' and +; 'extension='php_.dll') is supported for legacy reasons and may be +; deprecated in a future PHP major version. So, when it is possible, please +; move to the new ('extension=) syntax. +; +; Notes for Windows environments : +; +; - ODBC support is built in, so no dll is needed for it. +; - Many DLL files are located in the extensions/ (PHP 4) or ext/ (PHP 5+) +; extension folders as well as the separate PECL DLL download (PHP 5+). +; Be sure to appropriately set the extension_dir directive. +; +;extension=bz2 +;extension=curl +;extension=fileinfo +;extension=gd2 +;extension=gettext +;extension=gmp +;extension=intl +;extension=imap +;extension=interbase +;extension=ldap +;extension=mbstring +;extension=exif ; Must be after mbstring as it depends on it +;extension=mysqli +;extension=oci8_12c ; Use with Oracle Database 12c Instant Client +;extension=openssl +;extension=pdo_firebird +;extension=pdo_mysql +;extension=pdo_oci +;extension=pdo_odbc +;extension=pdo_pgsql +;extension=pdo_sqlite +;extension=pgsql +;extension=shmop + +; The MIBS data available in the PHP distribution must be installed. +; See http://www.php.net/manual/en/snmp.installation.php +;extension=snmp + +;extension=soap +;extension=sockets +;extension=sqlite3 +;extension=tidy +;extension=xmlrpc +;extension=xsl + +;;;;;;;;;;;;;;;;;;; +; Module Settings ; +;;;;;;;;;;;;;;;;;;; + +[CLI Server] +; Whether the CLI web server uses ANSI color coding in its terminal output. +cli_server.color = On + +[Date] +; Defines the default timezone used by the date functions +; http://php.net/date.timezone +date.timezone = Europe/Paris + +; http://php.net/date.default-latitude +;date.default_latitude = 31.7667 + +; http://php.net/date.default-longitude +;date.default_longitude = 35.2333 + +; http://php.net/date.sunrise-zenith +;date.sunrise_zenith = 90.583333 + +; http://php.net/date.sunset-zenith +;date.sunset_zenith = 90.583333 + +[filter] +; http://php.net/filter.default +;filter.default = unsafe_raw + +; http://php.net/filter.default-flags +;filter.default_flags = + +[iconv] +; Use of this INI entry is deprecated, use global input_encoding instead. +; If empty, default_charset or input_encoding or iconv.input_encoding is used. +; The precedence is: default_charset < intput_encoding < iconv.input_encoding +;iconv.input_encoding = + +; Use of this INI entry is deprecated, use global internal_encoding instead. +; If empty, default_charset or internal_encoding or iconv.internal_encoding is used. +; The precedence is: default_charset < internal_encoding < iconv.internal_encoding +;iconv.internal_encoding = + +; Use of this INI entry is deprecated, use global output_encoding instead. +; If empty, default_charset or output_encoding or iconv.output_encoding is used. +; The precedence is: default_charset < output_encoding < iconv.output_encoding +; To use an output encoding conversion, iconv's output handler must be set +; otherwise output encoding conversion cannot be performed. +;iconv.output_encoding = + +[intl] +;intl.default_locale = +; This directive allows you to produce PHP errors when some error +; happens within intl functions. The value is the level of the error produced. +; Default is 0, which does not produce any errors. +;intl.error_level = E_WARNING +;intl.use_exceptions = 0 + +[sqlite3] +;sqlite3.extension_dir = + +[Pcre] +; PCRE library backtracking limit. +; http://php.net/pcre.backtrack-limit +;pcre.backtrack_limit=100000 + +; PCRE library recursion limit. +; Please note that if you set this value to a high number you may consume all +; the available process stack and eventually crash PHP (due to reaching the +; stack size limit imposed by the Operating System). +; http://php.net/pcre.recursion-limit +;pcre.recursion_limit=100000 + +; Enables or disables JIT compilation of patterns. This requires the PCRE +; library to be compiled with JIT support. +;pcre.jit=1 + +[Pdo] +; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off" +; http://php.net/pdo-odbc.connection-pooling +;pdo_odbc.connection_pooling=strict + +;pdo_odbc.db2_instance_name + +[Pdo_mysql] +; Default socket name for local MySQL connects. If empty, uses the built-in +; MySQL defaults. +pdo_mysql.default_socket= + +[Phar] +; http://php.net/phar.readonly +;phar.readonly = On + +; http://php.net/phar.require-hash +;phar.require_hash = On + +;phar.cache_list = + +[mail function] +; For Win32 only. +; http://php.net/smtp +SMTP = localhost +; http://php.net/smtp-port +smtp_port = 25 + +; For Win32 only. +; http://php.net/sendmail-from +;sendmail_from = me@example.com + +; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). +; http://php.net/sendmail-path +;sendmail_path = + +; Force the addition of the specified parameters to be passed as extra parameters +; to the sendmail binary. These parameters will always replace the value of +; the 5th parameter to mail(). +;mail.force_extra_parameters = + +; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename +mail.add_x_header = On + +; The path to a log file that will log all mail() calls. Log entries include +; the full path of the script, line number, To address and headers. +;mail.log = +; Log mail to syslog (Event Log on Windows). +;mail.log = syslog + +[ODBC] +; http://php.net/odbc.default-db +;odbc.default_db = Not yet implemented + +; http://php.net/odbc.default-user +;odbc.default_user = Not yet implemented + +; http://php.net/odbc.default-pw +;odbc.default_pw = Not yet implemented + +; Controls the ODBC cursor model. +; Default: SQL_CURSOR_STATIC (default). +;odbc.default_cursortype + +; Allow or prevent persistent links. +; http://php.net/odbc.allow-persistent +odbc.allow_persistent = On + +; Check that a connection is still valid before reuse. +; http://php.net/odbc.check-persistent +odbc.check_persistent = On + +; Maximum number of persistent links. -1 means no limit. +; http://php.net/odbc.max-persistent +odbc.max_persistent = -1 + +; Maximum number of links (persistent + non-persistent). -1 means no limit. +; http://php.net/odbc.max-links +odbc.max_links = -1 + +; Handling of LONG fields. Returns number of bytes to variables. 0 means +; passthru. +; http://php.net/odbc.defaultlrl +odbc.defaultlrl = 4096 + +; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char. +; See the documentation on odbc_binmode and odbc_longreadlen for an explanation +; of odbc.defaultlrl and odbc.defaultbinmode +; http://php.net/odbc.defaultbinmode +odbc.defaultbinmode = 1 + +[Interbase] +; Allow or prevent persistent links. +ibase.allow_persistent = 1 + +; Maximum number of persistent links. -1 means no limit. +ibase.max_persistent = -1 + +; Maximum number of links (persistent + non-persistent). -1 means no limit. +ibase.max_links = -1 + +; Default database name for ibase_connect(). +;ibase.default_db = + +; Default username for ibase_connect(). +;ibase.default_user = + +; Default password for ibase_connect(). +;ibase.default_password = + +; Default charset for ibase_connect(). +;ibase.default_charset = + +; Default timestamp format. +ibase.timestampformat = "%Y-%m-%d %H:%M:%S" + +; Default date format. +ibase.dateformat = "%Y-%m-%d" + +; Default time format. +ibase.timeformat = "%H:%M:%S" + +[MySQLi] + +; Maximum number of persistent links. -1 means no limit. +; http://php.net/mysqli.max-persistent +mysqli.max_persistent = -1 + +; Allow accessing, from PHP's perspective, local files with LOAD DATA statements +; http://php.net/mysqli.allow_local_infile +;mysqli.allow_local_infile = On + +; Allow or prevent persistent links. +; http://php.net/mysqli.allow-persistent +mysqli.allow_persistent = On + +; Maximum number of links. -1 means no limit. +; http://php.net/mysqli.max-links +mysqli.max_links = -1 + +; Default port number for mysqli_connect(). If unset, mysqli_connect() will use +; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the +; compile-time value defined MYSQL_PORT (in that order). Win32 will only look +; at MYSQL_PORT. +; http://php.net/mysqli.default-port +mysqli.default_port = 3306 + +; Default socket name for local MySQL connects. If empty, uses the built-in +; MySQL defaults. +; http://php.net/mysqli.default-socket +mysqli.default_socket = + +; Default host for mysql_connect() (doesn't apply in safe mode). +; http://php.net/mysqli.default-host +mysqli.default_host = + +; Default user for mysql_connect() (doesn't apply in safe mode). +; http://php.net/mysqli.default-user +mysqli.default_user = + +; Default password for mysqli_connect() (doesn't apply in safe mode). +; Note that this is generally a *bad* idea to store passwords in this file. +; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw") +; and reveal this password! And of course, any users with read access to this +; file will be able to reveal the password as well. +; http://php.net/mysqli.default-pw +mysqli.default_pw = + +; Allow or prevent reconnect +mysqli.reconnect = Off + +[mysqlnd] +; Enable / Disable collection of general statistics by mysqlnd which can be +; used to tune and monitor MySQL operations. +mysqlnd.collect_statistics = On + +; Enable / Disable collection of memory usage statistics by mysqlnd which can be +; used to tune and monitor MySQL operations. +mysqlnd.collect_memory_statistics = Off + +; Records communication from all extensions using mysqlnd to the specified log +; file. +; http://php.net/mysqlnd.debug +;mysqlnd.debug = + +; Defines which queries will be logged. +;mysqlnd.log_mask = 0 + +; Default size of the mysqlnd memory pool, which is used by result sets. +;mysqlnd.mempool_default_size = 16000 + +; Size of a pre-allocated buffer used when sending commands to MySQL in bytes. +;mysqlnd.net_cmd_buffer_size = 2048 + +; Size of a pre-allocated buffer used for reading data sent by the server in +; bytes. +;mysqlnd.net_read_buffer_size = 32768 + +; Timeout for network requests in seconds. +;mysqlnd.net_read_timeout = 31536000 + +; SHA-256 Authentication Plugin related. File with the MySQL server public RSA +; key. +;mysqlnd.sha256_server_public_key = + +[OCI8] + +; Connection: Enables privileged connections using external +; credentials (OCI_SYSOPER, OCI_SYSDBA) +; http://php.net/oci8.privileged-connect +;oci8.privileged_connect = Off + +; Connection: The maximum number of persistent OCI8 connections per +; process. Using -1 means no limit. +; http://php.net/oci8.max-persistent +;oci8.max_persistent = -1 + +; Connection: The maximum number of seconds a process is allowed to +; maintain an idle persistent connection. Using -1 means idle +; persistent connections will be maintained forever. +; http://php.net/oci8.persistent-timeout +;oci8.persistent_timeout = -1 + +; Connection: The number of seconds that must pass before issuing a +; ping during oci_pconnect() to check the connection validity. When +; set to 0, each oci_pconnect() will cause a ping. Using -1 disables +; pings completely. +; http://php.net/oci8.ping-interval +;oci8.ping_interval = 60 + +; Connection: Set this to a user chosen connection class to be used +; for all pooled server requests with Oracle 11g Database Resident +; Connection Pooling (DRCP). To use DRCP, this value should be set to +; the same string for all web servers running the same application, +; the database pool must be configured, and the connection string must +; specify to use a pooled server. +;oci8.connection_class = + +; High Availability: Using On lets PHP receive Fast Application +; Notification (FAN) events generated when a database node fails. The +; database must also be configured to post FAN events. +;oci8.events = Off + +; Tuning: This option enables statement caching, and specifies how +; many statements to cache. Using 0 disables statement caching. +; http://php.net/oci8.statement-cache-size +;oci8.statement_cache_size = 20 + +; Tuning: Enables statement prefetching and sets the default number of +; rows that will be fetched automatically after statement execution. +; http://php.net/oci8.default-prefetch +;oci8.default_prefetch = 100 + +; Compatibility. Using On means oci_close() will not close +; oci_connect() and oci_new_connect() connections. +; http://php.net/oci8.old-oci-close-semantics +;oci8.old_oci_close_semantics = Off + +[PostgreSQL] +; Allow or prevent persistent links. +; http://php.net/pgsql.allow-persistent +pgsql.allow_persistent = On + +; Detect broken persistent links always with pg_pconnect(). +; Auto reset feature requires a little overheads. +; http://php.net/pgsql.auto-reset-persistent +pgsql.auto_reset_persistent = Off + +; Maximum number of persistent links. -1 means no limit. +; http://php.net/pgsql.max-persistent +pgsql.max_persistent = -1 + +; Maximum number of links (persistent+non persistent). -1 means no limit. +; http://php.net/pgsql.max-links +pgsql.max_links = -1 + +; Ignore PostgreSQL backends Notice message or not. +; Notice message logging require a little overheads. +; http://php.net/pgsql.ignore-notice +pgsql.ignore_notice = 0 + +; Log PostgreSQL backends Notice message or not. +; Unless pgsql.ignore_notice=0, module cannot log notice message. +; http://php.net/pgsql.log-notice +pgsql.log_notice = 0 + +[bcmath] +; Number of decimal digits for all bcmath functions. +; http://php.net/bcmath.scale +bcmath.scale = 0 + +[browscap] +; http://php.net/browscap +;browscap = extra/browscap.ini + +[Session] +; Handler used to store/retrieve data. +; http://php.net/session.save-handler +session.save_handler = files + +; Argument passed to save_handler. In the case of files, this is the path +; where data files are stored. Note: Windows users have to change this +; variable in order to use PHP's session functions. +; +; The path can be defined as: +; +; session.save_path = "N;/path" +; +; where N is an integer. Instead of storing all the session files in +; /path, what this will do is use subdirectories N-levels deep, and +; store the session data in those directories. This is useful if +; your OS has problems with many files in one directory, and is +; a more efficient layout for servers that handle many sessions. +; +; NOTE 1: PHP will not create this directory structure automatically. +; You can use the script in the ext/session dir for that purpose. +; NOTE 2: See the section on garbage collection below if you choose to +; use subdirectories for session storage +; +; The file storage module creates files using mode 600 by default. +; You can change that by using +; +; session.save_path = "N;MODE;/path" +; +; where MODE is the octal representation of the mode. Note that this +; does not overwrite the process's umask. +; http://php.net/session.save-path +;session.save_path = "/tmp" + +; Whether to use strict session mode. +; Strict session mode does not accept uninitialized session ID and regenerate +; session ID if browser sends uninitialized session ID. Strict mode protects +; applications from session fixation via session adoption vulnerability. It is +; disabled by default for maximum compatibility, but enabling it is encouraged. +; https://wiki.php.net/rfc/strict_sessions +session.use_strict_mode = 0 + +; Whether to use cookies. +; http://php.net/session.use-cookies +session.use_cookies = 1 + +; http://php.net/session.cookie-secure +;session.cookie_secure = + +; This option forces PHP to fetch and use a cookie for storing and maintaining +; the session id. We encourage this operation as it's very helpful in combating +; session hijacking when not specifying and managing your own session id. It is +; not the be-all and end-all of session hijacking defense, but it's a good start. +; http://php.net/session.use-only-cookies +session.use_only_cookies = 1 + +; Name of the session (used as cookie name). +; http://php.net/session.name +session.name = PHPSESSID + +; Initialize session on request startup. +; http://php.net/session.auto-start +session.auto_start = 0 + +; Lifetime in seconds of cookie or, if 0, until browser is restarted. +; http://php.net/session.cookie-lifetime +session.cookie_lifetime = 0 + +; The path for which the cookie is valid. +; http://php.net/session.cookie-path +session.cookie_path = / + +; The domain for which the cookie is valid. +; http://php.net/session.cookie-domain +session.cookie_domain = + +; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript. +; http://php.net/session.cookie-httponly +session.cookie_httponly = + +; Handler used to serialize data. php is the standard serializer of PHP. +; http://php.net/session.serialize-handler +session.serialize_handler = php + +; Defines the probability that the 'garbage collection' process is started +; on every session initialization. The probability is calculated by using +; gc_probability/gc_divisor. Where session.gc_probability is the numerator +; and gc_divisor is the denominator in the equation. Setting this value to 1 +; when the session.gc_divisor value is 100 will give you approximately a 1% chance +; the gc will run on any give request. +; Default Value: 1 +; Development Value: 1 +; Production Value: 1 +; http://php.net/session.gc-probability +session.gc_probability = 1 + +; Defines the probability that the 'garbage collection' process is started on every +; session initialization. The probability is calculated by using the following equation: +; gc_probability/gc_divisor. Where session.gc_probability is the numerator and +; session.gc_divisor is the denominator in the equation. Setting this value to 1 +; when the session.gc_divisor value is 100 will give you approximately a 1% chance +; the gc will run on any give request. Increasing this value to 1000 will give you +; a 0.1% chance the gc will run on any give request. For high volume production servers, +; this is a more efficient approach. +; Default Value: 100 +; Development Value: 1000 +; Production Value: 1000 +; http://php.net/session.gc-divisor +session.gc_divisor = 1000 + +; After this number of seconds, stored data will be seen as 'garbage' and +; cleaned up by the garbage collection process. +; http://php.net/session.gc-maxlifetime +session.gc_maxlifetime = 1440 + +; NOTE: If you are using the subdirectory option for storing session files +; (see session.save_path above), then garbage collection does *not* +; happen automatically. You will need to do your own garbage +; collection through a shell script, cron entry, or some other method. +; For example, the following script would is the equivalent of +; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes): +; find /path/to/sessions -cmin +24 -type f | xargs rm + +; Check HTTP Referer to invalidate externally stored URLs containing ids. +; HTTP_REFERER has to contain this substring for the session to be +; considered as valid. +; http://php.net/session.referer-check +session.referer_check = + +; Set to {nocache,private,public,} to determine HTTP caching aspects +; or leave this empty to avoid sending anti-caching headers. +; http://php.net/session.cache-limiter +session.cache_limiter = $SESSION_CACHE_LIMITER + +; Document expires after n minutes. +; http://php.net/session.cache-expire +session.cache_expire = 180 + +; trans sid support is disabled by default. +; Use of trans sid may risk your users' security. +; Use this option with caution. +; - User may send URL contains active session ID +; to other person via. email/irc/etc. +; - URL that contains active session ID may be stored +; in publicly accessible computer. +; - User may access your site with the same session ID +; always using URL stored in browser's history or bookmarks. +; http://php.net/session.use-trans-sid +session.use_trans_sid = 0 + +; Set session ID character length. This value could be between 22 to 256. +; Shorter length than default is supported only for compatibility reason. +; Users should use 32 or more chars. +; http://php.net/session.sid-length +; Default Value: 32 +; Development Value: 26 +; Production Value: 26 +session.sid_length = 26 + +; The URL rewriter will look for URLs in a defined set of HTML tags. +;
is special; if you include them here, the rewriter will +; add a hidden field with the info which is otherwise appended +; to URLs. tag's action attribute URL will not be modified +; unless it is specified. +; Note that all valid entries require a "=", even if no value follows. +; Default Value: "a=href,area=href,frame=src,form=" +; Development Value: "a=href,area=href,frame=src,form=" +; Production Value: "a=href,area=href,frame=src,form=" +; http://php.net/url-rewriter.tags +session.trans_sid_tags = "a=href,area=href,frame=src,form=" + +; URL rewriter does not rewrite absolute URLs by default. +; To enable rewrites for absolute pathes, target hosts must be specified +; at RUNTIME. i.e. use ini_set() +; tags is special. PHP will check action attribute's URL regardless +; of session.trans_sid_tags setting. +; If no host is defined, HTTP_HOST will be used for allowed host. +; Example value: php.net,www.php.net,wiki.php.net +; Use "," for multiple hosts. No spaces are allowed. +; Default Value: "" +; Development Value: "" +; Production Value: "" +;session.trans_sid_hosts="" + +; Define how many bits are stored in each character when converting +; the binary hash data to something readable. +; Possible values: +; 4 (4 bits: 0-9, a-f) +; 5 (5 bits: 0-9, a-v) +; 6 (6 bits: 0-9, a-z, A-Z, "-", ",") +; Default Value: 4 +; Development Value: 5 +; Production Value: 5 +; http://php.net/session.hash-bits-per-character +session.sid_bits_per_character = 5 + +; Enable upload progress tracking in $_SESSION +; Default Value: On +; Development Value: On +; Production Value: On +; http://php.net/session.upload-progress.enabled +;session.upload_progress.enabled = On + +; Cleanup the progress information as soon as all POST data has been read +; (i.e. upload completed). +; Default Value: On +; Development Value: On +; Production Value: On +; http://php.net/session.upload-progress.cleanup +;session.upload_progress.cleanup = On + +; A prefix used for the upload progress key in $_SESSION +; Default Value: "upload_progress_" +; Development Value: "upload_progress_" +; Production Value: "upload_progress_" +; http://php.net/session.upload-progress.prefix +;session.upload_progress.prefix = "upload_progress_" + +; The index name (concatenated with the prefix) in $_SESSION +; containing the upload progress information +; Default Value: "PHP_SESSION_UPLOAD_PROGRESS" +; Development Value: "PHP_SESSION_UPLOAD_PROGRESS" +; Production Value: "PHP_SESSION_UPLOAD_PROGRESS" +; http://php.net/session.upload-progress.name +;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS" + +; How frequently the upload progress should be updated. +; Given either in percentages (per-file), or in bytes +; Default Value: "1%" +; Development Value: "1%" +; Production Value: "1%" +; http://php.net/session.upload-progress.freq +;session.upload_progress.freq = "1%" + +; The minimum delay between updates, in seconds +; Default Value: 1 +; Development Value: 1 +; Production Value: 1 +; http://php.net/session.upload-progress.min-freq +;session.upload_progress.min_freq = "1" + +; Only write session data when session data is changed. Enabled by default. +; http://php.net/session.lazy-write +;session.lazy_write = On + +[Assertion] +; Switch whether to compile assertions at all (to have no overhead at run-time) +; -1: Do not compile at all +; 0: Jump over assertion at run-time +; 1: Execute assertions +; Changing from or to a negative value is only possible in php.ini! (For turning assertions on and off at run-time, see assert.active, when zend.assertions = 1) +; Default Value: 1 +; Development Value: 1 +; Production Value: -1 +; http://php.net/zend.assertions +zend.assertions = -1 + +; Assert(expr); active by default. +; http://php.net/assert.active +;assert.active = On + +; Throw an AssertationException on failed assertions +; http://php.net/assert.exception +;assert.exception = On + +; Issue a PHP warning for each failed assertion. (Overridden by assert.exception if active) +; http://php.net/assert.warning +;assert.warning = On + +; Don't bail out by default. +; http://php.net/assert.bail +;assert.bail = Off + +; User-function to be called if an assertion fails. +; http://php.net/assert.callback +;assert.callback = 0 + +; Eval the expression with current error_reporting(). Set to true if you want +; error_reporting(0) around the eval(). +; http://php.net/assert.quiet-eval +;assert.quiet_eval = 0 + +[COM] +; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs +; http://php.net/com.typelib-file +;com.typelib_file = + +; allow Distributed-COM calls +; http://php.net/com.allow-dcom +;com.allow_dcom = true + +; autoregister constants of a components typlib on com_load() +; http://php.net/com.autoregister-typelib +;com.autoregister_typelib = true + +; register constants casesensitive +; http://php.net/com.autoregister-casesensitive +;com.autoregister_casesensitive = false + +; show warnings on duplicate constant registrations +; http://php.net/com.autoregister-verbose +;com.autoregister_verbose = true + +; The default character set code-page to use when passing strings to and from COM objects. +; Default: system ANSI code page +;com.code_page= + +[mbstring] +; language for internal character representation. +; This affects mb_send_mail() and mbstring.detect_order. +; http://php.net/mbstring.language +;mbstring.language = Japanese + +; Use of this INI entry is deprecated, use global internal_encoding instead. +; internal/script encoding. +; Some encoding cannot work as internal encoding. (e.g. SJIS, BIG5, ISO-2022-*) +; If empty, default_charset or internal_encoding or iconv.internal_encoding is used. +; The precedence is: default_charset < internal_encoding < iconv.internal_encoding +;mbstring.internal_encoding = + +; Use of this INI entry is deprecated, use global input_encoding instead. +; http input encoding. +; mbstring.encoding_traslation = On is needed to use this setting. +; If empty, default_charset or input_encoding or mbstring.input is used. +; The precedence is: default_charset < intput_encoding < mbsting.http_input +; http://php.net/mbstring.http-input +;mbstring.http_input = + +; Use of this INI entry is deprecated, use global output_encoding instead. +; http output encoding. +; mb_output_handler must be registered as output buffer to function. +; If empty, default_charset or output_encoding or mbstring.http_output is used. +; The precedence is: default_charset < output_encoding < mbstring.http_output +; To use an output encoding conversion, mbstring's output handler must be set +; otherwise output encoding conversion cannot be performed. +; http://php.net/mbstring.http-output +;mbstring.http_output = + +; enable automatic encoding translation according to +; mbstring.internal_encoding setting. Input chars are +; converted to internal encoding by setting this to On. +; Note: Do _not_ use automatic encoding translation for +; portable libs/applications. +; http://php.net/mbstring.encoding-translation +;mbstring.encoding_translation = Off + +; automatic encoding detection order. +; "auto" detect order is changed according to mbstring.language +; http://php.net/mbstring.detect-order +;mbstring.detect_order = auto + +; substitute_character used when character cannot be converted +; one from another +; http://php.net/mbstring.substitute-character +;mbstring.substitute_character = none + +; overload(replace) single byte functions by mbstring functions. +; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(), +; etc. Possible values are 0,1,2,4 or combination of them. +; For example, 7 for overload everything. +; 0: No overload +; 1: Overload mail() function +; 2: Overload str*() functions +; 4: Overload ereg*() functions +; http://php.net/mbstring.func-overload +;mbstring.func_overload = 0 + +; enable strict encoding detection. +; Default: Off +;mbstring.strict_detection = On + +; This directive specifies the regex pattern of content types for which mb_output_handler() +; is activated. +; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml) +;mbstring.http_output_conv_mimetype= + +[gd] +; Tell the jpeg decode to ignore warnings and try to create +; a gd image. The warning will then be displayed as notices +; disabled by default +; http://php.net/gd.jpeg-ignore-warning +;gd.jpeg_ignore_warning = 1 + +[exif] +; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS. +; With mbstring support this will automatically be converted into the encoding +; given by corresponding encode setting. When empty mbstring.internal_encoding +; is used. For the decode settings you can distinguish between motorola and +; intel byte order. A decode setting cannot be empty. +; http://php.net/exif.encode-unicode +;exif.encode_unicode = ISO-8859-15 + +; http://php.net/exif.decode-unicode-motorola +;exif.decode_unicode_motorola = UCS-2BE + +; http://php.net/exif.decode-unicode-intel +;exif.decode_unicode_intel = UCS-2LE + +; http://php.net/exif.encode-jis +;exif.encode_jis = + +; http://php.net/exif.decode-jis-motorola +;exif.decode_jis_motorola = JIS + +; http://php.net/exif.decode-jis-intel +;exif.decode_jis_intel = JIS + +[Tidy] +; The path to a default tidy configuration file to use when using tidy +; http://php.net/tidy.default-config +;tidy.default_config = /usr/local/lib/php/default.tcfg + +; Should tidy clean and repair output automatically? +; WARNING: Do not use this option if you are generating non-html content +; such as dynamic images +; http://php.net/tidy.clean-output +tidy.clean_output = Off + +[soap] +; Enables or disables WSDL caching feature. +; http://php.net/soap.wsdl-cache-enabled +soap.wsdl_cache_enabled=1 + +; Sets the directory name where SOAP extension will put cache files. +; http://php.net/soap.wsdl-cache-dir +soap.wsdl_cache_dir="/tmp" + +; (time to live) Sets the number of second while cached file will be used +; instead of original one. +; http://php.net/soap.wsdl-cache-ttl +soap.wsdl_cache_ttl=86400 + +; Sets the size of the cache limit. (Max. number of WSDL files to cache) +soap.wsdl_cache_limit = 5 + +[sysvshm] +; A default size of the shared memory segment +;sysvshm.init_mem = 10000 + +[ldap] +; Sets the maximum number of open links or -1 for unlimited. +ldap.max_links = -1 + +[dba] +;dba.default_handler= + +[opcache] +; Determines if Zend OPCache is enabled +opcache.enable=$OPCACHE_ENABLED + +; Determines if Zend OPCache is enabled for the CLI version of PHP +;opcache.enable_cli=$OPCACHE_ENABLED + +; The OPcache shared memory storage size. +;opcache.memory_consumption=128 + +; The amount of memory for interned strings in Mbytes. +;opcache.interned_strings_buffer=8 + +; The maximum number of keys (scripts) in the OPcache hash table. +; Only numbers between 200 and 1000000 are allowed. +;opcache.max_accelerated_files=10000 + +; The maximum percentage of "wasted" memory until a restart is scheduled. +;opcache.max_wasted_percentage=5 + +; When this directive is enabled, the OPcache appends the current working +; directory to the script key, thus eliminating possible collisions between +; files with the same name (basename). Disabling the directive improves +; performance, but may break existing applications. +;opcache.use_cwd=1 + +; When disabled, you must reset the OPcache manually or restart the +; webserver for changes to the filesystem to take effect. +;opcache.validate_timestamps=1 + +; How often (in seconds) to check file timestamps for changes to the shared +; memory storage allocation. ("1" means validate once per second, but only +; once per request. "0" means always validate) +;opcache.revalidate_freq=2 + +; Enables or disables file search in include_path optimization +;opcache.revalidate_path=0 + +; If disabled, all PHPDoc comments are dropped from the code to reduce the +; size of the optimized code. +;opcache.save_comments=1 + +; Allow file existence override (file_exists, etc.) performance feature. +;opcache.enable_file_override=0 + +; A bitmask, where each bit enables or disables the appropriate OPcache +; passes +;opcache.optimization_level=0xffffffff + +;opcache.dups_fix=0 + +; The location of the OPcache blacklist file (wildcards allowed). +; Each OPcache blacklist file is a text file that holds the names of files +; that should not be accelerated. The file format is to add each filename +; to a new line. The filename may be a full path or just a file prefix +; (i.e., /var/www/x blacklists all the files and directories in /var/www +; that start with 'x'). Line starting with a ; are ignored (comments). +;opcache.blacklist_filename= + +; Allows exclusion of large files from being cached. By default all files +; are cached. +;opcache.max_file_size=0 + +; Check the cache checksum each N requests. +; The default value of "0" means that the checks are disabled. +;opcache.consistency_checks=0 + +; How long to wait (in seconds) for a scheduled restart to begin if the cache +; is not being accessed. +;opcache.force_restart_timeout=180 + +; OPcache error_log file name. Empty string assumes "stderr". +;opcache.error_log= + +; All OPcache errors go to the Web server log. +; By default, only fatal errors (level 0) or errors (level 1) are logged. +; You can also enable warnings (level 2), info messages (level 3) or +; debug messages (level 4). +;opcache.log_verbosity_level=1 + +; Preferred Shared Memory back-end. Leave empty and let the system decide. +;opcache.preferred_memory_model= + +; Protect the shared memory from unexpected writing during script execution. +; Useful for internal debugging only. +;opcache.protect_memory=0 + +; Allows calling OPcache API functions only from PHP scripts which path is +; started from specified string. The default "" means no restriction +;opcache.restrict_api= + +; Mapping base of shared memory segments (for Windows only). All the PHP +; processes have to map shared memory into the same address space. This +; directive allows to manually fix the "Unable to reattach to base address" +; errors. +;opcache.mmap_base= + +; Enables and sets the second level cache directory. +; It should improve performance when SHM memory is full, at server restart or +; SHM reset. The default "" disables file based caching. +;opcache.file_cache= + +; Enables or disables opcode caching in shared memory. +;opcache.file_cache_only=0 + +; Enables or disables checksum validation when script loaded from file cache. +;opcache.file_cache_consistency_checks=1 + +; Implies opcache.file_cache_only=1 for a certain process that failed to +; reattach to the shared memory (for Windows only). Explicitly enabled file +; cache is required. +;opcache.file_cache_fallback=1 + +; Enables or disables copying of PHP code (text segment) into HUGE PAGES. +; This should improve performance, but requires appropriate OS configuration. +;opcache.huge_code_pages=1 + +; Validate cached file permissions. +;opcache.validate_permission=0 + +; Prevent name collisions in chroot'ed environment. +;opcache.validate_root=0 + +[curl] +; A default value for the CURLOPT_CAINFO option. This is required to be an +; absolute path. +;curl.cainfo = + +[openssl] +; The location of a Certificate Authority (CA) file on the local filesystem +; to use when verifying the identity of SSL/TLS peers. Most users should +; not specify a value for this directive as PHP will attempt to use the +; OS-managed cert stores in its absence. If specified, this value may still +; be overridden on a per-stream basis via the "cafile" SSL stream context +; option. +;openssl.cafile= + +; If openssl.cafile is not specified or if the CA file is not found, the +; directory pointed to by openssl.capath is searched for a suitable +; certificate. This value must be a correctly hashed certificate directory. +; Most users should not specify a value for this directive as PHP will +; attempt to use the OS-managed cert stores in its absence. If specified, +; this value may still be overridden on a per-stream basis via the "capath" +; SSL stream context option. +;openssl.capath= + +; Local Variables: +; tab-width: 4 +; End: diff --git a/docker/phraseanet/phraseanet-entrypoint.sh b/docker/phraseanet/phraseanet-entrypoint.sh new file mode 100755 index 0000000000..225b56a672 --- /dev/null +++ b/docker/phraseanet/phraseanet-entrypoint.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +set -e + +envsubst < /php.ini.sample > /usr/local/etc/php/php.ini +envsubst < /php-fpm.conf.sample > /usr/local/etc/php-fpm.conf + +bash -e docker-php-entrypoint $@ diff --git a/docker/phraseanet/usr/local/etc/php-fpm.d/www.conf.default b/docker/phraseanet/usr/local/etc/php-fpm.d/www.conf.default new file mode 100644 index 0000000000..85d1a793be --- /dev/null +++ b/docker/phraseanet/usr/local/etc/php-fpm.d/www.conf.default @@ -0,0 +1,380 @@ +[www] + +; Per pool prefix +; It only applies on the following directives: +; - 'access.log' +; - 'slowlog' +; - 'listen' (unixsocket) +; - 'chroot' +; - 'chdir' +; - 'php_values' +; - 'php_admin_values' +; When not set, the global prefix (or NONE) applies instead. +; Note: This directive can also be relative to the global prefix. +; Default Value: none +;prefix = /path/to/pools/$pool + +; Unix user/group of processes +; Note: The user is mandatory. If the group is not set, the default user's group +; will be used. +user = app +; Valid syntaxes are: +; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific IPv4 address on +; a specific port; +; '[ip:6:addr:ess]:port' - to listen on a TCP socket to a specific IPv6 address on +; a specific port; +; 'port' - to listen on a TCP socket to all addresses +; (IPv6 and IPv4-mapped) on a specific port; +; '/path/to/unix/socket' - to listen on a unix socket. +; Note: This value is mandatory. +listen = 127.0.0.1:9000 + +; Set listen(2) backlog. +; Default Value: 511 (-1 on FreeBSD and OpenBSD) +;listen.backlog = 511 + +; Set permissions for unix socket, if one is used. In Linux, read/write +; permissions must be set in order to allow connections from a web server. Many +; BSD-derived systems allow connections regardless of permissions. +;listen.group = app +;listen.mode = 0660 +; When POSIX Access Control Lists are supported you can set them using +; these options, value is a comma separated list of user/group names. +; When set, listen.owner and listen.group are ignored +;listen.acl_users = +;listen.acl_groups = + +; List of addresses (IPv4/IPv6) of FastCGI clients which are allowed to connect. +; Equivalent to the FCGI_WEB_SERVER_ADDRS environment variable in the original +; PHP FCGI (5.2.2+). Makes sense only with a tcp listening socket. Each address +; must be separated by a comma. If this value is left blank, connections will be +; accepted from any ip address. +; Default Value: any +;listen.allowed_clients = 127.0.0.1 + +; Specify the nice(2) priority to apply to the pool processes (only if set) +; The value can vary from -19 (highest priority) to 20 (lower priority) +; Note: - It will only work if the FPM master process is launched as root +; - The pool processes will inherit the master process priority + +; Set the process dumpable flag (PR_SET_DUMPABLE prctl) even if the process user +; or group is differrent than the master process user. It allows to create proce +ss +; core dump and ptrace the process for the pool user. +; Default Value: no +; process.dumpable = yes + +; Choose how the process manager will control the number of child processes. +; Possible Values: +; static - a fixed number (pm.max_children) of child processes; +; dynamic - the number of child processes are set dynamically based on the +; following directives. With this process management, there will be +; always at least 1 children. +; pm.max_children - the maximum number of children that can +; be alive at the same time. +; pm.start_servers - the number of children created on startup. +; pm.min_spare_servers - the minimum number of children in 'idle' +; state (waiting to process). If the number +; of 'idle' processes is less than this +; of 'idle' processes is greater than this +; number then some children will be killed. +; ondemand - no children are created at startup. Children will be forked when +; new requests will connect. The following parameter are used: +; pm.max_children - the maximum number of children that +; can be alive at the same time. +; pm.process_idle_timeout - The number of seconds after which +; an idle process will be killed. +; Note: This value is mandatory. +pm = dynamic + +; The number of child processes to be created when pm is set to 'static' and the +; maximum number of child processes when pm is set to 'dynamic' or 'ondemand'. +; This value sets the limit on the number of simultaneous requests that will be +; served. Equivalent to the ApacheMaxClients directive with mpm_prefork. +; Equivalent to the PHP_FCGI_CHILDREN environment variable in the original PHP +; CGI. The below defaults are based on a server without much resources. Don't +; forget to tweak pm.* to fit your needs. +; Note: Used when pm is set to 'static', 'dynamic' or 'ondemand' +; Note: This value is mandatory. +; Note: Used only when pm is set to 'dynamic' +; Default Value: min_spare_servers + (max_spare_servers - min_spare_servers) / 2 +pm.start_servers = 2 + +; The desired minimum number of idle server processes. +; Note: Used only when pm is set to 'dynamic' +; Note: Mandatory when pm is set to 'dynamic' +pm.min_spare_servers = 1 + +; The desired maximum number of idle server processes. +; Note: Used only when pm is set to 'dynamic' +; Note: Mandatory when pm is set to 'dynamic' +pm.max_spare_servers = 3 + +; The number of seconds after which an idle process will be killed. +; Note: Used only when pm is set to 'ondemand' +; Default Value: 10s +;pm.process_idle_timeout = 10s; + +; The number of requests each child process should execute before respawning. +;pm.max_requests = 500 + +; The URI to view the FPM status page. If this value is not set, no URI will be +; recognized as a status page. It shows the following informations: +; pool - the name of the pool; +; process manager - static, dynamic or ondemand; +; start time - the date and time FPM has started; +; start since - number of seconds since FPM has started; +; accepted conn - the number of request accepted by the pool; +; listen queue - the number of request in the queue of pending +; connections (see backlog in listen(2)); +; max listen queue - the maximum number of requests in the queue +; of pending connections since FPM has started; +; listen queue len - the size of the socket queue of pending connections; +; idle processes - the number of idle processes; +; active processes - the number of active processes; +; total processes - the number of idle + active processes; +; max active processes - the maximum number of active processes since FPM +; has started; +; max children reached - number of times, the process limit has been reached, +; Example output: +; pool: www +; process manager: static +; start time: 01/Jul/2011:17:53:49 +0200 +; start since: 62636 +; accepted conn: 190460 +; listen queue: 0 +; max listen queue: 1 +; listen queue len: 42 +; idle processes: 4 +; active processes: 11 +; total processes: 15 +; max active processes: 12 +; max children reached: 0 +; +; By default the status page output is formatted as text/plain. Passing either +; 'html', 'xml' or 'json' in the query string will return the corresponding +; output syntax. Example: +; http://www.foo.bar/status +; http://www.foo.bar/status?json +; http://www.foo.bar/status?html +; query string will also return status for each pool process. +; Example: +; http://www.foo.bar/status?full +; http://www.foo.bar/status?json&full +; http://www.foo.bar/status?html&full +; http://www.foo.bar/status?xml&full +; The Full status returns for each process: +; pid - the PID of the process; +; state - the state of the process (Idle, Running, ...); +; start time - the date and time the process has started; +; start since - the number of seconds since the process has started; +; requests - the number of requests the process has served; +; request duration - the duration in µs of the requests; +; request method - the request method (GET, POST, ...); +; request URI - the request URI with the query string; +; content length - the content length of the request (only with POST); +; user - the user (PHP_AUTH_USER) (or '-' if not set); +; script - the main script called (or '-' if not set); +; last request cpu - the %cpu the last request consumed +; it's always 0 if the process is not in Idle state +; it's always 0 if the process is not in Idle state +; because memory calculation is done when the request +; processing has terminated; +; If the process is in Idle state, then informations are related to the +; last request the process has served. Otherwise informations are related to +; the current request being served. +; Example output: +; ************************ +; pid: 31330 +; state: Running +; start time: 01/Jul/2011:17:53:49 +0200 +; start since: 63087 +; requests: 12808 +; request duration: 1250261 +; request method: GET +; request URI: /test_mem.php?N=10000 +; content length: 0 +; user: - +; script: /home/fat/web/docs/php/test_mem.php +; last request cpu: 0.00 +; It's available in: /usr/local/share/php/fpm/status.html +; +; Note: The value must start with a leading slash (/). The value can be +; anything, but it may not be a good idea to use the .php extension or it +; may conflict with a real PHP file. +; Default Value: not set +;pm.status_path = /status + +; The ping URI to call the monitoring page of FPM. If this value is not set, no +; URI will be recognized as a ping page. This could be used to test from outside +; that FPM is alive and responding, or to +; - create a graph of FPM availability (rrd or such); +; - remove a server from a group if it is not responding (load balancing); +; - trigger alerts for the operating team (24/7). +; Note: The value must start with a leading slash (/). The value can be +; anything, but it may not be a good idea to use the .php extension or it +; may conflict with a real PHP file. +; Default Value: not set +;ping.path = /ping +;ping.response = pong + +; The access log file +; Default: not set +;access.log = log/$pool.access.log + +; The access log format. +; The following syntax is allowed +; %%: the '%' character +; %C: %CPU used by the request +; it can accept the following format: +; - %{user}C for user CPU only +; - %{system}C for system CPU only +; - %{total}C for user + system CPU (default) +; %d: time taken to serve the request +; it can accept the following format: +; - %{seconds}d (default) +; - %{miliseconds}d +; - %{mili}d +; - %{microseconds}d +; variable. Some exemples: +; - server specifics like: %{REQUEST_METHOD}e or %{SERVER_PROTOCOL}e +; - HTTP headers like: %{HTTP_HOST}e or %{HTTP_USER_AGENT}e +; %f: script filename +; %l: content-length of the request (for POST request only) +; %m: request method +; %M: peak of memory allocated by PHP +; it can accept the following format: +; - %{bytes}M (default) +; - %{kilobytes}M +; - %{kilo}M +; - %{megabytes}M +; - %{mega}M +; %n: pool name +; %o: output header +; it must be associated with embraces to specify the name of the header: +; - %{Content-Type}o +; - %{X-Powered-By}o +; - %{Transfert-Encoding}o +; - .... +; %Q: the '?' character if query string exists +; %r: the request URI (without the query string, see %q and %Q) +; %R: remote IP address +; %s: status (response code) +; %t: server time the request was received +; it can accept a strftime(3) format: +; %d/%b/%Y:%H:%M:%S %z (default) +; The strftime(3) format must be encapsuled in a %{}t tag +; e.g. for a ISO8601 formatted timestring, use: %{%Y-%m-%dT%H:%M:%S%z}t +; %T: time the log has been written (the request has finished) +; it can accept a strftime(3) format: +; %d/%b/%Y:%H:%M:%S %z (default) +; The strftime(3) format must be encapsuled in a %{}t tag +; e.g. for a ISO8601 formatted timestring, use: %{%Y-%m-%dT%H:%M:%S%z}t +; %u: remote user +; +; Default: "%R - %u %t \"%m %r\" %s" +;access.format = "%R - %u %t \"%m %r%Q%q\" %s %f %{mili}d %{kilo}M %C%%" + +; The log file for slow requests +; The timeout for serving a single request after which a PHP backtrace will be +; dumped to the 'slowlog' file. A value of '0s' means 'off'. +; Available units: s(econds)(default), m(inutes), h(ours), or d(ays) +; Default Value: 0 +;request_slowlog_timeout = 0 + +; Depth of slow log stack trace. +; Default Value: 20 +;request_slowlog_trace_depth = 20 + +; The timeout for serving a single request after which the worker process will +; be killed. This option should be used when the 'max_execution_time' ini option +; does not stop script execution for some reason. A value of '0' means 'off'. +; Available units: s(econds)(default), m(inutes), h(ours), or d(ays) +; Default Value: 0 +;request_terminate_timeout = 0 + +; Set open file descriptor rlimit. +; Default Value: system defined value +; Possible Values: 'unlimited' or an integer greater or equal to 0 +; Default Value: system defined value +;rlimit_core = 0 + +; Chroot to this directory at the start. This value must be defined as an +; absolute path. When this value is not set, chroot is not used. +; Note: you can prefix with '$prefix' to chroot to the pool prefix or one +; of its subdirectories. If the pool prefix is not set, the global prefix +; will be used instead. +; Note: chrooting is a great security feature and should be used whenever +; possible. However, all PHP paths will be relative to the chroot +; (error_log, sessions.save_path, ...). +; Default Value: not set +;chroot = + +; Chdir to this directory at the start. +; Note: relative path can be used. +; Default Value: current directory or / when chroot +;chdir = /var/www + +; process time (several ms). +; Default Value: no +;catch_workers_output = yes + +; Clear environment in FPM workers +; Prevents arbitrary environment variables from reaching FPM worker processes +; by clearing the environment in workers before env vars specified in this +; pool configuration are added. +; Setting to "no" will make all environment variables available to PHP code +; via getenv(), $_ENV and $_SERVER. +; Default Value: yes +;clear_env = no + +; Limits the extensions of the main script FPM will allow to parse. This can +; prevent configuration mistakes on the web server side. You should only limit +; FPM to .php extensions to prevent malicious users to use other extensions to +; execute php code. +; Note: set an empty value to allow all extensions. +; Default Value: .php +;security.limit_extensions = .php .php3 .php4 .php5 .php7 +; Default Value: clean env +;env[HOSTNAME] = $HOSTNAME +;env[PATH] = /usr/local/bin:/usr/bin:/bin +;env[TMP] = /tmp +;env[TMPDIR] = /tmp +;env[TEMP] = /tmp + +; Additional php.ini defines, specific to this pool of workers. These settings +; overwrite the values previously defined in the php.ini. The directives are the +; same as the PHP SAPI: +; php_value/php_flag - you can set classic ini defines which can +; be overwritten from PHP call 'ini_set'. +; php_admin_value/php_admin_flag - these directives won't be overwritten by +; PHP call 'ini_set' +; For php_*flag, valid values are on, off, 1, 0, true, false, yes or no. + +; Defining 'extension' will load the corresponding shared extension from +; extension_dir. Defining 'disable_functions' or 'disable_classes' will not +; overwrite previously defined php.ini values, but will append the new value +; instead. +; be overwritten from PHP call 'ini_set'. +; php_admin_value/php_admin_flag - these directives won't be overwritten by +; PHP call 'ini_set' +; For php_*flag, valid values are on, off, 1, 0, true, false, yes or no. + +; Defining 'extension' will load the corresponding shared extension from +; extension_dir. Defining 'disable_functions' or 'disable_classes' will not +; overwrite previously defined php.ini values, but will append the new value +; instead. + +; Note: path INI options can be relative and will be expanded with the prefix +; (pool, global or /usr/local) + +; Default Value: nothing is defined by default except the values in php.ini and +; specified at startup with the -d argument +;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f www@my.domain.com +;php_flag[display_errors] = off +;php_admin_value[error_log] = /var/log/fpm-php.www.log +;php_admin_flag[log_errors] = on +;php_admin_value[memory_limit] = 32M + + +request_terminate_timeout=300s diff --git a/docker/phraseanet/usr/local/etc/php-fpm.d/zz-docker.conf b/docker/phraseanet/usr/local/etc/php-fpm.d/zz-docker.conf new file mode 100644 index 0000000000..81fecdea72 --- /dev/null +++ b/docker/phraseanet/usr/local/etc/php-fpm.d/zz-docker.conf @@ -0,0 +1,24 @@ +[global] +daemonize = no +error_log = /var/log/fpm-php.www.log +process.max = 128 + +[www] +listen = 0.0.0.0:9000 +;listen = /sock/php-fpm.sock + +user = app +group = app +pm = dynamic +pm.max_children = 9 +pm.start_servers = 3 +pm.min_spare_servers = 2 +pm.max_spare_servers = 4 +pm.max_requests = 1000 + +request_terminate_timeout=300s + +pm.status_path = /status +ping.path = /ping + + diff --git a/docker/phraseanet/worker-boot.sh b/docker/phraseanet/worker-boot.sh new file mode 100755 index 0000000000..4c1b76b02f --- /dev/null +++ b/docker/phraseanet/worker-boot.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +mkdir /var/alchemy/Phraseanet/tmp/locks && chown -R app:app /var/alchemy/Phraseanet/tmp +runuser app -c 'php /var/alchemy/Phraseanet/bin/console task-manager:scheduler:run' diff --git a/grammar/query.pp b/grammar/query.pp index b55c8f9aba..03df29b061 100644 --- a/grammar/query.pp +++ b/grammar/query.pp @@ -128,7 +128,7 @@ key: | quoted_string() group: - ::space::? ::parenthese_:: primary() ::_parenthese:: ::space::? + ::space::? ::parenthese_:: ::space::? primary() ::space::? ::_parenthese:: ::space::? // Thesaurus terms diff --git a/lib/Alchemy/Phrasea/Application.php b/lib/Alchemy/Phrasea/Application.php index bba5aae23e..13c7728f86 100644 --- a/lib/Alchemy/Phrasea/Application.php +++ b/lib/Alchemy/Phrasea/Application.php @@ -92,9 +92,12 @@ use Alchemy\WorkerProvider\WorkerServiceProvider; use Doctrine\DBAL\Event\ConnectionEventArgs; use MediaVorus\Media\MediaInterface; use MediaVorus\MediaVorus; +use Monolog\Handler\ErrorLogHandler; use Monolog\Handler\RotatingFileHandler; +use Monolog\Handler\StreamHandler; use Monolog\Logger; use Neutron\ReCaptcha\ReCaptchaServiceProvider; +use Psr\Log\LoggerInterface; use Silex\Application as SilexApplication; use Silex\Application\TranslationTrait; use Silex\Application\UrlGeneratorTrait; @@ -112,6 +115,7 @@ use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\Form\FormInterface; use Symfony\Component\Form\FormTypeInterface; use Symfony\Component\HttpFoundation\RedirectResponse; +use Symfony\Component\Process\ExecutableFinder; use Unoconv\UnoconvServiceProvider; use XPDF\PdfToText; use XPDF\XPDFServiceProvider; @@ -234,8 +238,19 @@ class Application extends SilexApplication $this->register(new UnicodeServiceProvider()); $this->register(new ValidatorServiceProvider()); - $this->register(new XPDFServiceProvider()); - $this->setupXpdf(); + + if ($this['configuration.store']->isSetup()) { + $binariesConfig = $this['conf']->get(['main', 'binaries']); + $executableFinder = new ExecutableFinder(); + $this->register(new XPDFServiceProvider(), [ + 'xpdf.configuration' => [ + 'pdftotext.binaries' => isset($binariesConfig['pdftotext_binary']) ? $binariesConfig['pdftotext_binary'] : $executableFinder->find('pdftotext'), + ] + ]); + + $this->setupXpdf(); + } + $this->register(new FileServeServiceProvider()); $this->register(new ManipulatorServiceProvider()); $this->register(new PluginServiceProvider()); @@ -253,6 +268,23 @@ class Application extends SilexApplication $this->register(new OrderServiceProvider()); $this->register(new WebhookServiceProvider()); + $this['monolog'] = $this->share( + $this->extend('monolog', function (LoggerInterface $logger, Application $app) { + + $logger->pushHandler(new ErrorLogHandler( + ErrorLogHandler::SAPI, + Logger::ERROR + )); + + $logger->pushHandler(new StreamHandler( + fopen('php://stderr', 'w'), + Logger::ERROR + )); + + return $logger; + }) + ); + $this['phraseanet.exception_handler'] = $this->share(function ($app) { /** @var PhraseaExceptionHandler $handler */ $handler = PhraseaExceptionHandler::register($app['debug']); @@ -633,7 +665,7 @@ class Application extends SilexApplication private function setupGeonames() { $this['geonames.server-uri'] = $this->share(function (Application $app) { - return $app['conf']->get(['registry', 'webservices', 'geonames-server'], 'http://geonames.alchemyasp.com/'); + return $app['conf']->get(['registry', 'webservices', 'geonames-server'], 'https://geonames.alchemyasp.com/'); }); } diff --git a/lib/Alchemy/Phrasea/Application/ApiApplicationLoader.php b/lib/Alchemy/Phrasea/Application/ApiApplicationLoader.php index bf9410e92a..490554c95e 100644 --- a/lib/Alchemy/Phrasea/Application/ApiApplicationLoader.php +++ b/lib/Alchemy/Phrasea/Application/ApiApplicationLoader.php @@ -24,9 +24,11 @@ use Alchemy\Phrasea\Core\Event\Subscriber\ApiExceptionHandlerSubscriber; use Alchemy\Phrasea\Core\Event\Subscriber\ApiOauth2ErrorsSubscriber; use Alchemy\Phrasea\Core\PhraseaEvents; use Alchemy\Phrasea\Core\Provider\JsonSchemaServiceProvider; +use Alchemy\Phrasea\Report\ControllerProvider\ApiReportControllerProvider; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; + class ApiApplicationLoader extends BaseApplicationLoader { protected function doPrePluginServiceRegistration(Application $app) @@ -34,6 +36,7 @@ class ApiApplicationLoader extends BaseApplicationLoader $app->register(new OAuth2()); $app->register(new V1()); $app->register(new V2()); + $app->register(new ApiReportControllerProvider()); $app->register(new JsonSchemaServiceProvider()); } @@ -132,6 +135,7 @@ class ApiApplicationLoader extends BaseApplicationLoader $app->mount('/datafiles/', new Datafiles()); $app->mount('/api/v1', new V1()); $app->mount('/api/v2', new V2()); + $app->mount('/api/report', new ApiReportControllerProvider()); $app->mount('/permalink/', new Permalink()); $app->mount($app['controller.media_accessor.route_prefix'], new MediaAccessor()); $app->mount('/include/minify/', new Minifier()); diff --git a/lib/Alchemy/Phrasea/Application/RouteLoader.php b/lib/Alchemy/Phrasea/Application/RouteLoader.php index ded294547a..2542ff25d1 100644 --- a/lib/Alchemy/Phrasea/Application/RouteLoader.php +++ b/lib/Alchemy/Phrasea/Application/RouteLoader.php @@ -5,9 +5,11 @@ namespace Alchemy\Phrasea\Application; use Alchemy\EmbedProvider\EmbedServiceProvider; use Alchemy\Phrasea\Application; use Alchemy\Phrasea\ControllerProvider as Providers; +use Alchemy\Phrasea\Report\ControllerProvider\ProdReportControllerProvider; use Assert\Assertion; use Silex\ControllerProviderInterface; + class RouteLoader { @@ -53,6 +55,7 @@ class RouteLoader '/prod/records/edit' => Providers\Prod\Edit::class, '/prod/records/movecollection' => Providers\Prod\MoveCollection::class, '/prod/records/property' => Providers\Prod\Property::class, + '/prod/report/' => ProdReportControllerProvider::class, '/prod/share/' => Providers\Prod\Share::class, '/prod/story' => Providers\Prod\Story::class, '/prod/subdefs' => Providers\Prod\Subdefs::class, @@ -62,8 +65,6 @@ class RouteLoader '/prod/upload/' => Providers\Prod\Upload::class, '/prod/WorkZone' => Providers\Prod\WorkZone::class, '/prod/' => Providers\Prod\Root::class, - '/report/activity' => Providers\Report\Activity::class, - '/report/informations' => Providers\Report\Information::class, '/report/' => Providers\Report\Root::class, '/session/' => Providers\Root\Session::class, '/setup' => Providers\Setup::class, diff --git a/lib/Alchemy/Phrasea/CLI.php b/lib/Alchemy/Phrasea/CLI.php index 0d6fc27774..eb1c780740 100644 --- a/lib/Alchemy/Phrasea/CLI.php +++ b/lib/Alchemy/Phrasea/CLI.php @@ -73,9 +73,26 @@ class CLI extends Application $this->bindRoutes(); - $this['logger'] = $this->extend('logger', function () { - return new Console\Logger\ConsoleLogger(new Console\Output\ConsoleOutput(Console\Output\ConsoleOutput::VERBOSITY_DEBUG)); - }); + $logger = false; + + if ($this['configuration.store']->isSetup()){ + + $config = $this['configuration.store']->getConfig(); + + if ((isset($config['console_logger_enabled_environments']) && in_array($environment, $config['console_logger_enabled_environments']))){ + $logger = true; + } + } + + if ($environment == self::ENV_DEV){ + $logger = true; + } + + if ($logger){ + $this['logger'] = $this->extend('logger', function () { + return new Console\Logger\ConsoleLogger(new Console\Output\ConsoleOutput(Console\Output\ConsoleOutput::VERBOSITY_DEBUG)); + }); + } error_reporting(-1); ErrorHandler::register(); diff --git a/lib/Alchemy/Phrasea/Cache/RedisCache.php b/lib/Alchemy/Phrasea/Cache/RedisCache.php index 1130112563..365461256f 100644 --- a/lib/Alchemy/Phrasea/Cache/RedisCache.php +++ b/lib/Alchemy/Phrasea/Cache/RedisCache.php @@ -73,7 +73,7 @@ class RedisCache extends CacheProvider implements Cache */ protected function doDelete($id) { - return $this->_redis->delete($id); + return $this->_redis->del($id); } /** diff --git a/lib/Alchemy/Phrasea/Cache/WinCacheCache.php b/lib/Alchemy/Phrasea/Cache/WinCacheCache.php index 2a94cb25ab..de995f0325 100644 --- a/lib/Alchemy/Phrasea/Cache/WinCacheCache.php +++ b/lib/Alchemy/Phrasea/Cache/WinCacheCache.php @@ -11,7 +11,7 @@ namespace Alchemy\Phrasea\Cache; -use Doctrine\Common\Cache\WincacheCache as DoctrineWinCache; +use Doctrine\Common\Cache\WinCacheCache as DoctrineWinCache; class WinCacheCache extends DoctrineWinCache implements Cache { diff --git a/lib/Alchemy/Phrasea/Collection/CollectionRepositoryRegistry.php b/lib/Alchemy/Phrasea/Collection/CollectionRepositoryRegistry.php index 17f6bb82b4..6d7eaef03c 100644 --- a/lib/Alchemy/Phrasea/Collection/CollectionRepositoryRegistry.php +++ b/lib/Alchemy/Phrasea/Collection/CollectionRepositoryRegistry.php @@ -84,6 +84,15 @@ class CollectionRepositoryRegistry throw new \OutOfBoundsException('No repository available for given base [baseId: ' . $baseId . ' ].'); } + public function getBaseIdMap() + { + if ($this->baseIdMap === null) { + $this->loadBaseIdMap(); + } + + return $this->baseIdMap; + } + public function purgeRegistry() { $this->baseIdMap = null; diff --git a/lib/Alchemy/Phrasea/Collection/CollectionService.php b/lib/Alchemy/Phrasea/Collection/CollectionService.php index acc1db6772..48ccbac843 100644 --- a/lib/Alchemy/Phrasea/Collection/CollectionService.php +++ b/lib/Alchemy/Phrasea/Collection/CollectionService.php @@ -319,7 +319,9 @@ class CollectionService $result = $userQuery->on_base_ids([ $reference->getBaseId()] ) ->who_have_right([\ACL::ORDER_MASTER]) - ->execute()->get_results(); + ->include_templates(true) + ->execute() + ->get_results(); /** @var ACLProvider $acl */ $acl = $this->app['acl']; diff --git a/lib/Alchemy/Phrasea/Command/Plugin/AbstractPluginCommand.php b/lib/Alchemy/Phrasea/Command/Plugin/AbstractPluginCommand.php index b2c72999d1..2d9d211612 100644 --- a/lib/Alchemy/Phrasea/Command/Plugin/AbstractPluginCommand.php +++ b/lib/Alchemy/Phrasea/Command/Plugin/AbstractPluginCommand.php @@ -51,4 +51,41 @@ abstract class AbstractPluginCommand extends Command $this->container['plugins.autoloader-generator']->write($manifests); $output->writeln(" OK"); } + + protected function doInstallPlugin($source, InputInterface $input, OutputInterface $output) + { + $temporaryDir = $this->container['temporary-filesystem']->createTemporaryDirectory(); + + $output->write("Importing $source..."); + $this->container['plugins.importer']->import($source, $temporaryDir); + $output->writeln(" OK"); + + $output->write("Validating plugin..."); + $manifest = $this->container['plugins.plugins-validator']->validatePlugin($temporaryDir); + $output->writeln(" OK found ".$manifest->getName().""); + + $targetDir = $this->container['plugin.path'] . DIRECTORY_SEPARATOR . $manifest->getName(); + + $output->write("Setting up composer..."); + $this->container['plugins.composer-installer']->install($temporaryDir); + $output->writeln(" OK"); + + $output->write("Installing plugin ".$manifest->getName()."..."); + $this->container['filesystem']->mirror($temporaryDir, $targetDir); + $output->writeln(" OK"); + + $output->write("Copying public files ".$manifest->getName()."..."); + $this->container['plugins.assets-manager']->update($manifest); + $output->writeln(" OK"); + + $output->write("Removing temporary directory..."); + $this->container['filesystem']->remove($temporaryDir); + $output->writeln(" OK"); + + $output->write("Activating plugin..."); + $this->container['conf']->set(['plugins', $manifest->getName(), 'enabled'], true); + $output->writeln(" OK"); + + $this->updateConfigFiles($input, $output); + } } diff --git a/lib/Alchemy/Phrasea/Command/Plugin/AddPlugin.php b/lib/Alchemy/Phrasea/Command/Plugin/AddPlugin.php index 36db372da2..0cba6d047e 100644 --- a/lib/Alchemy/Phrasea/Command/Plugin/AddPlugin.php +++ b/lib/Alchemy/Phrasea/Command/Plugin/AddPlugin.php @@ -14,6 +14,7 @@ namespace Alchemy\Phrasea\Command\Plugin; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Input\InputArgument; +use Symfony\Component\Console\Input\ArrayInput; class AddPlugin extends AbstractPluginCommand { @@ -29,41 +30,36 @@ class AddPlugin extends AbstractPluginCommand protected function doExecutePluginAction(InputInterface $input, OutputInterface $output) { $source = $input->getArgument('source'); + $shouldDownload = $this->shouldDownloadPlugin($source); - $temporaryDir = $this->container['temporary-filesystem']->createTemporaryDirectory(); + if ($shouldDownload){ + $command = $this->getApplication()->find('plugins:download'); + $arguments = [ + 'command' => 'plugins:download', + 'source' => $source, + 'shouldInstallPlugin' => true + ]; - $output->write("Importing $source..."); - $this->container['plugins.importer']->import($source, $temporaryDir); - $output->writeln(" OK"); + $downloadInput = new ArrayInput($arguments); + $command->run($downloadInput, $output); - $output->write("Validating plugin..."); - $manifest = $this->container['plugins.plugins-validator']->validatePlugin($temporaryDir); - $output->writeln(" OK found ".$manifest->getName().""); + } else { - $targetDir = $this->container['plugin.path'] . DIRECTORY_SEPARATOR . $manifest->getName(); - - $output->write("Setting up composer..."); - $this->container['plugins.composer-installer']->install($temporaryDir); - $output->writeln(" OK"); - - $output->write("Installing plugin ".$manifest->getName()."..."); - $this->container['filesystem']->mirror($temporaryDir, $targetDir); - $output->writeln(" OK"); - - $output->write("Copying public files ".$manifest->getName()."..."); - $this->container['plugins.assets-manager']->update($manifest); - $output->writeln(" OK"); - - $output->write("Removing temporary directory..."); - $this->container['filesystem']->remove($temporaryDir); - $output->writeln(" OK"); - - $output->write("Activating plugin..."); - $this->container['conf']->set(['plugins', $manifest->getName(), 'enabled'], true); - $output->writeln(" OK"); - - $this->updateConfigFiles($input, $output); + $this->doInstallPlugin($source, $input, $output); + } return 0; } + + protected function shouldDownloadPlugin($source) + { + $allowedScheme = array('https','ssh'); + + $scheme = parse_url($source, PHP_URL_SCHEME); + if (in_array($scheme, $allowedScheme)){ + return true; + } else{ + return false; + } + } } diff --git a/lib/Alchemy/Phrasea/Command/Plugin/DownloadPlugin.php b/lib/Alchemy/Phrasea/Command/Plugin/DownloadPlugin.php new file mode 100644 index 0000000000..a3fdacbc1c --- /dev/null +++ b/lib/Alchemy/Phrasea/Command/Plugin/DownloadPlugin.php @@ -0,0 +1,157 @@ +setDescription('Downloads a plugin to Phraseanet') + ->addArgument('source', InputArgument::REQUIRED, 'The source is a remote url (.zip or .git)') + ->addArgument('destination', InputArgument::OPTIONAL, 'Download destination') + ->addArgument('shouldInstallPlugin', InputArgument::OPTIONAL, 'True or false, determines if plugin should be installed after download'); + } + + protected function doExecutePluginAction(InputInterface $input, OutputInterface $output) + { + $source = $input->getArgument('source'); + $destination = $input->getArgument('destination'); + $shouldInstallPlugin = false; + $shouldInstallPlugin = $input->getArgument('shouldInstallPlugin'); + + $destinationSubdir = '/plugin-'.md5($source); + + if ($destination){ + + $destination = trim($destination); + $destination = rtrim($destination, '/'); + + $localDownloadPath = $destination; + + } else { + + $localDownloadPath = '/tmp/plugin-download' . $destinationSubdir; + } + + if (!is_dir($localDownloadPath)) { + mkdir($localDownloadPath, 0755, true); + } + + $extension = $this->getURIExtension($source); + + if ($extension){ + + switch ($extension){ + + case 'zip': + + $localUnpackPath = '/tmp/plugin-zip'. $destinationSubdir; + + if (!is_dir($localUnpackPath)) { + mkdir($localUnpackPath, 0755, true); + } + + $localArchiveFile = $localUnpackPath . '/plugin-downloaded.zip'; + + // download + $output->writeln("Downloading $source..."); + set_time_limit(0); + $fp = fopen ($localArchiveFile, 'w+'); + $ch = curl_init($source);; + curl_setopt($ch, CURLOPT_FILE, $fp); + curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); + curl_exec($ch); + curl_close($ch); + fclose($fp); + + // unpack + $output->writeln("Unpacking $source..."); + $zip = new \ZipArchive(); + $errorUnpack = false; + + if ($zip->open($localArchiveFile)) { + for ($i = 0; $i < $zip->numFiles; $i++) { + if (!($zip->extractTo($localDownloadPath, array($zip->getNameIndex($i))))) { + $errorUnpack = true; + } + } + $zip->close(); + } + + if ($errorUnpack){ + $output->writeln("Failed unzipping $source"); + } else { + $output->writeln("Plugin downloaded to $localDownloadPath"); + if ($shouldInstallPlugin) $this->doInstallPlugin($localDownloadPath, $input, $output); + } + + // remove zip archive + $this->delDirTree($localUnpackPath); + + break; + + case 'git': + $output->writeln("Downloading $source..."); + $repo = GitRepository::cloneRepository($source, $localDownloadPath); + $output->writeln("Plugin downloaded to $localDownloadPath"); + if ($shouldInstallPlugin) $this->doInstallPlugin($localDownloadPath, $input, $output); + break; + + } + + } else { + + $output->writeln("The source $source is not supported. Only .zip and .git are supported."); + } + + return 0; + } + + protected function getURIExtension($source) + { + $validExtension = false; + $allowedExtension = array('zip','git'); + + $path = parse_url($source, PHP_URL_PATH); + if (strpos($path, '.') !== false) { + $pathParts = explode('.', $path); + $extension = $pathParts[1]; + if (in_array($extension, $allowedExtension)){ + $validExtension = true; + } + } + + if ($validExtension){ + return $extension; + } else { + return false; + } + } + + protected static function delDirTree($dir) { + $files = array_diff(scandir($dir), array('.','..')); + foreach ($files as $file) { + (is_dir("$dir/$file")) ? self::delDirTree("$dir/$file") : unlink("$dir/$file"); + } + return rmdir($dir); + } +} diff --git a/lib/Alchemy/Phrasea/Command/Setup/FixAutoincrements.php b/lib/Alchemy/Phrasea/Command/Setup/FixAutoincrements.php index 00b4cd71d3..73aa7ebc42 100644 --- a/lib/Alchemy/Phrasea/Command/Setup/FixAutoincrements.php +++ b/lib/Alchemy/Phrasea/Command/Setup/FixAutoincrements.php @@ -193,8 +193,7 @@ class FixAutoincrements extends Command $databox, 'coll', [ - 'collusr' => 'coll_id', - 'log_colls' => 'coll_id', + 'collusr' => 'coll_id', ] ); } diff --git a/lib/Alchemy/Phrasea/Command/Setup/FixLogCollId.php b/lib/Alchemy/Phrasea/Command/Setup/FixLogCollId.php new file mode 100644 index 0000000000..66d699003d --- /dev/null +++ b/lib/Alchemy/Phrasea/Command/Setup/FixLogCollId.php @@ -0,0 +1,396 @@ +setDescription('Fix empty (null) coll_id in "log_docs" and "log_view" tables.'); + $this->addOption('databox', null, InputOption::VALUE_OPTIONAL, 'Mandatory : The id (or dbname or viewname) of the databox'); + $this->addOption('batch_size', null, InputOption::VALUE_OPTIONAL, 'work on a batch of n entries (default=100000)'); + $this->addOption('dry', null, InputOption::VALUE_NONE, 'dry run, list but don\'t act'); + $this->addOption('show_sql', null, InputOption::VALUE_NONE, 'show sql pre-selecting records'); + $this->addOption('keep_tmp_table', null, InputOption::VALUE_NONE, 'keep the working "tmp_coll" table (help debug)'); + + $this->setHelp("help"); + } + + /** + * sanity check the cmd line options + * + * @param InputInterface $input + * @param OutputInterface $output + * @return bool + */ + protected function sanitizeArgs(InputInterface $input, OutputInterface $output) + { + $argsOK = true; + + // find the databox / collection by id or by name + $this->databoxes = []; + if(!is_null($d = $input->getOption('databox'))) { + $d = trim($d); + } + foreach ($this->container->getDataboxes() as $db) { + if(is_null($d)){ + $this->databoxes[] = $db; + } + else { + if ($db->get_sbas_id() == (int)$d || $db->get_viewname() == $d || $db->get_dbname() == $d) { + $this->databoxes[] = $db; + } + } + } + if (empty($this->databoxes)) { + if(is_null($d)) { + $output->writeln(sprintf("No databox found", $d)); + } + else { + $output->writeln(sprintf("Unknown databox \"%s\"", $d)); + } + $argsOK = false; + } + + // get options + $this->batch_size = $input->getOption('batch_size'); + $this->show_sql = $input->getOption('show_sql') ? true : false; + $this->dry = $input->getOption('dry') ? true : false; + $this->keep_tmp_table = $input->getOption('keep_tmp_table') ? true : false; + + if(is_null($this->batch_size)) { + $this->batch_size = 100000; + } + if($this->batch_size < 1) { + $output->writeln(sprintf('batch_size must be > 0')); + $argsOK = false; + } + + return $argsOK; + } + + /** + * {@inheritdoc} + */ + protected function doExecute(InputInterface $input, OutputInterface $output) + { + // $time_start = new \DateTime(); + + if(!$this->sanitizeArgs($input, $output)) { + return -1; + } + + $this->input = $input; + $this->output = $output; + + + foreach($this->databoxes as $databox) { + + $this->output->writeln(""); + $this->output->writeln(sprintf("================================ Working on databox %s (id:%s) ================================", $databox->get_dbname(), $databox->get_sbas_id())); + + if (!$this->showCount($databox)) { + // databox not patched + break; + } + + $this->createWorkingTable($databox); + + // loop to compute coll_id from top to bottom + do { + $n = $this->computeCollId($databox); // in dry mode, n=0 + } + while ($n > 0); + + // set the "from_coll_id" + $this->computeCollIdFrom($databox); + + // copy results back to the log_docs + $this->copyReults($databox); + + + if (!$this->keep_tmp_table) { + $this->dropWorkingTable($databox); + } + + $this->output->writeln(""); + } + + return 0; + } + + private function createWorkingTable(\databox $databox) + { + $this->output->writeln(""); + $this->output->writeln(sprintf(" ----------------- Creating working %s table -----------------", ($this->keep_tmp_table ? "(temporary)" : ""))); + $this->output->writeln(""); + + $sql = "CREATE " . ($this->keep_tmp_table ? "TABLE IF NOT EXISTS" : "TEMPORARY TABLE") . " `tmp_colls` (\n" + . " `record_id` int(11) unsigned NOT NULL,\n" + . " `from_id` int(11) unsigned NOT NULL,\n" + . " `from_date` datetime NOT NULL,\n" + . " `to_id` int(11) unsigned DEFAULT NULL,\n" + . " `to_date` datetime DEFAULT NULL,\n" + . " `coll_id_from` int(10) unsigned DEFAULT NULL,\n" + . " `coll_id` int(10) unsigned DEFAULT NULL,\n" + . " KEY `record_id` (`record_id`),\n" + . " KEY `from_id` (`from_id`),\n" + . " KEY `from_date` (`from_date`),\n" + . " KEY `to_id` (`to_id`),\n" + . " KEY `to_date` (`to_date`)\n" + . ") ENGINE=InnoDB;"; + + if($this->show_sql) { + $this->output->writeln($sql); + $this->output->writeln(""); + } + $stmt = $databox->get_connection()->prepare($sql); + $stmt->execute(); + $stmt->closeCursor(); + + $sql = "TRUNCATE TABLE `tmp_colls`"; + + if($this->show_sql) { + $this->output->writeln($sql); + $this->output->writeln(""); + } + $stmt = $databox->get_connection()->prepare($sql); + $stmt->execute(); + $stmt->closeCursor(); + } + + private function dropWorkingTable(\databox $databox) + { + $this->output->writeln(sprintf(" ----------------- Drop working table -----------------")); + $sql = "DROP TABLE `tmp_colls`"; + if($this->show_sql) { + $this->output->writeln($sql); + } + $stmt = $databox->get_connection()->prepare($sql); + $stmt->execute(); + $stmt->closeCursor(); + } + + private function showCount(\databox $databox) + { + $ret = true; + $this->playSQL( + $databox, + [ + 'msg' => "Count work to do", + 'sql' => "SELECT\n" + . " SUM(IF(ISNULL(`coll_id`), 0, 1)) AS `n`,\n" + . " COUNT(*) AS `t`,\n" + . " SUM(IF(`coll_id`>0, 1, 0)) AS `p`,\n" + . " SUM(IF(`coll_id`=0, 1, 0)) AS `z`\n" + . " FROM `log_docs`", + 'code' => function(ResultStatement $stmt) use($ret) { + $row = $stmt->fetch(); + if(is_null($row['n'])) { + // no coll_id ? + $this->output->writeln(sprintf("The \"log_docs\" table has no \"coll_id\" column ? Please apply patch 410alpha12a")); + $ret = false; + } + $this->output->writeln(""); + $this->output->writeln(sprintf("done: %s / %s (fixed: %s ; can't fix: %s)", $row['n'], $row['t'], $row['p'], $row['z'])); + }, + 'playdry' => self::PLAYDRY_SQL | self::PLAYDRY_CODE, + ] + ); + + return $ret; + } + + private function computeCollId(\databox $databox) + { + static $sql_lastid = null; + static $stmt_lastid = null; + + static $sql_insert = null; + static $stmt_insert = null; + + $ret = 0; + if(!$stmt_lastid) { + $sql_lastid = "SELECT @m:=COALESCE(MAX(`from_id`), 0) AS `lastid` FROM `tmp_colls`"; + + $stmt_lastid = $databox->get_connection()->prepare($sql_lastid); + + $sql_insert = "INSERT INTO `tmp_colls`\n" + . " SELECT `r1`.`record_id`, `r1`.`id` AS `from_id`, `r1`.`date` AS `from_date`, MIN(`r2`.`id`) AS `to_id`, MIN(`r2`.`date`) AS `to_date`, NULL AS `coll_id_from`, `r1`.`final` AS `coll_id`\n" + . " FROM (\n" + . " SELECT `id`, `date`, `record_id`, `action`, `final` FROM `log_docs`\n" + . " WHERE `id` > @m AND `action` IN('add', 'collection')\n" + . " ORDER BY `id` ASC\n" + . " LIMIT " . $this->batch_size . "\n" + . " ) AS `r1`\n" + . " LEFT JOIN `log_docs` AS `r2`\n" + . " ON `r2`.`record_id`=`r1`.`record_id` AND `r2`.`action`='collection' AND `r2`.`id`>`r1`.`id`\n" + . " GROUP BY `r1`.`id`\n" + // . " ORDER BY `record_id` ASC, `from_id` ASC" + ; + + $stmt_insert = $databox->get_connection()->prepare($sql_insert); + + $this->output->writeln(""); + $this->output->writeln(sprintf(" ----------------- Compute coll_id to working table ----------------- %s", + $this->dry ? " -- NOT PLAYED IN DRY MODE --" : "" + ) + ); + $this->output->writeln(""); + if ($this->show_sql) { + $this->output->writeln($sql_lastid); + $this->output->writeln($sql_insert); + } + } + + if(!$this->dry) { + $stmt_lastid->execute(); + $stmt_lastid->closeCursor(); + + $stmt_insert->execute(); + $ret = $stmt_insert->rowCount(); + $stmt_insert->closeCursor(); + } + + return $ret; + } + + private function computeCollIdFrom(\databox $databox) + { + static $sql = null; + static $stmt = null; + + $ret = 0; + if(!$stmt) { + $sql = "UPDATE `tmp_colls` AS `t1` INNER JOIN `tmp_colls` AS `t2` ON `t2`.`from_id`=`t1`.`to_id`\n" + . " SET `t2`.`coll_id_from` = `t1`.`coll_id`"; + + $this->output->writeln(""); + $this->output->writeln(sprintf(" ----------------- Compute coll_id_from to working table ----------------- %s", + $this->dry ? " -- NOT PLAYED IN DRY MODE --" : "" + ) + ); + $this->output->writeln(""); + if ($this->show_sql) { + $this->output->writeln($sql); + } + + $stmt = $databox->get_connection()->prepare($sql); + } + + if(!$this->dry) { + $stmt->execute(); + $ret = $stmt->rowCount(); + $stmt->closeCursor(); + } + + return $ret; + } + + private function copyReults(\databox $databox) + { + $this->playSQL( + $databox, + [ + 'msg' => "Copy result back to \"log_docs\"", + 'sql' => "UPDATE `tmp_colls` AS `t` INNER JOIN `log_docs` AS `d`\n" + . " ON ISNULL(`d`.`coll_id`)\n" + . " AND `t`.`record_id` = `d`.`record_id`\n" + . " AND `d`.`id` >= `t`.`from_id`\n" + . " AND (`d`.`id` < `t`.`to_id` OR ISNULL(`t`.`to_id`))\n" + . " SET `d`.`coll_id_from` = IF(`action`='collection', `t`.`coll_id_from`, NULL),\n" + . " `d`.`coll_id` = `t`.`coll_id`", + 'code' => null, + 'playdry' => self::PLAYDRY_NONE, + ] + ); + + $this->playSQL( + $databox, + [ + 'msg' => "Copy result back to \"log_view\"", + 'sql' => "UPDATE `log_view` AS `v` INNER JOIN `tmp_colls` AS `t`\n" + . " ON ISNULL(`v`.`coll_id`)\n" + . " AND `t`.`record_id` = `v`.`record_id`\n" + . " AND `v`.`date` >= `t`.`from_date`\n" + . " AND (`v`.`date` < `t`.`to_date` OR ISNULL(`t`.`to_date`))\n" + . " SET `v`.`coll_id` = `t`.`coll_id`", + 'code' => null, + 'playdry' => self::PLAYDRY_NONE, + ] + ); + + } + + + private function playSQL(\databox $databox, Array $work) + { + $this->output->writeln(""); + $this->output->writeln(sprintf(" ----------------- %s ----------------- %s", + $work['msg'], + $this->dry && !($work['playdry'] & self::PLAYDRY_SQL) ? " -- NOT PLAYED IN DRY MODE --" : "" + ) + ); + $this->output->writeln(""); + + if ($this->show_sql) { + $this->output->writeln($work['sql']); + } + $stmt = null; + if(!$this->dry || ($work['playdry'] & self::PLAYDRY_SQL)) { + $stmt = $databox->get_connection()->prepare($work['sql']); + $stmt->execute(); + } + if($work['code'] && (!$this->dry || ($work['playdry'] & self::PLAYDRY_CODE))) { + $code = $work['code']; + $code($stmt); + } + if(!$this->dry || ($work['playdry'] & self::PLAYDRY_SQL)) { + $stmt->closeCursor(); + } + } +} + diff --git a/lib/Alchemy/Phrasea/Controller/Admin/CollectionController.php b/lib/Alchemy/Phrasea/Controller/Admin/CollectionController.php index 3304a19de8..271e7a49df 100644 --- a/lib/Alchemy/Phrasea/Controller/Admin/CollectionController.php +++ b/lib/Alchemy/Phrasea/Controller/Admin/CollectionController.php @@ -50,6 +50,7 @@ class CollectionController extends Controller $query = $this->createUserQuery(); $admins = $query->on_base_ids([$bas_id]) ->who_have_right([\ACL::ORDER_MASTER]) + ->include_templates(true) ->execute() ->get_results(); } diff --git a/lib/Alchemy/Phrasea/Controller/Admin/DataboxesController.php b/lib/Alchemy/Phrasea/Controller/Admin/DataboxesController.php index fee5eef475..7acbe34fb0 100644 --- a/lib/Alchemy/Phrasea/Controller/Admin/DataboxesController.php +++ b/lib/Alchemy/Phrasea/Controller/Admin/DataboxesController.php @@ -160,6 +160,9 @@ class DataboxesController extends Controller try { $connectionSettings = $this->buildSettingsFromRequest($request); + + \phrasea::clear_sbas_params($this->app); + $databox = $databoxService->mountDatabox($dbName, $this->app->getAuthenticatedUser(), $connectionSettings); return $this->app->redirectPath('admin_database', [ @@ -174,7 +177,8 @@ class DataboxesController extends Controller catch (\Exception $exception) { return $this->app->redirectPath('admin_databases', [ 'success' => 0, - 'error' => 'mount-failed' + // 'error' => 'mount-failed' + 'error' => $exception->getMessage() ]); } } diff --git a/lib/Alchemy/Phrasea/Controller/Admin/FieldsController.php b/lib/Alchemy/Phrasea/Controller/Admin/FieldsController.php index 02822d9228..dc81bc67c3 100644 --- a/lib/Alchemy/Phrasea/Controller/Admin/FieldsController.php +++ b/lib/Alchemy/Phrasea/Controller/Admin/FieldsController.php @@ -314,6 +314,9 @@ class FieldsController extends Controller ->set_readonly($data['readonly']) ->set_type($data['type']) ->set_tbranch($data['tbranch']) + ->set_generate_cterms($data['generate_cterms']) + ->set_gui_editable($data['gui_editable']) + ->set_gui_visible($data['gui_visible']) ->set_report($data['report']) ->setVocabularyControl(null) ->setVocabularyRestricted(false); @@ -349,7 +352,7 @@ class FieldsController extends Controller { return [ 'name', 'multi', 'thumbtitle', 'tag', 'business', 'indexable', 'aggregable', - 'required', 'separator', 'readonly', 'type', 'tbranch', 'report', + 'required', 'separator', 'readonly', 'gui_editable', 'gui_visible' , 'type', 'tbranch', 'generate_cterms', 'report', 'vocabulary-type', 'vocabulary-restricted', 'dces-element', 'labels' ]; } diff --git a/lib/Alchemy/Phrasea/Controller/Admin/SubdefsController.php b/lib/Alchemy/Phrasea/Controller/Admin/SubdefsController.php index 6b938cb569..e30aa03946 100644 --- a/lib/Alchemy/Phrasea/Controller/Admin/SubdefsController.php +++ b/lib/Alchemy/Phrasea/Controller/Admin/SubdefsController.php @@ -145,6 +145,7 @@ class SubdefsController extends Controller $options[Audio::OPTION_AUDIOBITRATE] = $config["audio"]["definitions"][$preset][Audio::OPTION_AUDIOBITRATE]; $options[Audio::OPTION_AUDIOSAMPLERATE] = $config["audio"]["definitions"][$preset][Audio::OPTION_AUDIOSAMPLERATE]; $options[Audio::OPTION_ACODEC] = $config["audio"]["definitions"][$preset][Audio::OPTION_ACODEC]; + $options[Audio::OPTION_AUDIOCHANNEL] = $config["audio"]["definitions"][$preset][Audio::OPTION_AUDIOCHANNEL]; foreach ($config["audio"]["definitions"][$preset][Subdef::OPTION_DEVICE] as $devices) { $options[Subdef::OPTION_DEVICE][] = $devices; } @@ -211,7 +212,7 @@ class SubdefsController extends Controller { $mapping = [ Type::TYPE_IMAGE => [Subdef::TYPE_IMAGE, Subdef::TYPE_PDF], - Type::TYPE_VIDEO => [Subdef::TYPE_IMAGE, Subdef::TYPE_VIDEO, Subdef::TYPE_ANIMATION], + Type::TYPE_VIDEO => [Subdef::TYPE_IMAGE, Subdef::TYPE_VIDEO, Subdef::TYPE_ANIMATION, Subdef::TYPE_AUDIO], Type::TYPE_AUDIO => [Subdef::TYPE_IMAGE, Subdef::TYPE_AUDIO], Type::TYPE_DOCUMENT => [Subdef::TYPE_IMAGE, Subdef::TYPE_FLEXPAPER, Subdef::TYPE_PDF], Type::TYPE_FLASH => [Subdef::TYPE_IMAGE] @@ -525,29 +526,44 @@ class SubdefsController extends Controller ], Subdef::TYPE_AUDIO => [ "definitions" => [ - "Low AAC 96 kbit/s" => [ + "Low MP3 96 kbit/s" => [ Audio::OPTION_AUDIOBITRATE => "100", Audio::OPTION_AUDIOSAMPLERATE => "8000", Audio::OPTION_ACODEC => "libmp3lame", Subdef::OPTION_DEVICE => ["all"] ], - "Normal AAC 128 kbit/s" => [ + "Normal MP3 128 kbit/s" => [ Audio::OPTION_AUDIOBITRATE => "180", Audio::OPTION_AUDIOSAMPLERATE => "44100", Audio::OPTION_ACODEC => "libmp3lame", Subdef::OPTION_DEVICE => ["all"] ], - "High AAC 320 kbit/s" => [ + "High MP3 320 kbit/s" => [ Audio::OPTION_AUDIOBITRATE => "230", Audio::OPTION_AUDIOSAMPLERATE => "50000", Audio::OPTION_ACODEC => "libmp3lame", Subdef::OPTION_DEVICE => ["all"] ], + "Wave Mono 16 kHz" => [ + Audio::OPTION_AUDIOBITRATE => "256", + Audio::OPTION_AUDIOSAMPLERATE => "16000", + Audio::OPTION_ACODEC => "pcm_s16le", + Audio::OPTION_AUDIOCHANNEL => "mono", + Subdef::OPTION_DEVICE => ["all"] + ], + "Wave Mono 8 kHz" => [ + Audio::OPTION_AUDIOBITRATE => "128", + Audio::OPTION_AUDIOSAMPLERATE => "8000", + Audio::OPTION_ACODEC => "pcm_s16le", + Audio::OPTION_AUDIOCHANNEL => "mono", + Subdef::OPTION_DEVICE => ["all"] + ], ], "form" => [ Audio::OPTION_AUDIOBITRATE => "slide", Audio::OPTION_AUDIOSAMPLERATE => "select", Audio::OPTION_ACODEC => "select", + Audio::OPTION_AUDIOCHANNEL => "select", Subdef::OPTION_DEVICE => "checkbox", ], ], diff --git a/lib/Alchemy/Phrasea/Controller/Admin/UserController.php b/lib/Alchemy/Phrasea/Controller/Admin/UserController.php index 65da919edd..35ff646b8c 100644 --- a/lib/Alchemy/Phrasea/Controller/Admin/UserController.php +++ b/lib/Alchemy/Phrasea/Controller/Admin/UserController.php @@ -233,6 +233,7 @@ class UserController extends Controller ->who_have_right($have_right) ->who_have_not_right($have_not_right) ->on_base_ids($on_base) + ->include_templates(true) ->execute() ->get_results(); diff --git a/lib/Alchemy/Phrasea/Controller/Api/V1Controller.php b/lib/Alchemy/Phrasea/Controller/Api/V1Controller.php index 954e8df6d1..7b41bf7f64 100644 --- a/lib/Alchemy/Phrasea/Controller/Api/V1Controller.php +++ b/lib/Alchemy/Phrasea/Controller/Api/V1Controller.php @@ -89,9 +89,10 @@ use Alchemy\Phrasea\Status\StatusStructure; use Alchemy\Phrasea\TaskManager\LiveInformation; use Alchemy\Phrasea\Utilities\NullableDateTime; use Doctrine\ORM\EntityManager; -use JMS\TranslationBundle\Annotation\Ignore; +use Guzzle\Http\Client as Guzzle; use League\Fractal\Resource\Item; use media_subdef; +use Neutron\TemporaryFilesystem\TemporaryFilesystemInterface; use Symfony\Component\Form\Form; use Symfony\Component\HttpFoundation\File\UploadedFile; use Symfony\Component\HttpFoundation\Request; @@ -594,6 +595,9 @@ class V1Controller extends Controller ], 'separator' => $databox_field->get_separator(), 'thesaurus_branch' => $databox_field->get_tbranch(), + 'generate_cterms' => $databox_field->get_generate_cterms(), + 'gui_editable' => $databox_field->get_gui_editable(), + 'gui_visible' => $databox_field->get_gui_visible(), 'type' => $databox_field->get_type(), 'indexable' => $databox_field->is_indexable(), 'multivalue' => $databox_field->is_multi(), @@ -906,19 +910,6 @@ class V1Controller extends Controller public function addRecordAction(Request $request) { - if (count($request->files->get('file')) == 0) { - return $this->getBadRequestAction($request, 'Missing file parameter'); - } - - $file = $request->files->get('file'); - if (!$file instanceof UploadedFile) { - return $this->getBadRequestAction($request, 'You can upload one file at time'); - } - - if (!$file->isValid()) { - return $this->getBadRequestAction($request, 'Data corrupted, please try again'); - } - if (!$request->get('base_id')) { return $this->getBadRequestAction($request, 'Missing base_id parameter'); } @@ -931,16 +922,57 @@ class V1Controller extends Controller ))->createResponse(); } - // Add file extension - $uploadedFilename = $file->getRealPath(); + if (count($request->files->get('file')) == 0) { + if(count($request->get('url')) == 0) { + return $this->getBadRequestAction($request, 'Missing file parameter'); + } + else { + // upload via url + $url = $request->get('url'); + $pi = pathinfo($url); // filename, extension - $renamedFilename = $file->getRealPath() . '.' . pathinfo($file->getClientOriginalName(), PATHINFO_EXTENSION); + /** @var TemporaryFilesystemInterface $tmpFs */ + $tmpFs = $this->app['temporary-filesystem']; + $tempfile = $tmpFs->createTemporaryFile('download_', null, $pi['extension']); - $this->getFilesystem()->rename($uploadedFilename, $renamedFilename); + try { + $guzzle = new Guzzle($url); + $res = $guzzle->get("", [], ['save_to' => $tempfile])->send(); + } + catch (\Exception $e) { + return $this->getBadRequestAction($request, sprintf('Error "%s" downloading "%s"', $e->getMessage(), $url)); + } - $media = $this->app->getMediaFromUri($renamedFilename); + if($res->getStatusCode() !== 200) { + return $this->getBadRequestAction($request, sprintf('Error %s downloading "%s"', $res->getStatusCode(), $url)); + } - $Package = new File($this->app, $media, $collection, $file->getClientOriginalName()); + $originalName = $pi['filename'] . '.' . $pi['extension']; + $uploadedFilename = $newPathname = $tempfile; + } + } + else { + // upload via file + $file = $request->files->get('file'); + if (!$file instanceof UploadedFile) { + return $this->getBadRequestAction($request, 'You can upload one file at time'); + } + if (!$file->isValid()) { + return $this->getBadRequestAction($request, 'Data corrupted, please try again'); + } + + $uploadedFilename = $file->getPathname(); + $originalName = $file->getClientOriginalName(); + $newPathname = $file->getPathname() . '.' . $file->getClientOriginalExtension(); + + if (false === rename($file->getPathname(), $newPathname)) { + return Result::createError($request, 403, 'Error while renaming file')->createResponse(); + } + } + + $media = $this->app->getMediaFromUri($newPathname); + + $Package = new File($this->app, $media, $collection, $originalName); if ($request->get('status')) { $Package->addAttribute(new Status($this->app, $request->get('status'))); @@ -985,6 +1017,11 @@ class V1Controller extends Controller $nosubdef = $request->get('nosubdefs') === '' || \p4field::isyes($request->get('nosubdefs')); $this->getBorderManager()->process($session, $Package, $callback, $behavior, $nosubdef); + // remove $newPathname on temporary directory + if ($newPathname !== $uploadedFilename) { + @rename($newPathname, $uploadedFilename); + } + $ret = ['entity' => null]; if ($output instanceof \record_adapter) { @@ -1056,6 +1093,11 @@ class V1Controller extends Controller } } + // remove $newPathname on temporary directory + if ($renamedFilename !== $uploadedFilename) { + @rename($renamedFilename, $uploadedFilename); + } + return Result::create($request, $ret)->createResponse(); } @@ -1966,7 +2008,7 @@ class V1Controller extends Controller return $this->getBadRequestAction($request); } - $datas = substr($datas, 0, ($n)) . $value . substr($datas, ($n + 2)); + $datas = substr($datas, 0, ($n)) . $value . substr($datas, ($n + 1)); } $record->setStatus(strrev($datas)); @@ -2570,8 +2612,18 @@ class V1Controller extends Controller foreach ($recordsData as $data) { $records[] = $this->addOrDelStoryRecord($story, $data, $action); if($action === 'ADD' && !$cover_set && isset($data->{'use_as_cover'}) && $data->{'use_as_cover'} === true) { + $coverSource = []; + + if (isset($data->{'thumbnail_cover_source'})) { + $coverSource['thumbnail_cover_source'] = $data->{'thumbnail_cover_source'}; + } + + if (isset($data->{'preview_cover_source'})) { + $coverSource['preview_cover_source'] = $data->{'preview_cover_source'}; + } + // because we can try many records as cover source, we let it fail - $cover_set = ($this->setStoryCover($story, $data->{'record_id'}, true) !== false); + $cover_set = ($this->setStoryCover($story, $data->{'record_id'}, true, $coverSource) !== false); } } @@ -2625,14 +2677,26 @@ class V1Controller extends Controller $story = new \record_adapter($this->app, $databox_id, $story_id); + $coverSource = []; + + if (isset($data->{'thumbnail_cover_source'})) { + $coverSource['thumbnail_cover_source'] = $data->{'thumbnail_cover_source'}; + } + + if (isset($data->{'preview_cover_source'})) { + $coverSource['preview_cover_source'] = $data->{'preview_cover_source'}; + } + // we do NOT let "setStoryCover()" fail : pass false as last arg - $record_key = $this->setStoryCover($story, $data->{'record_id'}, false); + $record_key = $this->setStoryCover($story, $data->{'record_id'}, false, $coverSource); return Result::create($request, array($record_key))->createResponse(); } - protected function setStoryCover(\record_adapter $story, $record_id, $can_fail=false) + protected function setStoryCover(\record_adapter $story, $record_id, $can_fail=false, $coverSource = []) { + $coverSource = array_merge(['thumbnail_cover_source' => 'thumbnail', 'preview_cover_source' => 'preview'], $coverSource); + try { $record = new \record_adapter($this->app, $story->getDataboxId(), $record_id); } catch (\Exception_Record_AdapterNotFound $e) { @@ -2644,18 +2708,22 @@ class V1Controller extends Controller $this->app->abort(404, sprintf('Record identified by databox_id %s and record_id %s is not in the story', $story->getDataboxId(), $record_id)); } - if ($record->getType() !== 'image' && $record->getType() !== 'video') { - // this can fail so we can loop on many records during story creation... - if($can_fail) { - return false; - } - $this->app->abort(403, sprintf('Record identified by databox_id %s and record_id %s is not an image nor a video', $story->getDataboxId(), $record_id)); - } + // taking account all record type as a cover +// if ($record->getType() !== 'image' && $record->getType() !== 'video') { +// // this can fail so we can loop on many records during story creation... +// if($can_fail) { +// return false; +// } +// $this->app->abort(403, sprintf('Record identified by databox_id %s and record_id %s is not an image nor a video', $story->getDataboxId(), $record_id)); +// } foreach ($record->get_subdefs() as $name => $value) { - if (!in_array($name, array('thumbnail', 'preview'))) { + if (!($key = array_search($name, $coverSource))) { continue; } + + $name = ($key == 'thumbnail_cover_source') ? 'thumbnail': 'preview'; + $media = $this->app->getMediaFromUri($value->getRealPath()); $this->getSubdefSubstituer()->substituteSubdef($story, $name, $media); // name = thumbnail | preview $this->getDataboxLogger($story->getDatabox())->log( diff --git a/lib/Alchemy/Phrasea/Controller/PermalinkController.php b/lib/Alchemy/Phrasea/Controller/PermalinkController.php index 9baf7931bc..5f150c8a4a 100644 --- a/lib/Alchemy/Phrasea/Controller/PermalinkController.php +++ b/lib/Alchemy/Phrasea/Controller/PermalinkController.php @@ -74,10 +74,10 @@ class PermalinkController extends AbstractDelivery public function deliverPermaview(Request $request, $sbas_id, $record_id, $subdef) { - return $this->doDeliverPermaview($sbas_id, $record_id, $request->query->get('token'), $subdef); + return $this->doDeliverPermaview($sbas_id, $record_id, $request->query->get('token'), $subdef, $request->query->get('t')); } - private function doDeliverPermaview($sbas_id, $record_id, $token, $subdefName) + private function doDeliverPermaview($sbas_id, $record_id, $token, $subdefName, $currentTime = null) { $databox = $this->findDataboxById($sbas_id); $record = $this->retrieveRecord($databox, $token, $record_id, $subdefName); @@ -105,6 +105,7 @@ class PermalinkController extends AbstractDelivery 'token' => $token, 'record' => $record, 'recordUrl' => $information->getUrl(), + 'currentTime' => $currentTime ]); } diff --git a/lib/Alchemy/Phrasea/Controller/Prod/EditController.php b/lib/Alchemy/Phrasea/Controller/Prod/EditController.php index 849c5af046..29ef942919 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/EditController.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/EditController.php @@ -75,6 +75,9 @@ class EditController extends Controller 'format' => '', 'explain' => '', 'tbranch' => $meta->get_tbranch(), + 'generate_cterms' => $meta->get_generate_cterms(), + 'gui_editable' => $meta->get_gui_editable(), + 'gui_visible' => $meta->get_gui_visible(), 'maxLength' => $meta->get_tag() ->getMaxLength(), 'minLength' => $meta->get_tag() diff --git a/lib/Alchemy/Phrasea/Controller/Prod/LazaretController.php b/lib/Alchemy/Phrasea/Controller/Prod/LazaretController.php index 035476d5fb..7fcddb0b28 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/LazaretController.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/LazaretController.php @@ -38,7 +38,7 @@ class LazaretController extends Controller * * @param Request $request The current request * - * @return Response + * @return String */ public function listElement(Request $request) { @@ -70,7 +70,7 @@ class LazaretController extends Controller public function getElement($file_id) { $ret = ['success' => false, 'message' => '', 'result' => []]; - + /* @var LazaretFile $lazaretFile */ $lazaretFile = $this->getLazaretFileRepository()->find($file_id); @@ -126,6 +126,16 @@ class LazaretController extends Controller $ret = $lazaretManipulator->add($file_id, $keepAttributes, $attributesToKeep); + try{ + // get the new record + $record = \Collection::getByBaseId($this->app, $request->request->get('bas_id'))->get_databox()->get_record($ret['result']['record_id']); + $postStatus = (array) $request->request->get('status'); + // update status + $this->updateRecordStatus($record, $postStatus); + }catch(\Exception $e){ + $ret['message'] = $this->app->trans('An error occured when wanting to change status!'); + } + return $this->app->json($ret); } @@ -216,6 +226,7 @@ class LazaretController extends Controller return $this->app->json($ret); } + $postStatus = (array) $request->request->get('status'); $path = $this->app['tmp.lazaret.path'] . '/'; $lazaretFileName = $path .$lazaretFile->getFilename(); @@ -233,6 +244,9 @@ class LazaretController extends Controller '' ); + // update status + $this->updateRecordStatus($record, $postStatus); + //Delete lazaret file $manager = $this->getEntityManager(); $manager->remove($lazaretFile); @@ -278,6 +292,35 @@ class LazaretController extends Controller ); } + /** + * @param Request $request + * @param $databox_id + * @param $record_id + * @return \Symfony\Component\HttpFoundation\JsonResponse + */ + public function getDestinationStatus(Request $request, $databox_id, $record_id) + { + if (!$request->isXmlHttpRequest()) { + $this->app->abort(400); + } + $record = new \record_adapter($this->app, (int) $databox_id, (int) $record_id); + $databox = $this->findDataboxById($databox_id); + $statusStructure = $databox->getStatusStructure(); + $recordsStatuses = []; + foreach ($statusStructure as $status) { + // make the key as a string for the json usage in javascript + $bit = "'".$status['bit']."'"; + if (!isset($recordsStatuses[$bit])) { + $recordsStatuses[$bit] = $status; + } + $statusSet = \databox_status::bitIsSet($record->getStatusBitField(), $status['bit']); + if (!isset($recordsStatuses[$bit]['flag'])) { + $recordsStatuses[$bit]['flag'] = (int) $statusSet; + } + } + return $this->app->json(['status' => $recordsStatuses]); + } + /** * @return LazaretFileRepository */ @@ -293,4 +336,32 @@ class LazaretController extends Controller { return $this->app['border-manager']; } + + /** + * Set new status to selected record + * + * @param \record_adapter $record + * @param array $postStatus + * @return array|null + */ + private function updateRecordStatus(\record_adapter $record, array $postStatus) + { + $sbasId = $record->getDataboxId(); + if (isset($postStatus[$sbasId]) && is_array($postStatus[$sbasId])) { + $postStatus = $postStatus[$sbasId]; + $currentStatus = strrev($record->getStatus()); + $newStatus = ''; + foreach (range(0, 31) as $i) { + $newStatus .= isset($postStatus[$i]) ? ($postStatus[$i] ? '1' : '0') : $currentStatus[$i]; + } + $record->setStatus(strrev($newStatus)); + $this->getDataboxLogger($record->getDatabox()) + ->log($record, \Session_Logger::EVENT_STATUS, '', ''); + return [ + 'current_status' => $currentStatus, + 'new_status' => $newStatus, + ]; + } + return null; + } } diff --git a/lib/Alchemy/Phrasea/Controller/Prod/MoveCollectionController.php b/lib/Alchemy/Phrasea/Controller/Prod/MoveCollectionController.php index c4fe729538..50e2219e0d 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/MoveCollectionController.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/MoveCollectionController.php @@ -114,6 +114,7 @@ class MoveCollectionController extends Controller $trashCollectionsBySbasId = []; foreach ($records as $record) { + $oldCollectionId = $record->getCollection()->get_coll_id(); $record->move_to_collection($collection, $this->getApplicationBox()); if ($request->request->get("chg_coll_son") == "1") { @@ -130,7 +131,7 @@ class MoveCollectionController extends Controller $trashCollectionsBySbasId[$sbasId] = $record->getDatabox()->getTrashCollection(); } if ($trashCollectionsBySbasId[$sbasId] !== null) { - if ($record->getCollection()->get_coll_id() == $trashCollectionsBySbasId[$sbasId]->get_coll_id() && $collection->get_coll_id() !== $trashCollectionsBySbasId[$sbasId]->get_coll_id()) { + if ($oldCollectionId == $trashCollectionsBySbasId[$sbasId]->get_coll_id() && $collection->get_coll_id() !== $trashCollectionsBySbasId[$sbasId]->get_coll_id()) { // record is already in trash so active it foreach ($record->get_subdefs() as $subdef) { if (($pl = $subdef->get_permalink())) { diff --git a/lib/Alchemy/Phrasea/Controller/Prod/PropertyController.php b/lib/Alchemy/Phrasea/Controller/Prod/PropertyController.php index ff834ab119..74022f1422 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/PropertyController.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/PropertyController.php @@ -9,6 +9,7 @@ */ namespace Alchemy\Phrasea\Controller\Prod; +use Alchemy\Phrasea\Application\Helper\DataboxLoggerAware; use Alchemy\Phrasea\Controller\Controller; use Alchemy\Phrasea\Controller\RecordsRequest; use Symfony\Component\HttpFoundation\Request; @@ -16,6 +17,8 @@ use Symfony\Component\HttpFoundation\Response; class PropertyController extends Controller { + use DataboxLoggerAware; + /** * Display Status property * @@ -198,6 +201,9 @@ class PropertyController extends Controller $record->setStatus(strrev($newStatus)); + $this->getDataboxLogger($record->getDatabox()) + ->log($record, \Session_Logger::EVENT_STATUS, '', ''); + return [ 'current_status' => $currentStatus, 'new_status' => $newStatus, diff --git a/lib/Alchemy/Phrasea/Controller/Prod/PushController.php b/lib/Alchemy/Phrasea/Controller/Prod/PushController.php index 569537fed3..f9ce528e41 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/PushController.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/PushController.php @@ -463,6 +463,8 @@ class PushController extends Controller } try { + $manager = $this->getEntityManager(); + $password = $this->getRandomGenerator()->generateString(128); $user = $this->getUserManipulator()->createUser($email, $password, $email); @@ -476,12 +478,15 @@ class PushController extends Controller $user->setCompany($request->request->get('company')); } if ($request->request->get('job')) { - $user->setCompany($request->request->get('job')); + $user->setJob($request->request->get('job')); } - if ($request->request->get('form_geonameid')) { - $this->getUserManipulator()->setGeonameId($user, $request->request->get('form_geonameid')); + if ($request->request->get('city')) { + $this->getUserManipulator()->setGeonameId($user, $request->request->get('city')); } + $manager->persist($user); + $manager->flush(); + $result['message'] = $this->app->trans('User successfully created'); $result['success'] = true; $result['user'] = $this->formatUser($user); diff --git a/lib/Alchemy/Phrasea/Controller/Prod/QueryController.php b/lib/Alchemy/Phrasea/Controller/Prod/QueryController.php index c3056c8899..a6706424aa 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/QueryController.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/QueryController.php @@ -161,7 +161,32 @@ class QueryController extends Controller $result = $engine->query($query, $options); if ($this->getSettings()->getUserSetting($user, 'start_page') === 'LAST_QUERY') { - $userManipulator->setUserSetting($user, 'start_page_query', $query); + // try to save the "fulltext" query which will be restored on next session + try { + // local code to find "FULLTEXT" value from jsonQuery + $findFulltext = function($clause) use(&$findFulltext) { + if(array_key_exists('_ux_zone', $clause) && $clause['_ux_zone']=='FULLTEXT') { + return $clause['value']; + } + if($clause['type']=='CLAUSES') { + foreach($clause['clauses'] as $c) { + if(($r = $findFulltext($c)) !== null) { + return $r; + } + } + } + return null; + }; + + $userManipulator->setUserSetting($user, 'last_jsonquery', (string)$request->request->get('jsQuery')); + $jsQuery = @json_decode((string)$request->request->get('jsQuery'), true); + if(($ft = $findFulltext($jsQuery['query'])) !== null) { + $userManipulator->setUserSetting($user, 'start_page_query', $ft); + } + } + catch(\Exception $e) { + // no-op + } } // log array of collectionIds (from $options) for each databox @@ -189,7 +214,7 @@ class QueryController extends Controller if (min($d2top, $d2bottom) < 4) { if ($d2bottom < 4) { if($page != 1){ - $string .= ""; + $string .= ""; } for ($i = 1; ($i <= 4 && (($i <= $npages) === true)); $i++) { if ($i == $page) @@ -198,13 +223,13 @@ class QueryController extends Controller $string .= '' . $i . ''; } if ($npages > 4) - $string .= ""; - $string .= ''; + $string .= ""; + $string .= ''; } else { $start = $npages - 4; if (($start) > 0){ - $string .= ''; - $string .= ''; + $string .= ''; + $string .= ''; }else $start = 1; for ($i = ($start); $i <= $npages; $i++) { @@ -214,11 +239,11 @@ class QueryController extends Controller $string .= '' . $i . ''; } if($page < $npages){ - $string .= ""; + $string .= ""; } } } else { - $string .= ''; + $string .= ''; for ($i = ($page - 2); $i <= ($page + 2); $i++) { if ($i == $page) @@ -227,10 +252,10 @@ class QueryController extends Controller $string .= '' . $i . ''; } - $string .= ''; + $string .= ''; } } - $string .= '
'; + $string .= '
'; $explain = $this->render( "prod/results/infos.html.twig", @@ -291,7 +316,7 @@ class QueryController extends Controller ' . '' - . $this->app->trans('%total% reponses', ['%total%' => ''.$result->getTotal().'']) . ''; + . $this->app->trans('%total% reponses', ['%total%' => ''.number_format($result->getTotal(),null, null, ' ').'']) . ''; $json['infos'] = $infoResult; $json['navigationTpl'] = $string; @@ -323,9 +348,14 @@ class QueryController extends Controller // add technical fields - $fieldLabels = []; + $fieldsInfosByName = []; foreach(ElasticsearchOptions::getAggregableTechnicalFields() as $k => $f) { - $fieldLabels[$k] = $this->app->trans($f['label']); + $fieldsInfosByName[$k] = $f; + $fieldsInfosByName[$k]['trans_label'] = $this->app->trans($f['label']); + $fieldsInfosByName[$k]['labels'] = []; + foreach($this->app->getAvailableLanguages() as $locale => $lng) { + $fieldsInfosByName[$k]['labels'][$locale] = $this->app->trans($f['label'], [], "messages", $locale); + } } // add databox fields @@ -337,13 +367,24 @@ class QueryController extends Controller foreach ($databox->get_meta_structure() as $field) { $name = $field->get_name(); $fieldsInfos[$sbasId][$name] = [ - 'label' => $field->get_label($this->app['locale']), - 'type' => $field->get_type(), + 'label' => $field->get_label($this->app['locale']), + 'labels' => $field->get_labels(), + 'type' => $field->get_type(), 'business' => $field->isBusiness(), - 'multi' => $field->is_multi(), + 'multi' => $field->is_multi(), ]; - if (!isset($fieldLabels[$name])) { - $fieldLabels[$name] = $field->get_label($this->app['locale']); + + // infos on the "same" field (by name) on multiple databoxes !!! + // label(s) can be inconsistants : the first databox wins + if (!isset($fieldsInfosByName[$name])) { + $fieldsInfosByName[$name] = [ + 'label' => $field->get_label($this->app['locale']), + 'labels' => $field->get_labels(), + 'type' => $field->get_type(), + 'field' => $field->get_name(), + 'trans_label' => $field->get_label($this->app['locale']), + ]; + $field->get_label($this->app['locale']); } } } @@ -382,14 +423,29 @@ class QueryController extends Controller // populates facets (aggregates) $facets = []; + // $facetClauses = []; foreach ($result->getFacets() as $facet) { $facetName = $facet['name']; - $facet['label'] = isset($fieldLabels[$facetName]) ? $fieldLabels[$facetName] : $facetName; + if(array_key_exists($facetName, $fieldsInfosByName)) { - $facets[] = $facet; + $f = $fieldsInfosByName[$facetName]; + + $facet['label'] = $f['trans_label']; + $facet['labels'] = $f['labels']; + $facet['type'] = strtoupper($f['type']) . "-AGGREGATE"; + $facets[] = $facet; + + // $facetClauses[] = [ + // 'type' => strtoupper($f['type']) . "-AGGREGATE", + // 'field' => $f['field'], + // 'facet' => $facet + // ]; + } } + // $json['jsq'] = $facetClauses; + $json['facets'] = $facets; $json['phrasea_props'] = $proposals; $json['total_answers'] = (int) $result->getAvailable(); @@ -413,7 +469,6 @@ class QueryController extends Controller $json['results'] = $this->render($template, ['results'=> $result]); } - return $this->app->json($json); } diff --git a/lib/Alchemy/Phrasea/Controller/Prod/RecordController.php b/lib/Alchemy/Phrasea/Controller/Prod/RecordController.php index ef67a81ae0..0a948d6d1d 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/RecordController.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/RecordController.php @@ -90,35 +90,44 @@ class RecordController extends Controller } $recordCaptions["technicalInfo"] = $record->getPositionFromTechnicalInfos(); + // escape record title before rendering + $recordTitle = explode("", $record->get_title()); + if (count($recordTitle) >1) { + $recordTitle[1] = htmlspecialchars($recordTitle[1]); + $recordTitle = implode("", $recordTitle); + } else { + $recordTitle = htmlspecialchars($record->get_title()); + } + return $this->app->json([ - "desc" => $this->render('prod/preview/caption.html.twig', [ + "desc" => $this->render('prod/preview/caption.html.twig', [ 'record' => $record, 'highlight' => $query, 'searchEngine' => $searchEngine, 'searchOptions' => $options, ]), - "recordCaptions"=> $recordCaptions, - "html_preview" => $this->render('common/preview.html.twig', [ + "recordCaptions" => $recordCaptions, + "html_preview" => $this->render('common/preview.html.twig', [ 'record' => $record ]), - "others" => $this->render('prod/preview/appears_in.html.twig', [ + "others" => $this->render('prod/preview/appears_in.html.twig', [ 'parents' => $record->get_grouping_parents(), 'baskets' => $record->get_container_baskets($this->getEntityManager(), $this->getAuthenticatedUser()), ]), - "current" => $train, - "record" => $currentRecord, - "history" => $this->render('prod/preview/short_history.html.twig', [ + "current" => $train, + "record" => $currentRecord, + "history" => $this->render('prod/preview/short_history.html.twig', [ 'record' => $record, ]), - "popularity" => $this->render('prod/preview/popularity.html.twig', [ + "popularity" => $this->render('prod/preview/popularity.html.twig', [ 'record' => $record, ]), - "tools" => $this->render('prod/preview/tools.html.twig', [ + "tools" => $this->render('prod/preview/tools.html.twig', [ 'record' => $record, ]), - "pos" => $record->getNumber(), - "title" => $record->get_title(), - "databox_name" => $record->getDatabox()->get_dbname(), + "pos" => $record->getNumber(), + "title" => $recordTitle, + "databox_name" => $record->getDatabox()->get_dbname(), "collection_name" => $record->getCollection()->get_name(), "collection_logo" => $record->getCollection()->getLogo($record->getBaseId(), $this->app), ]); diff --git a/lib/Alchemy/Phrasea/Controller/Prod/RootController.php b/lib/Alchemy/Phrasea/Controller/Prod/RootController.php index 70890e219c..b89c919ed9 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/RootController.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/RootController.php @@ -15,12 +15,11 @@ use Alchemy\Phrasea\Core\Configuration\DisplaySettingService; use Alchemy\Phrasea\Exception\SessionNotFound; use Alchemy\Phrasea\Feed\Aggregate; use Alchemy\Phrasea\Helper; -use Alchemy\Phrasea\Model\Entities\UserSetting; +use Alchemy\Phrasea\Helper\WorkZone as WorkzoneHelper; use Alchemy\Phrasea\Model\Repositories\FeedRepository; -use Symfony\Component\Finder\Finder; -use Symfony\Component\Finder\SplFileInfo; use Symfony\Component\HttpFoundation\Request; + class RootController extends Controller { use Application\Helper\FirewallAware; @@ -41,12 +40,11 @@ class RootController extends Controller public function indexAction(Request $request) { try { \Session_Logger::updateClientInfos($this->app, 1); - } catch (SessionNotFound $e) { + } + catch (SessionNotFound $e) { return $this->app->redirectPath('logout'); } - $css = []; - $user = $this->getAuthenticatedUser(); $cssfile = $this->getSettings()->getUserSetting($user, 'css'); @@ -85,6 +83,22 @@ class RootController extends Controller /** @var \Closure $filter */ $filter = $this->app['plugin.filter_by_authorization']; + /* prepare work to extend whole taskbar... later + $menus = [ + 'push' => ['native'=>true, 'n'=>0], + 'tools' => ['native'=>true, 'n'=>0], + ]; + / ** @var ActionBarPluginInterface $plugin * / + foreach($filter('actionbar') as $kplugin=>$plugin) { + foreach($plugin->getActionBar() as $kmenu=>$menu) { + if(!array_key_exists($kmenu, $menus)) { + $menus[$kmenu] = ['native'=>false, 'n'=>0]; + } + $menus[$kmenu]['n']++; + } + } + */ + $plugins = [ 'workzone' => $filter('workzone'), 'actionbar' => $filter('actionbar'), @@ -92,7 +106,7 @@ class RootController extends Controller return $this->render('prod/index.html.twig', [ 'module_name' => 'Production', - 'WorkZone' => new Helper\WorkZone($this->app, $request), + 'WorkZone' => new WorkzoneHelper($this->app, $request), 'module_prod' => $helper, 'search_datas' => $helper->get_search_datas(), 'cssfile' => $cssfile, @@ -105,7 +119,7 @@ class RootController extends Controller 'feeds' => $feeds, 'aggregate' => $aggregate, 'GV_google_api' => $conf->get(['registry', 'webservices', 'google-charts-enabled']), - 'geocodingProviders' => $conf->get(['geocoding-providers']), + 'geocodingProviders' => $conf->get(['geocoding-providers']), 'search_status' => \databox_status::getSearchStatus($this->app), 'thesau_js_list' => $thjslist, 'thesau_json_sbas' => json_encode($sbas), diff --git a/lib/Alchemy/Phrasea/Controller/Prod/UploadController.php b/lib/Alchemy/Phrasea/Controller/Prod/UploadController.php index 47e6716ac4..27d18d5473 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/UploadController.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/UploadController.php @@ -26,6 +26,7 @@ use Alchemy\Phrasea\Model\Entities\LazaretFile; use Alchemy\Phrasea\Model\Entities\LazaretSession; use DataURI\Exception\Exception as DataUriException; use DataURI\Parser; +use Guzzle\Http\Client as Guzzle; use Symfony\Component\HttpFoundation\File\UploadedFile; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; @@ -76,6 +77,30 @@ class UploadController extends Controller ]); } + public function getHead(Request $request) + { + $response = [ + 'content-type' => null, + 'content-length' => null, + 'basename' => null + ]; + try { + $url = $request->get('url'); + $basename = pathinfo($url, PATHINFO_BASENAME); + + $guzzle = new Guzzle($url); + $res = $guzzle->head("")->send(); + $response['content-type'] = $res->getContentType(); + $response['content-length'] = $res->getContentLength(); + $response['basename'] = $basename; + } + catch (\Exception $e) { + // no-op : head will return no info but will not crash + } + + return $this->app->json($response); + } + /** * Upload processus * @@ -98,7 +123,7 @@ class UploadController extends Controller 'message' => '', 'element' => '', 'reasons' => [], - 'id' => '', + 'id' => '', ]; if (null === $request->files->get('files')) { @@ -119,18 +144,44 @@ class UploadController extends Controller throw new AccessDeniedHttpException('User is not allowed to add record on this collection'); } + /** @var UploadedFile $file */ $file = current($request->files->get('files')); if (!$file->isValid()) { throw new BadRequestHttpException('Uploaded file is invalid'); } - try { + if ($file->getClientOriginalName() === "blob" && $file->getClientMimeType() === "application/json") { + + // a "upload by url" was done, we receive a tiny json that contains url. + $json = json_decode(file_get_contents($file->getRealPath()), true); + $url = $json['url']; + $pi = pathinfo($url); // filename, extension + + $tempfile = $this->getTemporaryFilesystem()->createTemporaryFile('download_', null, $pi['extension']); + + try { + $guzzle = new Guzzle($url); + $res = $guzzle->get("", [], ['save_to' => $tempfile])->send(); + } + catch (\Exception $e) { + throw new BadRequestHttpException(sprintf('Error "%s" downloading "%s"', $e->getMessage(), $url)); + } + + if($res->getStatusCode() !== 200) { + throw new BadRequestHttpException(sprintf('Error %s downloading "%s"', $res->getStatusCode(), $url)); + } + + $uploadedFilename = $renamedFilename = $tempfile; + + $originalName = $pi['filename'] . '.' . $pi['extension']; + + } else { // Add file extension, so mediavorus can guess file type for octet-stream file $uploadedFilename = $file->getRealPath(); $renamedFilename = null; - if(!empty($this->app['conf']->get(['main', 'storage', 'tmp_files']))){ + if(!empty($this->app['conf']->get(['main', 'storage', 'tmp_files']))) { $tmpStorage = \p4string::addEndSlash($this->app['conf']->get(['main', 'storage', 'tmp_files'])).'upload/'; if(!is_dir($tmpStorage)){ @@ -139,12 +190,16 @@ class UploadController extends Controller $renamedFilename = $tmpStorage. pathinfo($file->getRealPath(), PATHINFO_FILENAME) .'.' . pathinfo($file->getClientOriginalName(), PATHINFO_EXTENSION); - }else{ + } else { $renamedFilename = $file->getRealPath() . '.' . pathinfo($file->getClientOriginalName(), PATHINFO_EXTENSION); } $this->getFilesystem()->rename($uploadedFilename, $renamedFilename); + $originalName = $file->getClientOriginalName(); + } + + try { $media = $this->app->getMediaFromUri($renamedFilename); $collection = \collection::getByBaseId($this->app, $base_id); @@ -153,7 +208,7 @@ class UploadController extends Controller $this->getEntityManager()->persist($lazaretSession); - $packageFile = new File($this->app, $media, $collection, $file->getClientOriginalName()); + $packageFile = new File($this->app, $media, $collection, $originalName); $postStatus = $request->request->get('status'); @@ -184,7 +239,9 @@ class UploadController extends Controller $code = $this->getBorderManager()->process( $lazaretSession, $packageFile, $callback, $forceBehavior); - $this->getFilesystem()->rename($renamedFilename, $uploadedFilename); + if($renamedFilename !== $uploadedFilename) { + $this->getFilesystem()->rename($renamedFilename, $uploadedFilename); + } if (!!$forceBehavior) { $reasons = []; @@ -310,15 +367,17 @@ class UploadController extends Controller $postMaxSize = PHP_INT_MAX; } + $r = 0; switch (strtolower(substr($postMaxSize, -1))) { /** @noinspection PhpMissingBreakStatementInspection */ case 'g': - $postMaxSize *= 1024; + $r += 10; /** @noinspection PhpMissingBreakStatementInspection */ case 'm': - $postMaxSize *= 1024; + $r += 10; case 'k': - $postMaxSize *= 1024; + $r += 10; + $postMaxSize = ((int)($postMaxSize))<<$r; } return min(UploadedFile::getMaxFilesize(), (int) $postMaxSize); diff --git a/lib/Alchemy/Phrasea/Controller/Report/ActivityController.php b/lib/Alchemy/Phrasea/Controller/Report/ActivityController.php deleted file mode 100644 index ca00f5871f..0000000000 --- a/lib/Alchemy/Phrasea/Controller/Report/ActivityController.php +++ /dev/null @@ -1,802 +0,0 @@ -app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - - $activity->setConfig(false); - $activity->setBound("user", true); - - //set Limit - if ($activity->getEnableLimit() - && ('' !== $page = $request->request->get('page', '')) - && ('' !== $limit = $request->request->get('limit', ''))) { - $activity->setLimit($page, $limit); - } else { - $activity->setLimit(false, false); - } - - if ($request->request->get('printcsv') == 'on') { - $activity->setHasLimit(false); - $activity->getConnexionBase(false, $request->request->get('on', 'user')); - - return $this->getCSVResponse($activity, 'activity_connection_base'); - } - - $report = $activity->getConnexionBase(false, $request->request->get('on', 'user')); - - return $this->app->json([ - 'rs' => $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($report['report']) ? $report['report'] : $report, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => false, - 'is_plot' => false, - 'is_doc' => false, - ]), - 'display_nav' => false, - 'title' => false, - ]); - } - - /** - * Display download report group by user - * - * @param Request $request - * @return JsonResponse - */ - public function doReportDownloadsByUsers(Request $request) - { - $conf = [ - 'user' => [$this->app->trans('report:: utilisateur'), 0, 1, 0, 0], - 'nbdoc' => [$this->app->trans('report:: nombre de documents'), 0, 0, 0, 0], - 'nbprev' => [$this->app->trans('report:: nombre de preview'), 0, 0, 0, 0], - ]; - - $activity = new \module_report_activity( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - - $activity->setConfig(false); - - //set Limit - if ($activity->getEnableLimit() - && ('' !== $page = $request->request->get('page', '')) - && ('' !== $limit = $request->request->get('limit', ''))) { - $activity->setLimit($page, $limit); - } else { - $activity->setLimit(false, false); - } - - $report = $activity->getDetailDownload($conf, $request->request->get('on')); - - if ($request->request->get('printcsv') == 'on') { - $activity->setHasLimit(false); - - return $this->getCSVResponse($activity, 'activity_detail_download'); - } - - return $this->app->json([ - 'rs' => $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($report['report']) ? $report['report'] : $report, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => false, - 'is_plot' => false, - 'is_doc' => false, - ]), - 'display_nav' => false, - 'title' => false, - ]); - } - - /** - * Display the most asked question - * - * @param Request $request - * @return JsonResponse - */ - public function doReportBestOfQuestions(Request $request) - { - $conf = [ - 'search' => [$this->app->trans('report:: question'), 0, 0, 0, 0], - 'nb' => [$this->app->trans('report:: nombre'), 0, 0, 0, 0], - 'nb_rep' => [$this->app->trans('report:: nombre de reponses'), 0, 0, 0, 0] - ]; - - $activity = new \module_report_activity( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - - $activity->setLimit(1, $request->request->get('limit', 20)); - $activity->setTop(20); - $activity->setConfig(false); - - if ($request->request->get('printcsv') == 'on') { - $activity->setHasLimit(false); - $activity->setPrettyString(false); - - $activity->getTopQuestion($conf); - - return $this->getCSVResponse($activity, 'activity_questions_best_of'); - } - - $report = $activity->getTopQuestion($conf); - - return $this->app->json([ - 'rs' => $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($report['report']) ? $report['report'] : $report, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => false, - 'is_plot' => false, - 'is_doc' => false - ]), - 'display_nav' => false, - 'title' => false - ]); - } - - /** - * Display report about questions that return no result - * - * @param Request $request - * @return JsonResponse - */ - public function doReportNoBestOfQuestions(Request $request) - { - $conf = [ - 'search' => [$this->app->trans('report:: question'), 0, 0, 0, 0], - 'nb' => [$this->app->trans('report:: nombre'), 0, 0, 0, 0], - 'nb_rep' => [$this->app->trans('report:: nombre de reponses'), 0, 0, 0, 0] - ]; - - $activity = new \module_report_activity( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - - //set Limit - if ($activity->getEnableLimit() - && ('' !== $page = $request->request->get('page', '')) - && ('' !== $limit = $request->request->get('limit', ''))) { - $activity->setLimit($page, $limit); - } else { - $activity->setLimit(false, false); - } - - $activity->setConfig(false); - - if ($request->request->get('printcsv') == 'on') { - $activity->setHasLimit(false); - $activity->setPrettyString(false); - - $activity->getTopQuestion($conf, true); - - return $this->getCSVResponse($activity, 'activity_top_ten_questions'); - } - - $report = $activity->getTopQuestion($conf, true); - - return $this->app->json([ - 'rs' => $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($report['report']) ? $report['report'] : $report, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => false, - 'is_plot' => false, - 'is_doc' => false - ]), - 'display_nav' => false, - 'title' => false - ]); - } - - /** - * Display an overview of connexion among hours of the da - * - * @param Request $request - * @return JsonResponse - */ - public function doReportSiteActiviyPerHours(Request $request) - { - $activity = new \module_report_activity( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - - $activity->setConfig(false); - - if ($request->request->get('printcsv') == 'on') { - $activity->setHasLimit(false); - $activity->setPrettyString(false); - - $activity->getActivityPerHours(); - - return $this->getCSVResponse($activity, 'activity_per_hours'); - } - - $report = $activity->getActivityPerHours(); - - return $this->app->json([ - 'rs' => $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($report['report']) ? $report['report'] : $report, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => false, - 'is_plot' => true, - 'is_doc' => false - ]), - 'display_nav' => false, - 'title' => false - ]); - } - - /** - * Display an overview of downloaded document grouped by day - * - * @param Request $request - * @return JsonResponse - */ - public function doReportSiteActivityPerDays(Request $request) - { - $conf = [ - 'ddate' => [$this->app->trans('report:: jour'), 0, 0, 0, 0], - 'total' => [$this->app->trans('report:: total des telechargements'), 0, 0, 0, 0], - 'preview' => [$this->app->trans('report:: preview'), 0, 0, 0, 0], - 'document' => [$this->app->trans('report:: document'), 0, 0, 0, 0] - ]; - - $activity = new \module_report_activity( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - - //set Limit - if ($activity->getEnableLimit() - && ('' !== $page = $request->request->get('page', '')) - && ('' !== $limit = $request->request->get('limit', ''))) { - $activity->setLimit($page, $limit); - } else { - $activity->setLimit(false, false); - } - - $activity->setConfig(false); - - if ($request->request->get('printcsv') == 'on') { - $activity->setHasLimit(false); - $activity->setPrettyString(false); - - $activity->getDownloadByBaseByDay($conf); - - return $this->getCSVResponse($activity, 'activity_db_by_base_by_day'); - } - - $report = $activity->getDownloadByBaseByDay($conf); - - return $this->app->json([ - 'rs' => $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($report['report']) ? $report['report'] : $report, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => false, - 'is_plot' => false, - 'is_doc' => false, - ]), - 'display_nav' => false, - 'title' => false, - ]); - } - - /** - * Display report about pushed documents - * - * @param Request $request - * @return JsonResponse - */ - public function doReportPushedDocuments(Request $request) - { - $conf = [ - 'user' => ['', 1, 0, 1, 1], - 'getter' => ["Destinataire", 1, 0, 1, 1], - 'date' => ['', 1, 0, 1, 1], - 'record_id' => ['', 1, 1, 1, 1], - 'file' => ['', 1, 0, 1, 1], - 'mime' => ['', 1, 0, 1, 1], - ]; - - $activity = new \module_report_push( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - - $activity->setConfig(false); - - if ($request->request->get('printcsv') == 'on') { - $activity->setHasLimit(false); - $activity->setPrettyString(false); - - $this->doReport($request, $activity, $conf); - - return $this->getCSVResponse($activity, 'activity_pushed_documents'); - } - - $report = $this->doReport($request, $activity, $conf); - - if ($report instanceof Response) { - return $report; - } - - return $this->app->json([ - 'rs' => $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($report['report']) ? $report['report'] : $report, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => false, - 'is_plot' => false, - 'is_doc' => false, - ]), - 'display_nav' => $report['display_nav'], // do we display the prev and next button ? - 'next' => $report['next_page'], //Number of the next page - 'prev' => $report['previous_page'], //Number of the previoous page - 'page' => $report['page'], //The current page - 'filter' => ((sizeof($report['filter']) > 0) ? serialize($report['filter']) : ''), //the serialized filters - 'col' => $report['active_column'], //all the columns where a filter is applied - 'limit' => $report['nb_record'], - ]); - } - - /** - * Display report about added documents - * - * @param Request $request - * @return JsonResponse - */ - public function doReportAddedDocuments(Request $request) - { - $conf = [ - 'user' => ['', 1, 0, 1, 1], - 'date' => ['', 1, 0, 1, 1], - 'record_id' => ['', 1, 1, 1, 1], - 'file' => ['', 1, 0, 1, 1], - 'mime' => ['', 1, 0, 1, 1], - ]; - - $activity = new \module_report_add( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - - $activity->setConfig(false); - - if ($request->request->get('printcsv') == 'on') { - $activity->setHasLimit(false); - $activity->setPrettyString(false); - - $this->doReport($request, $activity, $conf); - - return $this->getCSVResponse($activity, 'activity_added_documents'); - } - - $report = $this->doReport($request, $activity, $conf); - - if ($report instanceof Response) { - return $report; - } - - return $this->app->json([ - 'rs' => $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($report['report']) ? $report['report'] : $report, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => false, - 'is_plot' => false, - 'is_doc' => false, - ]), - 'display_nav' => $report['display_nav'], // do we display the prev and next button ? - 'next' => $report['next_page'], //Number of the next page - 'prev' => $report['previous_page'], //Number of the previoous page - 'page' => $report['page'], //The current page - 'filter' => ((sizeof($report['filter']) > 0) ? serialize($report['filter']) : ''), //the serialized filters - 'col' => $report['active_column'], //all the columns where a filter is applied - 'limit' => $report['nb_record'], - ]); - } - - /** - * Display report about edited documents - * - * @param Request $request - * @return JsonResponse - */ - public function doReportEditedDocuments(Request $request) - { - $conf = [ - 'user' => ['', 1, 0, 1, 1], - 'date' => ['', 1, 0, 1, 1], - 'record_id' => ['', 1, 1, 1, 1], - 'file' => ['', 1, 0, 1, 1], - 'mime' => ['', 1, 0, 1, 1], - ]; - - $activity = new \module_report_edit( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - - $activity->setConfig(false); - - if ($request->request->get('printcsv') == 'on') { - $activity->setHasLimit(false); - $activity->setPrettyString(false); - - $this->doReport($request, $activity, $conf); - - return $this->getCSVResponse($activity, 'activity_edited_documents'); - } - - $report = $this->doReport($request, $activity, $conf); - - if ($report instanceof Response) { - return $report; - } - - return $this->app->json([ - 'rs' => $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($report['report']) ? $report['report'] : $report, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => false, - 'is_plot' => false, - 'is_doc' => false, - ]), - 'display_nav' => $report['display_nav'], // do we display the prev and next button ? - 'next' => $report['next_page'], //Number of the next page - 'prev' => $report['previous_page'], //Number of the previoous page - 'page' => $report['page'], //The current page - 'filter' => ((sizeof($report['filter']) > 0) ? serialize($report['filter']) : ''), //the serialized filters - 'col' => $report['active_column'], //all the columns where a filter is applied - 'limit' => $report['nb_record'], - ]); - } - - /** - * Display report about validated documents - * - * @param Request $request - * @return JsonResponse - */ - public function doReportValidatedDocuments(Request $request) - { - $conf = [ - 'user' => ['', 1, 0, 1, 1], - 'getter' => ["Destinataire", 1, 0, 1, 1], - 'date' => ['', 1, 0, 1, 1], - 'record_id' => ['', 1, 1, 1, 1], - 'file' => ['', 1, 0, 1, 1], - 'mime' => ['', 1, 0, 1, 1], - ]; - - $activity = new \module_report_validate( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - - $activity->setConfig(false); - - if ($request->request->get('printcsv') == 'on') { - $activity->setHasLimit(false); - $activity->setPrettyString(false); - - $this->doReport($request, $activity, $conf); - - return $this->getCSVResponse($activity, 'activity_validated_documents'); - } - - $report = $this->doReport($request, $activity, $conf); - - if ($report instanceof Response) { - return $report; - } - - return $this->app->json([ - 'rs' => $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($report['report']) ? $report['report'] : $report, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => false, - 'is_plot' => false, - 'is_doc' => false, - ]), - 'display_nav' => $report['display_nav'], // do we display the prev and next button ? - 'next' => $report['next_page'], //Number of the next page - 'prev' => $report['previous_page'], //Number of the previoous page - 'page' => $report['page'], //The current page - 'filter' => ((sizeof($report['filter']) > 0) ? serialize($report['filter']) : ''), //the serialized filters - 'col' => $report['active_column'], //all the columns where a filter is applied - 'limit' => $report['nb_record'], - ]); - } - - /** - * Display report about documents sent by mail - * - * @param Request $request - * @return JsonResponse - */ - public function doReportSentDocuments(Request $request) - { - $conf = [ - 'user' => ['', 1, 0, 1, 1], - 'date' => ['', 1, 0, 1, 1], - 'record_id' => ['', 1, 1, 1, 1], - 'file' => ['', 1, 0, 1, 1], - 'mime' => ['', 1, 0, 1, 1], - 'comment' => [$this->app->trans('Receiver'), 1, 0, 1, 1], - ]; - - $activity = new \module_report_sent( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - - $activity->setConfig(false); - - if ($request->request->get('printcsv') == 'on') { - $activity->setHasLimit(false); - $activity->setPrettyString(false); - - $this->doReport($request, $activity, $conf); - - return $this->getCSVResponse($activity, 'activity_send_documents'); - } - - $report = $this->doReport($request, $activity, $conf); - - if ($report instanceof Response) { - return $report; - } - - return $this->app->json([ - 'rs' => $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($report['report']) ? $report['report'] : $report, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => false, - 'is_plot' => false, - 'is_doc' => false, - ]), - 'display_nav' => $report['display_nav'], // do we display the prev and next button ? - 'next' => $report['next_page'], //Number of the next page - 'prev' => $report['previous_page'], //Number of the previoous page - 'page' => $report['page'], //The current page - 'filter' => ((sizeof($report['filter']) > 0) ? serialize($report['filter']) : ''), //the serialized filters - 'col' => $report['active_column'], //all the columns where a filter is applied - 'limit' => $report['nb_record'], - ]); - } - - /** - * Set Report configuration according to request parameters - * - * @param Request $request A request instance - * @param \module_report $report A report instance - * @param Array $conf A report column configuration - * @param Boolean $what Whether to group on a particular field or not - * @return Array - */ - private function doReport(Request $request, \module_report $report, $conf, $what = false) - { - if ($this->getConf()->get(['registry', 'modules', 'anonymous-report'])) { - if (isset($conf['user'])) { - unset($conf['user']); - } - - if (isset($conf['ip'])) { - unset($conf['ip']); - } - } - //save initial conf - $base_conf = $conf; - //format conf according user preferences - if ('' !== $columnsList = $request->request->get('list_column', '')) { - $new_conf = $conf; - $columns = explode(",", $columnsList); - - foreach (array_keys($conf) as $col) { - if (!in_array($col, $columns)) { - unset($new_conf[$col]); - } - } - - $conf = $new_conf; - } - - //display content of a table column when user click on it - if ($request->request->get('conf') == 'on') { - return $this->app->json(['liste' => $this->render('report/listColumn.html.twig', [ - 'conf' => $base_conf - ]), "title" => $this->app->trans("configuration")]); - } - - //set order - if (('' !== $order = $request->request->get('order', '')) && ('' !== $field = $request->request->get('champ', ''))) { - $report->setOrder($field, $order); - } - - //work on filters - $mapColumnTitleToSqlField = $report->getTransQueryString(); - - $currentfilter = []; - - if ('' !== $serializedFilter = $request->request->get('liste_filter', '')) { - $currentfilter = @unserialize(urldecode($serializedFilter)); - } - - $filter = new \module_report_filter($this->app, $currentfilter, $mapColumnTitleToSqlField); - - if ('' !== $filterColumn = $request->request->get('filter_column', '')) { - $field = current(explode(' ', $filterColumn)); - $value = $request->request->get('filter_value', ''); - - if ($request->request->get('liste') == 'on') { - return $this->app->json(['diag' => $this->render('report/colFilter.html.twig', [ - 'result' => $report->colFilter($field), - 'field' => $field - ]), "title" => $this->app->trans('filtrer les resultats sur la colonne %colonne%', ['%colonne%' => $field])]); - } - - if ($field === $value) { - $filter->removeFilter($field); - } else { - $filter->addFilter($field, '=', $value); - } - } - - //set new request filter if user asking for them - if ($request->request->get('precise') == 1) { - $filter->addFilter('xml', 'LIKE', $request->request->get('word', '')); - } elseif ($request->request->get('precise') == 2) { - $filter->addFilter('record_id', '=', $request->request->get('word', '')); - } - - //set filters to current report - $report->setFilter($filter->getTabFilter()); - $report->setActiveColumn($filter->getActiveColumn()); - $report->setPostingFilter($filter->getPostingFilter()); - - // display a new arraywhere results are group - if ('' !== $groupby = $request->request->get('groupby', '')) { - $report->setConfig(false); - $groupby = current(explode(' ', $groupby)); - - $reportArray = $report->buildReport(false, $groupby); - - if (count($reportArray['allChamps']) > 0 && count($reportArray['display']) > 0) { - $groupField = isset($reportArray['display'][$reportArray['allChamps'][0]]['title']) ? $reportArray['display'][$reportArray['allChamps'][0]]['title'] : ''; - } else { - $groupField = isset($conf[strtolower($groupby)]['title']) ? $conf[strtolower($groupby)]['title'] : ''; - } - - return $this->app->json([ - 'rs' => $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($reportArray['report']) ? $reportArray['report'] : $reportArray, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => true, - 'is_plot' => false, - 'is_doc' => false, - ]), - 'display_nav' => false, - 'title' => $this->app->trans('Groupement des resultats sur le champ %name%', ['%name%' => $groupField]), - ]); - } - - //set Limit - if ($report->getEnableLimit() - && ('' !== $page = $request->request->get('page', '')) - && ('' !== $limit = $request->request->get('limit', ''))) { - $report->setLimit($page, $limit); - } else { - $report->setLimit(false, false); - } - - //time to build our report - if (false === $what) { - $reportArray = $report->buildReport($conf); - } else { - $reportArray = $report->buildReport($conf, $what, $request->request->get('tbl', false)); - } - - return $reportArray; - } - - private function getCSVResponse(\module_report $report, $type) - { - // set headers - $headers = []; - foreach (array_keys($report->getDisplay()) as $k) { - $headers[$k] = $k; - } - // set headers as first row - $result = $report->getResult(); - array_unshift($result, $headers); - - $collection = new CallbackCollection($result, function ($row) use ($report) { - // restrict to displayed fields - return array_map('strip_tags', array_intersect_key($row, $report->getDisplay())); - }); - - $filename = sprintf('report_export_%s_%s.csv', $type, date('Ymd')); - /** @var Exporter $exporter */ - $exporter = $this->app['csv.exporter']; - $response = new CSVFileResponse($filename, function () use ($exporter, $collection) { - $exporter->export('php://output', $collection); - }); - - return $response; - } -} diff --git a/lib/Alchemy/Phrasea/Controller/Report/InformationController.php b/lib/Alchemy/Phrasea/Controller/Report/InformationController.php deleted file mode 100644 index 6868292743..0000000000 --- a/lib/Alchemy/Phrasea/Controller/Report/InformationController.php +++ /dev/null @@ -1,502 +0,0 @@ - [ - 'photo' => [$this->app->trans('report:: document'), 0, 0, 0, 0], - 'record_id' => [$this->app->trans('report:: record id'), 0, 0, 0, 0], - 'date' => [$this->app->trans('report:: date'), 0, 0, 0, 0], - 'type' => [$this->app->trans('phrseanet:: sous definition'), 0, 0, 0, 0], - 'titre' => [$this->app->trans('report:: titre'), 0, 0, 0, 0], - 'taille' => [$this->app->trans('report:: poids'), 0, 0, 0, 0] - ], - 'conf' => [ - 'identifiant' => [$this->app->trans('report:: identifiant'), 0, 0, 0, 0], - 'nom' => [$this->app->trans('report:: nom'), 0, 0, 0, 0], - 'mail' => [$this->app->trans('report:: email'), 0, 0, 0, 0], - 'adresse' => [$this->app->trans('report:: adresse'), 0, 0, 0, 0], - 'tel' => [$this->app->trans('report:: telephone'), 0, 0, 0, 0] - ], - 'config_cnx' => [ - 'ddate' => [$this->app->trans('report:: date'), 0, 0, 0, 0], - 'appli' => [$this->app->trans('report:: modules'), 0, 0, 0, 0], - ], - 'config_dl' => [ - 'ddate' => [$this->app->trans('report:: date'), 0, 0, 0, 0], - 'record_id' => [$this->app->trans('report:: record id'), 0, 1, 0, 0], - 'final' => [$this->app->trans('phrseanet:: sous definition'), 0, 0, 0, 0], - 'coll_id' => [$this->app->trans('report:: collections'), 0, 0, 0, 0], - 'comment' => [$this->app->trans('report:: commentaire'), 0, 0, 0, 0], - ], - 'config_ask' => [ - 'search' => [$this->app->trans('report:: question'), 0, 0, 0, 0], - 'ddate' => [$this->app->trans('report:: date'), 0, 0, 0, 0] - ] - ]; - - $report = null; - $html = $html_info = ''; - $from = $request->request->get('from', ''); - $on = $request->request->get('on', ''); - $selectValue = $request->request->get('user', ''); - - if ('' === $selectValue) { - $this->app->abort(400); - } - - if ('' !== $on && $this->getConf()->get(['registry', 'modules', 'anonymous-report']) == true) { - $conf['conf'] = [ - $on => [$on, 0, 0, 0, 0], - 'nb' => [$this->app->trans('report:: nombre'), 0, 0, 0, 0] - ]; - } - - if ($from == 'CNXU' || $from == 'CNX') { - $report = new \module_report_connexion( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - $conf_array = $conf['config_cnx']; - $title = $this->app->trans('report:: historique des connexions'); - } elseif ($from == 'USR' || $from == 'GEN') { - $report = new \module_report_download( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - $conf_array = $conf['config_dl']; - $title = $this->app->trans('report:: historique des telechargements'); - } elseif ($from == 'ASK') { - $report = new \module_report_question( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - $conf_array = $conf['config_ask']; - $title = $this->app->trans('report:: historique des questions'); - } - - if ($report) { - $mapColumnTitleToSqlField = $report->getTransQueryString(); - - $currentfilter = []; - - if ('' !== $serializedFilter = $request->request->get('liste_filter', '')) { - $currentfilter = @unserialize(urldecode($serializedFilter)); - } - - $filter = new \module_report_filter($this->app, $currentfilter, $mapColumnTitleToSqlField); - - if ('' !== $filterColumn = $request->request->get('filter_column', '')) { - $field = current(explode(' ', $filterColumn)); - $value = $request->request->get('filter_value', ''); - - if ($request->request->get('liste') == 'on') { - return $this->app->json([ - 'diag' => $this->render('report/colFilter.html.twig', [ - 'result' => $report->colFilter($field), - 'field' => $field - ]), - 'title' => $this->app->trans('filtrer les resultats sur la colonne %colonne%', ['%colonne%' => $field])]); - } - - if ($field === $value) { - $filter->removeFilter($field); - } else { - $filter->addFilter($field, '=', $value); - } - } - - if ('' !== $selectValue && '' !== $from) { - $filter->addfilter('usrid', '=', $selectValue); - } elseif ('' !== $on && '' !== $selectValue) { - $filter->addfilter($on, '=', $selectValue); - } - - if ($report instanceof \module_report_download) { - $report->setIsInformative(true); - } - - $report->setFilter($filter->getTabFilter()); - $report->setOrder('ddate', 'DESC'); - $report->setConfig(false); - $report->setTitle($title); - $report->setHasLimit(false); - - $reportArray = $report->buildReport($conf_array); - - if ($request->request->get('printcsv') == 'on') { - $report->setPrettyString(false); - - return $this->getCSVResponse($report, 'info_user'); - } - - $html = $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($reportArray['report']) ? $reportArray['report'] : $reportArray, - 'is_infouser' => $report instanceof \module_report_download, - 'is_nav' => false, - 'is_groupby' => false, - 'is_plot' => false, - 'is_doc' => false - ]); - } - - $info = new \module_report_nav( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - - $info->setPeriode(''); - $info->setCsv(false); - - $infoArray = $info->buildTabGrpInfo( - null !== $report ? $report->getReq() : '', - null !== $report ? $report->getParams() : [], - $selectValue, - $conf['conf'], - $on - ); - - if (false == $this->app['conf']->get(['registry', 'modules', 'anonymous-report'])) { - $html_info = $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($infoArray['report']) ? $infoArray['report'] : $infoArray, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => false, - 'is_plot' => false, - 'is_doc' => false - ]); - - $title = ('' === $on && isset($infoArray['result'])) ? $infoArray['result'][0]['identifiant'] : $selectValue; - } else { - $title = $selectValue; - } - - return $this->app->json([ - 'rs' => sprintf('%s%s', $html_info, $html), - 'display_nav' => false, - 'title' => $title - ]); - } - - /** - * Display a browser version - * - * @param Request $request - * @return JsonResponse - */ - public function doReportInformationBrowser(Request $request) - { - $conf = [ - 'version' => [$this->app->trans('report::version'), 0, 0, 0, 0], - 'nb' => [$this->app->trans('report:: nombre'), 0, 0, 0, 0] - ]; - - $info = new \module_report_nav( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - - $info->setCsv(false); - $info->setConfig(false); - - if ('' === $browser = $request->request->get('user', '')) { - $this->app->abort(400); - } - - $reportArray = $info->buildTabInfoNav($conf, $browser); - - return $this->app->json([ - 'rs' => $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($reportArray['report']) ? $reportArray['report'] : $reportArray, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => false, - 'is_plot' => false, - 'is_doc' => false - ]), - 'display_nav' => false, - 'title' => $browser - ]); - } - - /** - * Display information about a document - * - * @param Request $request - * @return JsonResponse - */ - public function doReportInformationDocument(Request $request) - { - $config = [ - 'photo' => [$this->app->trans('report:: document'), 0, 0, 0, 0], - 'record_id' => [$this->app->trans('report:: record id'), 0, 0, 0, 0], - 'date' => [$this->app->trans('report:: date'), 0, 0, 0, 0], - 'type' => [$this->app->trans('phrseanet:: sous definition'), 0, 0, 0, 0], - 'titre' => [$this->app->trans('report:: titre'), 0, 0, 0, 0], - 'taille' => [$this->app->trans('report:: poids'), 0, 0, 0, 0] - ]; - - $config_dl = [ - 'ddate' => [$this->app->trans('report:: date'), 0, 0, 0, 0], - 'user' => [$this->app->trans('report:: utilisateurs'), 0, 0, 0, 0], - 'final' => [$this->app->trans('phrseanet:: sous definition'), 0, 0, 0, 0], - 'coll_id' => [$this->app->trans('report:: collections'), 0, 0, 0, 0], - 'comment' => [$this->app->trans('report:: commentaire'), 0, 0, 0, 0], - 'fonction' => [$this->app->trans('report:: fonction'), 0, 0, 0, 0], - 'activite' => [$this->app->trans('report:: activite'), 0, 0, 0, 0], - 'pays' => [$this->app->trans('report:: pays'), 0, 0, 0, 0], - 'societe' => [$this->app->trans('report:: societe'), 0, 0, 0, 0] - ]; - - //format conf according user preferences - if ('' !== $columnsList = $request->request->get('list_column', '')) { - $new_conf = $config_dl; - $columns = explode(',', $columnsList); - - foreach (array_keys($config_dl) as $col) { - if (!in_array($col, $columns)) { - unset($new_conf[$col]); - } - } - - $config_dl = $new_conf; - } - - try { - $record = new \record_adapter( - $this->app, - $request->request->get('sbasid'), - $request->request->get('rid') - ); - } catch (\Exception $e) { - $this->app->abort(404); - } - - $what = new \module_report_nav( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - - $what->setPeriode(''); - $what->setCsv(false); - $what->setPrint(false); - - /** @var \record_adapter $record */ - $reportArray = $what->buildTabUserWhat( - $record->getBaseId(), - $record->getRecordId(), - $config - ); - - $title = $what->getTitle(); - - $html = $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($reportArray['report']) ? $reportArray['report'] : $reportArray, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => false, - 'is_plot' => false, - 'is_doc' => false - ]); - - $from = $request->request->get('from', ''); - - if ('TOOL' === $from) { - $what->setTitle(''); - - return $this->app->json([ - 'rs' => $html, - 'display_nav' => false, - 'title' => $title - ]); - } - - if ('DASH' !== $from && 'PUSHDOC' !== $from) { - $download = new \module_report_download( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - - $mapColumnTitleToSqlField = $download->getTransQueryString(); - - $currentfilter = []; - - if ('' !== $serializedFilter = $request->request->get('liste_filter', '')) { - $currentfilter = @unserialize(urldecode($serializedFilter)); - } - - $filter = new \module_report_filter($this->app, $currentfilter, $mapColumnTitleToSqlField); - - if ('' !== $filterColumn = $request->request->get('filter_column', '')) { - $field = current(explode(' ', $filterColumn)); - $value = $request->request->get('filter_value', ''); - - if ($request->request->get('liste') == 'on') { - return $this->app->json([ - 'diag' => $this->render('report/colFilter.html.twig', [ - 'result' => $download->colFilter($field), - 'field' => $field - ]), - 'title' => $this->app->trans('filtrer les resultats sur la colonne %colonne%', ['%colonne%' => $field]) - ]); - } - - if ($field === $value) { - $filter->removeFilter($field); - } else { - $filter->addFilter($field, '=', $value); - } - } - - $filter->addfilter('record_id', '=', $record->getRecordId()); - - $download->setFilter($filter->getTabFilter()); - $download->setOrder('ddate', 'DESC'); - $download->setTitle($this->app->trans('report:: historique des telechargements')); - $download->setConfig(false); - - $reportArray = $download->buildReport($config_dl); - - if ($request->request->get('printcsv') == 'on') { - $download->setPrettyString(false); - - return $this->getCSVResponse($download, 'info_document'); - } - - $html .= $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($reportArray['report']) ? $reportArray['report'] : $reportArray, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => false, - 'is_plot' => false, - 'is_doc' => false - ]); - - return $this->app->json([ - 'rs' => $html, - 'display_nav' => false, - 'title' => $title - ]); - } - - if ($this->getConf()->get(['registry', 'modules', 'anonymous-report']) == false && $from !== 'DOC' && $from !== 'DASH' && $from !== 'GEN' && $from !== 'PUSHDOC') { - $conf = [ - 'identifiant' => [$this->app->trans('report:: identifiant'), 0, 0, 0, 0], - 'nom' => [$this->app->trans('report:: nom'), 0, 0, 0, 0], - 'mail' => [$this->app->trans('report:: email'), 0, 0, 0, 0], - 'adresse' => [$this->app->trans('report:: adresse'), 0, 0, 0, 0], - 'tel' => [$this->app->trans('report:: telephone'), 0, 0, 0, 0] - ]; - - $info = new \module_report_nav( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - - $info->setPeriode(''); - $info->setConfig(false); - $info->setTitle($this->app->trans('report:: utilisateur')); - - $reportArray = $info->buildTabGrpInfo(false, [], $request->request->get('user'), $conf, false); - - if ($request->request->get('printcsv') == 'on' && isset($download)) { - return $this->getCSVResponse($this->app, $info, 'info_user'); - } - - $html .= $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($reportArray['report']) ? $reportArray['report'] : $reportArray, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => false, - 'is_plot' => false, - 'is_doc' => false - ]); - - return $this->app->json([ - 'rs' => $html, - 'display_nav' => false, - 'title' => $title - ]); - } - - return $this->app->json([ - 'rs' => $html, - 'display_nav' => false, - 'title' => $title - ]); - } - - private function getCSVResponse(\module_report $report, $type) - { - // set headers - $headers = []; - foreach (array_keys($report->getDisplay()) as $k) { - $headers[$k] = $k; - } - // set headers as first row - $result = $report->getResult(); - array_unshift($result, $headers); - - $collection = new CallbackCollection($result, function ($row) use ($report) { - // restrict fields to the displayed ones - return array_map('strip_tags', array_intersect_key($row, $report->getDisplay())); - }); - - /** @var Exporter $exporter */ - $exporter = $this->app['csv.exporter']; - $filename = sprintf('report_export_%s_%s.csv', $type, date('Ymd')); - $response = new CSVFileResponse($filename, function () use ($exporter, $collection) { - $exporter->export('php://output', $collection); - }); - - return $response; - } -} diff --git a/lib/Alchemy/Phrasea/Controller/Report/RootController.php b/lib/Alchemy/Phrasea/Controller/Report/RootController.php index 8bb9006402..f212a2fd75 100644 --- a/lib/Alchemy/Phrasea/Controller/Report/RootController.php +++ b/lib/Alchemy/Phrasea/Controller/Report/RootController.php @@ -10,12 +10,8 @@ namespace Alchemy\Phrasea\Controller\Report; use Alchemy\Phrasea\Controller\Controller; -use Alchemy\Phrasea\Core\Response\CSVFileResponse; -use Goodby\CSV\Export\Standard\Collection\CallbackCollection; -use Goodby\CSV\Export\Standard\Exporter; use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpFoundation\Request; -use Symfony\Component\HttpFoundation\Response; class RootController extends Controller { @@ -53,22 +49,34 @@ class RootController extends Controller $granted = []; - foreach ($this->getAclForUser()->get_granted_base([\ACL::CANREPORT]) as $collection) { - if (!isset($granted[$collection->get_sbas_id()])) { - $granted[$collection->get_sbas_id()] = [ - 'id' => $collection->get_sbas_id(), - 'name' => $collection->get_databox()->get_viewname(), - 'collections' => [] + $acl = $this->getAclForUser(); + foreach ($acl->get_granted_base([\ACL::CANREPORT]) as $collection) { + $sbas_id = $collection->get_sbas_id(); + if (!isset($granted[$sbas_id])) { + $granted[$sbas_id] = [ + 'id' => $sbas_id, + 'name' => $collection->get_databox()->get_viewname(), + 'collections' => [], + 'metas' => [] ]; + + foreach ($collection->get_databox()->get_meta_structure() as $meta) { + // skip the fields that can't be reported + if (!$meta->is_report() || ($meta->isBusiness() && !$acl->can_see_business_fields($collection->get_databox()))) { + continue; + } + $granted[$sbas_id]['metas'][] = $meta->get_name(); + } } - $granted[$collection->get_sbas_id()]['collections'][] = [ - 'id' => $collection->get_coll_id(), + $granted[$sbas_id]['collections'][] = [ + 'id' => $collection->get_coll_id(), 'base_id' => $collection->get_base_id(), - 'name' => $collection->get_name() + 'name' => $collection->get_name(), ]; } $conf = $this->getConf(); + return $this->render('report/report_layout_child.html.twig', [ 'ajax_dash' => true, 'dashboard' => null, @@ -82,594 +90,4 @@ class RootController extends Controller 'ajax_chart' => false ]); } - - /** - * Gets available collections where current user can see report and - * format date - * - * @param Request $request - * @return JsonResponse - */ - public function initReport(Request $request) - { - $popbases = $request->request->get('popbases', []); - - if ('' === $dmin = $request->request->get('dmin', '')) { - $dmin = date('Y') . '-' . date('m') . '-01'; - } - - if ('' === $dmax = $request->request->get('dmax', '')) { - $dmax = date('Y') . '-' . date('m') . '-' . date('d'); - } - - $dmin = \DateTime::createFromFormat('Y-m-d H:i:s', sprintf('%s 00:00:00', $dmin)); - $dmax = \DateTime::createFromFormat('Y-m-d H:i:s', sprintf('%s 23:59:59', $dmax)); - - //get user's sbas & collections selection from popbases - $selection = []; - $liste = $id_sbas = ''; - $i = 0; - foreach (array_fill_keys($popbases, 0) as $key => $val) { - $exp = explode('_', $key); - if ($exp[0] != $id_sbas && $i != 0) { - $selection[$id_sbas]['liste'] = $liste; - $liste = ''; - } - $selection[$exp[0]][] = $exp[1]; - $liste .= (empty($liste) ? '' : ',') . $exp[1]; - $id_sbas = $exp[0]; - $i ++; - } - //fill the last entry - $selection[$id_sbas]['liste'] = $liste; - - return $this->render('report/ajax_report_content.html.twig', [ - 'selection' => $selection, - 'anonymous' => $this->getConf()->get(['registry', 'modules', 'anonymous-report']), - 'ajax' => true, - 'dmin' => $dmin->format('Y-m-d H:i:s'), - 'dmax' => $dmax->format('Y-m-d H:i:s'), - ]); - } - - /** - * Display instance connexion report - * - * @param Request $request - * @return JsonResponse - */ - public function doReportConnexions(Request $request) - { - $cnx = new \module_report_connexion( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - - $conf = [ - 'user' => [$this->app->trans('phraseanet::utilisateurs'), 1, 1, 1, 1], - 'ddate' => [$this->app->trans('report:: date'), 1, 0, 1, 1], - 'ip' => [$this->app->trans('report:: IP'), 1, 0, 0, 0], - 'appli' => [$this->app->trans('report:: modules'), 1, 0, 0, 0], - 'fonction' => [$this->app->trans('report::fonction'), 1, 1, 1, 1], - 'activite' => [$this->app->trans('report::activite'), 1, 1, 1, 1], - 'pays' => [$this->app->trans('report::pays'), 1, 1, 1, 1], - 'societe' => [$this->app->trans('report::societe'), 1, 1, 1, 1] - ]; - - if ($request->request->get('printcsv') == 'on') { - $cnx->setHasLimit(false); - $cnx->setPrettyString(false); - - $this->doReport($request, $cnx, $conf); - - return $this->getCSVResponse($cnx, 'connections'); - } - - $report = $this->doReport($request, $cnx, $conf); - - if ($report instanceof Response) { - return $report; - } - - return $this->app->json([ - 'rs' => $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($report['report']) ? $report['report'] : $report, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => false, - 'is_plot' => false, - 'is_doc' => false - ]), - 'display_nav' => $report['display_nav'], // do we display the prev and next button ? - 'next' => $report['next_page'], //Number of the next page - 'prev' => $report['previous_page'], //Number of the previoous page - 'page' => $report['page'], //The current page - 'filter' => ((sizeof($report['filter']) > 0) ? serialize($report['filter']) : ''), //the serialized filters - 'col' => $report['active_column'], //all the columns where a filter is applied - 'limit' => $report['nb_record'] - ]); - } - - /** - * Display instance questions report - * - * @param Request $request - * @return JsonResponse - */ - public function doReportQuestions(Request $request) - { - $questions = new \module_report_question( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - - $conf = [ - 'user' => [$this->app->trans('report:: utilisateur'), 1, 1, 1, 1], - 'search' => [$this->app->trans('report:: question'), 1, 0, 1, 1], - 'ddate' => [$this->app->trans('report:: date'), 1, 0, 1, 1], - 'fonction' => [$this->app->trans('report:: fonction'), 1, 1, 1, 1], - 'activite' => [$this->app->trans('report:: activite'), 1, 1, 1, 1], - 'pays' => [$this->app->trans('report:: pays'), 1, 1, 1, 1], - 'societe' => [$this->app->trans('report:: societe'), 1, 1, 1, 1] - ]; - - if ($request->request->get('printcsv') == 'on') { - $questions->setHasLimit(false); - $questions->setPrettyString(false); - - $this->doReport($request, $questions, $conf); - - return $this->getCSVResponse($questions, 'questions'); - } - - $report = $this->doReport($request, $questions, $conf); - - if ($report instanceof Response) { - return $report; - } - - return $this->app->json([ - 'rs' => $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($report['report']) ? $report['report'] : $report, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => false, - 'is_plot' => false, - 'is_doc' => false - ]), - 'display_nav' => $report['display_nav'], // do we display the prev and next button ? - 'next' => $report['next_page'], //Number of the next page - 'prev' => $report['previous_page'], //Number of the previoous page - 'page' => $report['page'], //The current page - 'filter' => ((sizeof($report['filter']) > 0) ? serialize($report['filter']) : ''), //the serialized filters - 'col' => $report['active_column'], //all the columns where a filter is applied - 'limit' => $report['nb_record'] - ]); - } - - /** - * Display instance download report - * - * @param Request $request - * @return JsonResponse - */ - public function doReportDownloads(Request $request) - { - $download = new \module_report_download( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - - $conf_pref = []; - - foreach (\module_report::getPreff($this->app, $request->request->get('sbasid')) as $field) { - $conf_pref[strtolower($field)] = [$field, 0, 0, 0, 0]; - } - - $conf = array_merge([ - 'user' => [$this->app->trans('report:: utilisateurs'), 1, 1, 1, 1], - 'ddate' => [$this->app->trans('report:: date'), 1, 0, 1, 1], - 'record_id' => [$this->app->trans('report:: record id'), 1, 1, 1, 1], - 'final' => [$this->app->trans('phrseanet:: sous definition'), 1, 0, 1, 1], - 'coll_id' => [$this->app->trans('report:: collections'), 1, 0, 1, 1], - 'comment' => [$this->app->trans('report:: commentaire'), 1, 0, 0, 0], - 'fonction' => [$this->app->trans('report:: fonction'), 1, 1, 1, 1], - 'activite' => [$this->app->trans('report:: activite'), 1, 1, 1, 1], - 'pays' => [$this->app->trans('report:: pays'), 1, 1, 1, 1], - 'societe' => [$this->app->trans('report:: societe'), 1, 1, 1, 1] - ], $conf_pref); - - if ($request->request->get('printcsv') == 'on') { - $download->setHasLimit(false); - $download->setPrettyString(false); - - $this->doReport($request, $download, $conf); - - $r = $this->getCSVResponse($download, 'download'); - - return $r; - } - - $report = $this->doReport($request, $download, $conf); - - if ($report instanceof Response) { - return $report; - } - - return $this->app->json([ - 'rs' => $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($report['report']) ? $report['report'] : $report, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => false, - 'is_plot' => false, - 'is_doc' => false - ]), - 'display_nav' => $report['display_nav'], // do we display the prev and next button ? - 'next' => $report['next_page'], //Number of the next page - 'prev' => $report['previous_page'], //Number of the previoous page - 'page' => $report['page'], //The current page - 'filter' => ((sizeof($report['filter']) > 0) ? serialize($report['filter']) : ''), //the serialized filters - 'col' => $report['active_column'], //all the columns where a filter is applied - 'limit' => $report['nb_record'] - ]); - } - - /** - * Display instance document report - * - * @param Request $request - * @return JsonResponse - */ - public function doReportDocuments(Request $request) - { - $document = new \module_report_download( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - - $conf_pref = []; - - foreach (\module_report::getPreff($this->app, $request->request->get('sbasid')) as $field) { - $conf_pref[$field] = array($field, 0, 0, 0, 0); - } - - $conf = array_merge([ - 'telechargement' => [$this->app->trans('report:: telechargements'), 1, 0, 0, 0], - 'record_id' => [$this->app->trans('report:: record id'), 1, 1, 1, 0], - 'final' => [$this->app->trans('phraseanet:: sous definition'), 1, 0, 1, 1], - 'file' => [$this->app->trans('report:: fichier'), 1, 0, 0, 1], - 'mime' => [$this->app->trans('report:: type'), 1, 0, 1, 1], - 'size' => [$this->app->trans('report:: taille'), 1, 0, 1, 1] - ], $conf_pref); - - if ($request->request->get('printcsv') == 'on') { - $document->setHasLimit(false); - $document->setPrettyString(false); - - $this->doReport($request, $document, $conf, 'record_id'); - - $r = $this->getCSVResponse($document, 'documents'); - - return $r; - } - - $report = $this->doReport($request, $document, $conf, 'record_id'); - - if ($report instanceof Response) { - return $report; - } - - return $this->app->json([ - 'rs' => $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($report['report']) ? $report['report'] : $report, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => false, - 'is_plot' => false, - 'is_doc' => true - ]), - 'display_nav' => $report['display_nav'], // do we display the prev and next button ? - 'next' => $report['next_page'], //Number of the next page - 'prev' => $report['previous_page'], //Number of the previoous page - 'page' => $report['page'], //The current page - 'filter' => ((sizeof($report['filter']) > 0) ? serialize($report['filter']) : ''), //the serialized filters - 'col' => $report['active_column'], //all the columns where a filter is applied - 'limit' => $report['nb_record'] - ]); - } - - /** - * Display information about client (browser, resolution etc ...) - * - * @param Request $request - * @return JsonResponse - */ - public function doReportClients(Request $request) - { - $nav = new \module_report_nav( - $this->app, - $request->request->get('dmin'), - $request->request->get('dmax'), - $request->request->get('sbasid'), - $request->request->get('collection') - ); - - $conf_nav = [ - 'nav' => [$this->app->trans('report:: navigateur'), 0, 1, 0, 0], - 'nb' => [$this->app->trans('report:: nombre'), 0, 0, 0, 0], - 'pourcent' => [$this->app->trans('report:: pourcentage'), 0, 0, 0, 0] - ]; - - $conf_combo = [ - 'combo' => [$this->app->trans('report:: navigateurs et plateforme'), 0, 0, 0, 0], - 'nb' => [$this->app->trans('report:: nombre'), 0, 0, 0, 0], - 'pourcent' => [$this->app->trans('report:: pourcentage'), 0, 0, 0, 0] - ]; - $conf_os = [ - 'os' => [$this->app->trans('report:: plateforme'), 0, 0, 0, 0], - 'nb' => [$this->app->trans('report:: nombre'), 0, 0, 0, 0], - 'pourcent' => [$this->app->trans('report:: pourcentage'), 0, 0, 0, 0] - ]; - $conf_res = [ - 'res' => [$this->app->trans('report:: resolution'), 0, 0, 0, 0], - 'nb' => [$this->app->trans('report:: nombre'), 0, 0, 0, 0], - 'pourcent' => [$this->app->trans('report:: pourcentage'), 0, 0, 0, 0] - ]; - $conf_mod = [ - 'appli' => [$this->app->trans('report:: module'), 0, 0, 0, 0], - 'nb' => [$this->app->trans('report:: nombre'), 0, 0, 0, 0], - 'pourcent' => [$this->app->trans('report:: pourcentage'), 0, 0, 0, 0] - ]; - - $report = [ - 'nav' => $nav->buildTabNav($conf_nav), - 'os' => $nav->buildTabOs($conf_os), - 'res' => $nav->buildTabRes($conf_res), - 'mod' => $nav->buildTabModule($conf_mod), - 'combo' => $nav->buildTabCombo($conf_combo) - ]; - - if ($request->request->get('printcsv') == 'on') { - $result = []; - - $result[] = array_keys($conf_nav); - foreach ($report['nav']['result'] as $row) { - $result[] = array_values($row); - }; - $result[] = array_keys($conf_os); - foreach ($report['os']['result'] as $row) { - $result[] = array_values($row); - }; - $result[] = array_keys($conf_res); - foreach ($report['res']['result'] as $row) { - $result[] = array_values($row); - }; - $result[] = array_keys($conf_mod); - foreach ($report['mod']['result'] as $row) { - $result[] = array_values($row); - }; - $result[] = array_keys($conf_combo); - foreach ($report['combo']['result'] as $row) { - $result[] = array_values($row); - }; - - /** @var Exporter $exporter */ - $exporter = $this->app['csv.exporter']; - $filename = sprintf('report_export_info_%s.csv', date('Ymd')); - $response = new CSVFileResponse($filename, function () use ($exporter, $result) { - $exporter->export('php://output', $result); - }); - - return $response; - } - - return $this->app->json([ - 'rs' => $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($report['report']) ? $report['report'] : $report, - 'is_infouser' => false, - 'is_nav' => true, - 'is_groupby' => false, - 'is_plot' => false, - 'is_doc' => false - ]), - 'display_nav' => false, - 'title' => false - ]); - } - - /** - * Set Report configuration according to request parameters - * - * @param Request $request A request instance - * @param \module_report $report A report instance - * @param Array $conf A report column configuration - * @param Boolean $what Whether to group on a particular field or not - * @return Array - */ - private function doReport(Request $request, \module_report $report, $conf, $what = false) - { - if ($this->getConf()->get(['registry', 'modules', 'anonymous-report']) == true) { - if (isset($conf['user'])) { - unset($conf['user']); - } - - if (isset($conf['ip'])) { - unset($conf['ip']); - } - } - - //save initial conf - $base_conf = $conf; - //format conf according user preferences - if ('' !== $columnsList = $request->request->get('list_column', '')) { - $new_conf = $conf; - $columns = explode(',', $columnsList); - - foreach (array_keys($conf) as $col) { - if (!in_array($col, $columns)) { - unset($new_conf[$col]); - } - } - - $conf = $new_conf; - } - - //display content of a table column when user click on it - if ($request->request->get('conf') == 'on') { - return $this->app->json(['liste' => $this->render('report/listColumn.html.twig', [ - 'conf' => $base_conf - ]), 'title' => $this->app->trans('configuration')]); - } - - //set order - if (('' !== $order = $request->request->get('order', '')) && ('' !== $field = $request->request->get('champ', ''))) { - $report->setOrder($field, $order); - } - - //work on filters - $mapColumnTitleToSqlField = $report->getTransQueryString(); - - $currentfilter = []; - - if ('' !== $serializedFilter = $request->request->get('liste_filter', '')) { - $currentfilter = @unserialize(urldecode($serializedFilter)); - } - - $filter = new \module_report_filter($this->app, $currentfilter, $mapColumnTitleToSqlField); - - if ('' !== $filterColumn = $request->request->get('filter_column', '')) { - $field = current(explode(' ', $filterColumn)); - $value = $request->request->get('filter_value', ''); - - if ($request->request->get('liste') == 'on') { - return $this->app->json(['diag' => $this->render('report/colFilter.html.twig', [ - 'result' => $report->colFilter($field), - 'field' => $field - ]), 'title' => $this->app->trans('filtrer les resultats sur la colonne %colonne%', ['%colonne%' => $field])]); - } - - if ($field === $value) { - $filter->removeFilter($field); - } else { - $filter->addFilter($field, '=', $value); - } - } - - //set new request filter if user asking for them - if ($request->request->get('precise') == 1) { - $filter->addFilter('xml', 'LIKE', $request->request->get('word', '')); - } elseif ($request->request->get('precise') == 2) { - $filter->addFilter('record_id', '=', $request->request->get('word', '')); - } - - //set filters to current report - $report->setFilter($filter->getTabFilter()); - $report->setActiveColumn($filter->getActiveColumn()); - $report->setPostingFilter($filter->getPostingFilter()); - - // display a new arraywhere results are group - if ('' !== $groupby = $request->request->get('groupby', '')) { - - $report->setConfig(false); - $groupby = current(explode(' ', $groupby)); - - $reportArray = $report->buildReport(false, $groupby); - - if (count($reportArray['allChamps']) > 0 && count($reportArray['display']) > 0) { - $groupField = isset($reportArray['display'][$reportArray['allChamps'][0]]['title']) ? $reportArray['display'][$reportArray['allChamps'][0]]['title'] : ''; - } else { - $groupField = isset($conf[strtolower($groupby)]['title']) ? $conf[strtolower($groupby)]['title'] : ''; - } - - return $this->app->json([ - 'rs' => $this->render('report/ajax_data_content.html.twig', [ - 'result' => isset($reportArray['report']) ? $reportArray['report'] : $reportArray, - 'is_infouser' => false, - 'is_nav' => false, - 'is_groupby' => true, - 'is_plot' => false, - 'is_doc' => false - ]), - 'display_nav' => false, - 'title' => $this->app->trans('Groupement des resultats sur le champ %name%', ['%name%' => $groupField]) - ]); - } - - //set Limit - if ($report->getEnableLimit() - && ('' !== $page = $request->request->get('page', '')) - && ('' !== $limit = $request->request->get('limit', ''))) { - $report->setLimit($page, $limit); - } else { - $report->setLimit(false, false); - } - - //time to build our report - if (false === $what) { - $reportArray = $report->buildReport($conf); - } else { - $reportArray = $report->buildReport($conf, $what, $request->request->get('tbl', false)); - } - - return $reportArray; - } - - /** - * Prefix the method to call with the controller class name - * - * @param string $method The method to call - * @return string - */ - private function call($method) - { - return sprintf('%s::%s', __CLASS__, $method); - } - - private function getCSVResponse(\module_report $report, $type) - { - // set headers - $headers = []; - foreach (array_keys($report->getDisplay()) as $k) { - $headers[$k] = $k; - } - // set headers as first row - $result = $report->getResult(); - - array_unshift($result, $headers); - - $collection = new CallbackCollection($result, function ($row) use ($headers) { - // restrict fields to the displayed ones - // return array_map("strip_tags", array_intersect_key($row, $report->getDisplay())); - $ret = array(); - foreach($headers as $f) { - $ret[$f] = array_key_exists($f, $row) ? strip_tags($row[$f]) : ''; - } - return $ret; - }); - - $filename = sprintf('report_export_%s_%s.csv', $type, date('Ymd')); - - /** @var Exporter $exporter */ - $exporter = $this->app['csv.exporter']; - $cb = function () use ($exporter, $collection) { - $exporter->export('php://output', $collection); - }; - - $response = new CSVFileResponse($filename, $cb); - - return $response; - } } diff --git a/lib/Alchemy/Phrasea/Controller/Root/AccountController.php b/lib/Alchemy/Phrasea/Controller/Root/AccountController.php index 8f9107f83a..b4053a6ce1 100644 --- a/lib/Alchemy/Phrasea/Controller/Root/AccountController.php +++ b/lib/Alchemy/Phrasea/Controller/Root/AccountController.php @@ -17,20 +17,27 @@ use Alchemy\Phrasea\Application\Helper\EntityManagerAware; use Alchemy\Phrasea\Application\Helper\NotifierAware; use Alchemy\Phrasea\Authentication\Phrasea\PasswordEncoder; use Alchemy\Phrasea\Controller\Controller; -use Alchemy\Phrasea\ControllerProvider\Root\Login; use Alchemy\Phrasea\Core\Configuration\RegistrationManager; use Alchemy\Phrasea\Exception\InvalidArgumentException; use Alchemy\Phrasea\Form\Login\PhraseaRenewPasswordForm; use Alchemy\Phrasea\Model\Entities\ApiApplication; use Alchemy\Phrasea\Model\Entities\FtpCredential; use Alchemy\Phrasea\Model\Entities\Session; +use Alchemy\Phrasea\Model\Entities\User; use Alchemy\Phrasea\Model\Manipulator\ApiAccountManipulator; +use Alchemy\Phrasea\Model\Manipulator\ApiApplicationManipulator; +use Alchemy\Phrasea\Model\Manipulator\BasketManipulator; use Alchemy\Phrasea\Model\Manipulator\TokenManipulator; use Alchemy\Phrasea\Model\Manipulator\UserManipulator; use Alchemy\Phrasea\Model\Repositories\ApiAccountRepository; use Alchemy\Phrasea\Model\Repositories\ApiApplicationRepository; +use Alchemy\Phrasea\Model\Repositories\BasketRepository; +use Alchemy\Phrasea\Model\Repositories\FeedPublisherRepository; use Alchemy\Phrasea\Model\Repositories\TokenRepository; +use Alchemy\Phrasea\Model\Repositories\ValidationSessionRepository; +use Alchemy\Phrasea\Notification\Mail\MailRequestAccountDelete; use Alchemy\Phrasea\Notification\Mail\MailRequestEmailUpdate; +use Alchemy\Phrasea\Notification\Mail\MailSuccessAccountDelete; use Alchemy\Phrasea\Notification\Receiver; use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpFoundation\RedirectResponse; @@ -201,6 +208,7 @@ class AccountController extends Controller */ public function accountAccess() { + //var_dump($this->getRegistrationManager()->getRegistrationSummary($this->getAuthenticatedUser()));die; return $this->render('account/access.html.twig', [ 'inscriptions' => $this->getRegistrationManager()->getRegistrationSummary($this->getAuthenticatedUser()) ]); @@ -298,13 +306,102 @@ class AccountController extends Controller $manager = $this->getEventManager(); $user = $this->getAuthenticatedUser(); + $repo_baskets = $this->getBasketRepository(); + $baskets = $repo_baskets->findActiveValidationAndBasketByUser($user); + + $apiAccounts = $this->getApiAccountRepository()->findByUser($user); + + $ownedFeeds = $this->getFeedPublisherRepository()->findBy(['user' => $user, 'owner' => true]); + + $initiatedValidations = $this->getValidationSessionRepository()->findby(['initiator' => $user, ]); + return $this->render('account/account.html.twig', [ - 'user' => $user, - 'evt_mngr' => $manager, - 'notifications' => $manager->list_notifications_available($user), + 'user' => $user, + 'evt_mngr' => $manager, + 'notifications' => $manager->list_notifications_available($user), + 'baskets' => $baskets, + 'api_accounts' => $apiAccounts, + 'owned_feeds' => $ownedFeeds, + 'initiated_validations' => $initiatedValidations, ]); } + /** + * @param Request $request + * @return RedirectResponse + */ + public function processDeleteAccount(Request $request) + { + $user = $this->getAuthenticatedUser(); + + if($this->app['conf']->get(['user_account', 'deleting_policies', 'email_confirmation'])) { + + // send email confirmation + + try { + $receiver = Receiver::fromUser($user); + } catch (InvalidArgumentException $e) { + $this->app->addFlash('error', $this->app->trans('phraseanet::erreur: echec du serveur de mail')); + + return $this->app->redirectPath('account'); + } + + $token = $this->getTokenManipulator()->createAccountDeleteToken($user, $user->getEmail()); + $url = $this->app->url('account_confirm_delete', ['token' => $token->getValue()]); + + + $mail = MailRequestAccountDelete::create($this->app, $receiver); + $mail->setUserOwner($user); + $mail->setButtonUrl($url); + $mail->setExpiration($token->getExpiration()); + + $this->deliver($mail); + + $this->app->addFlash('info', $this->app->trans('phraseanet::account: A confirmation e-mail has been sent. Please follow the instructions contained to continue account deletion')); + + return $this->app->redirectPath('account'); + + } else { + $this->doDeleteAccount($user); + + $response = $this->app->redirectPath('homepage', [ + 'redirect' => $request->query->get("redirect") + ]); + + $response->headers->clearCookie('persistent'); + $response->headers->clearCookie('last_act'); + + return $response; + } + + } + + public function confirmDeleteAccount(Request $request) + { + if (($tokenValue = $request->query->get('token')) !== null ) { + if (null === $token = $this->getTokenRepository()->findValidToken($tokenValue)) { + $this->app->addFlash('error', $this->app->trans('Token not found')); + + return $this->app->redirectPath('account'); + } + + $user = $token->getUser(); + // delete account and datas + $this->doDeleteAccount($user); + + $this->getTokenManipulator()->delete($token); + } + + $response = $this->app->redirectPath('homepage', [ + 'redirect' => $request->query->get("redirect") + ]); + + $response->headers->clearCookie('persistent'); + $response->headers->clearCookie('last_act'); + + return $response; + } + /** * Update account information * @@ -405,6 +502,57 @@ class AccountController extends Controller return $this->app->redirectPath('account'); } + /** + * @param User $user + */ + private function doDeleteAccount(User $user) + { + // basket + $repo_baskets = $this->getBasketRepository(); + $baskets = $repo_baskets->findActiveByUser($user); + $this->getBasketManipulator()->removeBaskets($baskets); + + // application + $applications = $this->getApiApplicationRepository()->findByUser($user); + + $this->getApiApplicationManipulator()->deleteApiApplications($applications); + + + // revoke access and delete phraseanet user account + + $list = array_keys($this->app['repo.collections-registry']->getBaseIdMap()); + + try { + $this->app->getAclForUser($user)->revoke_access_from_bases($list); + } + catch (\Exception $e) { + // one or more access could not be revoked ? the user will not be phantom + $this->app->addFlash('error', $this->app->trans('phraseanet::error: failed to revoke some user access')); + } + + if ($this->app->getAclForUser($user)->is_phantom()) { + // send confirmation email: the account has been deleted + + try { + $receiver = Receiver::fromUser($user); + $mail = MailSuccessAccountDelete::create($this->app, $receiver); + } + catch (InvalidArgumentException $e) { + $this->app->addFlash('error', $this->app->trans('phraseanet::erreur: echec du serveur de mail')); + $mail = null; + } + + $this->app['manipulator.user']->delete($user); + + if($mail) { + $this->deliver($mail); + } + + $this->getAuthenticator()->closeAccount(); + $this->app->addFlash('info', $this->app->trans('phraseanet::account The account has been deleted')); + } + } + /** * @return PasswordEncoder */ @@ -500,4 +648,44 @@ class AccountController extends Controller { return $this->app['events-manager']; } + + /** + * @return BasketManipulator + */ + private function getBasketManipulator() + { + return $this->app['manipulator.basket']; + } + + /** + * @return BasketRepository + */ + private function getBasketRepository() + { + return $this->app['repo.baskets']; + } + + /** + * @return ApiApplicationManipulator + */ + private function getApiApplicationManipulator() + { + return $this->app['manipulator.api-application']; + } + + /** + * @return FeedPublisherRepository + */ + private function getFeedPublisherRepository() + { + return $this->app['repo.feed-publishers']; + } + + /** + * @return ValidationSessionRepository + */ + private function getValidationSessionRepository() + { + return $this->app['repo.validation-session']; + } } diff --git a/lib/Alchemy/Phrasea/Controller/Root/LoginController.php b/lib/Alchemy/Phrasea/Controller/Root/LoginController.php index ecb65abc47..c0a05be25f 100644 --- a/lib/Alchemy/Phrasea/Controller/Root/LoginController.php +++ b/lib/Alchemy/Phrasea/Controller/Root/LoginController.php @@ -265,7 +265,7 @@ class LoginController extends Controller return $this->render('login/register-classic.html.twig', array_merge( $this->getDefaultTemplateVariables($request), [ - 'geonames_server_uri' => str_replace(sprintf('%s:', parse_url($url, PHP_URL_SCHEME)), '', $url), + 'geonames_server_uri' => $url, 'form' => $form->createView() ])); } diff --git a/lib/Alchemy/Phrasea/Controller/Root/SessionController.php b/lib/Alchemy/Phrasea/Controller/Root/SessionController.php index 5070ca33ba..c3585aecbe 100644 --- a/lib/Alchemy/Phrasea/Controller/Root/SessionController.php +++ b/lib/Alchemy/Phrasea/Controller/Root/SessionController.php @@ -94,10 +94,9 @@ class SessionController extends Controller } /** - * Check session state - * - * @param Request $request + * @param Request $request * @return JsonResponse + * @throws \Exception in case "new \DateTime()" fails ? */ public function updateSession(Request $request) { @@ -120,7 +119,8 @@ class SessionController extends Controller return $this->app->json($ret); } - } else { + } + else { $ret['status'] = 'disconnected'; return $this->app->json($ret); @@ -128,7 +128,8 @@ class SessionController extends Controller try { $this->getApplicationBox()->get_connection(); - } catch (\Exception $e) { + } + catch (\Exception $e) { return $this->app->json($ret); } @@ -148,8 +149,9 @@ class SessionController extends Controller $module->setModuleId($moduleId); $module->setSession($session); $manager->persist($module); - } else { - $manager->persist($session->getModuleById($moduleId)->setUpdated(new \DateTime())); + } + else { + $manager->persist($session->getModuleById($moduleId)->setUpdated($now)); } $manager->persist($session); @@ -231,7 +233,10 @@ class SessionController extends Controller */ private function getBasketRepository() { - return $this->getEntityManager()->getRepository('Phraseanet:Basket'); + /** @var BasketRepository $ret */ + $ret = $this->getEntityManager()->getRepository('Phraseanet:Basket'); + + return $ret; } /** diff --git a/lib/Alchemy/Phrasea/Controller/Thesaurus/ThesaurusController.php b/lib/Alchemy/Phrasea/Controller/Thesaurus/ThesaurusController.php index a278a516d7..1bd06d83b2 100644 --- a/lib/Alchemy/Phrasea/Controller/Thesaurus/ThesaurusController.php +++ b/lib/Alchemy/Phrasea/Controller/Thesaurus/ThesaurusController.php @@ -806,7 +806,7 @@ class ThesaurusController extends Controller if (!$t) { $t = "..."; } - $fullBranch = " / " . $t . $fullBranch; + $fullBranch = " / " . htmlspecialchars($t) . $fullBranch; } } $nodes = $xpathstruct->query("/record/description/*"); @@ -1159,7 +1159,7 @@ class ThesaurusController extends Controller '1', null ); - $fullpath = $dom->getElementsByTagName("fullpath_html")->item(0)->firstChild->nodeValue; + $fullpathHtml = $dom->getElementsByTagName("fullpath_html")->item(0)->firstChild->nodeValue; $hits = $dom->getElementsByTagName("allhits")->item(0)->firstChild->nodeValue; $languages = $synonyms = []; @@ -1180,6 +1180,16 @@ class ThesaurusController extends Controller $languages[$lng_code[0]] = $language; } + // Escape path between span tag in fullpath_html + preg_match_all("'(<[^><]*>)(.*?)(<[^><]*>)'", $fullpathHtml, $matches, PREG_SET_ORDER); + + $safeFullpath = ''; + foreach($matches as $match) { + unset($match[0]); // full match result not used + $match[2] = htmlspecialchars($match[2]); + $safeFullpath .= implode('', $match); + } + return $this->render('thesaurus/properties.html.twig', [ 'typ' => $request->get('typ'), 'bid' => $request->get('bid'), @@ -1187,7 +1197,7 @@ class ThesaurusController extends Controller 'id' => $request->get('id'), 'dlg' => $request->get('dlg'), 'languages' => $languages, - 'fullpath' => $fullpath, + 'fullpath' => $safeFullpath, 'hits' => $hits, 'synonyms' => $synonyms, ]); diff --git a/lib/Alchemy/Phrasea/Controller/Thesaurus/ThesaurusXmlHttpController.php b/lib/Alchemy/Phrasea/Controller/Thesaurus/ThesaurusXmlHttpController.php index b5a2ff441e..ca820a6be5 100644 --- a/lib/Alchemy/Phrasea/Controller/Thesaurus/ThesaurusXmlHttpController.php +++ b/lib/Alchemy/Phrasea/Controller/Thesaurus/ThesaurusXmlHttpController.php @@ -1426,12 +1426,7 @@ class ThesaurusXmlHttpController extends Controller public function searchTermJson(Request $request) { - if (null === $lng = $request->get('lng')) { - $data = explode('_', $this->app['locale']); - if (count($data) > 0) { - $lng = $data[0]; - } - } + $lng = $request->get('lng'); $html = ''; $sbid = (int) $request->get('sbid'); @@ -1485,7 +1480,10 @@ class ThesaurusXmlHttpController extends Controller $q2 .= ' and starts-with(@k, \'' . \thesaurus::xquery_escape($unicode->remove_indexer_chars($t[1])) . '\')'; } - $q2 .= ' and @lng=\'' . \thesaurus::xquery_escape($lng) . '\''; + if($lng != null){ + $q2 .= ' and @lng=\'' . \thesaurus::xquery_escape($lng) . '\''; + } + $q .= ('//sy[' . $q2 . ']'); $nodes = $xpath->query($q); diff --git a/lib/Alchemy/Phrasea/ControllerProvider/ControllerProviderServiceProvider.php b/lib/Alchemy/Phrasea/ControllerProvider/ControllerProviderServiceProvider.php index 46dcbe6ff1..4cbec52624 100644 --- a/lib/Alchemy/Phrasea/ControllerProvider/ControllerProviderServiceProvider.php +++ b/lib/Alchemy/Phrasea/ControllerProvider/ControllerProviderServiceProvider.php @@ -77,6 +77,7 @@ class ControllerProviderServiceProvider implements ServiceProviderInterface Prod\Push::class => [], Prod\Query::class => [], Prod\Record::class => [], + \Alchemy\Phrasea\Report\ControllerProvider\ProdReportControllerProvider::class => [], Prod\Root::class => [], Prod\Share::class => [], Prod\Story::class => [], @@ -87,8 +88,6 @@ class ControllerProviderServiceProvider implements ServiceProviderInterface Prod\Upload::class => [], Prod\UsrLists::class => [], Prod\WorkZone::class => [], - Report\Activity::class => [], - Report\Information::class => [], Report\Root::class => [], Root\Account::class => [], Root\Developers::class => [], diff --git a/lib/Alchemy/Phrasea/ControllerProvider/Prod/Lazaret.php b/lib/Alchemy/Phrasea/ControllerProvider/Prod/Lazaret.php index 16081d7f14..53c2804fce 100644 --- a/lib/Alchemy/Phrasea/ControllerProvider/Prod/Lazaret.php +++ b/lib/Alchemy/Phrasea/ControllerProvider/Prod/Lazaret.php @@ -82,6 +82,11 @@ class Lazaret implements ControllerProviderInterface, ServiceProviderInterface ->assert('file_id', '\d+') ->bind('lazaret_thumbnail'); + $controllers->get('/{databox_id}/{record_id}/status', 'controller.prod.lazaret:getDestinationStatus') + ->assert('databox_id', '\d+') + ->assert('record_id', '\d+') + ->bind('lazaret_destination_status'); + return $controllers; } } diff --git a/lib/Alchemy/Phrasea/ControllerProvider/Prod/Property.php b/lib/Alchemy/Phrasea/ControllerProvider/Prod/Property.php index b5ab3a790b..e1a044c2da 100644 --- a/lib/Alchemy/Phrasea/ControllerProvider/Prod/Property.php +++ b/lib/Alchemy/Phrasea/ControllerProvider/Prod/Property.php @@ -25,7 +25,9 @@ class Property implements ControllerProviderInterface, ServiceProviderInterface public function register(Application $app) { $app['controller.prod.property'] = $app->share(function (PhraseaApplication $app) { - return (new PropertyController($app)); + return (new PropertyController($app)) + ->setDataboxLoggerLocator($app['phraseanet.logger']) + ; }); } diff --git a/lib/Alchemy/Phrasea/ControllerProvider/Prod/Upload.php b/lib/Alchemy/Phrasea/ControllerProvider/Prod/Upload.php index a32133050f..f310d75744 100644 --- a/lib/Alchemy/Phrasea/ControllerProvider/Prod/Upload.php +++ b/lib/Alchemy/Phrasea/ControllerProvider/Prod/Upload.php @@ -66,6 +66,9 @@ class Upload implements ControllerProviderInterface, ServiceProviderInterface $controllers->get('/html5-version/', 'controller.prod.upload:getHtml5UploadForm') ->bind('upload_html5_form'); + $controllers->get('/head/', 'controller.prod.upload:getHead') + ->bind('upload_head'); + $controllers->post('/', 'controller.prod.upload:upload') ->bind('upload'); diff --git a/lib/Alchemy/Phrasea/ControllerProvider/Report/Activity.php b/lib/Alchemy/Phrasea/ControllerProvider/Report/Activity.php deleted file mode 100644 index 5baf14bf2a..0000000000 --- a/lib/Alchemy/Phrasea/ControllerProvider/Report/Activity.php +++ /dev/null @@ -1,81 +0,0 @@ -share(function (PhraseaApplication $app) { - return new ActivityController($app); - }); - } - - public function boot(Application $app) - { - // no-op - } - - public function connect(Application $app) - { - $controllers = $this->createAuthenticatedCollection($app); - $firewall = $this->getFirewall($app); - - $controllers->before(function () use ($firewall) { - $firewall->requireAccessToModule('report'); - }); - - $controllers->post('/users/connexions', 'controller.report.activity:doReportConnexionsByUsers') - ->bind('report_activity_users_connexions'); - - $controllers->post('/users/downloads', 'controller.report.activity:doReportDownloadsByUsers') - ->bind('report_activity_users_downloads');; - - $controllers->post('/questions/best-of', 'controller.report.activity:doReportBestOfQuestions') - ->bind('report_activity_questions_bestof'); - - $controllers->post('/questions/no-best-of', 'controller.report.activity:doReportNoBestOfQuestions') - ->bind('report_activity_questions_nobestof'); - - $controllers->post('/instance/hours', 'controller.report.activity:doReportSiteActiviyPerHours') - ->bind('report_activity_instance_hours'); - - $controllers->post('/instance/days', 'controller.report.activity:doReportSiteActivityPerDays') - ->bind('report_activity_instance_days'); - - $controllers->post('/documents/pushed', 'controller.report.activity:doReportPushedDocuments') - ->bind('report_activity_documents_pushed'); - - $controllers->post('/documents/added', 'controller.report.activity:doReportAddedDocuments') - ->bind('report_activity_documents_added'); - - $controllers->post('/documents/edited', 'controller.report.activity:doReportEditedDocuments') - ->bind('report_activity_documents_edited'); - - $controllers->post('/documents/validated', 'controller.report.activity:doReportValidatedDocuments') - ->bind('report_activity_documents_validated'); - - $controllers->post('/documents/sent', 'controller.report.activity:doReportSentDocuments') - ->bind('report_activity_documents_sent'); - - return $controllers; - } -} diff --git a/lib/Alchemy/Phrasea/ControllerProvider/Report/Information.php b/lib/Alchemy/Phrasea/ControllerProvider/Report/Information.php deleted file mode 100644 index e52ee37ea1..0000000000 --- a/lib/Alchemy/Phrasea/ControllerProvider/Report/Information.php +++ /dev/null @@ -1,57 +0,0 @@ -share(function (PhraseaApplication $app) { - return new InformationController($app); - }); - } - - public function boot(Application $app) - { - // no-op - } - - public function connect(Application $app) - { - $controllers = $this->createAuthenticatedCollection($app); - $firewall = $this->getFirewall($app); - - $controllers->before(function () use ($firewall) { - $firewall->requireAccessToModule('report'); - }); - - $controllers->post('/user', 'controller.report.information:doReportInformationUser') - ->bind('report_infomations_user'); - - $controllers->post('/browser', 'controller.report.information:doReportInformationBrowser') - ->bind('report_infomations_browser'); - - $controllers->post('/document', 'controller.report.information:doReportInformationDocument') - ->bind('report_infomations_document'); - - return $controllers; - } -} diff --git a/lib/Alchemy/Phrasea/ControllerProvider/Root/Account.php b/lib/Alchemy/Phrasea/ControllerProvider/Root/Account.php index 8b911eef91..516c78222b 100644 --- a/lib/Alchemy/Phrasea/ControllerProvider/Root/Account.php +++ b/lib/Alchemy/Phrasea/ControllerProvider/Root/Account.php @@ -52,6 +52,14 @@ class Account implements ControllerProviderInterface, ServiceProviderInterface $controllers->get('/', 'account.controller:displayAccount') ->bind('account'); + // allow to delete phraseanet account + $controllers->get('/delete/process', 'account.controller:processDeleteAccount') + ->bind('account_process_delete'); + + $controllers->get('/delete/confirm', 'account.controller:confirmDeleteAccount') + ->bind('account_confirm_delete'); + + // Updates current logged in user account $controllers->post('/', 'account.controller:updateAccount') ->bind('submit_update_account'); diff --git a/lib/Alchemy/Phrasea/Core/Configuration/DisplaySettingService.php b/lib/Alchemy/Phrasea/Core/Configuration/DisplaySettingService.php index 572928a38d..104230411d 100644 --- a/lib/Alchemy/Phrasea/Core/Configuration/DisplaySettingService.php +++ b/lib/Alchemy/Phrasea/Core/Configuration/DisplaySettingService.php @@ -41,7 +41,8 @@ class DisplaySettingService 'css' => '000000', 'start_page_query' => '', 'order_collection_by' => self::ORDER_BY_ADMIN, - 'start_page' => 'QUERY', + 'start_page' => 'LAST_QUERY', + 'last_jsonquery' => '', 'rollover_thumbnail' => 'caption', 'technical_display' => '1', 'doctype_display' => '1', diff --git a/lib/Alchemy/Phrasea/Core/Configuration/RegistrationManager.php b/lib/Alchemy/Phrasea/Core/Configuration/RegistrationManager.php index 992b090644..5bf21bc37c 100644 --- a/lib/Alchemy/Phrasea/Core/Configuration/RegistrationManager.php +++ b/lib/Alchemy/Phrasea/Core/Configuration/RegistrationManager.php @@ -176,7 +176,7 @@ class RegistrationManager } if ($isTimeLimited && $isOutDated && $isPending) { - $userRegistration['type'] = 'out-time'; + $userRegistration['type'] = 'out-dated'; return $userRegistration; } diff --git a/lib/Alchemy/Phrasea/Core/Configuration/RegistryFormManipulator.php b/lib/Alchemy/Phrasea/Core/Configuration/RegistryFormManipulator.php index fbf4526d05..fbce72ccc7 100644 --- a/lib/Alchemy/Phrasea/Core/Configuration/RegistryFormManipulator.php +++ b/lib/Alchemy/Phrasea/Core/Configuration/RegistryFormManipulator.php @@ -146,7 +146,7 @@ class RegistryFormManipulator ], 'webservices' => [ 'google-charts-enabled' => true, - 'geonames-server' => 'http://geonames.alchemyasp.com/', + 'geonames-server' => 'https://geonames.alchemyasp.com/', 'captchas-enabled' => false, 'recaptcha-public-key' => '', 'recaptcha-private-key' => '', diff --git a/lib/Alchemy/Phrasea/Core/Database/DatabaseMaintenanceService.php b/lib/Alchemy/Phrasea/Core/Database/DatabaseMaintenanceService.php index 1dd1430876..83213addf8 100644 --- a/lib/Alchemy/Phrasea/Core/Database/DatabaseMaintenanceService.php +++ b/lib/Alchemy/Phrasea/Core/Database/DatabaseMaintenanceService.php @@ -66,6 +66,8 @@ class DatabaseMaintenanceService public function upgradeDatabase(\base $base, $applyPatches) { + $this->reconnect(); + $recommends = []; $allTables = []; @@ -126,6 +128,8 @@ class DatabaseMaintenanceService */ public function alterTableEngine($tableName, $engine, array & $recommends) { + $this->reconnect(); + $sql = 'ALTER TABLE `' . $tableName . '` ENGINE = ' . $engine; try { @@ -145,6 +149,8 @@ class DatabaseMaintenanceService */ public function createTable(\SimpleXMLElement $table) { + $this->reconnect(); + $field_stmt = $defaults_stmt = []; $create_stmt = "CREATE TABLE IF NOT EXISTS `" . $table['name'] . "` ("; @@ -270,6 +276,8 @@ class DatabaseMaintenanceService public function upgradeTable(\SimpleXMLElement $table) { + $this->reconnect(); + $correct_table = ['fields' => [], 'indexes' => [], 'collation' => []]; $alter = $alter_pre = $return = []; @@ -476,6 +484,8 @@ class DatabaseMaintenanceService } foreach ($alter_pre as $a) { + $this->reconnect(); + try { $this->connection->exec($a); } catch (\Exception $e) { @@ -488,6 +498,8 @@ class DatabaseMaintenanceService } foreach ($alter as $a) { + $this->reconnect(); + try { $this->connection->exec($a); } catch (\Exception $e) { @@ -561,6 +573,7 @@ class DatabaseMaintenanceService $this->app['swiftmailer.transport'] = null; foreach ($list_patches as $patch) { + // Gets doctrine migrations required for current patch foreach ($patch->getDoctrineMigrations() as $doctrineVersion) { /** @var \Doctrine\DBAL\Migrations\Version $version */ @@ -579,6 +592,8 @@ class DatabaseMaintenanceService // Execute migration if not marked as migrated and not already applied by an older patch if (!$migration->isAlreadyApplied()) { + $this->reconnect(); + $version->execute('up'); continue; } @@ -586,10 +601,14 @@ class DatabaseMaintenanceService // Or mark it as migrated $version->markMigrated(); } else { + $this->reconnect(); + $version->execute('up'); } } + $this->reconnect(); + if (false === $patch->apply($base, $this->app)) { $success = false; } @@ -597,4 +616,12 @@ class DatabaseMaintenanceService return $success; } + + private function reconnect() + { + if($this->connection->ping() === false) { + $this->connection->close(); + $this->connection->connect(); + } + } } diff --git a/lib/Alchemy/Phrasea/Core/Provider/RepositoriesServiceProvider.php b/lib/Alchemy/Phrasea/Core/Provider/RepositoriesServiceProvider.php index 80f9d2286c..b4d4e42fc7 100644 --- a/lib/Alchemy/Phrasea/Core/Provider/RepositoriesServiceProvider.php +++ b/lib/Alchemy/Phrasea/Core/Provider/RepositoriesServiceProvider.php @@ -66,6 +66,9 @@ class RepositoriesServiceProvider implements ServiceProviderInterface $app['repo.validation-participants'] = $app->share(function (PhraseaApplication $app) { return $app['orm.em']->getRepository('Phraseanet:ValidationParticipant'); }); + $app['repo.validation-session'] = $app->share(function (PhraseaApplication $app) { + return $app['orm.em']->getRepository('Phraseanet:ValidationSession'); + }); $app['repo.story-wz'] = $app->share(function (PhraseaApplication $app) { return $app['orm.em']->getRepository('Phraseanet:StoryWZ'); }); diff --git a/lib/Alchemy/Phrasea/Core/Version.php b/lib/Alchemy/Phrasea/Core/Version.php index 4014798ff0..19011867d9 100644 --- a/lib/Alchemy/Phrasea/Core/Version.php +++ b/lib/Alchemy/Phrasea/Core/Version.php @@ -16,7 +16,7 @@ class Version /** * @var string */ - private $number = '4.1.0-alpha.12'; + private $number = '4.1.0-alpha.18a'; /** * @var string diff --git a/lib/Alchemy/Phrasea/Databox/Field/DbalDataboxFieldRepository.php b/lib/Alchemy/Phrasea/Databox/Field/DbalDataboxFieldRepository.php index a8209285ca..3e247d99c9 100644 --- a/lib/Alchemy/Phrasea/Databox/Field/DbalDataboxFieldRepository.php +++ b/lib/Alchemy/Phrasea/Databox/Field/DbalDataboxFieldRepository.php @@ -36,6 +36,9 @@ final class DbalDataboxFieldRepository implements DataboxFieldRepository 'label_fr', 'label_de', 'label_nl', + 'generate_cterms', + 'gui_editable', + 'gui_visible', ]; /** @var DataboxFieldFactory */ diff --git a/lib/Alchemy/Phrasea/Filesystem/FilesystemService.php b/lib/Alchemy/Phrasea/Filesystem/FilesystemService.php index fe2ac305c9..8da30984f0 100644 --- a/lib/Alchemy/Phrasea/Filesystem/FilesystemService.php +++ b/lib/Alchemy/Phrasea/Filesystem/FilesystemService.php @@ -201,6 +201,8 @@ class FilesystemService return 'ogg'; case 'libmp3lame': return 'mp3'; + case 'pcm_s16le': + return 'wav'; } return null; diff --git a/lib/Alchemy/Phrasea/Helper/WorkZone.php b/lib/Alchemy/Phrasea/Helper/WorkZone.php index 6095a54c9b..345af37fbd 100644 --- a/lib/Alchemy/Phrasea/Helper/WorkZone.php +++ b/lib/Alchemy/Phrasea/Helper/WorkZone.php @@ -11,28 +11,29 @@ namespace Alchemy\Phrasea\Helper; -use Doctrine\Common\Collections\ArrayCollection; use Alchemy\Phrasea\Model\Entities\Basket as BasketEntity; +use Alchemy\Phrasea\Model\Repositories\BasketRepository; +use Alchemy\Phrasea\Model\Repositories\StoryWZRepository; +use Doctrine\Common\Collections\ArrayCollection; class WorkZone extends Helper { - const BASKETS = 'baskets'; - const STORIES = 'stories'; + const BASKETS = 'baskets'; + const STORIES = 'stories'; const VALIDATIONS = 'validations'; /** - * * Returns an ArrayCollection containing three keys : - * - self::BASKETS : an ArrayCollection of the actives baskets - * (Non Archived) + * - self::BASKETS : an ArrayCollection of the actives baskets (Non Archived) * - self::STORIES : an ArrayCollection of working stories * - self::VALIDATIONS : the validation people are waiting from me * - * @return \Doctrine\Common\Collections\ArrayCollection + * @param null|string $sort "date"|"name" + * @return ArrayCollection */ - public function getContent($sort) + public function getContent($sort = null) { - /* @var $repo_baskets Alchemy\Phrasea\Model\Repositories\BasketRepository */ + /* @var $repo_baskets BasketRepository */ $repo_baskets = $this->app['repo.baskets']; $sort = in_array($sort, ['date', 'name']) ? $sort : 'name'; @@ -42,7 +43,7 @@ class WorkZone extends Helper $baskets = $repo_baskets->findActiveByUser($this->app->getAuthenticatedUser(), $sort); // force creation of a default basket - if (0 === count($baskets)) { + if (count($baskets) === 0) { $basket = new BasketEntity(); $basket->setName($this->app->trans('Default basket')); @@ -55,7 +56,7 @@ class WorkZone extends Helper $validations = $repo_baskets->findActiveValidationByUser($this->app->getAuthenticatedUser(), $sort); - /* @var $repo_stories Alchemy\Phrasea\Model\Repositories\StoryWZRepository */ + /* @var $repo_stories StoryWZRepository */ $repo_stories = $this->app['repo.story-wz']; $stories = $repo_stories->findByUser($this->app, $this->app->getAuthenticatedUser(), $sort); diff --git a/lib/Alchemy/Phrasea/Media/Subdef/Audio.php b/lib/Alchemy/Phrasea/Media/Subdef/Audio.php index ac50940dc1..2551669dd1 100644 --- a/lib/Alchemy/Phrasea/Media/Subdef/Audio.php +++ b/lib/Alchemy/Phrasea/Media/Subdef/Audio.php @@ -19,6 +19,7 @@ class Audio extends Provider const OPTION_THREADS = 'threads'; const OPTION_ACODEC = 'acodec'; const OPTION_AUDIOSAMPLERATE = 'audiosamplerate'; + const OPTION_AUDIOCHANNEL = 'audiochannel'; public function __construct(TranslatorInterface $translator) { @@ -29,9 +30,12 @@ class Audio extends Provider 47250, 48000, 50000, 50400, 88200, 96000 ]; + $audioChannel = ['mono', 'stereo']; + $this->registerOption(new OptionType\Range($this->translator->trans('Audio Birate'), self::OPTION_AUDIOBITRATE, 32, 320, 128, 32)); $this->registerOption(new OptionType\Enum($this->translator->trans('AudioSamplerate'), self::OPTION_AUDIOSAMPLERATE, $AVaudiosamplerate)); - $this->registerOption(new OptionType\Enum($this->translator->trans('Audio Codec'), self::OPTION_ACODEC, ['libmp3lame', 'flac'], 'libmp3lame')); + $this->registerOption(new OptionType\Enum($this->translator->trans('Audio Codec'), self::OPTION_ACODEC, ['libmp3lame', 'flac', 'pcm_s16le'], 'libmp3lame')); + $this->registerOption(new OptionType\Enum($this->translator->trans('Audio channel'), self::OPTION_AUDIOCHANNEL, $audioChannel)); } public function getType() @@ -53,7 +57,21 @@ class Audio extends Provider $this->spec->setAudioCodec($this->getOption(self::OPTION_ACODEC)->getValue()); $this->spec->setAudioSampleRate($this->getOption(self::OPTION_AUDIOSAMPLERATE)->getValue()); $this->spec->setAudioKiloBitrate($this->getOption(self::OPTION_AUDIOBITRATE)->getValue()); + $this->spec->setAudioChannels($this->getChannelNumber($this->getOption(self::OPTION_AUDIOCHANNEL)->getValue())); return $this->spec; } + + private function getChannelNumber($audioChannel) + { + switch($audioChannel) + { + case 'mono': + return 1; + case 'stereo': + return 2; + default: + return null; + } + } } diff --git a/lib/Alchemy/Phrasea/Media/SubdefGenerator.php b/lib/Alchemy/Phrasea/Media/SubdefGenerator.php index 2dede228c5..88867551a1 100644 --- a/lib/Alchemy/Phrasea/Media/SubdefGenerator.php +++ b/lib/Alchemy/Phrasea/Media/SubdefGenerator.php @@ -61,7 +61,7 @@ class SubdefGenerator public function generateSubdefs(\record_adapter $record, array $wanted_subdefs = null) { - if ($record->get_hd_file() !== null) { + if ($record->get_hd_file() !== null && $record->get_hd_file()->getMimeType() == "application/x-indesign") { $mediaSource = $this->mediavorus->guess($record->get_hd_file()->getPathname()); $metadatas = $mediaSource->getMetadatas(); @@ -69,15 +69,27 @@ class SubdefGenerator if(!isset($this->tmpFilesystem)){ $this->tmpFilesystem = Manager::create(); } - $tmpDir = $this->tmpFilesystem->createTemporaryDirectory(); + $tmpDir = $this->tmpFilesystem->createTemporaryDirectory(0777, 500); - try { - $this->app['filesystem']->dumpFile($tmpDir.'/file.jpg', $metadatas->get('XMP-xmp:PageImage')->getValue()->asString()); - $this->tmpFilePath = $tmpDir.'/file.jpg'; - } catch (\Exception $e) { - $this->logger->error(sprintf('Unable to write temporary file : %s', $e->getMessage())); + $files = $this->app['exiftool.preview-extractor']->extract($record->get_hd_file()->getPathname(), $tmpDir); + + $selected = null; + $size = null; + + foreach ($files as $file) { + if ($file->isDir() || $file->isDot()) { + continue; + } + + if (is_null($selected) || $file->getSize() > $size) { + $selected = $file->getPathname(); + $size = $file->getSize(); + } } + if ($selected) { + $this->tmpFilePath = $selected; + } } } diff --git a/lib/Alchemy/Phrasea/Media/SubdefSubstituer.php b/lib/Alchemy/Phrasea/Media/SubdefSubstituer.php index 3bbdc2666d..2259fa572d 100644 --- a/lib/Alchemy/Phrasea/Media/SubdefSubstituer.php +++ b/lib/Alchemy/Phrasea/Media/SubdefSubstituer.php @@ -73,6 +73,9 @@ class SubdefSubstituer $this->createMediaSubdef($record, 'document', $media); + $record->setMimeType($media->getFile()->getMimeType()); + $record->setType($media->getType()); + $record->write_metas(); if ($shouldSubdefsBeRebuilt) { diff --git a/lib/Alchemy/Phrasea/Metadata/PhraseanetMetadataSetter.php b/lib/Alchemy/Phrasea/Metadata/PhraseanetMetadataSetter.php index 45d098bd11..c72c884203 100644 --- a/lib/Alchemy/Phrasea/Metadata/PhraseanetMetadataSetter.php +++ b/lib/Alchemy/Phrasea/Metadata/PhraseanetMetadataSetter.php @@ -14,6 +14,7 @@ namespace Alchemy\Phrasea\Metadata; use Alchemy\Phrasea\Border\File; use Alchemy\Phrasea\Databox\DataboxRepository; use Alchemy\Phrasea\Metadata\Tag\NoSource; +use DateTime; use PHPExiftool\Driver\Metadata\Metadata; class PhraseanetMetadataSetter @@ -66,8 +67,16 @@ class PhraseanetMetadataSetter continue; } - $data['value'] = $value; + if ($field->get_type() == 'date') { + try { + $dateTime = new DateTime($value); + $value = $dateTime->format('Y/m/d H:i:s'); + } catch (\Exception $e) { + // $value unchanged + } + } + $data['value'] = $value; $metadataInRecordFormat[] = $data; } } diff --git a/lib/Alchemy/Phrasea/Model/Entities/LazaretFile.php b/lib/Alchemy/Phrasea/Model/Entities/LazaretFile.php index 9355acc471..221027e28e 100644 --- a/lib/Alchemy/Phrasea/Model/Entities/LazaretFile.php +++ b/lib/Alchemy/Phrasea/Model/Entities/LazaretFile.php @@ -12,6 +12,7 @@ namespace Alchemy\Phrasea\Model\Entities; use Alchemy\Phrasea\Application; +use Alchemy\Phrasea\Border\Attribute\AttributeInterface; use Doctrine\ORM\Mapping as ORM; use Gedmo\Mapping\Annotation as Gedmo; use \record_adapter; @@ -474,4 +475,32 @@ class LazaretFile return $merged; } + /** + * @param Application $app + * @return array|null + */ + public function getStatus(Application $app) + { + /**@var LazaretAttribute $atribute*/ + foreach ($this->attributes as $atribute) { + if ($atribute->getName() == AttributeInterface::NAME_STATUS) { + $databox = $this->getCollection($app)->get_databox(); + $statusStructure = $databox->getStatusStructure(); + $recordsStatuses = []; + foreach ($statusStructure as $status) { + $bit = $status['bit']; + if (!isset($recordsStatuses[$bit])) { + $recordsStatuses[$bit] = $status; + } + $statusSet = \databox_status::bitIsSet(bindec($atribute->getValue()), $bit); + if (!isset($recordsStatuses[$bit]['flag'])) { + $recordsStatuses[$bit]['flag'] = (int) $statusSet; + } + } + return $recordsStatuses; + } + } + return null; + } + } diff --git a/lib/Alchemy/Phrasea/Model/Entities/ValidationSession.php b/lib/Alchemy/Phrasea/Model/Entities/ValidationSession.php index 02a108c625..dccc80281a 100644 --- a/lib/Alchemy/Phrasea/Model/Entities/ValidationSession.php +++ b/lib/Alchemy/Phrasea/Model/Entities/ValidationSession.php @@ -18,7 +18,7 @@ use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; /** * @ORM\Table(name="ValidationSessions") - * @ORM\Entity + * @ORM\Entity(repositoryClass="Alchemy\Phrasea\Model\Repositories\ValidationSessionRepository") */ class ValidationSession { diff --git a/lib/Alchemy/Phrasea/Model/Manipulator/ApiApplicationManipulator.php b/lib/Alchemy/Phrasea/Model/Manipulator/ApiApplicationManipulator.php index 7d45988f20..b1f944f13e 100644 --- a/lib/Alchemy/Phrasea/Model/Manipulator/ApiApplicationManipulator.php +++ b/lib/Alchemy/Phrasea/Model/Manipulator/ApiApplicationManipulator.php @@ -57,6 +57,14 @@ class ApiApplicationManipulator implements ManipulatorInterface $this->om->flush(); } + public function deleteApiApplications(array $applications) + { + foreach ($applications as $application) { + $this->om->remove($application); + } + $this->om->flush(); + } + public function update(ApiApplication $application) { $this->om->persist($application); diff --git a/lib/Alchemy/Phrasea/Model/Manipulator/BasketManipulator.php b/lib/Alchemy/Phrasea/Model/Manipulator/BasketManipulator.php index 070791bf0b..640f2b7f9b 100644 --- a/lib/Alchemy/Phrasea/Model/Manipulator/BasketManipulator.php +++ b/lib/Alchemy/Phrasea/Model/Manipulator/BasketManipulator.php @@ -118,4 +118,12 @@ class BasketManipulator $this->manager->remove($basket); $this->manager->flush(); } + + public function removeBaskets(array $baskets) + { + foreach ($baskets as $basket) { + $this->manager->remove($basket); + } + $this->manager->flush(); + } } diff --git a/lib/Alchemy/Phrasea/Model/Manipulator/LazaretManipulator.php b/lib/Alchemy/Phrasea/Model/Manipulator/LazaretManipulator.php index fff97be4bd..3c86fe91e3 100644 --- a/lib/Alchemy/Phrasea/Model/Manipulator/LazaretManipulator.php +++ b/lib/Alchemy/Phrasea/Model/Manipulator/LazaretManipulator.php @@ -226,6 +226,8 @@ class LazaretManipulator $this->entityManager->remove($lazaretFile); $this->entityManager->flush(); + $ret['result']['record_id'] = $record->getRecordId(); + $ret['success'] = true; } catch (\Exception $e) { $ret['message'] = $this->app->trans('An error occured'); diff --git a/lib/Alchemy/Phrasea/Model/Manipulator/TokenManipulator.php b/lib/Alchemy/Phrasea/Model/Manipulator/TokenManipulator.php index 1c14c851e8..2a43363693 100644 --- a/lib/Alchemy/Phrasea/Model/Manipulator/TokenManipulator.php +++ b/lib/Alchemy/Phrasea/Model/Manipulator/TokenManipulator.php @@ -26,6 +26,7 @@ class TokenManipulator implements ManipulatorInterface const TYPE_FEED_ENTRY = 'FEED_ENTRY'; const TYPE_PASSWORD = 'password'; const TYPE_ACCOUNT_UNLOCK = 'account-unlock'; + const TYPE_ACCOUNT_DELETE = 'account-delete'; const TYPE_DOWNLOAD = 'download'; const TYPE_MAIL_DOWNLOAD = 'mail-download'; const TYPE_EMAIL = 'email'; @@ -167,6 +168,16 @@ class TokenManipulator implements ManipulatorInterface return $this->create($user, self::TYPE_ACCOUNT_UNLOCK, new \DateTime('+3 days')); } + /** + * @param User $user + * + * @return Token + */ + public function createAccountDeleteToken(User $user, $email) + { + return $this->create($user, self::TYPE_ACCOUNT_DELETE, new \DateTime('+1 hour'), $email); + } + /** * @param User $user * diff --git a/lib/Alchemy/Phrasea/Model/Repositories/BasketRepository.php b/lib/Alchemy/Phrasea/Model/Repositories/BasketRepository.php index 6304f3eaa6..b835a821e0 100644 --- a/lib/Alchemy/Phrasea/Model/Repositories/BasketRepository.php +++ b/lib/Alchemy/Phrasea/Model/Repositories/BasketRepository.php @@ -54,21 +54,24 @@ class BasketRepository extends EntityRepository /** * Returns all basket for a given user that are not marked as archived * - * @param User $user + * @param User $user + * @param null|string $sort * @return Basket[] */ public function findActiveByUser(User $user, $sort = null) { - $dql = 'SELECT b - FROM Phraseanet:Basket b - LEFT JOIN b.elements e - WHERE b.user = :usr_id - AND b.archived = false'; + // checked : 4 usages, "b.elements" is useless + $dql = "SELECT b\n" + . " FROM Phraseanet:Basket b\n" + // . " LEFT JOIN b.elements e\n" // + . " WHERE b.user = :usr_id\n" + . " AND b.archived = false"; if ($sort == 'date') { - $dql .= ' ORDER BY b.created DESC'; - } elseif ($sort == 'name') { - $dql .= ' ORDER BY b.name ASC'; + $dql .= "\n ORDER BY b.created DESC"; + } + elseif ($sort == 'name') { + $dql .= "\n ORDER BY b.name ASC"; } $query = $this->_em->createQuery($dql); @@ -80,24 +83,27 @@ class BasketRepository extends EntityRepository /** * Returns all unread basket for a given user that are not marked as archived * - * @param User $user + * @param User $user * @return Basket[] */ public function findUnreadActiveByUser(User $user) { - $dql = 'SELECT b - FROM Phraseanet:Basket b - JOIN b.elements e - LEFT JOIN b.validation s - LEFT JOIN s.participants p - WHERE b.archived = false - AND ( - (b.user = :usr_id_owner AND b.isRead = false) - OR (b.user != :usr_id_ownertwo - AND p.user = :usr_id_participant - AND p.is_aware = false) - ) - AND (s.expires IS NULL OR s.expires > CURRENT_TIMESTAMP())'; + // checked : 2 usages, "b.elements" is useless + $dql = "SELECT b\n" + . " FROM Phraseanet:Basket b\n" + // . " JOIN b.elements e\n" + . " LEFT JOIN b.validation s\n" + . " LEFT JOIN s.participants p\n" + . " WHERE b.archived = false\n" + . " AND (\n" + . " (b.user = :usr_id_owner AND b.isRead = false)\n" + . " OR \n" + . " (b.user != :usr_id_ownertwo\n" + . " AND p.user = :usr_id_participant\n" + . " AND p.is_aware = false\n" + . " AND s.expires > CURRENT_TIMESTAMP()\n" + . " )\n" + . " )"; $params = [ 'usr_id_owner' => $user->getId(), @@ -115,11 +121,22 @@ class BasketRepository extends EntityRepository * Returns all baskets that are in validation session not expired and * where a specified user is participant (not owner) * - * @param User $user + * @param User $user + * @param null|string $sort * @return Basket[] */ public function findActiveValidationByUser(User $user, $sort = null) { + // checked : 2 usages, "b.elements" seems useless. + $dql = "SELECT b\n" + . "FROM Phraseanet:Basket b\n" + // . " JOIN b.elements e\n" + // . " JOIN e.validation_datas v\n" + . " JOIN b.validation s\n" + . " JOIN s.participants p\n" + . "WHERE b.user != ?1 AND p.user = ?2\n" + . " AND (s.expires IS NULL OR s.expires > CURRENT_TIMESTAMP())"; + $dql = 'SELECT b FROM Phraseanet:Basket b JOIN b.elements e @@ -130,9 +147,9 @@ class BasketRepository extends EntityRepository AND (s.expires IS NULL OR s.expires > CURRENT_TIMESTAMP()) '; if ($sort == 'date') { - $dql .= ' ORDER BY b.created DESC'; + $dql .= "\nORDER BY b.created DESC"; } elseif ($sort == 'name') { - $dql .= ' ORDER BY b.name ASC'; + $dql .= "\nORDER BY b.name ASC"; } $query = $this->_em->createQuery($dql); @@ -152,10 +169,11 @@ class BasketRepository extends EntityRepository */ public function findUserBasket($basket_id, User $user, $requireOwner) { - $dql = 'SELECT b - FROM Phraseanet:Basket b - LEFT JOIN b.elements e - WHERE b.id = :basket_id'; + // checked : 3 usages, "b.elements e" seems useless + $dql = "SELECT b\n" + . " FROM Phraseanet:Basket b\n" + // . " LEFT JOIN b.elements e\n" + . " WHERE b.id = :basket_id"; $query = $this->_em->createQuery($dql); $query->setParameters(['basket_id' => $basket_id]); @@ -188,7 +206,7 @@ class BasketRepository extends EntityRepository public function findContainingRecordForUser(\record_adapter $record, User $user) { - + // todo : check "e.sbas_id = e.sbas_id" ??? $dql = 'SELECT b FROM Phraseanet:Basket b JOIN b.elements e @@ -210,30 +228,31 @@ class BasketRepository extends EntityRepository { switch ($type) { case self::RECEIVED: - $dql = 'SELECT b - FROM Phraseanet:Basket b - JOIN b.elements e - WHERE b.user = :usr_id AND b.pusher_id IS NOT NULL'; + // todo : check when called, and if "LEFT JOIN b.elements e" is usefull + $dql = "SELECT b\n" + . "FROM Phraseanet:Basket b\n" + . " JOIN b.elements e\n" + . "WHERE b.user = :usr_id AND b.pusher_id IS NOT NULL"; $params = [ 'usr_id' => $user->getId() ]; break; case self::VALIDATION_DONE: - $dql = 'SELECT b - FROM Phraseanet:Basket b - JOIN b.elements e - JOIN b.validation s - JOIN s.participants p - WHERE b.user != ?1 AND p.user = ?2'; + // todo : check when called, and if "LEFT JOIN b.elements e" is usefull + $dql = "SELECT b\n" + . "FROM Phraseanet:Basket b\n" + . " JOIN b.elements e\n" + . " JOIN b.validation s\n" + . " JOIN s.participants p\n" + . "WHERE b.user != ?1 AND p.user = ?2"; $params = [ - 1 => $user->getId() - , 2 => $user->getId() + 1 => $user->getId(), + 2 => $user->getId() ]; break; case self::VALIDATION_SENT: $dql = 'SELECT b FROM Phraseanet:Basket b - JOIN b.elements e JOIN b.validation v WHERE b.user = :usr_id'; $params = [ @@ -243,7 +262,6 @@ class BasketRepository extends EntityRepository case self::MYBASKETS: $dql = 'SELECT b FROM Phraseanet:Basket b - LEFT JOIN b.elements e LEFT JOIN b.validation s LEFT JOIN s.participants p WHERE (b.user = :usr_id)'; @@ -252,6 +270,7 @@ class BasketRepository extends EntityRepository ]; break; default: + // todo : check when called, and if "LEFT JOIN b.elements e" is usefull $dql = 'SELECT b FROM Phraseanet:Basket b LEFT JOIN b.elements e @@ -297,6 +316,7 @@ class BasketRepository extends EntityRepository */ public function findActiveValidationAndBasketByUser(User $user, $sort = null) { + // todo : check caller and if "LEFT JOIN b.elements e" is usefull $dql = 'SELECT b FROM Phraseanet:Basket b LEFT JOIN b.elements e diff --git a/lib/Alchemy/Phrasea/Model/Repositories/ValidationSessionRepository.php b/lib/Alchemy/Phrasea/Model/Repositories/ValidationSessionRepository.php new file mode 100644 index 0000000000..1bfd411c3f --- /dev/null +++ b/lib/Alchemy/Phrasea/Model/Repositories/ValidationSessionRepository.php @@ -0,0 +1,24 @@ +getName() === 'mysql') { - return $platform->getVarcharTypeDeclarationSQL($fieldDeclaration)." ". $platform->getCollationFieldDeclaration('utf8_bin'); + /** @var MySqlPlatform $platform */ + return $platform->getVarcharTypeDeclarationSQL($fieldDeclaration) + // . " CHARACTER SET utf8" + . " " . $platform->getColumnCollationDeclarationSQL('utf8_bin') + . " COMMENT '(DC2Type:binary_string)'" + ; } return $platform->getVarcharTypeDeclarationSQL($fieldDeclaration); @@ -39,4 +51,12 @@ class BinaryString extends Type { return $platform->getVarcharDefaultLength(); } + + /** + * @inheritdoc + */ + public function requiresSQLCommentHint(AbstractPlatform $platform) + { + return true; + } } diff --git a/lib/Alchemy/Phrasea/Notification/Mail/AbstractMail.php b/lib/Alchemy/Phrasea/Notification/Mail/AbstractMail.php index b1ea802221..5cf305b912 100644 --- a/lib/Alchemy/Phrasea/Notification/Mail/AbstractMail.php +++ b/lib/Alchemy/Phrasea/Notification/Mail/AbstractMail.php @@ -17,6 +17,8 @@ use Alchemy\Phrasea\Notification\ReceiverInterface; abstract class AbstractMail implements MailInterface { + const MAIL_SKIN = 'default'; + /** @var Application */ protected $app; /** @var EmitterInterface */ @@ -59,6 +61,7 @@ abstract class AbstractMail implements MailInterface 'expiration' => $this->getExpiration(), 'buttonUrl' => $this->getButtonURL(), 'buttonText' => $this->getButtonText(), + 'mailSkin' => $this->getMailSkin(), ]); } @@ -166,6 +169,14 @@ abstract class AbstractMail implements MailInterface $this->url = $url; } + /** + * @return string + */ + public function getMailSkin() + { + return self::MAIL_SKIN; + } + /** * {@inheritdoc} */ diff --git a/lib/Alchemy/Phrasea/Notification/Mail/MailRequestAccountDelete.php b/lib/Alchemy/Phrasea/Notification/Mail/MailRequestAccountDelete.php new file mode 100644 index 0000000000..56998f0a0f --- /dev/null +++ b/lib/Alchemy/Phrasea/Notification/Mail/MailRequestAccountDelete.php @@ -0,0 +1,105 @@ +user = $userOwner; + } + + /** + * {@inheritdoc} + */ + public function getSubject() + { + return $this->app->trans('Email:deletion:request:subject Delete account confirmation'); + } + + /** + * {@inheritdoc} + */ + public function getMessage() + { + if (!$this->user) { + throw new LogicException('You must set a user before calling getMessage'); + } + + return $this->app->trans("Email:deletion:request:message Hello %civility% %firstName% %lastName%. + We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below. + If you are not at the origin of this request, please change your password as soon as possible %resetPassword% + Link is valid for one hour.", [ + '%civility%' => $this->getOwnerCivility(), + '%firstName%'=> $this->user->getFirstName(), + '%lastName%' => $this->user->getLastName(), + '%urlInstance%' => ''.$this->getPhraseanetURL().'', + '%resetPassword%' => ''.$this->app->url('reset_password').'', + ]); + } + + /** + * {@inheritdoc} + */ + public function getButtonText() + { + return $this->app->trans('Email:deletion:request:textButton Delete my account'); + } + + /** + * {@inheritdoc} + */ + public function getButtonURL() + { + return $this->url; + } + + /** + * {@inheritdoc} + */ + public function getMailSkin() + { + return self::MAIL_SKIN; + } + + private function getOwnerCivility() + { + if (!$this->user) { + throw new LogicException('You must set a user before calling getMessage'); + } + + $civilities = [ + User::GENDER_MISS => 'Miss', + User::GENDER_MRS => 'Mrs', + User::GENDER_MR => 'Mr', + ]; + + if (array_key_exists($this->user->getGender(), $civilities)) { + return $civilities[$this->user->getGender()]; + } else { + return ''; + } + } +} diff --git a/lib/Alchemy/Phrasea/Notification/Mail/MailSuccessAccountDelete.php b/lib/Alchemy/Phrasea/Notification/Mail/MailSuccessAccountDelete.php new file mode 100644 index 0000000000..462feda255 --- /dev/null +++ b/lib/Alchemy/Phrasea/Notification/Mail/MailSuccessAccountDelete.php @@ -0,0 +1,45 @@ +app->trans('Delete account successfull'); + } + + /** + * {@inheritdoc} + */ + public function getMessage() + { + return $this->app->trans('Your phraseanet account on %urlInstance% has been deleted!', ['%urlInstance%' => ''.$this->getPhraseanetURL().'']); + } + + /** + * {@inheritdoc} + */ + public function getButtonText() + { + } + + /** + * {@inheritdoc} + */ + public function getButtonURL() + { + } +} diff --git a/lib/Alchemy/Phrasea/Out/Module/Excel.php b/lib/Alchemy/Phrasea/Out/Module/Excel.php new file mode 100644 index 0000000000..eaaf83a02d --- /dev/null +++ b/lib/Alchemy/Phrasea/Out/Module/Excel.php @@ -0,0 +1,86 @@ +format = $format; + + switch($format) { + case self::FORMAT_CSV: + /** @var Writer\CSV\Writer $writer */ + $writer = WriterFactory::create(Type::CSV); + $writer->setFieldDelimiter(';') + ->setShouldAddBOM(false); + break; + case self::FORMAT_ODS: + /** @var Writer\ODS\Writer $writer */ + $writer = WriterFactory::create(Type::ODS); + break; + case self::FORMAT_XLSX: + /** @var Writer\XLSX\Writer $writer */ + $writer = WriterFactory::create(Type::XLSX); + break; + default: + throw new \InvalidArgumentException(sprintf("format \"%s\" is not handled by Spout")); + break; + } + + $writer->openToBrowser($filename); + $this->writer = $writer; + } + + public function __destruct() + { + $this->writer->close(); + } + + public function getActiveSheet() + { + if($this->format == self::FORMAT_CSV) { + return "_unique_sheet_"; + } + /** @var Writer\XLSX\Writer $w */ + $w = $this->writer; + $sheetIndex = $w->getCurrentSheet()->getIndex(); + + return $sheetIndex; + } + + public function addRow($row) + { + $this->writer->addRow($row); + } + + public function render() + { + $this->writer->close(); + } + +} diff --git a/lib/Alchemy/Phrasea/Out/Module/Excel_bad.php b/lib/Alchemy/Phrasea/Out/Module/Excel_bad.php new file mode 100644 index 0000000000..1ee35c85d6 --- /dev/null +++ b/lib/Alchemy/Phrasea/Out/Module/Excel_bad.php @@ -0,0 +1,88 @@ +currentRowBySheet = []; + $this->spreadsheet = new Spreadsheet(); + } + + public function getActiveSheet() + { + $sheetIndex = $this->spreadsheet->getActiveSheetIndex(); + if(!array_key_exists($sheetIndex, $this->currentRowBySheet)) { + $this->currentRowBySheet[$sheetIndex] = 1; + } + + return $this->spreadsheet->getActiveSheet(); + } + + public function addRow($row) + { + $sheet = $this->getActiveSheet(); + $sheetIndex = $this->spreadsheet->getActiveSheetIndex(); + /** @var int $r * / + $r = $this->currentRowBySheet[$sheetIndex]; + $c = 1; + foreach($row as $v) { + $sheet->setCellValueByColumnAndRow($c++, $r, $v); + } + $this->currentRowBySheet[$sheetIndex] = $r+1; + } + + public function fill() + { + $sheet = $this->getActiveSheet(); + $sheet->setCellValue('A1', 'Hello World !'); + } + + public function render($format) + { + switch($format) { + case self::FORMAT_XLS: + header('Content-Type: application/vnd.ms-excel'); + $writer = IOFactory::createWriter($this->spreadsheet, 'Xls'); + break; + case self::FORMAT_XLSX: + header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'); + $writer = IOFactory::createWriter($this->spreadsheet, 'Xlsx'); + break; + } + header('Content-Disposition: attachment;filename="myfile.xls"'); + header('Cache-Control: max-age=0'); + + $writer = IOFactory::createWriter($this->spreadsheet, 'Xls'); + + $writer->save('php://output'); + } + +} + +*/ diff --git a/lib/Alchemy/Phrasea/Report/Controller/ApiReportController.php b/lib/Alchemy/Phrasea/Report/Controller/ApiReportController.php new file mode 100644 index 0000000000..d2348b3567 --- /dev/null +++ b/lib/Alchemy/Phrasea/Report/Controller/ApiReportController.php @@ -0,0 +1,145 @@ +reportFactory = $reportFactory; + $this->reportService = $reportService; + $this->anonymousReport = $anonymousReport; + $this->acl = $acl; + } + + /** + * route api/report + * + * @param Request $request + * @return \Symfony\Component\HttpFoundation\Response + */ + public function rootAction(Request $request) + { + $ret = [ + 'granted' => $this->reportService->getGranted() + ]; + + $result = Result::create($request, $ret); + + return $result->createResponse(); + } + + /** + * route api/report/connections + * + * @param Request $request + * @param $sbasId + * @return \Symfony\Component\HttpFoundation\Response + */ + public function connectionsAction(Request $request, $sbasId) + { + /** @var ReportConnections $report */ + $report = $this->reportFactory->createReport( + ReportFactory::CONNECTIONS, + $sbasId, + [ + 'dmin' => $request->get('dmin'), + 'dmax' => $request->get('dmax'), + 'group' => $request->get('group'), + 'anonymize' => $this->anonymousReport, + ] + ); + + $result = Result::create($request, $report->getContent()); + + return $result->createResponse(); + } + + /** + * route api/report/downloads + * + * @param Request $request + * @param $sbasId + * @return \Symfony\Component\HttpFoundation\Response + */ + public function downloadsAction(Request $request, $sbasId) + { + /** @var ReportDownloads $report */ + $report = $this->reportFactory->createReport( + ReportFactory::DOWNLOADS, + $sbasId, + [ + 'dmin' => $request->get('dmin'), + 'dmax' => $request->get('dmax'), + 'group' => $request->get('group'), + 'bases' => $request->get('base'), + 'anonymize' => $this->anonymousReport, + ] + ); + + $result = Result::create($request, $report->getContent()); + + return $result->createResponse(); + } + + /** + * route api/report/records + * + * @param Request $request + * @param $sbasId + * @return \Symfony\Component\HttpFoundation\Response + */ + public function recordsAction(Request $request, $sbasId) + { + /** @var ReportRecords $report */ + $report = $this->reportFactory->createReport( + ReportFactory::RECORDS, + $sbasId, + [ + 'dmin' => $request->get('dmin'), + 'dmax' => $request->get('dmax'), + 'group' => $request->get('group'), + 'base' => $request->get('base'), + 'meta' => $request->get('meta'), + ] + ); + + $result = Result::create($request, $report->getContent()); + + return $result->createResponse(); + } + +} diff --git a/lib/Alchemy/Phrasea/Report/Controller/ProdReportController.php b/lib/Alchemy/Phrasea/Report/Controller/ProdReportController.php new file mode 100644 index 0000000000..90e9aa807a --- /dev/null +++ b/lib/Alchemy/Phrasea/Report/Controller/ProdReportController.php @@ -0,0 +1,210 @@ + [ + 'contentType' => 'text/csv', + 'format' => Report::FORMAT_CSV, + ], + 'ods' => [ + 'contentType' => 'application/vnd.oasis.opendocument.spreadsheet', + 'format' => Report::FORMAT_ODS, + ], + 'xlsx' => [ + 'contentType' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', + 'format' => Report::FORMAT_XLSX, + ], + ]; + + private $reportFactory; + private $anonymousReport; + private $acl; + + private $extension = null; + + + /** + * @param ReportFactory $reportFactory + * @param Bool $anonymousReport + * @param \ACL $acl + */ + public function __construct(ReportFactory $reportFactory, $anonymousReport, \ACL $acl) + { + $this->reportFactory = $reportFactory; + $this->anonymousReport = $anonymousReport; + $this->acl = $acl; + } + + /** + * route prod/report/connections + * + * @param Request $request + * @return Response + */ + public function indexAction(Request $request) + { + return new Response($this->render('prod/report/index.html.twig', [ + 'truc' => "hello" + ])); + } + + /** + * route prod/report/connections + * + * @param Request $request + * @param $sbasId + * @return StreamedResponse + */ + public function connectionsAction(Request $request, $sbasId) + { + if(!($extension = $request->get('format'))) { + $extension = 'csv'; + } + if(!array_key_exists($extension, self::$mapFromExtension)) { + throw new \InvalidArgumentException(sprintf("bad format \"%s\" for report", $extension)); + } + $this->extension = $extension; + + /** @var ReportConnections $report */ + $report = $this->reportFactory->createReport( + ReportFactory::CONNECTIONS, + $sbasId, + [ + 'dmin' => $request->get('dmin'), + 'dmax' => $request->get('dmax'), + 'group' => $request->get('group'), + 'anonymize' => $this->anonymousReport, + ] + ); + + $report->setFormat(self::$mapFromExtension[$this->extension]['format']); + + $response = new StreamedResponse(); + + $this->setHeadersFromFormat($response, $report); + + $response->setCallback(function() use($report) { + $report->render(); + }); + + return $response; + } + + /** + * route prod/report/downloads + * + * @param Request $request + * @param $sbasId + * @return StreamedResponse + */ + public function downloadsAction(Request $request, $sbasId) + { + if(!($extension = $request->get('format'))) { + $extension = 'csv'; + } + if(!array_key_exists($extension, self::$mapFromExtension)) { + throw new \InvalidArgumentException(sprintf("bad format \"%s\" for report", $extension)); + } + $this->extension = $extension; + + /** @var ReportDownloads $report */ + $report = $this->reportFactory->createReport( + ReportFactory::DOWNLOADS, + $sbasId, + [ + 'dmin' => $request->get('dmin'), + 'dmax' => $request->get('dmax'), + 'group' => $request->get('group'), + 'bases' => $request->get('base'), + 'anonymize' => $this->anonymousReport, + ] + ); + + $report->setFormat(self::$mapFromExtension[$this->extension]['format']); + + $response = new StreamedResponse(); + + $this->setHeadersFromFormat($response, $report); + + $response->setCallback(function() use($report) { + $report->render(); + }); + + return $response; + } + + /** + * route prod/report/records + * + * @param Request $request + * @param $sbasId + * @return StreamedResponse + */ + public function recordsAction(Request $request, $sbasId) + { + if(!($extension = $request->get('format'))) { + $extension = 'csv'; + } + if(!array_key_exists($extension, self::$mapFromExtension)) { + throw new \InvalidArgumentException(sprintf("bad format \"%s\" for report", $extension)); + } + $this->extension = $extension; + + /** @var ReportRecords $report */ + $report = $this->reportFactory->createReport( + ReportFactory::RECORDS, + $sbasId, + [ + 'dmin' => $request->get('dmin'), + 'dmax' => $request->get('dmax'), + 'group' => $request->get('group'), + 'base' => $request->get('base'), + 'meta' => $request->get('meta'), + ] + ); + + $report->setFormat(self::$mapFromExtension[$this->extension]['format']); + +set_time_limit(600); + $response = new StreamedResponse(); + + $this->setHeadersFromFormat($response, $report); + + $response->setCallback(function() use($report) { + $report->render(); + }); + + return $response; + } + + + private function setHeadersFromFormat($response, Report $report) + { + $response->headers->set('Content-Type', self::$mapFromExtension[$this->extension]['contentType']); + $response->headers->set('Content-Disposition', 'attachment;filename="' . $report->getName() . '"'); + $response->headers->set('Cache-Control', 'max-age=0'); + } + +} diff --git a/lib/Alchemy/Phrasea/Report/ControllerProvider/ApiReportControllerProvider.php b/lib/Alchemy/Phrasea/Report/ControllerProvider/ApiReportControllerProvider.php new file mode 100644 index 0000000000..321f7f7897 --- /dev/null +++ b/lib/Alchemy/Phrasea/Report/ControllerProvider/ApiReportControllerProvider.php @@ -0,0 +1,112 @@ +share( + function (PhraseaApplication $app) { + return (new ApiReportController( + $app['report.factory'], + $app['report.service'], + $app['conf']->get(['registry', 'modules', 'anonymous-report']), + $app->getAclForUser($app->getAuthenticatedUser()) + )); + } + ); + + $app['report.factory'] = $app->share( + function (PhraseaApplication $app) { + return (new ReportFactory( + $app['conf']->get(['main', 'key']), + $app['phraseanet.appbox'], + $app->getAclForUser($app->getAuthenticatedUser()) + )); + } + ); + + $app['report.service'] = $app->share( + function (PhraseaApplication $app) { + return (new ReportService( + $app['conf']->get(['main', 'key']), + $app['phraseanet.appbox'], + $app->getAclForUser($app->getAuthenticatedUser()) + )); + } + ); + } + + public function boot(Application $app) + { + // Intentionally left empty + } + + public function connect(Application $app) + { + if (! $this->isApiEnabled($app)) { + return $app['controllers_factory']; + } + + $controllers = $this->createCollection($app); + /* + $firewall = $this->getFirewall($app); + + $controllers->before(function () use ($firewall) { + $firewall->requireAccessToModule('report'); + }); + */ + + $controllers->before(new OAuthListener()); + $controllers + ->match('/', 'controller.api.v2.report:rootAction') + ->method('GET|POST') + ; + + $controllers + ->match('/connections/{sbasId}/', 'controller.api.v2.report:connectionsAction') + ->assert('sbasId', '\d+') + ->method('GET|POST') + ; + + $controllers + ->match('/downloads/{sbasId}/', 'controller.api.v2.report:downloadsAction') + ->assert('sbasId', '\d+') + ->method('GET|POST') + ; + + $controllers + ->match('/records/{sbasId}/', 'controller.api.v2.report:recordsAction') + ->assert('sbasId', '\d+') + ->method('GET|POST') + ; + + return $controllers; + } +} diff --git a/lib/Alchemy/Phrasea/Report/ControllerProvider/ProdReportControllerProvider.php b/lib/Alchemy/Phrasea/Report/ControllerProvider/ProdReportControllerProvider.php new file mode 100644 index 0000000000..12c7710fac --- /dev/null +++ b/lib/Alchemy/Phrasea/Report/ControllerProvider/ProdReportControllerProvider.php @@ -0,0 +1,85 @@ +share( + function (PhraseaApplication $app) { + return (new ProdReportController( + $app['report.factory'], + $app['conf']->get(['registry', 'modules', 'anonymous-report']), + $app->getAclForUser($app->getAuthenticatedUser()) + )); + } + ); + + $app['report.factory'] = $app->share( + function (PhraseaApplication $app) { + return (new ReportFactory( + $app['conf']->get(['main', 'key']), + $app['phraseanet.appbox'], + $app->getAclForUser($app->getAuthenticatedUser()) + )); + } + ); + } + + public function boot(Application $app) + { + // no-op + } + + /** + * {@inheritDoc} + */ + public function connect(Application $app) + { + $controllers = $this->createAuthenticatedCollection($app); + + $controllers + ->match('/connections/{sbasId}/', 'controller.prod.report:connectionsAction') + ->assert('sbasId', '\d+') + ->bind('report2_connections') + ->method('GET|POST') + ; + + $controllers + ->match('/downloads/{sbasId}/', 'controller.prod.report:downloadsAction') + ->assert('sbasId', '\d+') + ->bind('report2_downloads') + ->method('GET|POST') + ; + + $controllers + ->match('/records/{sbasId}/', 'controller.prod.report:recordsAction') + ->assert('sbasId', '\d+') + ->bind('report2_records') + ->method('GET|POST') + ; + + return $controllers; + } +} diff --git a/lib/Alchemy/Phrasea/Report/Report.php b/lib/Alchemy/Phrasea/Report/Report.php new file mode 100644 index 0000000000..5fe6ed5bf8 --- /dev/null +++ b/lib/Alchemy/Phrasea/Report/Report.php @@ -0,0 +1,157 @@ +databox = $databox; + $this->parms = $parms; + + $this->databox->get_connection()->getWrappedConnection()->setAttribute(\PDO::MYSQL_ATTR_USE_BUFFERED_QUERY, FALSE); + } + + abstract function getName(); + + abstract function getColumnTitles(); + + abstract function getKeyName(); + + abstract function getAllRows($callback); + + protected function getDatabox() + { + return $this->databox; + } + + public function getContent() + { + $ret = []; + $this->getAllRows( + function($row) use($ret) { + $ret[] = $row; + } + ); + + return $ret; + } + + /** + * get quoted coll id's granted for report, possibly filtered by + * baseIds : only from this list of bases + * + * @param \ACL $acl + * @param int[]|null $baseIds + * @return array + */ + protected function getCollIds(\ACL $acl, $baseIds) + { + $ret = []; + /** @var \collection $collection */ + foreach($acl->get_granted_base([\ACL::CANREPORT]) as $collection) { + if($collection->get_sbas_id() != $this->databox->get_sbas_id()) { + continue; + } + if(!is_null($baseIds) && !in_array($collection->get_base_id(), $baseIds)) { + continue; + } + $ret[] = $this->databox->get_connection()->quote($collection->get_coll_id()); + } + + return $ret; + } + + public function setFormat($format) + { + if(!in_array($format, [ + //self::FORMAT_XLS, + self::FORMAT_CSV, + self::FORMAT_ODS, + self::FORMAT_XLSX, + ])) { + throw new \InvalidArgumentException(sprintf("bad format \"%s\" for report", $format)); + } + $this->format = $format; + + return $this; + } + + public function getFormat() + { + return $this->format; + } + + public function render() + { + switch($this->format) { + //case self::FORMAT_XLS: + case self::FORMAT_CSV: + case self::FORMAT_ODS: + case self::FORMAT_XLSX: + $this->renderAsExcel(); + break; + default: + // should not happen since format is checked before + break; + } + } + + private function renderAsExcel() + { + switch($this->format) { + //case self::FORMAT_XLS: + // $excel = new Excel(Excel::FORMAT_XLS); + // header('Content-Type: application/vnd.ms-excel'); + // break; + case self::FORMAT_XLSX: + $excel = new Excel(Excel::FORMAT_XLSX, $this->getName() . ".xlsx"); + break; + case self::FORMAT_ODS: + $excel = new Excel(Excel::FORMAT_ODS, $this->getName() . ".ods"); + break; + case self::FORMAT_CSV: + default: + $excel = new Excel(Excel::FORMAT_CSV, $this->getName() . ".csv"); + break; + } + + $excel->addRow($this->getColumnTitles()); + + $n = 0; + $this->getAllRows( + function($row) use($excel, $n) { + $excel->addRow($row); + if($n++ % 10000 === 0) { + flush(); + } + } + ); + + $excel->render(); + } + +} diff --git a/lib/Alchemy/Phrasea/Report/ReportConnections.php b/lib/Alchemy/Phrasea/Report/ReportConnections.php new file mode 100644 index 0000000000..40fd88b528 --- /dev/null +++ b/lib/Alchemy/Phrasea/Report/ReportConnections.php @@ -0,0 +1,149 @@ +computeVars(); + return $this->columnTitles; + } + + public function getKeyName() + { + $this->computeVars(); + return $this->keyName; + } + + public function getName() + { + $this->computeVars(); + return $this->name; + } + + public function setAppKey($appKey) + { + $this->appKey = $appKey; + + return $this; + } + + public function getAllRows($callback) + { + $this->computeVars(); + $stmt = $this->databox->get_connection()->executeQuery($this->sql, []); + while (($row = $stmt->fetch())) { + $callback($row); + } + $stmt->closeCursor(); + } + + private function computeVars() + { + if(!is_null($this->name)) { + // vars already computed + return; + } + + switch($this->parms['group']) { + case null: + $this->name = "Connections"; + $this->columnTitles = ['id', 'date', 'usrid', 'user', 'fonction', 'societe', 'activite', 'pays', 'nav', 'version', 'os', 'res', 'ip', 'user_agent']; + if($this->parms['anonymize']) { + $sql = "SELECT `id`, `date`,\n" + . " `usrid`, '-' AS `user`, '-' AS `fonction`, '-' AS `societe`, '-' AS `activite`, '-' AS `pays`,\n" + . " `nav`, `version`, `os`, `res`, `ip`, `user_agent` FROM `log`\n" + . " WHERE {{GlobalFilter}}"; + } + else { + $sql = "SELECT `id`, `date`,\n" + . " `usrid`, `user`, `fonction`, `societe`, `activite`, `pays`,\n" + . " `nav`, `version`, `os`, `res`, `ip`, `user_agent` FROM `log`\n" + . " WHERE {{GlobalFilter}}"; + } + $this->keyName = null; + break; + case 'user': + $this->name = "Connections per user"; + $this->columnTitles = ['user_id', 'user', 'fonction', 'societe', 'activite', 'pays', 'min_date', 'max_date', 'nb']; + if($this->parms['anonymize']) { + $sql = "SELECT `usrid`, '-' AS `user`, '-' AS `fonction`, '-' AS `societe`, '-' AS `activite`, '-' AS `pays`,\n" + . " MIN(`date`) AS `dmin`, MAX(`date`) AS `dmax`, SUM(1) AS `nb` FROM `log`\n" + . " WHERE {{GlobalFilter}}\n" + . " GROUP BY `usrid`\n" + . " ORDER BY `nb` DESC"; + } + else { + $sql = "SELECT `usrid`, `user`, `fonction`, `societe`, `activite`, `pays`,\n" + . " MIN(`date`) AS `dmin`, MAX(`date`) AS `dmax`, SUM(1) AS `nb` FROM `log`\n" + . " WHERE {{GlobalFilter}}\n" + . " GROUP BY `usrid`\n" + . " ORDER BY `nb` DESC"; + } + $this->keyName = 'usrid'; + break; + case 'nav': + case 'nav,version': + case 'os': + case 'os,nav': + case 'os,nav,version': + case 'res': + $this->name = "Connections per " . $this->parms['group']; + $groups = explode(',', $this->parms['group']); + $qgroups = implode( + ',', + array_map(function($g) {return '`'.$g.'`';}, $groups) + ); + $this->columnTitles = $groups; + $this->columnTitles[] = 'nb'; + $sql = "SELECT " . $qgroups . ", SUM(1) AS `nb` FROM `log`\n" + . " WHERE {{GlobalFilter}}\n" + . " GROUP BY " . $qgroups . "\n" + . " ORDER BY `nb` DESC" + ; + $this->keyName = null; + break; + default: + throw new InvalidArgumentException('invalid "group" argument'); + break; + } + + $filter = "`usrid`>0"; + // next line : comment to disable "site", to test on an imported dataset from another instance + $filter .= " AND `site` = " . $this->databox->get_connection()->quote($this->appKey); + + if($this->parms['dmin']) { + $filter .= "\n AND `log`.`date` >= " . $this->databox->get_connection()->quote($this->parms['dmin']); + } + if($this->parms['dmax']) { + $filter .= "\n AND `log`.`date` <= " . $this->databox->get_connection()->quote($this->parms['dmax']); + } + + $this->sql = str_replace('{{GlobalFilter}}', $filter, $sql); + + // file_put_contents("/tmp/phraseanet-log.txt", sprintf("%s (%d) %s\n", __FILE__, __LINE__, var_export($this->sql, true)), FILE_APPEND); + } + +} diff --git a/lib/Alchemy/Phrasea/Report/ReportDownloads.php b/lib/Alchemy/Phrasea/Report/ReportDownloads.php new file mode 100644 index 0000000000..7ff826a18b --- /dev/null +++ b/lib/Alchemy/Phrasea/Report/ReportDownloads.php @@ -0,0 +1,179 @@ +computeVars(); + return $this->columnTitles; + } + + public function getKeyName() + { + $this->computeVars(); + return $this->keyName; + } + + public function getName() + { + $this->computeVars(); + return $this->name; + } + + public function setAppKey($appKey) + { + $this->appKey = $appKey; + + return $this; + } + + public function setACL($acl) + { + $this->acl = $acl; + + return $this; + } + + public function getAllRows($callback) + { + $this->computeVars(); + $stmt = $this->databox->get_connection()->executeQuery($this->sql, []); + while (($row = $stmt->fetch())) { + $callback($row); + } + $stmt->closeCursor(); + } + + private function computeVars() + { + if(!is_null($this->name)) { + // vars already computed + return; + } + + switch ($this->parms['group']) { + case null: + $this->name = "Downloads"; + $this->columnTitles = ['id', 'usrid', 'user', 'fonction', 'societe', 'activite', 'pays', 'date', 'record_id', 'coll_id', 'subdef']; + if($this->parms['anonymize']) { + $sql = "SELECT `ld`.`id`, `l`.`usrid`, '-' AS `user`, '-' AS `fonction`, '-' AS `societe`, '-' AS `activite`, '-' AS `pays`,\n" + . " `ld`.`date`, `ld`.`record_id`, `ld`.`coll_id`, `ld`.`final`" + . " FROM `log_docs` AS `ld` INNER JOIN `log` AS `l` ON `l`.`id`=`ld`.`log_id`\n" + . " WHERE {{GlobalFilter}}"; + } + else { + $sql = "SELECT `ld`.`id`, `l`.`usrid`, `l`.`user`, `l`.`fonction`, `l`.`societe`, `l`.`activite`, `l`.`pays`,\n" + . " `ld`.`date`, `ld`.`record_id`, `ld`.`coll_id`, `ld`.`final`" + . " FROM `log_docs` AS `ld` INNER JOIN `log` AS `l` ON `l`.`id`=`ld`.`log_id`\n" + . " WHERE {{GlobalFilter}}"; + } + $this->keyName = 'id'; + break; + case 'user': + $this->name = "Downloads by user"; + $this->columnTitles = ['usrid', 'user', 'fonction', 'societe', 'activite', 'pays', 'min_date', 'max_date', 'nb']; + if($this->parms['anonymize']) { + $sql = "SELECT `l`.`usrid`, '-' AS `user`, '-' AS `fonction`, '-' AS `societe`, '-' AS `activite`, '-' AS `pays`,\n" + . " MIN(`ld`.`date`) AS `dmin`, MAX(`ld`.`date`) AS `dmax`, SUM(1) AS `nb`\n" + . " FROM `log_docs` AS `ld` INNER JOIN `log` AS `l` ON `l`.`id`=`ld`.`log_id`\n" + . " WHERE {{GlobalFilter}}\n" + . " GROUP BY `l`.`usrid`\n" + . " ORDER BY `nb` DESC"; + } + else { + $sql = "SELECT `l`.`usrid`, `l`.`user`, `l`.`fonction`, `l`.`societe`, `l`.`activite`, `l`.`pays`,\n" + . " MIN(`ld`.`date`) AS `dmin`, MAX(`ld`.`date`) AS `dmax`, SUM(1) AS `nb`\n" + . " FROM `log_docs` AS `ld` INNER JOIN `log` AS `l` ON `l`.`id`=`ld`.`log_id`\n" + . " WHERE {{GlobalFilter}}\n" + . " GROUP BY `l`.`usrid`\n" + . " ORDER BY `nb` DESC"; + } + $this->keyName = 'usrid'; + break; + case 'record': + $this->name = "Downloads by record"; + $this->columnTitles = ['record_id', 'min_date', 'max_date', 'nb']; + $sql = "SELECT `ld`.`record_id`,\n" + . " MIN(`ld`.`date`) AS `dmin`, MAX(`ld`.`date`) AS `dmax`, SUM(1) AS `nb`\n" + . " FROM `log_docs` AS `ld` INNER JOIN `log` AS `l` ON `l`.`id`=`ld`.`log_id`\n" + . " WHERE {{GlobalFilter}}\n" + . " GROUP BY `l`.`usrid`\n" + . " ORDER BY `nb` DESC" + ; + $this->keyName = 'record_id'; + break; + default: + throw new InvalidArgumentException('invalid "group" argument'); + break; + } + + // get acl-filtered coll_id(s) as already sql-quoted + $collIds = $this->getCollIds($this->acl, $this->parms['bases']); + + if(!empty($collIds)) { + + // filter subdefs by class + $subdefsToReport = ['document' => $this->databox->get_connection()->quote('document')]; + foreach ($this->getDatabox()->get_subdef_structure() as $subGroup) { + foreach ($subGroup->getIterator() as $sub) { + if(in_array($sub->get_class(), ['document', 'preview'])) { + // keep only unique names + $subdefsToReport[$sub->get_name()] = $this->databox->get_connection()->quote($sub->get_name()); + } + } + } + + $subdefsToReport = join(',', $subdefsToReport); + + $filter = "`action`='download' AND `ld`.`coll_id` IN(" . join(',', $collIds) . ")\n" + . " AND `l`.`usrid`>0\n" + . " AND `ld`.`final` IN(" . $subdefsToReport . ")"; + + // next line : comment to disable "site", to test on an imported dataset from another instance + $filter .= "\n AND `l`.`site` = " . $this->databox->get_connection()->quote($this->appKey); + + if($this->parms['dmin']) { + $filter .= "\n AND `ld`.`date` >= " . $this->databox->get_connection()->quote($this->parms['dmin']); + } + if($this->parms['dmax']) { + $filter .= "\n AND `ld`.`date` <= " . $this->databox->get_connection()->quote($this->parms['dmax']); + } + } + else { + // no collections report ? + // keep the sql intact (to match placeholders/parameters), but enforce empty result + $filter = "FALSE"; + } + + $this->sql = str_replace('{{GlobalFilter}}', $filter, $sql); + + // file_put_contents("/tmp/phraseanet-log.txt", sprintf("%s (%d) %s\n", __FILE__, __LINE__, $this->sql), FILE_APPEND); + } + +} diff --git a/lib/Alchemy/Phrasea/Report/ReportFactory.php b/lib/Alchemy/Phrasea/Report/ReportFactory.php new file mode 100644 index 0000000000..7e855ec890 --- /dev/null +++ b/lib/Alchemy/Phrasea/Report/ReportFactory.php @@ -0,0 +1,105 @@ +appKey = $appKey; + $this->appbox = $appbox; + $this->acl = $acl; + } + + /** + * @param $table + * @param null $sbasId + * @param null $parms + * + * @return ReportConnections | ReportDownloads + */ + public function createReport($table, $sbasId=null, $parms=null) + { + switch($table) { + case self::CONNECTIONS: + return (new ReportConnections( + $this->findDbOr404($sbasId), + $parms + )) + ->setAppKey($this->appKey) + ; + break; + + case self::DOWNLOADS: + return (new ReportDownloads( + $this->findDbOr404($sbasId), + $parms + )) + ->setAppKey($this->appKey) + ->setACL($this->acl) + ; + break; + + case self::RECORDS: + return (new ReportRecords( + $this->findDbOr404($sbasId), + $parms + )) + ->setACL($this->acl) + ; + break; + + default: + throw new \InvalidArgumentException(sprintf("unknown table type \"%s\"", $table)); + break; + } + } + + /** + * @param int $sbasId + * @return \databox + */ + private function findDbOr404($sbasId) + { + $db = $this->appbox->get_databox(($sbasId)); + if(!$db) { + throw new NotFoundHttpException(sprintf('Databox %s not found', $sbasId)); + } + + return $db; + } + +} diff --git a/lib/Alchemy/Phrasea/Report/ReportRecords.php b/lib/Alchemy/Phrasea/Report/ReportRecords.php new file mode 100644 index 0000000000..7e4eb1c7d7 --- /dev/null +++ b/lib/Alchemy/Phrasea/Report/ReportRecords.php @@ -0,0 +1,133 @@ +computeVars(); + return $this->columnTitles; + } + + public function getKeyName() + { + $this->computeVars(); + return $this->keyName; + } + + public function getName() + { + $this->computeVars(); + return $this->name; + } + + public function setACL($acl) + { + $this->acl = $acl; + + return $this; + } + + public function getAllRows($callback) + { + $this->computeVars(); + + $lastRid = 0; + while(true) { + $sql = "SELECT MIN(record_id) AS `from`, MAX(record_id) AS `to` FROM (\n" + . "SELECT record_id FROM record AS `r`\n" + . "WHERE " . $this->sqlWhere . " AND record_id>" . $lastRid . " LIMIT 5000) AS _t"; + $stmt = $this->databox->get_connection()->executeQuery($sql, []); + $row = $stmt->fetch(); + $stmt->closeCursor(); + + if($row && !is_null($row['from']) && !is_null($row['to'])) { + $sql = "SELECT r.record_id, c.asciiname, r.moddate, r.mime, r.type, r.originalname,\n" + . $this->sqlColSelect . "\n" + . "FROM (`record` AS `r` LEFT JOIN `coll` AS `c` USING(`coll_id`)) LEFT JOIN `metadatas` AS `m` USING(`record_id`)\n" + . "WHERE " . $this->sqlWhere . "\n" + . " AND r.record_id >= " . $row['from'] . " AND r.record_id <= " . $row['to'] . "\n" + . "GROUP BY `record_id`\n"; + + $stmt = $this->databox->get_connection()->executeQuery($sql, []); + $rows = $stmt->fetchAll(); + $stmt->closeCursor(); + foreach($rows as $row) { + $callback($row); + $lastRid = $row['record_id']; + } + } + else { + break; + } + } + } + + private function computeVars() + { + if(!is_null($this->name)) { + // vars already computed + return; + } + + // pivot-like query on metadata fields + $this->sqlColSelect = []; + $this->columnTitles = ['record_id', 'collection', 'moddate', 'mime', 'type', 'originalname']; + foreach($this->getDatabox()->get_meta_structure() as $field) { + // skip the fields that can't be reported + if(!$field->is_report() || ($field->isBusiness() && !$this->acl->can_see_business_fields($this->getDatabox()))) { + continue; + } + // if a list of meta was provided, just keep those + if(is_array($this->parms['meta']) && !in_array($field->get_name(), $this->parms['meta'])) { + continue; + } + // column names is not important in the result, simply match the 'title' position + $this->columnTitles[] = $field->get_name(); + $this->sqlColSelect[] = sprintf("GROUP_CONCAT(IF(`m`.`meta_struct_id`=%s, `m`.`value`, NULL)) AS `f%s`", $field->get_id(), $field->get_id()); + } + + $this->sqlColSelect = join(",\n", $this->sqlColSelect); + + // get acl-filtered coll_id(s) as already sql-quoted + $collIds = $this->getCollIds($this->acl, $this->parms['base']); + if(!empty($collIds)) { + $this->sqlWhere = "`r`.`parent_record_id`=0 AND `r`.`coll_id` IN(" . join(',', $collIds) . ")"; + if(!is_null($this->parms['dmin'])) { + $this->sqlWhere .= " AND r.moddate >= " . $this->databox->get_connection()->quote($this->parms['dmin']); + } + if(!is_null($this->parms['dmax'])) { + $this->sqlWhere .= " AND r.moddate <= " . $this->databox->get_connection()->quote($this->parms['dmax']); + } + } + else { + $this->sqlWhere = "FALSE"; + } + + $this->name = "Databox"; + } + +} diff --git a/lib/Alchemy/Phrasea/Report/ReportService.php b/lib/Alchemy/Phrasea/Report/ReportService.php new file mode 100644 index 0000000000..d1b2714f40 --- /dev/null +++ b/lib/Alchemy/Phrasea/Report/ReportService.php @@ -0,0 +1,62 @@ +appKey = $appKey; + $this->appbox = $appbox; + $this->acl = $acl; + } + + /** + * return bases allowed for reporting, grouped by databox + * @return array + */ + public function getGranted() + { + $databoxes = []; + + /** @var \collection $collection */ + foreach ($this->acl->get_granted_base([\ACL::CANREPORT]) as $collection) { + $sbas_id = $collection->get_sbas_id(); + if (!isset($databoxes[$sbas_id])) { + $databoxes[$sbas_id] = [ + 'id' => $sbas_id, + 'name' => $collection->get_databox()->get_viewname(), + 'collections' => [] + ]; + } + $databoxes[$sbas_id]['collections'][$collection->get_base_id()] = [ + 'id' => $collection->get_base_id(), + 'coll_id' => $collection->get_coll_id(), + 'name' => $collection->get_name() + ]; + } + + return ['databoxes' => $databoxes]; + } + +} diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/FieldKey.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/FieldKey.php index f4f8553738..293e8c69dd 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/FieldKey.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/FieldKey.php @@ -30,6 +30,11 @@ class FieldKey implements Key, QueryPostProcessor return $this->getField($context)->getIndexField($raw); } + public function getFieldType(QueryContext $context) + { + return $this->getField($context)->getType(); + } + public function isValueCompatible($value, QueryContext $context) { return ValueChecker::isValueCompatible($this->getField($context), $value); diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/GeolocationKey.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/GeolocationKey.php index 9d8942e8f7..4ab7998d2b 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/GeolocationKey.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/GeolocationKey.php @@ -58,6 +58,11 @@ class GeolocationKey implements Key $this->key = $key; } + public function getFieldType(QueryContext $context) + { + return $this->type; + } + public function getIndexField(QueryContext $context, $raw = false) { return $this->key; diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/Key.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/Key.php index 20ee045a59..d664fccb94 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/Key.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/Key.php @@ -6,6 +6,7 @@ use Alchemy\Phrasea\SearchEngine\Elastic\Search\QueryContext; interface Key { + public function getFieldType(QueryContext $context); public function getIndexField(QueryContext $context, $raw = false); public function isValueCompatible($value, QueryContext $context); public function __toString(); diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/MetadataKey.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/MetadataKey.php index 292b6e7237..61f9303fe0 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/MetadataKey.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/MetadataKey.php @@ -23,6 +23,11 @@ class MetadataKey implements Key return $this->getTag($context)->getIndexField($raw); } + public function getFieldType(QueryContext $context) + { + return $this->getTag($context)->getType(); + } + public function isValueCompatible($value, QueryContext $context) { return ValueChecker::isValueCompatible($this->getTag($context), $value); diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/NativeKey.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/NativeKey.php index e486483b71..3c2d334f48 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/NativeKey.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/NativeKey.php @@ -52,6 +52,11 @@ class NativeKey implements Key $this->key = $key; } + public function getFieldType(QueryContext $context) + { + return $this->type; + } + public function getIndexField(QueryContext $context, $raw = false) { return $this->key; diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/RangeExpression.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/RangeExpression.php index ec785354ae..17f901a77c 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/RangeExpression.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/RangeExpression.php @@ -2,18 +2,20 @@ namespace Alchemy\Phrasea\SearchEngine\Elastic\AST\KeyValue; +use Alchemy\Phrasea\SearchEngine\Elastic\FieldMapping; +use Alchemy\Phrasea\SearchEngine\Elastic\RecordHelper; +use Alchemy\Phrasea\SearchEngine\Elastic\Structure\Field as StructureField; use Assert\Assertion; -use Alchemy\Phrasea\SearchEngine\Elastic\AST\KeyValue\FieldKey; -use Alchemy\Phrasea\SearchEngine\Elastic\AST\KeyValue\Key; use Alchemy\Phrasea\SearchEngine\Elastic\AST\Node; use Alchemy\Phrasea\SearchEngine\Elastic\Exception\QueryException; use Alchemy\Phrasea\SearchEngine\Elastic\Search\QueryContext; -use Alchemy\Phrasea\SearchEngine\Elastic\Search\QueryHelper; use Alchemy\Phrasea\SearchEngine\Elastic\Search\QueryPostProcessor; class RangeExpression extends Node { + /** @var FieldKey */ private $key; + private $lower_bound; private $lower_inclusive; private $higher_bound; @@ -55,20 +57,34 @@ class RangeExpression extends Node public function buildQuery(QueryContext $context) { $params = array(); - if ($this->lower_bound !== null) { - $this->assertValueCompatible($this->lower_bound, $context); - if ($this->lower_inclusive) { - $params['gte'] = $this->lower_bound; - } else { - $params['gt'] = $this->lower_bound; + /** @var StructureField $field */ + // $field = $this->key->getField($context); + $lower_bound = $this->lower_bound; + $higher_bound = $this->higher_bound; + + if($this->key->getFieldType($context) === FieldMapping::TYPE_DATE) { + if($lower_bound !== null) { + $lower_bound = RecordHelper::sanitizeDate($lower_bound); + } + if($higher_bound !== null) { + $higher_bound = RecordHelper::sanitizeDate($higher_bound); } } - if ($this->higher_bound !== null) { - $this->assertValueCompatible($this->higher_bound, $context); - if ($this->higher_inclusive) { - $params['lte'] = $this->higher_bound; + + if ($lower_bound !== null) { + $this->assertValueCompatible($lower_bound, $context); + if ($this->lower_inclusive) { + $params['gte'] = $lower_bound; } else { - $params['lt'] = $this->higher_bound; + $params['gt'] = $lower_bound; + } + } + if ($higher_bound !== null) { + $this->assertValueCompatible($higher_bound, $context); + if ($this->higher_inclusive) { + $params['lte'] = $higher_bound; + } else { + $params['lt'] = $higher_bound; } } diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/TimestampKey.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/TimestampKey.php index b879945982..a5d34909d7 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/TimestampKey.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/KeyValue/TimestampKey.php @@ -34,6 +34,11 @@ class TimestampKey implements Key, Typed return FieldMapping::TYPE_DATE; } + public function getFieldType(QueryContext $context) + { + return FieldMapping::TYPE_DATE; + } + public function getIndexField(QueryContext $context, $raw = false) { return $this->index_field; diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/QuotedTextNode.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/QuotedTextNode.php index 8d2d5fd9ad..8c330545fd 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/QuotedTextNode.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/QuotedTextNode.php @@ -43,7 +43,7 @@ class QuotedTextNode extends Node $private_fields = $context->getPrivateFields(); $private_fields = ValueChecker::filterByValueCompatibility($private_fields, $this->text); - foreach (QueryHelper::wrapPrivateFieldQueries($private_fields, $query_builder) as $private_field_query) { + foreach (QueryHelper::wrapPrivateFieldQueries($private_fields, $unrestricted_fields, $query_builder) as $private_field_query) { $query = QueryHelper::applyBooleanClause($query, 'should', $private_field_query); } diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/RawNode.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/RawNode.php index 784fadcbfa..c6cdd7d5cc 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/RawNode.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/RawNode.php @@ -61,7 +61,7 @@ class RawNode extends Node $private_fields = $context->getPrivateFields(); $private_fields = ValueChecker::filterByValueCompatibility($private_fields, $this->text); - foreach (QueryHelper::wrapPrivateFieldQueries($private_fields, $query_builder) as $private_field_query) { + foreach (QueryHelper::wrapPrivateFieldQueries($private_fields, $unrestricted_fields, $query_builder) as $private_field_query) { $query = QueryHelper::applyBooleanClause($query, 'should', $private_field_query); } diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/TermNode.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/TermNode.php index 8066fa756c..c587c54592 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/TermNode.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/TermNode.php @@ -19,9 +19,11 @@ class TermNode extends AbstractTermNode return $query; }; - $query = $query_builder($context->getUnrestrictedFields()); + $unrestricted_fields = $context->getUnrestrictedFields(); $private_fields = $context->getPrivateFields(); - foreach (QueryHelper::wrapPrivateFieldQueries($private_fields, $query_builder) as $concept_query) { + $query = $query_builder($unrestricted_fields); + + foreach (QueryHelper::wrapPrivateFieldQueries($private_fields, $unrestricted_fields, $query_builder) as $concept_query) { $query = QueryHelper::applyBooleanClause($query, 'should', $concept_query); } diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/TextNode.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/TextNode.php index 49b8d49da9..bf239ffbd1 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/TextNode.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/TextNode.php @@ -45,6 +45,9 @@ class TextNode extends AbstractTermNode implements ContextAbleInterface foreach ($context->localizeField($field) as $f) { $index_fields[] = $f; } + foreach ($context->truncationField($field) as $f) { + $index_fields[] = $f; + } } if (!$index_fields) { return null; @@ -66,12 +69,11 @@ class TextNode extends AbstractTermNode implements ContextAbleInterface return $query; }; - // Unrestricted fields - $query = $query_builder($context->getUnrestrictedFields()); - - // Private fields + $unrestricted_fields = $context->getUnrestrictedFields(); $private_fields = $context->getPrivateFields(); - foreach (QueryHelper::wrapPrivateFieldQueries($private_fields, $query_builder) as $private_field_query) { + + $query = $query_builder($unrestricted_fields); + foreach (QueryHelper::wrapPrivateFieldQueries($private_fields, $unrestricted_fields, $query_builder) as $private_field_query) { $query = QueryHelper::applyBooleanClause($query, 'should', $private_field_query); } diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticSearchEngine.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticSearchEngine.php index 4a7e039f01..63d9ec108e 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticSearchEngine.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticSearchEngine.php @@ -396,10 +396,10 @@ class ElasticSearchEngine implements SearchEngineInterface if ($options->getDateFields() && ($options->getMaxDate() || $options->getMinDate())) { $range = []; if ($options->getMaxDate()) { - $range['lte'] = $options->getMaxDate()->format(FieldMapping::DATE_FORMAT_CAPTION_PHP); + $range['lte'] = $options->getMaxDate()->format('Y-m-d'); } if ($options->getMinDate()) { - $range['gte'] = $options->getMinDate()->format(FieldMapping::DATE_FORMAT_CAPTION_PHP); + $range['gte'] = $options->getMinDate()->format('Y-m-d'); } foreach ($options->getDateFields() as $dateField) { @@ -619,6 +619,8 @@ class ElasticSearchEngine implements SearchEngineInterface foreach ($context->getHighlightedFields() as $field) { switch ($field->getType()) { case FieldMapping::TYPE_STRING: + case FieldMapping::TYPE_DOUBLE: + case FieldMapping::TYPE_DATE: $index_field = $field->getIndexField(); $raw_index_field = $field->getIndexField(true); $highlighted_fields[$index_field . ".light"] = [ @@ -628,13 +630,10 @@ class ElasticSearchEngine implements SearchEngineInterface ]; break; case FieldMapping::TYPE_FLOAT: - case FieldMapping::TYPE_DOUBLE: case FieldMapping::TYPE_INTEGER: case FieldMapping::TYPE_LONG: case FieldMapping::TYPE_SHORT: case FieldMapping::TYPE_BYTE: - continue; - case FieldMapping::TYPE_DATE: default: continue; } @@ -660,7 +659,7 @@ class ElasticSearchEngine implements SearchEngineInterface } $agg = [ 'terms' => [ - 'field' => $f['field'], + 'field' => $f['esfield'], 'size' => $size ] ]; diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticsearchOptions.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticsearchOptions.php index 7b2bc94453..0532f85c30 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticsearchOptions.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticsearchOptions.php @@ -256,42 +256,56 @@ class ElasticsearchOptions { return [ 'base_aggregate' => [ - 'label' => 'prod::facet:base_label', - 'field' => 'databox_name', - 'query' => 'database:%s', + 'type' => 'string', + 'label' => 'prod::facet:base_label', + 'field' => "database", + 'esfield' => 'databox_name', + 'query' => 'database:%s', ], 'collection_aggregate' => [ - 'label' => 'prod::facet:collection_label', - 'field' => 'collection_name', - 'query' => 'collection:%s', + 'type' => 'string', + 'label' => 'prod::facet:collection_label', + 'field' => "collection", + 'esfield' => 'collection_name', + 'query' => 'collection:%s', ], 'doctype_aggregate' => [ - 'label' => 'prod::facet:doctype_label', - 'field' => 'type', - 'query' => 'type:%s', + 'type' => 'string', + 'label' => 'prod::facet:doctype_label', + 'field' => "type", + 'esfield' => 'type', + 'query' => 'type:%s', ], 'camera_model_aggregate' => [ - 'label' => 'Camera Model', - 'field' => 'metadata_tags.CameraModel', - 'query' => 'meta.CameraModel:%s', + 'type' => 'string', + 'label' => 'Camera Model', + 'field' => "meta.CameraModel", + 'esfield' => 'metadata_tags.CameraModel', + 'query' => 'meta.CameraModel:%s', ], 'iso_aggregate' => [ - 'label' => 'ISO', - 'field' => 'metadata_tags.ISO', - 'query' => 'meta.ISO=%s', + 'type' => 'number', + 'label' => 'ISO', + 'field' => "meta.ISO", + 'esfield' => 'metadata_tags.ISO', + 'query' => 'meta.ISO=%s', ], 'aperture_aggregate' => [ - 'label' => 'Aperture', - 'field' => 'metadata_tags.Aperture', - 'query' => 'meta.Aperture=%s', + 'type' => 'number', + 'label' => 'Aperture', + 'field' => "meta.Aperture", + 'esfield' => 'metadata_tags.Aperture', + 'query' => 'meta.Aperture=%s', 'output_formatter' => function($value) { return round($value, 1); }, ], 'shutterspeed_aggregate' => [ - 'label' => 'Shutter speed', - 'field' => 'metadata_tags.ShutterSpeed', - 'query' => 'meta.ShutterSpeed=%s', + 'type' => 'number', + 'label' => 'Shutter speed', + 'field' => "meta.ShutterSpeed", + 'esfield' => 'metadata_tags.ShutterSpeed', + 'query' => 'meta.ShutterSpeed=%s', 'output_formatter' => function($value) { if($value < 1.0 && $value != 0) { $value = '1/' . round(1.0 / $value); @@ -300,51 +314,67 @@ class ElasticsearchOptions }, ], 'flashfired_aggregate' => [ - 'label' => 'FlashFired', - 'field' => 'metadata_tags.FlashFired', - 'query' => 'meta.FlashFired=%s', + 'type' => 'boolean', + 'label' => 'FlashFired', + 'field' => "meta.FlashFired", + 'esfield' => 'metadata_tags.FlashFired', + 'query' => 'meta.FlashFired=%s', 'choices' => [ "aggregated (2 values: fired = 0 or 1)" => -1, ], 'output_formatter' => function($value) { - static $map = ['0'=>"No flash", '1'=>"Flash"]; + static $map = ["false"=>"No flash", "true"=>"Flash", '0'=>"No flash", '1'=>"Flash"]; return array_key_exists($value, $map) ? $map[$value] : $value; }, ], 'framerate_aggregate' => [ - 'label' => 'FrameRate', - 'field' => 'metadata_tags.FrameRate', - 'query' => 'meta.FrameRate=%s', + 'type' => 'number', + 'label' => 'FrameRate', + 'field' => "meta.FrameRate", + 'esfield' => 'metadata_tags.FrameRate', + 'query' => 'meta.FrameRate=%s', ], 'audiosamplerate_aggregate' => [ - 'label' => 'Audio Samplerate', - 'field' => 'metadata_tags.AudioSamplerate', - 'query' => 'meta.AudioSamplerate=%s', + 'type' => 'number', + 'label' => 'Audio Samplerate', + 'field' => "meta.AudioSamplerate", + 'esfield' => 'metadata_tags.AudioSamplerate', + 'query' => 'meta.AudioSamplerate=%s', ], 'videocodec_aggregate' => [ - 'label' => 'Video codec', - 'field' => 'metadata_tags.VideoCodec', - 'query' => 'meta.VideoCodec:%s', + 'type' => 'string', + 'label' => 'Video codec', + 'field' => "meta.VideoCodec", + 'esfield' => 'metadata_tags.VideoCodec', + 'query' => 'meta.VideoCodec:%s', ], 'audiocodec_aggregate' => [ - 'label' => 'Audio codec', - 'field' => 'metadata_tags.AudioCodec', - 'query' => 'meta.AudioCodec:%s', + 'type' => 'string', + 'label' => 'Audio codec', + 'field' => "meta.AudioCodec", + 'esfield' => 'metadata_tags.AudioCodec', + 'query' => 'meta.AudioCodec:%s', ], 'orientation_aggregate' => [ - 'label' => 'Orientation', - 'field' => 'metadata_tags.Orientation', - 'query' => 'meta.Orientation=%s', + 'type' => 'string', + 'label' => 'Orientation', + 'field' => "meta.Orientation", + 'esfield' => 'metadata_tags.Orientation', + 'query' => 'meta.Orientation=%s', ], 'colorspace_aggregate' => [ - 'label' => 'Colorspace', - 'field' => 'metadata_tags.ColorSpace', - 'query' => 'meta.ColorSpace:%s', + 'type' => 'string', + 'label' => 'Colorspace', + 'field' => "meta.ColorSpace", + 'esfield' => 'metadata_tags.ColorSpace', + 'query' => 'meta.ColorSpace:%s', ], 'mimetype_aggregate' => [ - 'label' => 'MimeType', - 'field' => 'metadata_tags.MimeType', - 'query' => 'meta.MimeType:%s', + 'type' => 'string', + 'label' => 'MimeType', + 'field' => "meta.MimeType", + 'esfield' => 'metadata_tags.MimeType', + 'query' => 'meta.MimeType:%s', ], ]; } diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/FieldMapping.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/FieldMapping.php index 076034b7b1..7a60b066e6 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/FieldMapping.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/FieldMapping.php @@ -16,8 +16,7 @@ class FieldMapping const DATE_FORMAT_MYSQL = 'yyyy-MM-dd HH:mm:ss'; const DATE_FORMAT_CAPTION = 'yyyy/MM/dd'; // ES format - const DATE_FORMAT_MYSQL_OR_CAPTION = 'yyyy-MM-dd HH:mm:ss||yyyy/MM/dd'; - const DATE_FORMAT_CAPTION_PHP = 'Y/m/d'; // PHP format + const DATE_FORMAT_MYSQL_OR_CAPTION = 'yyyy-MM-dd HH:mm:ss||yyyy-MM-dd||yyyy-MM||yyyy'; // Core types const TYPE_STRING = 'string'; diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Index.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Index.php index dd5d942f78..9671b83226 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Index.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Index.php @@ -90,6 +90,16 @@ class Index // TODO Maybe replace nfkc_normalizer + asciifolding with icu_folding 'filter' => ['nfkc_normalizer', 'asciifolding'] ], + 'truncation_analyzer' => [ + 'type' => 'custom', + 'tokenizer' => 'truncation_tokenizer', + 'filter' => ['lowercase', 'stop', 'kstem'] + ], + 'truncation_analyzer#search' => [ + 'type' => 'custom', + 'tokenizer' => 'truncation_tokenizer', + 'filter' => ['lowercase', 'stop', 'kstem'] + ], // Lang specific 'fr_full' => [ 'type' => 'custom', @@ -145,6 +155,12 @@ class Index ] ], 'tokenizer' => [ + 'truncation_tokenizer' => [ + "type" => "edgeNGram", + "min_gram" => "2", + "max_gram" => "15", + "token_chars" => [ "letter", "digit", "punctuation", "symbol" ] + ], 'thesaurus_path' => [ 'type' => 'path_hierarchy' ] diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Indexer/BulkOperation.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Indexer/BulkOperation.php index 6ea641492d..b8c834d9f0 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Indexer/BulkOperation.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Indexer/BulkOperation.php @@ -155,15 +155,16 @@ class BulkOperation // nb: results (items) are returned IN THE SAME ORDER as commands were pushed in the stack // so the items[X] match the operationIdentifiers[X] foreach ($response['items'] as $key => $item) { - foreach($item as $command=>$result) { // command may be "index" or "delete" - if($response['errors'] && $result['status'] >= 400) { // 4xx or 5xx error - throw new Exception(sprintf('%d: %s', $key, var_export($result, true))); + foreach ($item as $command=>$result) { // command may be "index" or "delete" + if ($response['errors'] && $result['status'] >= 400) { // 4xx or 5xx + $err = array_key_exists('error', $result) ? var_export($result['error'], true) : ($command . " error " . $result['status']); + throw new Exception(sprintf('%d: %s', $key, $err)); } } $operationIdentifier = $this->operationIdentifiers[$key]; - if(is_string($operationIdentifier) || is_int($operationIdentifier)) { // dont include null keys + if (is_string($operationIdentifier) || is_int($operationIdentifier)) { // dont include null keys $callbackData[$operationIdentifier] = $response['items'][$key]; } } diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Indexer/Record/Fetcher.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Indexer/Record/Fetcher.php index 52ae4401c1..8a379b6269 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Indexer/Record/Fetcher.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Indexer/Record/Fetcher.php @@ -127,20 +127,21 @@ class Fetcher private function getExecutedStatement() { if (!$this->statement) { - $sql = "SELECT r.record_id" - . ", r.coll_id AS collection_id" - . ", c.asciiname AS collection_name" - . ", r.uuid" - . ", r.status AS flags_bitfield" - . ", r.sha256" // -- TODO rename in "hash" - . ", r.originalname AS original_name" - . ", r.mime, r.type, r.parent_record_id, r.credate AS created_on, r.moddate AS updated_on" - . ", subdef.width, subdef.height, subdef.size" - . " FROM (record r INNER JOIN coll c ON (c.coll_id = r.coll_id))" - . " LEFT JOIN subdef ON subdef.record_id=r.record_id AND subdef.name='document'" - . " -- WHERE" - . " ORDER BY " . $this->options->getPopulateOrderAsSQL() . " " . $this->options->getPopulateDirectionAsSQL() - . " LIMIT :offset, :limit"; + $sql = "SELECT r.*, c.asciiname AS collection_name, subdef.width, subdef.height, subdef.size\n" + . " FROM ((\n" + . " SELECT r.record_id, r.coll_id AS collection_id, r.uuid, r.status AS flags_bitfield, r.sha256,\n" + . " r.originalname AS original_name, r.mime, r.type, r.parent_record_id,\n" + . " r.credate AS created_on, r.moddate AS updated_on, r.coll_id\n" + . " FROM record r\n" + . " -- WHERE\n" + . " ORDER BY " . $this->options->getPopulateOrderAsSQL() . " " . $this->options->getPopulateDirectionAsSQL() . "\n" + . " LIMIT :offset, :limit\n" + . " ) AS r\n" + . " INNER JOIN coll c ON (c.coll_id = r.coll_id)\n" + . " )\n" + . " LEFT JOIN\n" + . " subdef ON subdef.record_id=r.record_id AND subdef.name='document'\n" + . " ORDER BY " . $this->options->getPopulateOrderAsSQL() . " " . $this->options->getPopulateDirectionAsSQL() . ""; $where = $this->delegate->buildWhereClause(); $sql = str_replace('-- WHERE', $where, $sql); diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Indexer/Record/Hydrator/MetadataHydrator.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Indexer/Record/Hydrator/MetadataHydrator.php index 32b93502d4..5dc2471cb9 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Indexer/Record/Hydrator/MetadataHydrator.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Indexer/Record/Hydrator/MetadataHydrator.php @@ -39,18 +39,13 @@ class MetadataHydrator implements HydratorInterface public function hydrateRecords(array &$records) { - $sql = <<connection->executeQuery( @@ -62,7 +57,7 @@ SQL; while ($metadata = $statement->fetch()) { // Store metadata value $key = $metadata['key']; - $value = $metadata['value']; + $value = trim($metadata['value']); // Do not keep empty values if ($key === '' || $value === '') { @@ -80,7 +75,7 @@ SQL; case 'caption': // Sanitize fields $value = StringHelper::crlfNormalize($value); - $value = $this->sanitizeValue($value, $this->structure->typeOf($key)); + $value = $this->helper->sanitizeValue($value, $this->structure->typeOf($key)); // Private caption fields are kept apart $type = $metadata['private'] ? 'private_caption' : 'caption'; // Caption are multi-valued @@ -103,7 +98,7 @@ SQL; } $tag = $this->structure->getMetadataTagByName($key); if ($tag) { - $value = $this->sanitizeValue($value, $tag->getType()); + $value = $this->helper->sanitizeValue($value, $tag->getType()); } // EXIF data is single-valued $record['metadata_tags'][$key] = $value; @@ -118,33 +113,6 @@ SQL; $this->clearGpsPositionBuffer(); } - private function sanitizeValue($value, $type) - { - switch ($type) { - case FieldMapping::TYPE_STRING: - return str_replace("\0", "", $value); - - case FieldMapping::TYPE_DATE: - return $this->helper->sanitizeDate($value); - - case FieldMapping::TYPE_FLOAT: - case FieldMapping::TYPE_DOUBLE: - return (float) $value; - - case FieldMapping::TYPE_INTEGER: - case FieldMapping::TYPE_LONG: - case FieldMapping::TYPE_SHORT: - case FieldMapping::TYPE_BYTE: - return (int) $value; - - case FieldMapping::TYPE_BOOLEAN: - return (bool) $value; - - default: - return $value; - } - } - private function handleGpsPosition(&$records, $id, $tag_name, $value) { // Get position object diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Indexer/Record/Hydrator/ThesaurusHydrator.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Indexer/Record/Hydrator/ThesaurusHydrator.php index 4107285ac2..d8076b2922 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Indexer/Record/Hydrator/ThesaurusHydrator.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Indexer/Record/Hydrator/ThesaurusHydrator.php @@ -13,6 +13,7 @@ namespace Alchemy\Phrasea\SearchEngine\Elastic\Indexer\Record\Hydrator; use Alchemy\Phrasea\SearchEngine\Elastic\Exception\Exception; use Alchemy\Phrasea\SearchEngine\Elastic\RecordHelper; +use Alchemy\Phrasea\SearchEngine\Elastic\Structure\GlobalStructure; use Alchemy\Phrasea\SearchEngine\Elastic\Thesaurus; use Alchemy\Phrasea\SearchEngine\Elastic\Thesaurus\CandidateTerms; use Alchemy\Phrasea\SearchEngine\Elastic\Thesaurus\Concept; @@ -27,7 +28,7 @@ class ThesaurusHydrator implements HydratorInterface private $thesaurus; private $candidate_terms; - public function __construct(Structure $structure, Thesaurus $thesaurus, CandidateTerms $candidate_terms) + public function __construct(GlobalStructure $structure, Thesaurus $thesaurus, CandidateTerms $candidate_terms) { $this->structure = $structure; $this->thesaurus = $thesaurus; @@ -42,7 +43,7 @@ class ThesaurusHydrator implements HydratorInterface $fields = []; $index_fields = []; foreach ($structure as $name => $field) { - $fields[$name] = $field->getThesaurusRoots(); + $fields[$name] = $field; // ->getThesaurusRoots(); $index_fields[$name] = $field->getIndexField(); } // Hydrate records with concepts @@ -51,7 +52,13 @@ class ThesaurusHydrator implements HydratorInterface } } - private function hydrate(array &$record, array $fields, array $index_fields) + /** + * @param array $record + * @param Field[] $fields + * @param array $index_fields + * @throws Exception + */ + private function hydrate(array &$record, $fields, array $index_fields) { if (!isset($record['databox_id'])) { throw new Exception('Expected a record with the "databox_id" key set.'); @@ -61,7 +68,14 @@ class ThesaurusHydrator implements HydratorInterface $terms = array(); $filters = array(); $field_names = array(); - foreach ($fields as $name => $root_concepts) { + /** @var Field[] $dbFields */ + $dbFields = $this->structure->getAllFieldsByDatabox($record['databox_id']); + foreach ($fields as $name => $field) { + if(!array_key_exists($name, $dbFields) || !$dbFields[$name]->get_generate_cterms()) { + continue; + } + + $root_concepts = $field->getThesaurusRoots(); // Loop through all values to prepare bulk query $field_values = \igorw\get_in($record, explode('.', $index_fields[$name])); if ($field_values !== null) { @@ -84,12 +98,13 @@ class ThesaurusHydrator implements HydratorInterface $bulk = $this->thesaurus->findConceptsBulk($terms, null, $filters, true); foreach ($bulk as $offset => $item_concepts) { + $name = $field_names[$offset]; if ($item_concepts && is_array($item_concepts) && count($item_concepts)>0) { - $name = $field_names[$offset]; foreach ($item_concepts as $concept) { $record['concept_path'][$name][] = $concept->getPath(); } - } else { + } + else { $this->candidate_terms->insert($field_names[$offset], $values[$offset]); } } diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Indexer/Record/Hydrator/TitleHydrator.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Indexer/Record/Hydrator/TitleHydrator.php index 88382aa7a7..76dc4704b4 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Indexer/Record/Hydrator/TitleHydrator.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Indexer/Record/Hydrator/TitleHydrator.php @@ -11,6 +11,8 @@ namespace Alchemy\Phrasea\SearchEngine\Elastic\Indexer\Record\Hydrator; +use Alchemy\Phrasea\SearchEngine\Elastic\FieldMapping; +use Alchemy\Phrasea\SearchEngine\Elastic\RecordHelper; use Doctrine\DBAL\Connection; use Doctrine\DBAL\Driver\Connection as DriverConnection; @@ -18,31 +20,34 @@ class TitleHydrator implements HydratorInterface { private $connection; - public function __construct(DriverConnection $connection) + /** @var RecordHelper */ + private $helper; + + public function __construct(DriverConnection $connection, RecordHelper $helper) { $this->connection = $connection; + $this->helper = $helper; } public function hydrateRecords(array &$records) { - $sql = <<connection->executeQuery( $sql, array(array_keys($records)), @@ -50,7 +55,7 @@ SQL; ); while ($row = $statement->fetch()) { - $records[$row['record_id']]['title'][$row['locale']] = $row['title']; + $records[$row['record_id']]['title'][$row['locale']] = $this->helper->sanitizeValue($row['title'], FieldMapping::TYPE_STRING); } } } diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Mapping/DateFieldMapping.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Mapping/DateFieldMapping.php index a96ef45f4a..128a16467f 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Mapping/DateFieldMapping.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Mapping/DateFieldMapping.php @@ -57,6 +57,9 @@ class DateFieldMapping extends ComplexFieldMapping */ protected function getProperties() { - return array_merge([ 'format' => $this->format ], parent::getProperties()); + return array_merge([ + 'format' => $this->format, + 'ignore_malformed' => true + ], parent::getProperties()); } } diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Mapping/DoubleFieldMapping.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Mapping/DoubleFieldMapping.php new file mode 100644 index 0000000000..ee2ba12c93 --- /dev/null +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Mapping/DoubleFieldMapping.php @@ -0,0 +1,75 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Alchemy\Phrasea\SearchEngine\Elastic\Mapping; + +class DoubleFieldMapping extends ComplexFieldMapping +{ + /** + * @var bool + */ + private $enableAnalysis = true; + + /** + * @var string|null + */ + private $analyzer = null; + + /** + * @var string|null + */ + private $termVector = null; + + /** + * @param string $name + */ + public function __construct($name) + { + parent::__construct($name, self::TYPE_DOUBLE); + } + + + public function disableAnalysis() + { + $this->enableAnalysis = false; + + return $this; + } + + public function enableAnalysis() + { + $this->enableAnalysis = true; + + return $this; + } + + /** + * @return array + */ + protected function getProperties() + { + $properties = []; + + if ($this->analyzer) { + $properties['analyzer'] = $this->analyzer; + } + + if (! $this->enableAnalysis) { + $properties['index'] = 'not_analyzed'; + } + + if ($this->termVector) { + $properties['term_vector'] = $this->termVector; + } + + return array_replace(parent::getProperties(), $properties); + } +} diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Mapping/FieldToFieldMappingConverter.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Mapping/FieldToFieldMappingConverter.php index d5bf8c36c6..89749b9518 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Mapping/FieldToFieldMappingConverter.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Mapping/FieldToFieldMappingConverter.php @@ -19,28 +19,55 @@ class FieldToFieldMappingConverter public function convertField(Field $field, array $locales) { - if ($field->getType() === FieldMapping::TYPE_DATE) { - return new DateFieldMapping($field->getName(), FieldMapping::DATE_FORMAT_CAPTION); + $ret = null; + switch($field->getType()) { + case FieldMapping::TYPE_DATE: + $ret = new DateFieldMapping($field->getName(), FieldMapping::DATE_FORMAT_MYSQL_OR_CAPTION); + if (! $field->isFacet() && ! $field->isSearchable()) { + $ret->disableIndexing(); + } + else { + $ret->addChild( + (new StringFieldMapping('light')) + ->setAnalyzer('general_light') + ->enableTermVectors() + ); + } + break; + + case FieldMapping::TYPE_STRING: + $ret = new StringFieldMapping($field->getName()); + if (! $field->isFacet() && ! $field->isSearchable()) { + $ret->disableIndexing(); + } + else { + $ret->addChild( + (new StringFieldMapping('raw')) + ->enableRawIndexing()); + $ret->addAnalyzedChildren($locales); + $ret->enableTermVectors(true); + } + break; + + case FieldMapping::TYPE_DOUBLE: + $ret = new DoubleFieldMapping($field->getName()); + if (! $field->isFacet() && ! $field->isSearchable()) { + $ret->disableIndexing(); + } + else { + $ret->addChild( + (new StringFieldMapping('light')) + ->setAnalyzer('general_light') + ->enableTermVectors() + ); + } + break; + + default: + $ret = new FieldMapping($field->getName(), $field->getType()); + break; } - if ($field->getType() === FieldMapping::TYPE_STRING) { - $fieldMapping = new StringFieldMapping($field->getName()); - - if (! $field->isFacet() && ! $field->isSearchable()) { - $fieldMapping->disableIndexing(); - } else { - $fieldMapping->addChild((new StringFieldMapping('raw'))->enableRawIndexing()); - - $child = new CompletionFieldMapping('suggest'); - $fieldMapping->addChild($child); - - $fieldMapping->addAnalyzedChildren($locales); - $fieldMapping->enableTermVectors(true); - } - - return $fieldMapping; - } - - return new FieldMapping($field->getName(), $field->getType()); + return $ret; } } diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Mapping/StringFieldMapping.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Mapping/StringFieldMapping.php index b9022b2238..4f7c9d360d 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Mapping/StringFieldMapping.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Mapping/StringFieldMapping.php @@ -55,8 +55,13 @@ class StringFieldMapping extends ComplexFieldMapping { $child = new StringFieldMapping('light'); $child->setAnalyzer('general_light'); - $this->addChild($child); + + $child = new StringFieldMapping('truncated'); + $child->setAnalyzer('truncation_analyzer', 'indexing'); + $child->setAnalyzer('truncation_analyzer#search', 'searching'); + $this->addChild($child); + $this->addLocalizedChildren($locales); return $this; diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/RecordHelper.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/RecordHelper.php index ffb0c71adf..74f3a297a8 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/RecordHelper.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/RecordHelper.php @@ -89,31 +89,72 @@ class RecordHelper return $this->collectionMap; } - /** - * @param string $date - * @return bool - */ - public static function validateDate($date) - { - $d = DateTime::createFromFormat(FieldMapping::DATE_FORMAT_CAPTION_PHP, $date); - - return $d && $d->format(FieldMapping::DATE_FORMAT_CAPTION_PHP) == $date; - } - /** * @param string $value * @return null|string */ public static function sanitizeDate($value) { - // introduced in https://github.com/alchemy-fr/Phraseanet/commit/775ce804e0257d3a06e4e068bd17330a79eb8370#diff-bee690ed259e0cf73a31dee5295d2edcR286 - // not sure if it's really needed + $v_fix = null; try { - $date = new \DateTime($value); - - return $date->format(FieldMapping::DATE_FORMAT_CAPTION_PHP); + $a = explode(';', preg_replace('/\D+/', ';', trim($value))); + switch (count($a)) { + case 1: // yyyy + $date = new \DateTime($a[0] . '-01-01'); // will throw if date is not valid + $v_fix = $date->format('Y'); + break; + case 2: // yyyy;mm + $date = new \DateTime( $a[0] . '-' . $a[1] . '-01'); + $v_fix = $date->format('Y-m'); + break; + case 3: // yyyy;mm;dd + $date = new \DateTime($a[0] . '-' . $a[1] . '-' . $a[2]); + $v_fix = $date->format('Y-m-d'); + break; + case 4: + $date = new \DateTime($a[0] . '-' . $a[1] . '-' . $a[2] . ' ' . $a[3] . ':00:00'); + $v_fix = $date->format('Y-m-d H:i:s'); + break; + case 5: + $date = new \DateTime($a[0] . '-' . $a[1] . '-' . $a[2] . ' ' . $a[3] . ':' . $a[4] . ':00'); + $v_fix = $date->format('Y-m-d H:i:s'); + break; + case 6: + $date = new \DateTime($a[0] . '-' . $a[1] . '-' . $a[2] . ' ' . $a[3] . ':' . $a[4] . ':' . $a[5]); + $v_fix = $date->format('Y-m-d H:i:s'); + break; + } } catch (\Exception $e) { - return null; + // no-op, v_fix = null + } + + return $v_fix; + } + + public function sanitizeValue($value, $type) + { + switch ($type) { + case FieldMapping::TYPE_DATE: + return self::sanitizeDate($value); + + case FieldMapping::TYPE_FLOAT: + case FieldMapping::TYPE_DOUBLE: + return (float) $value; + + case FieldMapping::TYPE_INTEGER: + case FieldMapping::TYPE_LONG: + case FieldMapping::TYPE_SHORT: + case FieldMapping::TYPE_BYTE: + return (int) $value; + + case FieldMapping::TYPE_BOOLEAN: + return (bool) $value; + + case FieldMapping::TYPE_STRING: + return str_replace("\0", '', $value); + + default: + return $value; } } } diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/Escaper.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/Escaper.php index 728ed3e372..6369d426cc 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/Escaper.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/Escaper.php @@ -4,6 +4,11 @@ namespace Alchemy\Phrasea\SearchEngine\Elastic\Search; class Escaper { + public function quoteWord($value) + { + return '"' . $this->escapeRaw($value) . '"'; + } + public function escapeWord($value) { // Strip double quotes from values to prevent broken queries diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/FacetsResponse.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/FacetsResponse.php index a70e5c724a..2f2d966c51 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/FacetsResponse.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/FacetsResponse.php @@ -4,6 +4,7 @@ namespace Alchemy\Phrasea\SearchEngine\Elastic\Search; use Alchemy\Phrasea\Exception\RuntimeException; use Alchemy\Phrasea\SearchEngine\Elastic\ElasticsearchOptions; +use Alchemy\Phrasea\SearchEngine\Elastic\Structure\GlobalStructure; use Alchemy\Phrasea\SearchEngine\Elastic\Structure\Structure; use Alchemy\Phrasea\SearchEngine\SearchEngineSuggestion; use Doctrine\Common\Collections\ArrayCollection; @@ -14,28 +15,73 @@ class FacetsResponse private $escaper; private $facets = array(); - public function __construct(Escaper $escaper, array $response) + public function __construct(Escaper $escaper, array $response, GlobalStructure $structure) { $this->escaper = $escaper; if (!isset($response['aggregations'])) { return; } + + $atf = ElasticsearchOptions::getAggregableTechnicalFields(); + foreach ($response['aggregations'] as $name => $aggregation) { + $tf = null; + $valueFormatter = function($v){ return $v; }; // default equality formatter + + if(array_key_exists($name, $atf)) { + $tf = $atf[$name]; + if(array_key_exists('output_formatter', $tf)) { + $valueFormatter = $tf['output_formatter']; + } + } + $aggregation = AggregationHelper::unwrapPrivateFieldAggregation($aggregation); if (!isset($aggregation['buckets'])) { $this->throwAggregationResponseError(); } - $values = $this->buildBucketsValues($name, $aggregation['buckets']); - if ($values) { - $this->facets[] = array( + + $values = []; + foreach ($aggregation['buckets'] as $bucket) { + if (!isset($bucket['key']) || !isset($bucket['doc_count'])) { + $this->throwAggregationResponseError(); + } + $key = array_key_exists('key_as_string', $bucket) ? $bucket['key_as_string'] : $bucket['key']; + if($tf) { + // the field is one of the hardcoded tech fields + $value = [ + 'value' => $valueFormatter($key), + 'raw_value' => $key, + 'count' => $bucket['doc_count'], + 'query' => sprintf($tf['query'], $this->escaper->escapeWord($key)) + ]; + } + else { + // the field is a normal field + $value = [ + 'value' => $key, + 'raw_value' => $key, + 'count' => $bucket['doc_count'], + 'query' => sprintf('field.%s=%s', $this->escaper->escapeWord($name), $this->escaper->quoteWord($key)) + ]; + } + + $values[] = $value; + } + + if (count($values) > 0) { + $this->facets[] = [ + // 'type' => $tf ? $tf['type'] : null, 'name' => $name, + 'field' => $tf ? $tf['field'] : sprintf('field.%s', $name), 'values' => $values, - ); + ]; } } } + + /** * @return ArrayCollection */ @@ -53,44 +99,6 @@ class FacetsResponse return $suggestions; } - private function buildBucketsValues($name, $buckets) - { - $values = array(); - - // does this aggregate has an output_formatter ? if not use a equality formatter - /** @var callable $formatter */ - $formatter = igorw\get_in( - ElasticsearchOptions::getAggregableTechnicalFields(), [$name, 'output_formatter'], - function($v){return $v;} - ); - - foreach ($buckets as $bucket) { - if (!isset($bucket['key']) || !isset($bucket['doc_count'])) { - $this->throwAggregationResponseError(); - } - - $values[] = array( - 'value' => $formatter($bucket['key']), - 'count' => $bucket['doc_count'], - 'query' => $this->buildQuery($name, $bucket['key']), - ); - } - - return $values; - } - - private function buildQuery($name, $value) - { - if(array_key_exists($name, ElasticsearchOptions::getAggregableTechnicalFields())) { - $q = ElasticsearchOptions::getAggregableTechnicalFields()[$name]['query']; - $ret = sprintf($q, $this->escaper->escapeWord($value)); - } - else { - $ret = sprintf('field.%s:%s', $this->escaper->escapeWord($name), $this->escaper->escapeWord($value)); - } - return $ret; - } - private function throwAggregationResponseError() { throw new RuntimeException('Invalid aggregation response'); diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/Query.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/Query.php index 829ea94140..24354a2688 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/Query.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/Query.php @@ -27,8 +27,9 @@ class Query { $query = $this->root->buildQuery($context); if ($query === null) { - $query = []; - $query['bool']['must'] = []; + //$query = ['bool'=> ['must' => []]]; + // a null query shoud return no results ! + $query = ['constant_score'=> ['filter' => new \stdClass]]; } return $query; diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/QueryContext.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/QueryContext.php index e1772aaac1..69baf9f5bf 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/QueryContext.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/QueryContext.php @@ -9,6 +9,7 @@ use Alchemy\Phrasea\SearchEngine\Elastic\Structure\Field; use Alchemy\Phrasea\SearchEngine\Elastic\AST\Field as ASTField; use Alchemy\Phrasea\SearchEngine\Elastic\AST\Flag; use Alchemy\Phrasea\SearchEngine\Elastic\Structure\Structure; +use Alchemy\Phrasea\SearchEngine\SearchEngineOptions; /** * @todo Check for private fields and only search on them if allowed @@ -23,13 +24,23 @@ class QueryContext private $queryLocale; /** @var array */ private $fields; + /** @var SearchEngineOptions */ + private $options; - public function __construct(Structure $structure, array $locales, $queryLocale, array $fields = null) + /** + * @param SearchEngineOptions|null $options + * @param Structure $structure + * @param array $locales + * @param $queryLocale + * @param array $fields + */ + public function __construct($options, Structure $structure, array $locales, $queryLocale, array $fields = null) { $this->structure = $structure; $this->locales = $locales; $this->queryLocale = $queryLocale; $this->fields = $fields; + $this->options = $options; } public function narrowToFields(array $fields) @@ -43,7 +54,7 @@ class QueryContext } } - return new static($this->structure, $this->locales, $this->queryLocale, $fields); + return new static($this->options, $this->structure, $this->locales, $this->queryLocale, $fields); } /** @@ -107,12 +118,37 @@ class QueryContext */ public function localizeField(Field $field) { + $ret = null; $index_field = $field->getIndexField(); - if ($field->getType() === FieldMapping::TYPE_STRING) { - return $this->localizeFieldName($index_field); - } else { - return [$index_field]; + switch($field->getType()) { + case FieldMapping::TYPE_STRING: + $ret = $this->localizeFieldName($index_field); + break; + + case FieldMapping::TYPE_DATE: + case FieldMapping::TYPE_DOUBLE: + $ret = [ + $index_field . '.light', + $index_field + ]; + break; + + default: + $ret = [$index_field]; + break; + } + + return $ret; + } + + public function truncationField(Field $field) + { + if($this->options && $this->options->useTruncation()) { + return [sprintf('%s.truncated', $field->getIndexField())]; + } + else { + return []; } } diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/QueryContextFactory.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/QueryContextFactory.php index f199434677..9443c79655 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/QueryContextFactory.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/QueryContextFactory.php @@ -23,7 +23,7 @@ class QueryContextFactory ? $this->getLimitedStructure($options) : $this->structure; - $context = new QueryContext($structure, $this->locales, $this->current_locale); + $context = new QueryContext($options, $structure, $this->locales, $this->current_locale); if ($options) { $fields = $this->getSearchedFields($options); diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/QueryHelper.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/QueryHelper.php index 746266e341..071ac94b1c 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/QueryHelper.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/QueryHelper.php @@ -10,13 +10,13 @@ class QueryHelper { private function __construct() {} - public static function wrapPrivateFieldQueries(array $fields, \Closure $query_builder) + public static function wrapPrivateFieldQueries(array $private_fields, array $unrestricted_fields, \Closure $query_builder) { // We make a boolean clause for each collection set to shrink query size // (instead of a clause for each field, with his collection set) $fields_map = []; $collections_map = []; - foreach ($fields as $field) { + foreach ($private_fields as $field) { $collections = $field->getDependantCollections(); $hash = self::hashCollections($collections); $collections_map[$hash] = $collections; @@ -31,7 +31,7 @@ class QueryHelper foreach ($fields_map as $hash => $fields) { // Right to query on a private field is dependant of document collection // Here we make sure we can only match on allowed collections - $query = $query_builder($fields); + $query = $query_builder(array_merge($fields, $unrestricted_fields)); if ($query !== null) { $queries[] = self::restrictQueryToCollections($query, $collections_map[$hash]); } @@ -110,41 +110,50 @@ class QueryHelper } } - public static function getRangeFromDateString($string) + public static function getRangeFromDateString($value) { - $formats = ['Y/m/d', 'Y/m', 'Y']; - $deltas = ['+1 day', '+1 month', '+1 year']; - $to = null; - while ($format = array_pop($formats)) { - $delta = array_pop($deltas); - $from = date_create_from_format($format, $string); - if ($from !== false) { - // Rewind to start of range - $month = 1; - $day = 1; - switch ($format) { - case 'Y/m/d': - $day = (int) $from->format('d'); - case 'Y/m': - $month = (int) $from->format('m'); - case 'Y': - $year = (int) $from->format('Y'); - } - date_date_set($from, $year, $month, $day); - date_time_set($from, 0, 0, 0); - // Create end of the the range - $to = date_modify(clone $from, $delta); - break; + $date_from = null; + $date_to = null; + try { + $a = explode(';', preg_replace('/\D+/', ';', trim($value))); + switch (count($a)) { + case 1: // yyyy + $date_to = clone($date_from = new \DateTime($a[0] . '-01-01 00:00:00')); // will throw if date is not valid + $date_to->add(new \DateInterval('P1Y')); + break; + case 2: // yyyy;mm + $date_to = clone($date_from = new \DateTime($a[0] . '-' . $a[1] . '-01 00:00:00')); // will throw if date is not valid + $date_to->add(new \DateInterval('P1M')); + break; + case 3: // yyyy;mm;dd + $date_to = clone($date_from = new \DateTime($a[0] . '-' . $a[1] . '-' . $a[2] . ' 00:00:00')); // will throw if date is not valid + $date_to->add(new \DateInterval('P1D')); + break; + case 4: + $date_to = clone($date_from = new \DateTime($a[0] . '-' . $a[1] . '-' . $a[2] . ' ' . $a[3] . ':00:00')); + $date_to->add(new \DateInterval('PT1H')); + break; + case 5: + $date_to = clone($date_from = new \DateTime($a[0] . '-' . $a[1] . '-' . $a[2] . ' ' . $a[3] . ':' . $a[4] . ':00')); + $date_to->add(new \DateInterval('PT1M')); + break; + case 6: + $date_to = clone($date_from = new \DateTime($a[0] . '-' . $a[1] . '-' . $a[2] . ' ' . $a[3] . ':' . $a[4] . ':' . $a[5])); + // $date_to->add(new \DateInterval('PT1S')); // no need since precision is 1 sec, a "equal" will be generated when from==to + break; } } + catch (\Exception $e) { + // no-op + } - if (!$from || !$to) { - throw new \InvalidArgumentException(sprintf('Invalid date "%s".', $string)); + if ($date_from === null || $date_to === null) { + throw new \InvalidArgumentException(sprintf('Invalid date "%s".', $value)); } return [ - 'from' => $from->format(FieldMapping::DATE_FORMAT_CAPTION_PHP), - 'to' => $to->format(FieldMapping::DATE_FORMAT_CAPTION_PHP) + 'from' => $date_from->format('Y-m-d H:i:s'), + 'to' => $date_to->format('Y-m-d H:i:s') ]; } } diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/QueryVisitor.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/QueryVisitor.php index 522666bcaa..52c0fa54a6 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/QueryVisitor.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Search/QueryVisitor.php @@ -5,7 +5,7 @@ namespace Alchemy\Phrasea\SearchEngine\Elastic\Search; use Alchemy\Phrasea\SearchEngine\Elastic\AST; use Alchemy\Phrasea\SearchEngine\Elastic\Exception\Exception; use Alchemy\Phrasea\SearchEngine\Elastic\FieldMapping; -use Alchemy\Phrasea\SearchEngine\Elastic\Mapping; +use Alchemy\Phrasea\SearchEngine\Elastic\RecordHelper; use Alchemy\Phrasea\SearchEngine\Elastic\Structure\Structure; use Hoa\Compiler\Llk\TreeNode; use Hoa\Visitor\Element; @@ -166,6 +166,12 @@ class QueryVisitor implements Visit $key = $node->getChild(0)->accept($this); $boundary = $node->getChild(1)->accept($this); + if ($this->isDateKey($key)) { + if(($v = RecordHelper::sanitizeDate($boundary)) !== null) { + $boundary = $v; + } + } + switch ($node->getId()) { case NodeTypes::LT_EXPR: return AST\KeyValue\RangeExpression::lessThan($key, $boundary); @@ -195,11 +201,15 @@ class QueryVisitor implements Visit try { // Try to create a range for incomplete dates $range = QueryHelper::getRangeFromDateString($right); - return new AST\KeyValue\RangeExpression( - $left, - $range['from'], true, - $range['to'], false - ); + if ($range['from'] === $range['to']) { + return new AST\KeyValue\EqualExpression($left, $range['from']); + } else { + return new AST\KeyValue\RangeExpression( + $left, + $range['from'], true, + $range['to'], false + ); + } } catch (\InvalidArgumentException $e) { // Fall back to equal expression } diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/StringUtils.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/StringUtils.php index bb8f3dedfd..0131fa942b 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/StringUtils.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/StringUtils.php @@ -63,4 +63,26 @@ class StringUtils return self::$transliterator->transliterate($string); } + + /** + * replace bad chars (ascii 0...31 except 9,10,13) + * + * @param $s + * @param string $replace + * @return mixed + */ + public static function substituteCtrlCharacters($s, $replace = '_') + { + static $bad_chars = null; + if($bad_chars === null) { + $bad_chars = []; + for($i=0; $i<32; $i++) { + if($i != 9 && $i != 10 && $i != 13) { + $bad_chars[] = chr($i); + } + } + } + + return str_replace($bad_chars, $replace, $s); + } } diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/Field.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/Field.php index 7ea7d68d43..5333da5ab4 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/Field.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/Field.php @@ -24,6 +24,11 @@ class Field implements Typed */ private $name; + /** + * @var int + */ + private $databox_id; + /** * @var string */ @@ -43,6 +48,8 @@ class Field implements Typed private $thesaurus_roots; + private $generate_cterms; + private $used_by_collections; public static function createFromLegacyField(databox_field $field, $with = Structure::WITH_EVERYTHING) @@ -71,10 +78,12 @@ class Field implements Typed } return new self($field->get_name(), $type, [ + 'databox_id' => $databox->get_sbas_id(), 'searchable' => $field->is_indexable(), 'private' => $field->isBusiness(), 'facet' => $facet, 'thesaurus_roots' => $roots, + 'generate_cterms' => $field->get_generate_cterms(), 'used_by_collections' => $databox->get_collection_unique_ids() ]); } @@ -89,7 +98,6 @@ class Field implements Typed case databox_field::TYPE_NUMBER: return FieldMapping::TYPE_DOUBLE; case databox_field::TYPE_STRING: - case databox_field::TYPE_TEXT: return FieldMapping::TYPE_STRING; } @@ -100,10 +108,12 @@ class Field implements Typed { $this->name = (string) $name; $this->type = $type; + $this->databox_id = \igorw\get_in($options, ['databox_id'], 0); $this->is_searchable = \igorw\get_in($options, ['searchable'], true); $this->is_private = \igorw\get_in($options, ['private'], false); $this->facet = \igorw\get_in($options, ['facet']); $this->thesaurus_roots = \igorw\get_in($options, ['thesaurus_roots'], null); + $this->generate_cterms = \igorw\get_in($options, ['generate_cterms'], false); $this->used_by_collections = \igorw\get_in($options, ['used_by_collections'], []); Assertion::boolean($this->is_searchable); @@ -123,10 +133,12 @@ class Field implements Typed public function withOptions(array $options) { return new self($this->name, $this->type, $options + [ + 'databox_id' => $this->databox_id, 'searchable' => $this->is_searchable, 'private' => $this->is_private, 'facet' => $this->facet, 'thesaurus_roots' => $this->thesaurus_roots, + 'generate_cterms' => $this->generate_cterms, 'used_by_collections' => $this->used_by_collections ]); } @@ -151,6 +163,11 @@ class Field implements Typed return sprintf('concept_path.%s', $this->name); } + public function get_databox_id() + { + return $this->databox_id; + } + public function getType() { return $this->type; @@ -191,6 +208,11 @@ class Field implements Typed return $this->thesaurus_roots; } + public function get_generate_cterms() + { + return $this->generate_cterms; + } + /** * Merge with another field, returning the new instance * diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/GlobalStructure.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/GlobalStructure.php index 912bbe934a..ea4022dffb 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/GlobalStructure.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/GlobalStructure.php @@ -14,6 +14,12 @@ final class GlobalStructure implements Structure */ private $fields = array(); + + /** + * @var Field[][] + */ + private $fieldsByDatabox = []; + /** * @var Field[] * */ @@ -119,6 +125,10 @@ final class GlobalStructure implements Structure public function add(Field $field) { + // store info for each field, not still merged by databox + $this->fieldsByDatabox[$field->get_databox_id()][$field->getName()] = $field; + + // store merged infos (same field name) $name = $field->getName(); if (isset($this->fields[$name])) { @@ -152,6 +162,11 @@ final class GlobalStructure implements Structure return $this->fields; } + public function getAllFieldsByDatabox($databox_id) + { + return $this->fieldsByDatabox[$databox_id]; + } + /** * @return Field[] */ diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/ValueChecker.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/ValueChecker.php index 7344a8848d..f27defa2bb 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/ValueChecker.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Structure/ValueChecker.php @@ -3,7 +3,6 @@ namespace Alchemy\Phrasea\SearchEngine\Elastic\Structure; use Alchemy\Phrasea\SearchEngine\Elastic\FieldMapping; -use Alchemy\Phrasea\SearchEngine\Elastic\Mapping; use Alchemy\Phrasea\SearchEngine\Elastic\RecordHelper; use Assert\Assertion; @@ -20,7 +19,7 @@ class ValueChecker { Assertion::allIsInstanceOf($list, Typed::class); $is_numeric = is_numeric($value); - $is_valid_date = RecordHelper::validateDate($value); + $is_valid_date = (RecordHelper::sanitizeDate($value) !== null); $filtered = []; foreach ($list as $item) { switch ($item->getType()) { @@ -30,14 +29,14 @@ class ValueChecker case FieldMapping::TYPE_LONG: case FieldMapping::TYPE_SHORT: case FieldMapping::TYPE_BYTE: - if ($is_numeric) { +// if ($is_numeric) { $filtered[] = $item; - } +// } break; case FieldMapping::TYPE_DATE: - if ($is_valid_date) { +// if ($is_valid_date) { $filtered[] = $item; - } +// } break; case FieldMapping::TYPE_STRING: default: diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Thesaurus.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Thesaurus.php index 51942b5c28..1acc2c740f 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Thesaurus.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Thesaurus.php @@ -60,6 +60,7 @@ class Thesaurus // TODO Use bulk queries for performance $concepts = array(); foreach ($terms as $index => $term) { + $strict |= ($term instanceof AST\TermNode); // a "term" node is [strict group of words] $concepts[] = $this->findConcepts($term, $lang, $filters[$index], $strict); } diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Thesaurus/CandidateTerms.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Thesaurus/CandidateTerms.php index cb5c6d24e8..9ebb6f2a7e 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/Thesaurus/CandidateTerms.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/Thesaurus/CandidateTerms.php @@ -32,6 +32,7 @@ class CandidateTerms public function insert($field, $value) { + $value = StringUtils::substituteCtrlCharacters($value, ''); $this->ensureVisitorSetup(); if (!$this->visitor->hasTerm($field, $value)) { $this->new_candidates[$value] = $field; diff --git a/lib/Alchemy/Phrasea/SearchEngine/SearchEngineOptions.php b/lib/Alchemy/Phrasea/SearchEngine/SearchEngineOptions.php index f52fbcdf21..5e942b1adf 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/SearchEngineOptions.php +++ b/lib/Alchemy/Phrasea/SearchEngine/SearchEngineOptions.php @@ -71,6 +71,8 @@ class SearchEngineOptions protected $i18n; /** @var bool */ protected $stemming = true; + /** @var bool */ + protected $use_truncation = false; /** @var string */ protected $sort_by; @@ -105,7 +107,8 @@ class SearchEngineOptions 'sort_ord', 'business_fields', 'max_results', - 'first_result' + 'first_result', + 'use_truncation', ]; /** @@ -217,6 +220,29 @@ class SearchEngineOptions return $this; } + /** + * Tells whether to use truncation or not + * + * @param boolean $boolean + * @return $this + */ + public function setUseTruncation($boolean) + { + $this->use_truncation = !!$boolean; + + return $this; + } + + /** + * Return wheter the use of truncation is enabled or not + * + * @return boolean + */ + public function useTruncation() + { + return $this->use_truncation; + } + /** * Return wheter the use of stemming is enabled or not * @@ -542,6 +568,8 @@ class SearchEngineOptions $options->setFields($databoxFields); $options->setDateFields($databoxDateFields); + $options->setUseTruncation((Boolean) $request->get('truncation')); + return $options; } @@ -628,6 +656,7 @@ class SearchEngineOptions } }, 'stemming' => $optionSetter('setStemming'), + 'use_truncation' => $optionSetter('setUseTruncation'), 'date_fields' => function ($value, SearchEngineOptions $options) use ($fieldNormalizer) { $options->setDateFields($fieldNormalizer($value)); }, diff --git a/lib/Alchemy/Phrasea/TaskManager/Editor/SubdefsEditor.php b/lib/Alchemy/Phrasea/TaskManager/Editor/SubdefsEditor.php index 69d9aff8eb..b5d0c16ce9 100644 --- a/lib/Alchemy/Phrasea/TaskManager/Editor/SubdefsEditor.php +++ b/lib/Alchemy/Phrasea/TaskManager/Editor/SubdefsEditor.php @@ -43,7 +43,7 @@ class SubdefsEditor extends AbstractEditor 1 - + 0 1 1 1 diff --git a/lib/Alchemy/Phrasea/TaskManager/Job/ArchiveJob.php b/lib/Alchemy/Phrasea/TaskManager/Job/ArchiveJob.php index de2026c517..532eb8bbb5 100644 --- a/lib/Alchemy/Phrasea/TaskManager/Job/ArchiveJob.php +++ b/lib/Alchemy/Phrasea/TaskManager/Job/ArchiveJob.php @@ -26,6 +26,7 @@ use PHPExiftool\Driver\Metadata\Metadata; use PHPExiftool\Driver\Value\Mono as MonoValue; use Symfony\Component\Filesystem\Exception\IOException; + class ArchiveJob extends AbstractJob { const MINCOLD = 5; @@ -69,6 +70,10 @@ class ArchiveJob extends AbstractJob protected function doJob(JobData $data) { $app = $data->getApplication(); + + // quick fix to reconnect if mysql is lost + $app->getApplicationBox()->get_connection(); + $task = $data->getTask(); $settings = simplexml_load_string($task->getSettings()); @@ -82,6 +87,9 @@ class ArchiveJob extends AbstractJob $databox = $app->findDataboxById($sbasId); + // quick fix to reconnect if mysql is lost + $databox->get_connection(); + $TColls = []; $collection = null; foreach ($databox->get_collections() as $coll) { @@ -561,6 +569,10 @@ class ArchiveJob extends AbstractJob private function archive(Application $app, \databox $databox, \DOMDOcument $dom, \DOMElement $node, $path, $path_archived, $path_error, $depth, $moveError, $moveArchived, $stat0, $stat1) { + // quick fix to reconnect if mysql is lost + $app->getApplicationBox()->get_connection(); + $databox->get_connection(); + if ($node->getAttribute('temperature') == 'hot') { return; } @@ -819,6 +831,10 @@ class ArchiveJob extends AbstractJob private function archiveGrp(Application $app, \databox $databox, \DOMDocument $dom, \DOMElement $node, $path, $path_archived, $path_error, array &$nodesToDel, $moveError, $moveArchived, $stat0, $stat1) { + // quick fix to reconnect if mysql is lost + $app->getApplicationBox()->get_connection(); + $databox->get_connection(); + $xpath = new \DOMXPath($dom); // grp folders stay in place @@ -983,6 +999,10 @@ class ArchiveJob extends AbstractJob public function createStory(Application $app, \collection $collection, $pathfile, $captionFile, $stat0, $stat1) { + // quick fix to reconnect if mysql is lost + $app->getApplicationBox()->get_connection(); + $databox->get_connection(); + $status = \databox_status::operation_or($stat0, $stat1); $media = $app->getMediaFromUri($pathfile); @@ -1031,6 +1051,10 @@ class ArchiveJob extends AbstractJob */ public function createRecord(Application $app, \collection $collection, $pathfile, $captionFile, $grp_rid, $force, $stat0, $stat1) { + // quick fix to reconnect if mysql is lost + $app->getApplicationBox()->get_connection(); + $collection->get_connection(); + $status = \databox_status::operation_or($stat0, $stat1); $media = $app->getMediaFromUri($pathfile); @@ -1096,6 +1120,10 @@ class ArchiveJob extends AbstractJob */ private function archiveFilesToGrp(Application $app, \databox $databox, \DOMDocument $dom, \DOMElement $node, $path, $path_archived, $path_error, $grp_rid, $stat0, $stat1, $moveError, $moveArchived) { + // quick fix to reconnect if mysql is lost + $app->getApplicationBox()->get_connection(); + $databox->get_connection(); + $nodesToDel = []; for ($n = $node->firstChild; $n; $n = $n->nextSibling) { if (!$this->isStarted()) { @@ -1133,6 +1161,10 @@ class ArchiveJob extends AbstractJob */ private function archiveFile(Application $app, \databox $databox, \DOMDocument $dom, \DOMElement $node, $path, $path_archived, $path_error, array &$nodesToDel, $grp_rid, $stat0, $stat1, $moveError, $moveArchived) { + // quick fix to reconnect if mysql is lost + $app->getApplicationBox()->get_connection(); + $databox->get_connection(); + $match = $node->getAttribute('match'); if ($match == '*') { @@ -1187,6 +1219,10 @@ class ArchiveJob extends AbstractJob */ private function archiveFileAndCaption(Application $app, \databox $databox, \DOMDocument $dom, \DOMElement $node, \DOMElement $captionFileNode = null, $path, $path_archived, $path_error, $grp_rid, array &$nodesToDel, $stat0, $stat1, $moveError, $moveArchived) { + // quick fix to reconnect if mysql is lost + $app->getApplicationBox()->get_connection(); + $databox->get_connection(); + $file = $node->getAttribute('name'); $cid = $node->getAttribute('cid'); $captionFileName = $captionFileNode ? $captionFileNode->getAttribute('name') : null; @@ -1360,6 +1396,9 @@ class ArchiveJob extends AbstractJob */ protected function getLazaretSession(Application $app) { + // quick fix to reconnect if mysql is lost + $app->getApplicationBox()->get_connection(); + $lazaretSession = new LazaretSession(); $app['orm.em']->persist($lazaretSession); diff --git a/lib/Alchemy/Phrasea/TaskManager/Job/SubdefsJob.php b/lib/Alchemy/Phrasea/TaskManager/Job/SubdefsJob.php index 8b99c390b5..e3e040d77e 100644 --- a/lib/Alchemy/Phrasea/TaskManager/Job/SubdefsJob.php +++ b/lib/Alchemy/Phrasea/TaskManager/Job/SubdefsJob.php @@ -70,12 +70,13 @@ class SubdefsJob extends AbstractJob $app->getApplicationBox()->get_connection(); + $allDb = count($settings->xpath('sbas[text()="0"]')) > 0; foreach ($app->getDataboxes() as $databox) { if (!$this->isStarted()) { break; } - if(count($settings->xpath("sbas[text()=".$databox->get_sbas_id() ."]")) == 0) { + if(!$allDb && count($settings->xpath("sbas[text()=".$databox->get_sbas_id() ."]")) == 0) { continue; } diff --git a/lib/Alchemy/Phrasea/TaskManager/Job/WebhookJob.php b/lib/Alchemy/Phrasea/TaskManager/Job/WebhookJob.php index dbe4d7bd41..fb69af186b 100644 --- a/lib/Alchemy/Phrasea/TaskManager/Job/WebhookJob.php +++ b/lib/Alchemy/Phrasea/TaskManager/Job/WebhookJob.php @@ -12,11 +12,21 @@ namespace Alchemy\Phrasea\TaskManager\Job; use Alchemy\Phrasea\Core\Version; +use Alchemy\Phrasea\Model\Entities\WebhookEvent; +use Alchemy\Phrasea\Model\Entities\WebhookEventDelivery; +use Alchemy\Phrasea\Model\Entities\ApiApplication; use Alchemy\Phrasea\TaskManager\Editor\DefaultEditor; use Alchemy\Phrasea\Webhook\EventProcessorFactory; use Guzzle\Http\Client as GuzzleClient; -use Psr\Log\LoggerInterface; +use Guzzle\Batch\BatchBuilder; +use Guzzle\Http\Message\Request; use Silex\Application; +use Guzzle\Common\Event; +use Guzzle\Plugin\Backoff\BackoffPlugin; +use Guzzle\Plugin\Backoff\TruncatedBackoffStrategy; +use Guzzle\Plugin\Backoff\CallbackBackoffStrategy; +use Guzzle\Plugin\Backoff\CurlBackoffStrategy; +use Psr\Log\LoggerInterface; use Symfony\Component\EventDispatcher\EventDispatcherInterface; use Symfony\Component\Translation\TranslatorInterface; @@ -24,12 +34,15 @@ class WebhookJob extends AbstractJob { private $httpClient; + private $firstRun = true; + public function __construct( TranslatorInterface $translator, EventDispatcherInterface $dispatcher = null, LoggerInterface $logger = null, GuzzleClient $httpClient = null - ) { + ) + { parent::__construct($translator, $dispatcher, $logger); $this->httpClient = $httpClient ?: new GuzzleClient(); @@ -76,6 +89,57 @@ class WebhookJob extends AbstractJob { $app = $data->getApplication(); $thirdPartyApplications = $app['repo.api-applications']->findWithDefinedWebhookCallback(); + $that = $this; + + if ($this->firstRun) { + $this->httpClient->getEventDispatcher()->addListener('request.error', function (Event $event) { + // override guzzle default behavior of throwing exceptions + // when 4xx & 5xx responses are encountered + $event->stopPropagation(); + }, -254); + + // Set callback which logs success or failure + $subscriber = new CallbackBackoffStrategy(function ($retries, Request $request, $response, $e) use ($app, $that) { + $retry = true; + if ($response && (null !== $deliverId = parse_url($request->getUrl(), PHP_URL_FRAGMENT))) { + $delivery = $app['repo.webhook-delivery']->find($deliverId); + + $logContext = [ 'host' => $request->getHost() ]; + + if ($response->isSuccessful()) { + $app['manipulator.webhook-delivery']->deliverySuccess($delivery); + + $logType = 'info'; + $logEntry = sprintf('Deliver success event "%d:%s" for app "%s"', + $delivery->getWebhookEvent()->getId(), $delivery->getWebhookEvent()->getName(), + $delivery->getThirdPartyApplication()->getName() + ); + + $retry = false; + } else { + $app['manipulator.webhook-delivery']->deliveryFailure($delivery); + + $logType = 'error'; + $logEntry = sprintf('Deliver failure event "%d:%s" for app "%s"', + $delivery->getWebhookEvent()->getId(), $delivery->getWebhookEvent()->getName(), + $delivery->getThirdPartyApplication()->getName() + ); + } + + $that->log($logType, $logEntry, $logContext); + + return $retry; + } + }, true, new CurlBackoffStrategy()); + + // set max retries + $subscriber = new TruncatedBackoffStrategy(WebhookEventDelivery::MAX_DELIVERY_TRIES, $subscriber); + $subscriber = new BackoffPlugin($subscriber); + + $this->httpClient->addSubscriber($subscriber); + + $this->firstRun = false; + } /** @var EventProcessorFactory $eventFactory */ $eventFactory = $app['webhook.processor_factory']; @@ -91,4 +155,41 @@ class WebhookJob extends AbstractJob $this->deliverEvent($eventFactory, $app, $thirdPartyApplications, $event); } } -} + + private function deliverEvent(EventProcessorFactory $eventFactory, Application $app, array $thirdPartyApplications, WebhookEvent $event) + { + if (count($thirdPartyApplications) === 0) { + $this->log('info', sprintf('No applications defined to listen for webhook events')); + + return; + } + + // format event data + $eventProcessor = $eventFactory->get($event); + $data = $eventProcessor->process($event); + + // batch requests + $batch = BatchBuilder::factory() + ->transferRequests(10) + ->build(); + + foreach ($thirdPartyApplications as $thirdPartyApplication) { + $delivery = $app['manipulator.webhook-delivery']->create($thirdPartyApplication, $event); + + // append delivery id as url anchor + $uniqueUrl = $this->getUrl($thirdPartyApplication, $delivery); + + // create http request with data as request body + $batch->add($this->httpClient->createRequest('POST', $uniqueUrl, [ + 'Content-Type' => 'application/vnd.phraseanet.event+json' + ], json_encode($data))); + } + + $batch->flush(); + } + + private function getUrl(ApiApplication $application, WebhookEventDelivery $delivery) + { + return sprintf('%s#%s', $application->getWebhookUrl(), $delivery->getId()); + } +} \ No newline at end of file diff --git a/lib/Alchemy/Phrasea/TaskManager/Job/WriteMetadataJob.php b/lib/Alchemy/Phrasea/TaskManager/Job/WriteMetadataJob.php index da1b26d2d8..795b0b2a83 100644 --- a/lib/Alchemy/Phrasea/TaskManager/Job/WriteMetadataJob.php +++ b/lib/Alchemy/Phrasea/TaskManager/Job/WriteMetadataJob.php @@ -121,13 +121,16 @@ class WriteMetadataJob extends AbstractJob $fieldName = $fieldStructure->get_name(); // skip fields with no src - if($tagName == '') { + if($tagName == '' || $tagName == 'Phraseanet:no-source') { continue; } // check exiftool known tags to skip Phraseanet:tf-* try { - TagFactory::getFromRDFTagname($tagName); + $tag = TagFactory::getFromRDFTagname($tagName); + if(!$tag->isWritable()) { + continue; + } } catch (TagUnknown $e) { continue; } @@ -139,29 +142,42 @@ class WriteMetadataJob extends AbstractJob if ($fieldStructure->is_multi()) { $values = array(); foreach ($fieldValues as $value) { - $values[] = $value->getValue(); + $values[] = $this->removeNulChar($value->getValue()); } $value = new Value\Multi($values); } else { $fieldValue = array_pop($fieldValues); - $value = $fieldValue->getValue(); + $value = $this->removeNulChar($fieldValue->getValue()); - $value = new Value\Mono($value); + // fix the dates edited into phraseanet + if($fieldStructure->get_type() === $fieldStructure::TYPE_DATE) { + try { + $value = self::fixDate($value); // will return NULL if the date is not valid + } + catch (\Exception $e) { + $value = null; // do NOT write back to iptc + } + } + + if($value !== null) { // do not write invalid dates + $value = new Value\Mono($value); + } } - } catch(\Exception $e) { + } catch (\Exception $e) { // the field is not set in the record, erase it if ($fieldStructure->is_multi()) { $value = new Value\Multi(array('')); - } - else { + } else { $value = new Value\Mono(''); } } - $metadata->add( - new Metadata\Metadata($fieldStructure->get_tag(), $value) - ); + if($value !== null) { // do not write invalid data + $metadata->add( + new Metadata\Metadata($fieldStructure->get_tag(), $value) + ); + } } $writer = $this->getMetadataWriter($jobData->getApplication()); @@ -215,4 +231,39 @@ class WriteMetadataJob extends AbstractJob return false; } + + private function removeNulChar($value) + { + return str_replace("\0", "", $value); + } + + /** + * re-format a phraseanet date for iptc writing + * return NULL if the date is not valid + * + * @param string $value + * @return string|null + */ + private static function fixDate($value) + { + $date = null; + try { + $a = explode(';', preg_replace('/\D+/', ';', trim($value))); + switch (count($a)) { + case 3: // yyyy;mm;dd + $date = new \DateTime($a[0] . '-' . $a[1] . '-' . $a[2]); + $date = $date->format('Y-m-d H:i:s'); + break; + case 6: // yyyy;mm;dd;hh;mm;ss + $date = new \DateTime($a[0] . '-' . $a[1] . '-' . $a[2] . ' ' . $a[3] . ':' . $a[4] . ':' . $a[5]); + $date = $date->format('Y-m-d H:i:s'); + break; + } + } + catch (\Exception $e) { + $date = null; + } + + return $date; + } } diff --git a/lib/Alchemy/Phrasea/TaskManager/LiveInformation.php b/lib/Alchemy/Phrasea/TaskManager/LiveInformation.php index 192bf5660b..d3d9597544 100644 --- a/lib/Alchemy/Phrasea/TaskManager/LiveInformation.php +++ b/lib/Alchemy/Phrasea/TaskManager/LiveInformation.php @@ -12,7 +12,7 @@ namespace Alchemy\Phrasea\TaskManager; use Alchemy\Phrasea\Exception\RuntimeException; -use Alchemy\Phrasea\Model\Entities\Task; +use Alchemy\Phrasea\Model\Entities\Task as liveTask; class LiveInformation { @@ -43,10 +43,11 @@ class LiveInformation /** * Returns live informations about the given task. - * + * @param liveTask $task + * @param boolean $throwException * @return array */ - public function getTask(Task $task, $throwException = false) + public function getTask(liveTask $task, $throwException = false) { $data = $this->query($throwException); @@ -56,7 +57,7 @@ class LiveInformation /** * Returns live informations about some tasks. * - * @param Task[] $tasks + * @param liveTask[] $tasks * @param boolean $throwException * * @return array @@ -73,13 +74,13 @@ class LiveInformation return $ret; } - private function formatTask(Task $task, $data) + private function formatTask(liveTask $task, $data) { $taskData = (isset($data['jobs']) && isset($data['jobs'][$task->getId()])) ? $data['jobs'][$task->getId()] : []; return [ 'configuration' => $task->getStatus(), - 'actual' => isset($taskData['status']) ? $taskData['status'] : Task::STATUS_STOPPED, + 'actual' => isset($taskData['status']) ? $taskData['status'] : liveTask::STATUS_STOPPED, 'process-id' => isset($taskData['process-id']) ? $taskData['process-id'] : null, ]; } diff --git a/lib/Alchemy/Phrasea/Twig/PhraseanetExtension.php b/lib/Alchemy/Phrasea/Twig/PhraseanetExtension.php index ffc872ec95..efbf36fe81 100644 --- a/lib/Alchemy/Phrasea/Twig/PhraseanetExtension.php +++ b/lib/Alchemy/Phrasea/Twig/PhraseanetExtension.php @@ -48,6 +48,7 @@ class PhraseanetExtension extends \Twig_Extension new \Twig_SimpleFunction('border_checker_from_fqcn', array($this, 'getCheckerFromFQCN')), new \Twig_SimpleFunction('caption_field', array($this, 'getCaptionField')), new \Twig_SimpleFunction('caption_field_label', array($this, 'getCaptionFieldLabel')), + new \Twig_SimpleFunction('caption_field_gui_visible', array($this, 'getCaptionFieldGuiVisible')), new \Twig_SimpleFunction('caption_field_order', array($this, 'getCaptionFieldOrder')), new \Twig_SimpleFunction('flag_slugify', array(Flag::class, 'normalizeName')), @@ -77,6 +78,29 @@ class PhraseanetExtension extends \Twig_Extension return ''; } + /** + * get localized field's gui_visible + * @param RecordInterface $record + * @param $fieldName + * @return string - the name gui_visible + */ + public function getCaptionFieldGuiVisible(RecordInterface $record, $fieldName) + { + if ($record) { + /** @var \appbox $appbox */ + $appbox = $this->app['phraseanet.appbox']; + $databox = $appbox->get_databox($record->getDataboxId()); + foreach ($databox->get_meta_structure() as $meta) { + /** @var \databox_field $meta */ + if ($meta->get_name() === $fieldName) { + return $meta->get_gui_visible($this->app['locale']); + } + } + } + + return ''; + } + public function getCaptionField(RecordInterface $record, $field, $value) { if ($record instanceof ElasticsearchRecord) { @@ -88,7 +112,7 @@ class PhraseanetExtension extends \Twig_Extension $highlightValue = $highlights[$field]; // if field is multivalued, merge highlighted values with captions ones - if (is_array($value)) { + if (is_array($value) && count($value) > 1) { $highlightValue = array_merge($highlightValue, array_diff($value, array_map(function($value) { return str_replace(array('[[em]]', '[[/em]]'), array('', ''), $value); }, $highlightValue))); diff --git a/lib/Alchemy/Phrasea/Utilities/RedisSessionHandler.php b/lib/Alchemy/Phrasea/Utilities/RedisSessionHandler.php index b2e8c008cc..fd5ee8470d 100644 --- a/lib/Alchemy/Phrasea/Utilities/RedisSessionHandler.php +++ b/lib/Alchemy/Phrasea/Utilities/RedisSessionHandler.php @@ -80,7 +80,7 @@ class RedisSessionHandler implements \SessionHandlerInterface */ public function destroy($sessionId) { - return 1 === $this->redis->delete($this->prefix.$sessionId); + return 1 === $this->redis->del($this->prefix.$sessionId); } /** diff --git a/lib/classes/ACL.php b/lib/classes/ACL.php index cbeb9b5672..570b917e25 100644 --- a/lib/classes/ACL.php +++ b/lib/classes/ACL.php @@ -1115,7 +1115,6 @@ class ACL implements cache_cacheableInterface /** * @param array $base_ids * @return $this - * @throws DBALException * @throws Exception */ public function revoke_access_from_bases(Array $base_ids) @@ -1125,24 +1124,30 @@ class ACL implements cache_cacheableInterface $usr_id = $this->user->getId(); + $errors = 0; foreach ($base_ids as $base_id) { - if (!$stmt_del->execute([':base_id' => $base_id, ':usr_id' => $usr_id])) { - throw new Exception('Error while deleteing some rights'); - } - - $this->app['dispatcher']->dispatch( - AclEvents::ACCESS_TO_BASE_REVOKED, - new AccessToBaseRevokedEvent( - $this, - array( - 'base_id'=>$base_id + if ($stmt_del->execute([':base_id' => $base_id, ':usr_id' => $usr_id])) { + $this->app['dispatcher']->dispatch( + AclEvents::ACCESS_TO_BASE_REVOKED, + new AccessToBaseRevokedEvent( + $this, + [ + 'base_id' => $base_id + ] ) - ) - ); + ); + } + else { + $errors++; + } } $stmt_del->closeCursor(); $this->delete_data_from_cache(self::CACHE_RIGHTS_BAS); + if($errors > 0) { + throw new Exception('Error while deleting some rights'); + } + return $this; } diff --git a/lib/classes/API/OAuth2/Adapter.php b/lib/classes/API/OAuth2/Adapter.php index c674aa277b..4de6639d4d 100644 --- a/lib/classes/API/OAuth2/Adapter.php +++ b/lib/classes/API/OAuth2/Adapter.php @@ -537,7 +537,11 @@ class API_OAuth2_Adapter extends OAuth2 public function verifyAccessToken($scope = null, $exit_not_present = true, $exit_invalid = true, $exit_expired = true, $exit_scope = true, $realm = null) { - $token_param = $this->getAccessTokenParams(); + $apiTokenHeader = $this->app['conf']->get(['main', 'api_token_header']); + + $useTokenHeader = $this->useTokenHeaderChoice($apiTokenHeader); + + $token_param = $this->getAccessTokenParams($useTokenHeader); // Access token was not provided if ($token_param === false) { @@ -808,4 +812,21 @@ class API_OAuth2_Adapter extends OAuth2 return false; } } + + /** + * Get the correct constante to call on Oauth2 + * + * @param $apiTokenHeader + * @return string + */ + private function useTokenHeaderChoice($apiTokenHeader) + { + if ($apiTokenHeader === true) { + return Oauth2::TOKEN_ONLY_IN_HEADER; + } elseif ($apiTokenHeader === false) { + return Oauth2::TOKEN_ONLY_IN_GETPOST; + } else { + return Oauth2::TOKEN_AUTO_FIND; + } + } } diff --git a/lib/classes/Session/Logger.php b/lib/classes/Session/Logger.php index 9ab980b192..8676b6de1c 100644 --- a/lib/classes/Session/Logger.php +++ b/lib/classes/Session/Logger.php @@ -41,7 +41,6 @@ class Session_Logger /** * - * @param Application $app * @param databox $databox * @param integer $log_id * @@ -64,17 +63,19 @@ class Session_Logger return $this->id; } - public function log(record_adapter $record, $action, $final, $comment) + public function log(record_adapter $record, $action, $final, $comment, $coll_id_from=null) { $sql = 'INSERT INTO log_docs - (id, log_id, date, record_id, action, final, comment) - VALUES (null, :log_id, NOW(), :record_id, :action, :final, :comm)'; + (id, log_id, date, record_id, coll_id_from, coll_id, action, final, comment) + VALUES (null, :log_id, NOW(), :record_id, :coll_id_from, :coll_id, :action, :final, :comm)'; $stmt = $this->databox->get_connection()->prepare($sql); $params = [ ':log_id' => $this->get_id(), ':record_id' => $record->getRecordId(), + ':coll_id_from' => $coll_id_from, + ':coll_id' => $record->getCollectionId(), ':action' => $action, ':final' => $final, ':comm' => $comment, @@ -139,17 +140,6 @@ class Session_Logger $log_id = $conn->lastInsertId(); $stmt->closeCursor(); - $sql = "INSERT INTO log_colls (id, log_id, coll_id) VALUES (null, :log_id, :coll_id)"; - $stmt = $conn->prepare($sql); - - foreach ($colls as $collId) { - $stmt->execute([ - ':log_id' => $log_id, - ':coll_id' => $collId - ]); - } - - $stmt->closeCursor(); unset($stmt, $conn); return new Session_Logger($databox, $log_id); diff --git a/lib/classes/cache/databox.php b/lib/classes/cache/databox.php index 75460fa962..3687deb211 100644 --- a/lib/classes/cache/databox.php +++ b/lib/classes/cache/databox.php @@ -121,9 +121,9 @@ class cache_databox $conn = $app->getApplicationBox()->get_connection(); - $sql = 'UPDATE sitepreff SET memcached_update = :date'; + $sql = 'UPDATE sitepreff SET memcached_update = current_timestamp()'; $stmt = $conn->prepare($sql); - $stmt->execute([':date' => $now]); + $stmt->execute(); $stmt->closeCursor(); self::$refreshing = false; diff --git a/lib/classes/databox.php b/lib/classes/databox.php index 968ad2f80b..c961f1e58c 100644 --- a/lib/classes/databox.php +++ b/lib/classes/databox.php @@ -446,7 +446,6 @@ class databox extends base implements ThumbnailedElement databox_field::TYPE_DATE , databox_field::TYPE_NUMBER , databox_field::TYPE_STRING - , databox_field::TYPE_TEXT ] ) ? $type : databox_field::TYPE_STRING; @@ -463,6 +462,9 @@ class databox extends base implements ThumbnailedElement ->set_aggregable((isset($field['aggregable']) ? (string) $field['aggregable'] : 0)) ->set_type($type) ->set_tbranch(isset($field['tbranch']) ? (string) $field['tbranch'] : '') + ->set_generate_cterms((isset($field['generate_cterms']) && (string) $field['generate_cterms'] == 1)) + ->set_gui_editable((isset($field['gui_editable']) && (string) $field['gui_editable'] == 1)) + ->set_gui_visible((isset($field['gui_editable']) && (string) $field['gui_visible'] == 1)) ->set_thumbtitle(isset($field['thumbtitle']) ? (string) $field['thumbtitle'] : (isset($field['thumbTitle']) ? $field['thumbTitle'] : '0')) ->set_report(isset($field['report']) ? (string) $field['report'] : '1') ->save(); @@ -1202,7 +1204,7 @@ class databox extends base implements ThumbnailedElement public function clear_logs() { - foreach (['log', 'log_colls', 'log_docs', 'log_search', 'log_view', 'log_thumb'] as $table) { + foreach (['log', 'log_docs', 'log_search', 'log_view', 'log_thumb'] as $table) { $this->get_connection()->delete($table, []); } @@ -1215,21 +1217,40 @@ class databox extends base implements ThumbnailedElement $domct = $this->get_dom_cterms(); if ($domct !== false) { + $changed = false; $nodesToDel = []; + // loop on first level : "fields" for($n = $domct->documentElement->firstChild; $n; $n = $n->nextSibling) { - if(!($n->getAttribute('delbranch'))){ - $nodesToDel[] = $n; + if($n->nodeType == XML_ELEMENT_NODE && !($n->getAttribute('delbranch'))){ + $nodesToDel2 = []; + // loop on 2nd level : "terms" + for($n2 = $n->firstChild; $n2; $n2 = $n2->nextSibling) { + // do not remove "rejected" candidates + if(substr($n2->getAttribute('id'), 0, 1) != 'R') { + $nodesToDel2[] = $n2; + } + } + foreach($nodesToDel2 as $n2) { + $n->removeChild($n2); + $changed = true; + } + // if a field has no more candidates, we can remove it + if(!($n->firstChild)) { + $nodesToDel[] = $n; + } } } foreach($nodesToDel as $n) { $n->parentNode->removeChild($n); + $changed = true; } - if(!empty($nodesToDel)) { + if($changed) { $this->saveCterms($domct); } } - } catch (\Exception $e) { - + } + catch (\Exception $e) { + // no-op } } diff --git a/lib/classes/databox/field.php b/lib/classes/databox/field.php index 6a93dbcfa1..85e9089cad 100644 --- a/lib/classes/databox/field.php +++ b/lib/classes/databox/field.php @@ -43,6 +43,9 @@ class databox_field implements cache_cacheableInterface protected $report; protected $type; protected $tbranch; + protected $generate_cterms; + protected $gui_editable; + protected $gui_visible; protected $separator; protected $thumbtitle; @@ -100,7 +103,6 @@ class databox_field implements cache_cacheableInterface protected $original_dces; protected $aggregable; - const TYPE_TEXT = "text"; const TYPE_DATE = "date"; const TYPE_STRING = "string"; const TYPE_NUMBER = "number"; @@ -167,6 +169,9 @@ class databox_field implements cache_cacheableInterface $this->position = (int)$row['sorter']; $this->type = $row['type'] ?: self::TYPE_STRING; $this->tbranch = $row['tbranch']; + $this->generate_cterms = (bool)$row['generate_cterms']; + $this->gui_editable = (bool)$row['gui_editable']; + $this->gui_visible = (bool)$row['gui_visible']; $this->VocabularyType = $row['VocabularyControlType']; $this->VocabularyRestriction = (bool)$row['RestrictToVocabularyControl']; @@ -307,6 +312,9 @@ class databox_field implements cache_cacheableInterface `report` = :report, `type` = :type, `tbranch` = :tbranch, + `generate_cterms` = :generate_cterms, + `gui_editable` = :gui_editable, + `gui_visible` = :gui_visible, `sorter` = :position, `thumbtitle` = :thumbtitle, `VocabularyControlType` = :VocabularyControlType, @@ -330,6 +338,9 @@ class databox_field implements cache_cacheableInterface ':report' => $this->report ? '1' : '0', ':type' => $this->type, ':tbranch' => $this->tbranch, + ':generate_cterms' => $this->generate_cterms ? '1' : '0', + ':gui_editable' => $this->gui_editable ? '1' : '0', + ':gui_visible' => $this->gui_visible ? '1' : '0', ':position' => $this->position, ':thumbtitle' => $this->thumbtitle, ':VocabularyControlType' => $this->getVocabularyControl() ? $this->getVocabularyControl()->getType() : null, @@ -381,6 +392,9 @@ class databox_field implements cache_cacheableInterface $meta->setAttribute('aggregable', $this->aggregable); $meta->setAttribute('type', $this->type); $meta->setAttribute('tbranch', $this->tbranch); + $meta->setAttribute('generate_cterms', $this->generate_cterms ? '1' : '0'); + $meta->setAttribute('gui_editable', $this->gui_editable ? '1' : '0'); + $meta->setAttribute('gui_visible', $this->gui_visible ? '1' : '0'); if ($this->multi) { $meta->setAttribute('separator', $this->separator); } @@ -440,6 +454,16 @@ class databox_field implements cache_cacheableInterface return isset($this->labels[$code]) && '' !== $this->labels[$code] ? $this->labels[$code] : $this->name; } + /** + * get all localized labels + * + * @return string[] + */ + public function get_labels() + { + return $this->labels; + } + /** * @param string $name * @return databox_field @@ -702,6 +726,39 @@ class databox_field implements cache_cacheableInterface return $this; } + /** + * @param boolean $generate_cterms + * @return databox_field + */ + public function set_generate_cterms($generate_cterms) + { + $this->generate_cterms = $generate_cterms; + + return $this; + } + + /** + * @param boolean $gui_editable + * @return databox_field + */ + public function set_gui_editable($gui_editable) + { + $this->gui_editable = $gui_editable; + + return $this; + } + + /** + * @param boolean $gui_visible + * @return databox_field + */ + public function set_gui_visible($gui_visible) + { + $this->gui_visible = $gui_visible; + + return $this; + } + /** * * @param string $separator @@ -786,6 +843,33 @@ class databox_field implements cache_cacheableInterface return $this->tbranch; } + /** + * + * @return boolean + */ + public function get_generate_cterms() + { + return $this->generate_cterms; + } + + /** + * + * @return boolean + */ + public function get_gui_editable() + { + return $this->gui_editable; + } + + /** + * + * @return boolean + */ + public function get_gui_visible() + { + return $this->gui_visible; + } + /** * @param Boolean $all If set to false, returns a one-char separator to use for serialiation * @@ -896,6 +980,9 @@ class databox_field implements cache_cacheableInterface 'sorter' => $this->position, 'thumbtitle' => $this->thumbtitle, 'tbranch' => $this->tbranch, + 'generate_cterms' => $this->generate_cterms, + 'gui_editable' => $this->gui_editable, + 'gui_visible' => $this->gui_visible, 'separator' => $this->separator, 'required' => $this->required, 'report' => $this->report, @@ -934,10 +1021,10 @@ class databox_field implements cache_cacheableInterface } $sql = "INSERT INTO metadatas_structure - (`id`, `name`, `src`, `readonly`, `required`, `indexable`, `type`, `tbranch`, + (`id`, `name`, `src`, `readonly`, `gui_editable`,`gui_visible`, `required`, `indexable`, `type`, `tbranch`, `generate_cterms`, `thumbtitle`, `multi`, `business`, `aggregable`, `report`, `sorter`, `separator`) - VALUES (null, :name, '', 0, 0, 1, 'string', '', + VALUES (null, :name, '', 0, 1, 1, 0, 1, 'string', '', 1, null, 0, 0, 0, 1, :sorter, '')"; diff --git a/lib/classes/databox/subdef.php b/lib/classes/databox/subdef.php index 0dcab4ccc1..f1a269d731 100644 --- a/lib/classes/databox/subdef.php +++ b/lib/classes/databox/subdef.php @@ -44,7 +44,7 @@ class databox_subdef SubdefType::TYPE_DOCUMENT => [SubdefSpecs::TYPE_IMAGE, SubdefSpecs::TYPE_FLEXPAPER, SubdefSpecs::TYPE_PDF], SubdefType::TYPE_FLASH => [SubdefSpecs::TYPE_IMAGE], SubdefType::TYPE_IMAGE => [SubdefSpecs::TYPE_IMAGE, SubdefSpecs::TYPE_PDF], - SubdefType::TYPE_VIDEO => [SubdefSpecs::TYPE_IMAGE, SubdefSpecs::TYPE_VIDEO, SubdefSpecs::TYPE_ANIMATION], + SubdefType::TYPE_VIDEO => [SubdefSpecs::TYPE_IMAGE, SubdefSpecs::TYPE_VIDEO, SubdefSpecs::TYPE_ANIMATION, SubdefSpecs::TYPE_AUDIO], SubdefType::TYPE_UNKNOWN => [SubdefSpecs::TYPE_IMAGE], ]; const CLASS_THUMBNAIL = 'thumbnail'; @@ -156,6 +156,10 @@ class databox_subdef if ($sd->audiosamplerate) { $audio->setOptionValue(Audio::OPTION_AUDIOSAMPLERATE, (int) $sd->audiosamplerate); } + if ($sd->audiochannel) { + $audio->setOptionValue(Audio::OPTION_AUDIOCHANNEL, (string) $sd->audiochannel); + } + return $audio; } /** diff --git a/lib/classes/eventsmanager/notify/orderdeliver.php b/lib/classes/eventsmanager/notify/orderdeliver.php index 6e27d431ea..8f4dcd8813 100644 --- a/lib/classes/eventsmanager/notify/orderdeliver.php +++ b/lib/classes/eventsmanager/notify/orderdeliver.php @@ -11,6 +11,9 @@ use Alchemy\Phrasea\Application; use Alchemy\Phrasea\Model\Entities\User; +use Alchemy\Phrasea\Model\Repositories\BasketRepository; +use Alchemy\Phrasea\Model\Repositories\UserRepository; + class eventsmanager_notify_orderdeliver extends eventsmanager_notifyAbstract { @@ -31,9 +34,9 @@ class eventsmanager_notify_orderdeliver extends eventsmanager_notifyAbstract /** * - * @param Array $datas + * @param string[] $data * @param boolean $unread - * @return string + * @return array */ public function datas(array $data, $unread) { @@ -41,24 +44,29 @@ class eventsmanager_notify_orderdeliver extends eventsmanager_notifyAbstract $ssel_id = $data['ssel_id']; $n = $data['n']; - if (null === $user= $this->app['repo.users']->find(($from))) { + /** @var UserRepository $userRepo */ + $userRepo = $this->app['repo.users']; + if( ($user= $userRepo->find(($from))) === null ) { return []; } $sender = $user->getDisplayName(); try { + /** @var BasketRepository $repository */ $repository = $this->app['repo.baskets']; $basket = $repository->findUserBasket($ssel_id, $this->app->getAuthenticatedUser(), false); - } catch (\Exception $e) { + } + catch (\Exception $e) { return []; } + $ret = [ 'text' => $this->app->trans('%user% vous a delivre %quantity% document(s) pour votre commande %title%', ['%user%' => $sender, '%quantity%' => $n, '%title%' => '' - . $basket->getName() . '']) - , 'class' => '' + . $basket->getName() . '']), + 'class' => '' ]; return $ret; diff --git a/lib/classes/eventsmanager/notify/validationdone.php b/lib/classes/eventsmanager/notify/validationdone.php index 6f231f90aa..c5b0c48a5c 100644 --- a/lib/classes/eventsmanager/notify/validationdone.php +++ b/lib/classes/eventsmanager/notify/validationdone.php @@ -11,6 +11,9 @@ use Alchemy\Phrasea\Application; use Alchemy\Phrasea\Model\Entities\User; +use Alchemy\Phrasea\Model\Repositories\BasketRepository; +use Alchemy\Phrasea\Model\Repositories\UserRepository; + class eventsmanager_notify_validationdone extends eventsmanager_notifyAbstract { @@ -31,35 +34,38 @@ class eventsmanager_notify_validationdone extends eventsmanager_notifyAbstract /** * - * @param string $datas + * @param string[] $data * @param boolean $unread - * @return Array + * @return array */ public function datas(array $data, $unread) { $from = $data['from']; $ssel_id = $data['ssel_id']; - if (null === $registered_user = $this->app['repo.users']->find($from)) { + /** @var UserRepository $userRepo */ + $userRepo = $this->app['repo.users']; + if ( ($registered_user = $userRepo->find($from)) === null ) { return []; } $sender = $registered_user->getDisplayName(); try { + /** @var BasketRepository $repository */ $repository = $this->app['repo.baskets']; $basket = $repository->findUserBasket($ssel_id, $this->app->getAuthenticatedUser(), false); - } catch (\Exception $e) { + } + catch (\Exception $e) { return []; } $ret = [ 'text' => $this->app->trans('%user% a envoye son rapport de validation de %title%', ['%user%' => $sender, '%title%' => '' - . $basket->getName() . '' - ]) - , 'class' => '' + . $basket->getName() . '']), + 'class' => '' ]; return $ret; @@ -84,12 +90,18 @@ class eventsmanager_notify_validationdone extends eventsmanager_notifyAbstract } /** - * @param integer $usr_id The id of the user to check + * @param User $user The id of the user to check * * @return boolean */ public function is_available(User $user) { - return $this->app->getAclForUser($user)->has_right(\ACL::CANPUSH); + try { + return $this->app->getAclForUser($user)->has_right(\ACL::CANPUSH); + } + catch (\Exception $e) { + // has_right(unknow_right) ? will not happen ! + return false; + } } } diff --git a/lib/classes/media/subdef.php b/lib/classes/media/subdef.php index 45eaa4cdbe..53b8b290bc 100644 --- a/lib/classes/media/subdef.php +++ b/lib/classes/media/subdef.php @@ -89,6 +89,7 @@ class media_subdef extends media_abstract implements cache_cacheableInterface const TYPE_AUDIO_MP3 = 'AUDIO_MP3'; const TYPE_IMAGE = 'IMAGE'; const TYPE_NO_PLAYER = 'UNKNOWN'; + const TYPE_PDF = 'PDF'; /* * Technical datas types constants @@ -407,6 +408,7 @@ class media_subdef extends media_abstract implements cache_cacheableInterface { static $types = [ 'application/x-shockwave-flash' => self::TYPE_FLEXPAPER, + 'application/pdf' => self::TYPE_PDF, 'audio/mp3' => self::TYPE_AUDIO_MP3, 'audio/mpeg' => self::TYPE_AUDIO_MP3, 'image/gif' => self::TYPE_IMAGE, diff --git a/lib/classes/module/console/systemUpgrade.php b/lib/classes/module/console/systemUpgrade.php index 22061fea13..4a590fcfa5 100644 --- a/lib/classes/module/console/systemUpgrade.php +++ b/lib/classes/module/console/systemUpgrade.php @@ -81,8 +81,13 @@ class module_console_systemUpgrade extends Command return $output->writeln(sprintf('You have to fix your database before upgrade with the system:mailCheck command ')); } - $queries = $this->getService('phraseanet.appbox')->forceUpgrade($upgrader, $this->container); - + /** @var appbox $appBox */ + $appBox = $this->getService('phraseanet.appbox'); + $queries = $appBox->forceUpgrade($upgrader, $this->container); + /** + * todo (?) combine schema changes on a table as a simngle sql + * because on big tables like logs, adding 2 columns is 2 very long sql + */ if ($input->getOption('dump') || $input->getOption('stderr')) { if (0 < count($queries)) { $output->writeln("Some SQL queries can be executed to optimize\n"); @@ -128,8 +133,23 @@ class module_console_systemUpgrade extends Command } else { $output->write('Canceled', true); } - $output->write('Finished !', true); + $output->write('System upgrade Finished !', true); - return 0; + // need to fix autoincrements after system:upgrade + $output->write('Start fixing autoincrements !', true); + + $fixAutoincrementCommand = $this->getApplication()->find('system:fix-autoincrements'); + + $arguments = array( + 'command' => 'system:fix-autoincrements', + ); + + $fixAutoincrementInput = new ArrayInput($arguments); + + $returnCode = $fixAutoincrementCommand->run($fixAutoincrementInput, $output); + + $output->write('Fixing autoincrements finished after system:upgrade', true); + + return $returnCode; } } diff --git a/lib/classes/patch/380alpha3a.php b/lib/classes/patch/380alpha3a.php index 2c5dbfe17b..d2a02a0c55 100644 --- a/lib/classes/patch/380alpha3a.php +++ b/lib/classes/patch/380alpha3a.php @@ -50,6 +50,21 @@ class patch_380alpha3a extends patchAbstract { $conn = $databox->get_connection(); + $sql = "CREATE TABLE IF NOT EXISTS `log_colls` (\n" + . " `id` int(11) unsigned NOT NULL AUTO_INCREMENT,\n" + . " `log_id` int(11) unsigned NOT NULL,\n" + . " `coll_id` int(11) unsigned NOT NULL,\n" + . " PRIMARY KEY (`id`),\n" + . " UNIQUE KEY `couple` (`log_id`,`coll_id`),\n" + . " KEY `log_id` (`log_id`),\n" + . " KEY `coll_id` (`coll_id`)\n" + . ") ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;"; + + $stmt = $conn->prepare($sql); + $stmt->execute(); + $stmt->closeCursor(); + unset($stmt); + $removeProc = "DROP PROCEDURE IF EXISTS explode_log_table"; $stmt = $conn->prepare($removeProc); diff --git a/lib/classes/patch/410alpha12a.php b/lib/classes/patch/410alpha12a.php deleted file mode 100644 index e46efe5165..0000000000 --- a/lib/classes/patch/410alpha12a.php +++ /dev/null @@ -1,7786 +0,0 @@ -release; - } - - /** - * {@inheritdoc} - */ - public function getDoctrineMigrations() - { - return []; - } - - /** - * {@inheritdoc} - */ - public function require_all_upgrades() - { - return false; - } - - /** - * {@inheritdoc} - */ - public function concern() - { - return $this->concern; - } - - /** - * {@inheritdoc} - */ - public function apply(base $databox, Application $app) - { - $sql = "DROP TABLE IF EXISTS `ext2mime`"; - $databox->get_connection()->executeQuery($sql); - - $sql = "CREATE TEMPORARY TABLE `ext2mime` (\n" - . " `ext` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '',\n" - . " `mime` varchar(256) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL,\n" - . " PRIMARY KEY (`ext`)\n" - . ") ENGINE=InnoDB DEFAULT CHARSET=latin1"; - $databox->get_connection()->executeQuery($sql); - - // some mimes give the same ext (conflict), we use the first one. - $sql = "INSERT IGNORE INTO `ext2mime` (`ext`, `mime`) VALUES (:ext, :mime)"; - $stmt = $databox->get_connection()->prepare($sql); - - $mimes = json_decode($this->mimes, true); // as assoc - foreach($mimes as $mime=>$m) { - if(array_key_exists('extensions', $m) && is_array($m['extensions'])) { - foreach($m['extensions'] as $ext) { - $stmt->execute([':ext'=>$ext, ':mime'=>$mime]); - } - } - } - $stmt->closeCursor(); - - // patch the tables only for truncated values - - // record.mime was char(40) ; subdef 64 - $sql = "UPDATE `record` AS `r` INNER JOIN `ext2mime` AS `e` ON `e`.`ext` = RIGHT(`r`.`originalname`, LOCATE('.', REVERSE(`r`.`originalname`))-1)\n" - . "SET `r`.`mime`=`e`.`mime` WHERE LENGTH(`r`.`mime`)>39"; - $databox->get_connection()->executeQuery($sql); - - // subdef.mime was char(64) - $sql = "UPDATE `subdef` AS `s` INNER JOIN `ext2mime` AS `e` ON `e`.`ext` = RIGHT(`s`.`name`, LOCATE('.', REVERSE(`s`.`name`))-1)\n" - . "SET `s`.`mime`=`e`.`mime` WHERE LENGTH(`s`.`mime`)>63"; - $databox->get_connection()->executeQuery($sql); - - - $sql = "DROP TABLE IF EXISTS `ext2mime`"; - $databox->get_connection()->executeQuery($sql); - } -} diff --git a/lib/classes/patch/410alpha13a.php b/lib/classes/patch/410alpha13a.php new file mode 100644 index 0000000000..b09f645835 --- /dev/null +++ b/lib/classes/patch/410alpha13a.php @@ -0,0 +1,122 @@ +release; + } + + /** + * {@inheritdoc} + */ + public function getDoctrineMigrations() + { + return []; + } + + /** + * {@inheritdoc} + */ + public function require_all_upgrades() + { + return false; + } + + /** + * {@inheritdoc} + */ + public function concern() + { + return $this->concern; + } + + /** + * {@inheritdoc} + */ + public function apply(base $databox, Application $app) + { + // @see : https://phraseanet.atlassian.net/browse/PHRAS-2468 + // to be able to migrate from 3.5 to 4.0.8, we must not delete the table anymore + // so the cli "bin/setup patch:log_coll_id" can be executed. + + /* + $sql = "DROP TABLE IF EXISTS `log_colls`"; + $databox->get_connection()->prepare($sql)->execute(); + */ + + /* + * no need to do those ops, it's done by system:upgrade after fixing the xml scheme + * + $sql = "ALTER TABLE `log_docs`\n" + . "CHANGE `action` `action` ENUM(\n" + . " 'push',\n" + . " 'add',\n" + . " 'validate',\n" + . " 'edit',\n" + . " 'collection',\n" + . " 'status',\n" + . " 'print',\n" + . " 'substit',\n" + . " 'publish',\n" + . " 'download',\n" + . " 'mail',\n" + . " 'ftp',\n" + . " 'delete',\n" + . " 'collection_from',\n" + . " ''\n" + . ")\n" + . "CHARACTER SET ascii BINARY NOT NULL DEFAULT ''"; + try { + $databox->get_connection()->prepare($sql)->execute(); + } + catch(\Exception $e) { + // no-op + } + + $sql = "ALTER TABLE `log_docs` ADD `coll_id` INT(11) UNSIGNED NULL DEFAULT NULL,\n" + . " ADD INDEX(coll_id)"; + try { + $databox->get_connection()->prepare($sql)->execute(); + } + catch(\Exception $e) { + // no-op (the field exists ?) + } + + $sql = "ALTER TABLE `log_view` ADD `coll_id` INT(11) UNSIGNED NULL DEFAULT NULL,\n" + . " ADD INDEX(coll_id)"; + try { + $databox->get_connection()->prepare($sql)->execute(); + } + catch(\Exception $e) { + // no-op (the field exists ?) + } + */ + + return true; + } +} diff --git a/lib/classes/patch/410alpha13b.php b/lib/classes/patch/410alpha13b.php new file mode 100644 index 0000000000..3846f8bf19 --- /dev/null +++ b/lib/classes/patch/410alpha13b.php @@ -0,0 +1,64 @@ +release; + } + + /** + * {@inheritdoc} + */ + public function getDoctrineMigrations() + { + return []; + } + + /** + * {@inheritdoc} + */ + public function require_all_upgrades() + { + return false; + } + + /** + * {@inheritdoc} + */ + public function concern() + { + return $this->concern; + } + + /** + * {@inheritdoc} + */ + public function apply(base $databox, Application $app) + { + $sql = "UPDATE `log_docs` SET `coll_id`=`final` WHERE `action`='collection'"; + $databox->get_connection()->prepare($sql)->execute(); + + return true; + } +} diff --git a/lib/classes/patch/410alpha14a.php b/lib/classes/patch/410alpha14a.php new file mode 100644 index 0000000000..719b1a9700 --- /dev/null +++ b/lib/classes/patch/410alpha14a.php @@ -0,0 +1,64 @@ +release; + } + + /** + * {@inheritdoc} + */ + public function getDoctrineMigrations() + { + return []; + } + + /** + * {@inheritdoc} + */ + public function require_all_upgrades() + { + return false; + } + + /** + * {@inheritdoc} + */ + public function concern() + { + return $this->concern; + } + + /** + * {@inheritdoc} + */ + public function apply(base $databox, Application $app) + { + $sql = "UPDATE metadatas_structure SET type = 'string' where type = 'text' OR type = '' "; + $databox->get_connection()->executeQuery($sql); + + return true; + } +} diff --git a/lib/classes/patch/410alpha17a.php b/lib/classes/patch/410alpha17a.php new file mode 100644 index 0000000000..ff682b1ef9 --- /dev/null +++ b/lib/classes/patch/410alpha17a.php @@ -0,0 +1,67 @@ +release; + } + + /** + * {@inheritdoc} + */ + public function getDoctrineMigrations() + { + return []; + } + + /** + * {@inheritdoc} + */ + public function require_all_upgrades() + { + return false; + } + + /** + * {@inheritdoc} + */ + public function concern() + { + return $this->concern; + } + + /** + * {@inheritdoc} + */ + public function apply(base $databox, Application $app) + { + // -- done by xml schema -- + // $sql = "ALTER TABLE `metadatas_structure` ADD `generate_cterms` INT(1) UNSIGNED NOT NULL DEFAULT '0' AFTER `tbranch`"; + // $databox->get_connection()->executeQuery($sql); + // $sql = "ALTER TABLE `metadatas_structure` ADD `gui_editable` INT(1) UNSIGNED NOT NULL DEFAULT '0' AFTER `readonly`"; + // $databox->get_connection()->executeQuery($sql); + + return true; + } +} diff --git a/lib/classes/record/adapter.php b/lib/classes/record/adapter.php index 1846028160..37839b792d 100644 --- a/lib/classes/record/adapter.php +++ b/lib/classes/record/adapter.php @@ -529,10 +529,13 @@ class record_adapter implements RecordInterface, cache_cacheableInterface return $this; } + $coll_id_from = $this->getCollectionId(); + $coll_id_to = $collection->get_coll_id(); + $sql = "UPDATE record SET moddate = NOW(), coll_id = :coll_id WHERE record_id =:record_id"; $params = [ - ':coll_id' => $collection->get_coll_id(), + ':coll_id' => $coll_id_to, ':record_id' => $this->getRecordId(), ]; @@ -541,12 +544,13 @@ class record_adapter implements RecordInterface, cache_cacheableInterface $stmt->closeCursor(); $this->base_id = $collection->get_base_id(); - - $this->app['phraseanet.logger']($this->getDatabox()) - ->log($this, Session_Logger::EVENT_MOVE, $collection->get_coll_id(), ''); + $this->collection_id = $coll_id_to; $this->delete_data_from_cache(); + $this->app['phraseanet.logger']($this->getDatabox()) + ->log($this, Session_Logger::EVENT_MOVE, $collection->get_coll_id(), '', $coll_id_from); + $this->dispatch(RecordEvents::COLLECTION_CHANGED, new CollectionChangedEvent($this)); return $this; @@ -1208,13 +1212,14 @@ class record_adapter implements RecordInterface, cache_cacheableInterface try { $log_id = $app['phraseanet.logger']($collection->get_databox())->get_id(); - $sql = 'INSERT INTO log_docs (id, log_id, date, record_id, action, final, comment)' - . ' VALUES (null, :log_id, now(), :record_id, "add", :coll_id,"")'; + $sql = 'INSERT INTO log_docs (id, log_id, date, record_id, coll_id, action, final, comment)' + . ' VALUES (null, :log_id, now(), :record_id, :coll_id, "add", :final, "")'; $stmt = $connection->prepare($sql); $stmt->execute([ ':log_id' => $log_id, ':record_id' => $story_id, ':coll_id' => $collection->get_coll_id(), + ':final' => $collection->get_coll_id(), ]); $stmt->closeCursor(); } catch (\Exception $e) { @@ -1261,14 +1266,15 @@ class record_adapter implements RecordInterface, cache_cacheableInterface try { $log_id = $app['phraseanet.logger']($databox)->get_id(); - $sql = "INSERT INTO log_docs (id, log_id, date, record_id, action, final, comment)" - . " VALUES (null, :log_id, now(), :record_id, 'add', :coll_id, '')"; + $sql = "INSERT INTO log_docs (id, log_id, date, record_id, coll_id, action, final, comment)" + . " VALUES (null, :log_id, now(), :record_id, :coll_id, 'add', :final, '')"; $stmt = $databox->get_connection()->prepare($sql); $stmt->execute([ ':log_id' => $log_id, ':record_id' => $record_id, ':coll_id' => $file->getCollection()->get_coll_id(), + ':final' => $file->getCollection()->get_coll_id(), ]); $stmt->closeCursor(); } catch (\Exception $e) { @@ -1600,14 +1606,15 @@ class record_adapter implements RecordInterface, cache_cacheableInterface public function log_view($log_id, $referrer, $gv_sit) { - $sql = "INSERT INTO log_view (id, log_id, date, record_id, referrer, site_id)" - . " VALUES (null, :log_id, now(), :rec, :referrer, :site)"; + $sql = "INSERT INTO log_view (id, log_id, date, record_id, referrer, site_id, coll_id)" + . " VALUES (null, :log_id, now(), :rec, :referrer, :site, :collid)"; $params = [ ':log_id' => $log_id , ':rec' => $this->getRecordId() , ':referrer' => $referrer - , ':site' => $gv_sit, + , ':site' => $gv_sit + , ':collid' => $this->getCollectionId() ]; $stmt = $this->getDataboxConnection()->prepare($sql); $stmt->execute($params); diff --git a/lib/classes/set/export.php b/lib/classes/set/export.php index 433bcb95cb..b9a59a1042 100644 --- a/lib/classes/set/export.php +++ b/lib/classes/set/export.php @@ -9,13 +9,16 @@ */ use Alchemy\Phrasea\Application; -use Alchemy\Phrasea\Model\Serializer\CaptionSerializer; use Alchemy\Phrasea\Model\Entities\Token; use Alchemy\Phrasea\Model\Entities\User; +use Alchemy\Phrasea\Model\Repositories\BasketRepository; +use Alchemy\Phrasea\Model\Repositories\StoryWZRepository; +use Alchemy\Phrasea\Model\Serializer\CaptionSerializer; use Assert\Assertion; use Doctrine\DBAL\Connection; use Symfony\Component\Filesystem\Filesystem; + class set_export extends set_abstract { private static $maxFilenameLength = 256; @@ -60,6 +63,7 @@ class set_export extends set_abstract $remain_hd = []; if ($storyWZid) { + /** @var StoryWZRepository $repository */ $repository = $app['repo.story-wz']; $storyWZ = $repository->findByUserAndId($this->app, $app->getAuthenticatedUser(), $storyWZid); @@ -68,6 +72,7 @@ class set_export extends set_abstract } if ($sstid != "") { + /** @var BasketRepository $repository */ $repository = $app['repo.baskets']; $Basket = $repository->findUserBasket($sstid, $app->getAuthenticatedUser(), false); diff --git a/lib/conf.d/bases_structure.xml b/lib/conf.d/bases_structure.xml index f4ab3d1163..8cfcd692fd 100644 --- a/lib/conf.d/bases_structure.xml +++ b/lib/conf.d/bases_structure.xml @@ -1278,6 +1278,27 @@ id + + usr_id + INDEX + + usr_id + + + + unread + INDEX + + unread + + + + created_on + INDEX + + created_on + + InnoDB @@ -1901,7 +1922,7 @@ type - enum('string','text','date','number') + enum('string','date','number') @@ -2012,6 +2033,30 @@ + + generate_cterms + int(1) unsigned + + + 1 + + + + gui_editable + int(1) unsigned + + + 1 + + + + gui_visible + int(1) unsigned + + + 1 + + @@ -2385,67 +2430,6 @@ InnoDB - - - - id - int(11) unsigned - - auto_increment - - - - - log_id - int(11) unsigned - - - - - - - coll_id - int(11) unsigned - - - - - - - - - PRIMARY - PRIMARY - - id - - - - couple - UNIQUE - - log_id - coll_id - - - - log_id - INDEX - - log_id - - - - coll_id - INDEX - - coll_id - - - - InnoDB -
- @@ -2572,7 +2556,7 @@ action - enum('push','add','validate','edit','collection','status','print','substit','publish','download','mail','ftp','delete') + enum('push','add','validate','edit','collection','status','print','substit','publish','download','mail','ftp','delete','') @@ -2595,6 +2579,22 @@ + + coll_id_from + int(11) unsigned + YES + + + + + + coll_id + int(11) unsigned + YES + + + + @@ -2618,6 +2618,20 @@ record_id + + coll_id_from + INDEX + + coll_id + + + + coll_id + INDEX + + coll_id + + action INDEX @@ -2696,6 +2710,14 @@ + + coll_id + int(11) unsigned + YES + + + + @@ -2740,6 +2762,13 @@ site_id + + coll_id + INDEX + + coll_id + + InnoDB
diff --git a/lib/conf.d/configuration.yml b/lib/conf.d/configuration.yml index 4c49e6ded6..0e13eba50c 100644 --- a/lib/conf.d/configuration.yml +++ b/lib/conf.d/configuration.yml @@ -1,6 +1,10 @@ servername: 'http://local.phrasea/' languages: - available: [] + available: + - fr + - en + - de + - nl default: 'fr' main: maintenance: false @@ -23,10 +27,33 @@ main: options: {} search-engine: type: elasticsearch - # type: phrasea options: - host: localhost + host: 'localhost' port: 9200 + index: '' + shards: 3 + replicas: 0 + minScore: 2 + highlight: true + maxResultWindow: 500000 + populate_order: RECORD_ID + populate_direction: DESC + activeTab: '#elastic-search' + base_aggregate_limit: 10 + collection_aggregate_limit: 10 + doctype_aggregate_limit: 0 + camera_model_aggregate_limit: 0 + iso_aggregate_limit: 0 + aperture_aggregate_limit: 0 + shutterspeed_aggregate_limit: 0 + flashfired_aggregate_limit: 0 + framerate_aggregate_limit: 0 + audiosamplerate_aggregate_limit: 0 + videocodec_aggregate_limit: 0 + audiocodec_aggregate_limit: 0 + orientation_aggregate_limit: 0 + colorspace_aggregate_limit: 0 + mimetype_aggregate_limit: 0 task-manager: status: started enabled: true @@ -67,26 +94,20 @@ main: download: null lazaret: null caption: null - bridge: - youtube: - enabled: false - client_id: null - client_secret: null - developer_key: null - flickr: - enabled: false - client_id: null - client_secret: null - dailymotion: - enabled: false - client_id: null - client_secret: null + trusted-proxies: [] debugger: allowed-ips: [] border-manager: enabled: true - extension-mapping: { } + extension-mapping: + otc: application/vnd.oasis.opendocument.chart-template + ttc: application/x-font-ttf + xlsx: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet + docx: application/msword + pptx: application/vnd.ms-powerpoint + mxf: application/mxf + mp4: video/mp4 checkers: - type: Checker\Sha256 @@ -120,6 +141,9 @@ border-manager: enabled: false options: mediatypes: [Audio, Document, Flash, Image, Video] +user_account: + deleting_policies: + email_confirmation: true authentication: auto-create: templates: { } @@ -201,42 +225,79 @@ embed_bundle: video: player: videojs autoplay: false - coverSubdef: thumbnail - available-speeds: + cover_subdef: thumbnail + message_start: StartOfMessage + available_speeds: - 1 - 1.5 - 3 audio: player: videojs autoplay: false + cover_subdef: thumbnail document: - player: flexpaper - enable-pdfjs: true + #player: flexpaper + enable_pdfjs: true geocoding-providers: - - name: 'mapBox' + map-provider: 'mapboxWebGL' enabled: true public-key: '' + map-layers: + - + name: Light + value: 'mapbox://styles/mapbox/light-v9' + - + name: Streets + value: 'mapbox://styles/mapbox/streets-v9' + - + name: Basic + value: 'mapbox://styles/mapbox/basic-v9' + - + name: Satellite + value: 'mapbox://styles/mapbox/satellite-v9' + - + name: Dark + value: 'mapbox://styles/mapbox/dark-v9' + transition-mapboxgl: + - + animate: true + speed: '2.2' + curve: '1.42' default-position: - 2.335062 - 48.879162 default-zoom: 2 marker-default-zoom: 11 - position-fields: - - - name: GpsCompositePosition - type: latlng + position-fields: [] + #- + # name: GpsCompositePosition + # type: latlng # - # name: Longitude # type: lng # - # name: Latitude # type: lat + geonames-field-mapping: true + cityfields: 'City, Ville' + provincefields: Province + countryfields: 'Country, Pays' video-editor: vttFieldName: VideoTextTrackChapters - seekBackwardStep: 1000 # in ms - seekForwardStep: 1000 # in ms + seekBackwardStep: 500 # in ms + seekForwardStep: 500 # in ms playbackRates: - 1 - '1.5' - 3 +rabbitmq: + server: + host: localhost + port: 5672 + user: '' + password: '' + vhost: / + +Console_logger_enabled_environments: [test] + diff --git a/lib/conf.d/data_templates/DublinCore.xml b/lib/conf.d/data_templates/DublinCore.xml index 5de4f32945..31e874a13d 100644 --- a/lib/conf.d/data_templates/DublinCore.xml +++ b/lib/conf.d/data_templates/DublinCore.xml @@ -148,7 +148,7 @@ {{datapathnoweb}}{{basename}}/subdefs - flexpaper + pdf no screen @@ -182,26 +182,26 @@ - - <Creator src="XMP-dc:Creator" report="1" /> - <Subject src="XMP-dc:Subject" multi="1"/> - <Description src="XMP-dc:Description" report="0" /> + <Title src="XMP-dc:Title" type="string" thumbtitle="1" report="1" /> + <Creator src="XMP-dc:Creator" type="string" report="1" /> + <Subject src="XMP-dc:Subject" type="string" multi="1"/> + <Description src="XMP-dc:Description" type="string" report="0" /> <Publisher src="XMP-dc:Publisher" type="date" report="0" /> - <Contributor src="XMP-dc:Contributor" report="0"/> + <Contributor src="XMP-dc:Contributor" type="string" report="0"/> <Date src="XMP-dc:Date" type="date" report="0" /> - <Type src="XMP-dc:Type" report="1" /> - <Format src="XMP-dc:Format" report="0" /> - <Identifier src="XMP-dc:Identifier" report="1" /> - <Source src="XMP-dc:Source" report="0" /> - <Language src="XMP-dc:Language" report="0" /> - <Relation src="XMP-dc:Relation" report="0" /> - <Coverage src="XMP-dc:Coverage" report="1" /> - <Rights src="XMP-dc:Rights" report="0" /> - <Comments src="" business="1" report="0" /> - <Filename src="Phraseanet:tf-basename" readonly="1" type="text" report="1"/> - <CameraDevice src="IFD0:Model" readonly="1" report="0" /> - <Latitude src="GPS:GPSLatitude" readonly="1" report="0" /> - <Longitude src="GPS:GPSLongitude" readonly="1" report="0"/> + <Type src="XMP-dc:Type" type="string" report="1" /> + <Format src="XMP-dc:Format" type="string" report="0" /> + <Identifier src="XMP-dc:Identifier" type="string" report="1" /> + <Source src="XMP-dc:Source" type="string" report="0" /> + <Language src="XMP-dc:Language" type="string" report="0" /> + <Relation src="XMP-dc:Relation" type="string" report="0" /> + <Coverage src="XMP-dc:Coverage" type="string" report="1" /> + <Rights src="XMP-dc:Rights" type="string" report="0" /> + <Comments src="" business="1" type="string" report="0" /> + <Filename src="Phraseanet:tf-basename" readonly="1" type="string" report="1"/> + <CameraDevice src="IFD0:Model" type="string" readonly="1" report="0" /> + <Latitude src="GPS:GPSLatitude" type="number" readonly="1" report="0" /> + <Longitude src="GPS:GPSLongitude" type="number" readonly="1" report="0"/> <ArchiveDate src="Phraseanet:tf-archivedate" readonly="1" type="date" report="0" /> <LastEditDate src="Phraseanet:tf-editdate" readonly="1" type="date" report="0" /> </description> diff --git a/lib/conf.d/data_templates/en-simple.xml b/lib/conf.d/data_templates/en-simple.xml index a9b2e33460..5c5b10910d 100644 --- a/lib/conf.d/data_templates/en-simple.xml +++ b/lib/conf.d/data_templates/en-simple.xml @@ -148,7 +148,7 @@ </subdef> <subdef class="preview" name="preview" downloadable="false"> <path>{{datapathnoweb}}{{basename}}/subdefs</path> - <mediatype>flexpaper</mediatype> + <mediatype>pdf</mediatype> <writeDatas>no</writeDatas> <devices>screen</devices> <label lang="fr">Prévisualisation</label> @@ -182,27 +182,27 @@ </subdefs> <description> - <Object src="IPTC:ObjectName" /> - <Category src="IPTC:Category"/> - <SupplCategory src="IPTC:SupplementalCategories" multi="1"/> - <Keywords src="IPTC:Keywords" multi="1"/> - <SpecialInstruct src="IPTC:SpecialInstructions"/> + <Object src="IPTC:ObjectName" type="string"/> + <Category src="IPTC:Category" type="string"/> + <SupplCategory src="IPTC:SupplementalCategories" type="string" multi="1"/> + <Keywords src="IPTC:Keywords" type="string" multi="1"/> + <SpecialInstruct src="IPTC:SpecialInstructions" type="string"/> <Date src="IPTC:DateCreated" type="date" /> - <Byline src="IPTC:By-line"/> - <BylineTitle src="IPTC:By-lineTitle"/> - <City src="IPTC:City" /> - <Province src="IPTC:Province-State" /> - <Country src="IPTC:Country-PrimaryLocationName" /> - <OriginalRef src="IPTC:OriginalTransmissionReference" /> - <Headline src="IPTC:Headline" report="1" thumbtitle="1" /> - <Credit src="IPTC:Credit" report="1" /> - <Source src="IPTC:Source" /> - <Caption src="IPTC:Caption-Abstract" /> - <CaptionWriter src="IPTC:Writer-Editor" /> - <Longitude src="GPS:GPSLongitude" readonly="1"/> - <Latitude src="GPS:GPSLatitude" readonly="1"/> - <CameraModel src="IFD0:Model" readonly="1"/> - <FileName src="Phraseanet:tf-basename" readonly="1" type="text" /> + <Byline src="IPTC:By-line" type="string"/> + <BylineTitle src="IPTC:By-lineTitle" type="string"/> + <City src="IPTC:City" type="string"/> + <Province src="IPTC:Province-State" type="string"/> + <Country src="IPTC:Country-PrimaryLocationName" type="string"/> + <OriginalRef src="IPTC:OriginalTransmissionReference" type="string"/> + <Headline src="IPTC:Headline" type="string" report="1" thumbtitle="1"/> + <Credit src="IPTC:Credit" type="string" report="1"/> + <Source src="IPTC:Source" type="string"/> + <Caption src="IPTC:Caption-Abstract" type="string"/> + <CaptionWriter src="IPTC:Writer-Editor" type="string"/> + <Longitude src="GPS:GPSLongitude" type="number" readonly="1"/> + <Latitude src="GPS:GPSLatitude" type="number" readonly="1"/> + <CameraModel src="IFD0:Model" type="string" readonly="1"/> + <FileName src="Phraseanet:tf-basename" type="string" readonly="1"/> </description> <statbits> diff --git a/lib/conf.d/data_templates/fr-simple.xml b/lib/conf.d/data_templates/fr-simple.xml index 550b8adac8..49ab36b98d 100644 --- a/lib/conf.d/data_templates/fr-simple.xml +++ b/lib/conf.d/data_templates/fr-simple.xml @@ -148,7 +148,7 @@ </subdef> <subdef class="preview" name="preview" downloadable="false"> <path>{{datapathnoweb}}{{basename}}/subdefs</path> - <mediatype>flexpaper</mediatype> + <mediatype>pdf</mediatype> <writeDatas>no</writeDatas> <devices>screen</devices> <label lang="fr">Prévisualisation</label> @@ -182,27 +182,27 @@ </subdefs> <description> - <Objet src="IPTC:ObjectName" /> - <Categorie src="IPTC:Category"/> - <AutresCategories src="IPTC:SupplementalCategories" multi="1"/> - <MotsCles src="IPTC:Keywords" multi="1"/> - <Observations src="IPTC:SpecialInstructions"/> - <Date src="IPTC:DateCreated" type="date" /> - <Signature src="IPTC:By-line"/> - <TitreCredits src="IPTC:By-lineTitle"/> - <Ville src="IPTC:City" /> - <Province src="IPTC:Province-State" /> - <Pays src="IPTC:Country-PrimaryLocationName" /> - <ReferencesOriginales src="IPTC:OriginalTransmissionReference" /> - <Titre src="IPTC:Headline" report="1" thumbtitle="1" /> - <Credit src="IPTC:Credit" report="1" /> - <Source src="IPTC:Source" /> - <Legende src="IPTC:Caption-Abstract" /> - <Redacteur src="IPTC:Writer-Editor" /> - <Longitude src="GPS:GPSLongitude" readonly="1"/> - <Latitude src="GPS:GPSLatitude" readonly="1"/> - <AppareilPhoto src="IFD0:Model" readonly="1"/> - <NomDeFichier src="Phraseanet:tf-basename" readonly="1" type="text" /> + <Objet src="IPTC:ObjectName" type="string"/> + <Categorie src="IPTC:Category" type="string"/> + <AutresCategories src="IPTC:SupplementalCategories" type="string" multi="1"/> + <MotsCles src="IPTC:Keywords" type="string" multi="1"/> + <Observations src="IPTC:SpecialInstructions" type="string"/> + <Date src="IPTC:DateCreated" type="date"/> + <Signature src="IPTC:By-line" type="string"/> + <TitreCredits src="IPTC:By-lineTitle" type="string"/> + <Ville src="IPTC:City" type="string" /> + <Province src="IPTC:Province-State" type="string"/> + <Pays src="IPTC:Country-PrimaryLocationName" type="string"/> + <ReferencesOriginales src="IPTC:OriginalTransmissionReference" type="string"/> + <Titre src="IPTC:Headline" type="string" report="1" thumbtitle="1" /> + <Credit src="IPTC:Credit" type="string" report="1" /> + <Source src="IPTC:Source" type="string"/> + <Legende src="IPTC:Caption-Abstract" type="string"/> + <Redacteur src="IPTC:Writer-Editor" type="string"/> + <Longitude src="GPS:GPSLongitude" type="number" readonly="1"/> + <Latitude src="GPS:GPSLatitude" type="number" readonly="1"/> + <AppareilPhoto src="IFD0:Model" type="string" readonly="1"/> + <NomDeFichier src="Phraseanet:tf-basename" type="string" readonly="1"/> </description> <statbits> diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index ff699ca446..0000000000 --- a/package-lock.json +++ /dev/null @@ -1,10389 +0,0 @@ -{ - "name": "phraseanet", - "version": "4.1.1", - "lockfileVersion": 1, - "dependencies": { - "@mapbox/geojson-area": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/@mapbox/geojson-area/-/geojson-area-0.2.2.tgz", - "integrity": "sha1-GNeBSqNr8j+7zDefjiaiKSfevxA=" - }, - "@mapbox/gl-matrix": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/@mapbox/gl-matrix/-/gl-matrix-0.0.1.tgz", - "integrity": "sha1-5RJqq01kw2uBx6l9CuDd3eV3PSs=" - }, - "@mapbox/mapbox-gl-language": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/@mapbox/mapbox-gl-language/-/mapbox-gl-language-0.9.2.tgz", - "integrity": "sha1-0Cb3GRDwkTlZ58BbCRH4zv4KbJ4=" - }, - "@mapbox/mapbox-gl-supported": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-1.4.0.tgz", - "integrity": "sha512-ZD0Io4XK+/vU/4zpANjOtdWfVszAgnaMPsGR6LKsWh4kLIEv9qoobTVmJPPuwuM+ZI2b3BlZ6DYw1XHVmv6YTA==" - }, - "@mapbox/point-geometry": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz", - "integrity": "sha1-ioP5M1x4YO/6Lu7KJUMyqgru2PI=" - }, - "@mapbox/shelf-pack": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@mapbox/shelf-pack/-/shelf-pack-3.2.0.tgz", - "integrity": "sha512-dyQxe6ukILV6qaEvxoKCIwhblgRjYp1ZGlClo4xvfbmxzFO5LYu7Tnrg2AZrRgN7VsSragsGcNjzUe9kCdKHYQ==" - }, - "@mapbox/tiny-sdf": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-1.1.0.tgz", - "integrity": "sha512-dnhyk8X2BkDRWImgHILYAGgo+kuciNYX30CUKj/Qd5eNjh54OWM/mdOS/PWsPeN+3abtN+QDGYM4G220ynVJKA==" - }, - "@mapbox/unitbezier": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.0.tgz", - "integrity": "sha1-FWUb1VOme4WB+zmIEMmK2Go0Uk4=" - }, - "@mapbox/vector-tile": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@mapbox/vector-tile/-/vector-tile-1.3.1.tgz", - "integrity": "sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw==" - }, - "@mapbox/whoots-js": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz", - "integrity": "sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q==" - }, - "@turf/along": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/along/-/along-5.1.5.tgz", - "integrity": "sha1-YdbmplhKzdq1asVYTge/jL5fi+s=" - }, - "@turf/area": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/area/-/area-5.1.5.tgz", - "integrity": "sha1-79iZv9Jgzb0VQbKjwVX4pdLu+h0=" - }, - "@turf/bbox": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/bbox/-/bbox-5.1.5.tgz", - "integrity": "sha1-MFHfUUrUxQ9KT5uKLRX9i2hA7aM=" - }, - "@turf/bbox-clip": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/bbox-clip/-/bbox-clip-5.1.5.tgz", - "integrity": "sha1-M2S1Mo3/nzz0HZ4C7a/zdNFQzIQ=" - }, - "@turf/bbox-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/bbox-polygon/-/bbox-polygon-5.1.5.tgz", - "integrity": "sha1-auuk7VHYXSluD3w4uIwznwHu4CQ=" - }, - "@turf/bearing": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/bearing/-/bearing-5.1.5.tgz", - "integrity": "sha1-egt5ATbE70eX8CRjBdRcvi0ns/c=" - }, - "@turf/bezier-spline": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/bezier-spline/-/bezier-spline-5.1.5.tgz", - "integrity": "sha1-WaJ7ul17l+8Vqz/VpA+9I4cEm8o=" - }, - "@turf/boolean-clockwise": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-clockwise/-/boolean-clockwise-5.1.5.tgz", - "integrity": "sha1-MwK32sYsXikaB4nimvcoM4f6nes=" - }, - "@turf/boolean-contains": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-contains/-/boolean-contains-5.1.5.tgz", - "integrity": "sha1-WW1jruY2961T7pn5/yTJaZSg7xQ=" - }, - "@turf/boolean-crosses": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-crosses/-/boolean-crosses-5.1.5.tgz", - "integrity": "sha1-Ab+uollvFk3kpNMlCU3HwlXHFdY=" - }, - "@turf/boolean-disjoint": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/@turf/boolean-disjoint/-/boolean-disjoint-5.1.6.tgz", - "integrity": "sha512-KHvUS6SBNYHBCLIJEJrg04pF5Oy+Fqn8V5G9U+9pti5vI9tyX7Ln2g7RSB7iJ1Cxsz8QAi6OukhXjEF2/8ZpGg==" - }, - "@turf/boolean-equal": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-equal/-/boolean-equal-5.1.5.tgz", - "integrity": "sha1-Kfj21gu4RQff12WzIlTbjnLJOKQ=" - }, - "@turf/boolean-overlap": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-overlap/-/boolean-overlap-5.1.5.tgz", - "integrity": "sha1-DU5kxSx3CijpPZ7834qLg3OsznU=" - }, - "@turf/boolean-parallel": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-parallel/-/boolean-parallel-5.1.5.tgz", - "integrity": "sha1-c5NYR16ltlx+GCejw+DopofTqF0=" - }, - "@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=" - }, - "@turf/boolean-point-on-line": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-on-line/-/boolean-point-on-line-5.1.5.tgz", - "integrity": "sha1-9jPF/4Aq0ku48Vja269v9KAj3Xs=" - }, - "@turf/boolean-within": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-within/-/boolean-within-5.1.5.tgz", - "integrity": "sha1-RxBdVtB1Kp0Pv81Dw2pfkUnchpc=" - }, - "@turf/buffer": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/buffer/-/buffer-5.1.5.tgz", - "integrity": "sha1-hByWJ8+5dLEirE4alW8EZrwCMcQ=" - }, - "@turf/center": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/center/-/center-5.1.5.tgz", - "integrity": "sha1-RKss2VT2PA03dX9xWKmcPvURS4A=" - }, - "@turf/center-mean": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/center-mean/-/center-mean-5.1.5.tgz", - "integrity": "sha1-jI6YdTkeXwnw5uePXWYbiLIQigo=" - }, - "@turf/center-median": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/center-median/-/center-median-5.1.5.tgz", - "integrity": "sha1-u0Yb/noqSGAdikcnaFcYcjoUqHI=" - }, - "@turf/center-of-mass": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/center-of-mass/-/center-of-mass-5.1.5.tgz", - "integrity": "sha1-TTvXnYhJjbq4Mk1PafAyL2Uguco=" - }, - "@turf/centroid": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/centroid/-/centroid-5.1.5.tgz", - "integrity": "sha1-d4radCFjNQIa2P0OemWoNJ1Tx2k=" - }, - "@turf/circle": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/circle/-/circle-5.1.5.tgz", - "integrity": "sha1-mxV3g1UIq1L7HBCypQZcuiuHtqU=" - }, - "@turf/clean-coords": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/clean-coords/-/clean-coords-5.1.5.tgz", - "integrity": "sha1-EoAKmKeMmkUqcuxChJPEOs8q2h8=" - }, - "@turf/clone": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-5.1.5.tgz", - "integrity": "sha1-JT6NNUdxgZduM636tQoPAqfw42c=" - }, - "@turf/clusters": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/clusters/-/clusters-5.1.5.tgz", - "integrity": "sha1-ZzpeXxsZycq6vFfJCO6t1oIiTdQ=" - }, - "@turf/clusters-dbscan": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/clusters-dbscan/-/clusters-dbscan-5.1.5.tgz", - "integrity": "sha1-V4H7TmVsdHoLjpk333MYHAMJ4m8=" - }, - "@turf/clusters-kmeans": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/clusters-kmeans/-/clusters-kmeans-5.1.5.tgz", - "integrity": "sha1-/W3+qLEzuovcI3CsPKzuFYejAvE=" - }, - "@turf/collect": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/collect/-/collect-5.1.5.tgz", - "integrity": "sha1-/pjJqMIY7PJP/DPXApUXt8GbKj4=" - }, - "@turf/combine": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/combine/-/combine-5.1.5.tgz", - "integrity": "sha1-uxS976VVBDVxlfwaEkzX1TqMiQU=" - }, - "@turf/concave": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/concave/-/concave-5.1.5.tgz", - "integrity": "sha1-I7uqw4fQNLlldKG9cNBZI3qdIRA=" - }, - "@turf/convex": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/convex/-/convex-5.1.5.tgz", - "integrity": "sha1-Dfk3fdACIWzpghsH9wXgN9rj4B0=" - }, - "@turf/destination": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/destination/-/destination-5.1.5.tgz", - "integrity": "sha1-7TU4G9zoO73cvQei4rzivd/7zCY=" - }, - "@turf/difference": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/difference/-/difference-5.1.5.tgz", - "integrity": "sha1-ok1pCnvKgD8QkKnuO52Qb8Q3H0I=" - }, - "@turf/dissolve": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/dissolve/-/dissolve-5.1.5.tgz", - "integrity": "sha1-LPEzqQIdIWODHD16lY1lB/nYGTg=" - }, - "@turf/distance": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/distance/-/distance-5.1.5.tgz", - "integrity": "sha1-Oc8YIEu/h1h9cH5gmmARiQkVZAk=" - }, - "@turf/ellipse": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/ellipse/-/ellipse-5.1.5.tgz", - "integrity": "sha1-1XyrhTmFkgzeYCKKeNgEWAJcVL4=" - }, - "@turf/envelope": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/envelope/-/envelope-5.1.5.tgz", - "integrity": "sha1-UBMwnFP91D369LWIplw/7X28EIo=" - }, - "@turf/explode": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/explode/-/explode-5.1.5.tgz", - "integrity": "sha1-sSsvd0AEobSPYrqVsgocZVo94Rg=" - }, - "@turf/flatten": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/flatten/-/flatten-5.1.5.tgz", - "integrity": "sha1-2iknBnEz7WFpsLnWB7khVoiqE1g=" - }, - "@turf/flip": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/flip/-/flip-5.1.5.tgz", - "integrity": "sha1-Q29kOnIvDKU7n85jjkaT2zYIpoo=" - }, - "@turf/great-circle": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/great-circle/-/great-circle-5.1.5.tgz", - "integrity": "sha1-3r+2cc5HVQnLY3MBwV/PzPo1mpM=" - }, - "@turf/helpers": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-5.1.5.tgz", - "integrity": "sha1-FTQFInq5M9AEpbuWQantmZ/L4M8=" - }, - "@turf/hex-grid": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/hex-grid/-/hex-grid-5.1.5.tgz", - "integrity": "sha1-m3ul/s9QUfHoWJL3E/zlxVBQKmo=" - }, - "@turf/interpolate": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/interpolate/-/interpolate-5.1.5.tgz", - "integrity": "sha1-DxLwq3VtbdEK+ykMpuh3ve8BPqo=" - }, - "@turf/intersect": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/@turf/intersect/-/intersect-5.1.6.tgz", - "integrity": "sha512-KXyNv/GXdoGAOy03qZF53rgtXC2tNhF/4jLwTKiVRrBQH6kcEpipGStdJ+QkYIlarQPa8f7I9UlVAB19et4MfQ==" - }, - "@turf/invariant": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-5.1.5.tgz", - "integrity": "sha1-9Z9P76CSJLFdzhZR+QPIaNV6JOE=" - }, - "@turf/isobands": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/isobands/-/isobands-5.1.5.tgz", - "integrity": "sha1-a0TO9YTVUaMTBBh68jtKFYLj8I0=" - }, - "@turf/isolines": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/isolines/-/isolines-5.1.5.tgz", - "integrity": "sha1-irTn9Cuz38VGFOW/FVln9+VdLeE=" - }, - "@turf/kinks": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/kinks/-/kinks-5.1.5.tgz", - "integrity": "sha1-irtpYdm7AQchO63fLCwmQNAlaYA=" - }, - "@turf/length": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/length/-/length-5.1.5.tgz", - "integrity": "sha1-86X4ZMK5lqi7RxeUU1ofrxLuvvs=" - }, - "@turf/line-arc": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-arc/-/line-arc-5.1.5.tgz", - "integrity": "sha1-AHinRHg1oSrkFKIR+aZNEYYVDhU=" - }, - "@turf/line-chunk": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-chunk/-/line-chunk-5.1.5.tgz", - "integrity": "sha1-kQqFwFwG2dD5w4l3oF4IGNUIXEI=" - }, - "@turf/line-intersect": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-intersect/-/line-intersect-5.1.5.tgz", - "integrity": "sha1-DikHGuQDKV5JFyO8SfXPrI0R3fM=" - }, - "@turf/line-offset": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-offset/-/line-offset-5.1.5.tgz", - "integrity": "sha1-KrWy8In4yRPiMdmUN4553KkLWh4=" - }, - "@turf/line-overlap": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-overlap/-/line-overlap-5.1.5.tgz", - "integrity": "sha1-lDxvh6A4bcQ9+sEdKz/5wRLNP2A=" - }, - "@turf/line-segment": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-segment/-/line-segment-5.1.5.tgz", - "integrity": "sha1-Mgeq7lRqskw9jcPMY/kcdwuAE+U=" - }, - "@turf/line-slice": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-slice/-/line-slice-5.1.5.tgz", - "integrity": "sha1-Hs/OFGKjeFeXVM7fRGTN4mgp8rU=" - }, - "@turf/line-slice-along": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-slice-along/-/line-slice-along-5.1.5.tgz", - "integrity": "sha1-7drQoh70efKWihG9LdcomiEy6aU=" - }, - "@turf/line-split": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-split/-/line-split-5.1.5.tgz", - "integrity": "sha1-Wy30w3YZty73JbUWPPmSbVVArLc=" - }, - "@turf/line-to-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-to-polygon/-/line-to-polygon-5.1.5.tgz", - "integrity": "sha1-ITz0Gmj4Ikd4ujnTGH3sPouBhlo=" - }, - "@turf/mask": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/mask/-/mask-5.1.5.tgz", - "integrity": "sha1-mrD+8aJyyY/j70kvn/thggayQtU=" - }, - "@turf/meta": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-5.1.6.tgz", - "integrity": "sha1-wgqGPt7Qhp+yhUje6Ik0G8y0akY=" - }, - "@turf/midpoint": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/midpoint/-/midpoint-5.1.5.tgz", - "integrity": "sha1-4mH2srDqgSTM7/VSomLdRlydBfA=" - }, - "@turf/nearest-point": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/nearest-point/-/nearest-point-5.1.5.tgz", - "integrity": "sha1-EgUN5Bw5hEMiTHl43g9iE5ANNPs=" - }, - "@turf/nearest-point-on-line": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/nearest-point-on-line/-/nearest-point-on-line-5.1.5.tgz", - "integrity": "sha1-VgauKX8VlHUkvqUaKp71HsG/nDY=" - }, - "@turf/nearest-point-to-line": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/@turf/nearest-point-to-line/-/nearest-point-to-line-5.1.6.tgz", - "integrity": "sha512-ZSvDIEiHhifn/vNwLXZI/E8xmEz5yBPqfUR7BVHRZrB1cP7jLhKZvkbidjG//uW8Fr1Ulc+PFOXczLspIcx/lw==", - "dependencies": { - "@turf/helpers": { - "version": "6.1.4", - "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.1.4.tgz", - "integrity": "sha512-vJvrdOZy1ngC7r3MDA7zIGSoIgyrkWcGnNIEaqn/APmw+bVLF2gAW7HIsdTxd12s5wQMqEpqIQrmrbRRZ0xC7g==" - }, - "@turf/invariant": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.1.2.tgz", - "integrity": "sha512-WU08Ph8j0J2jVGlQCKChXoCtI50BB3yEH21V++V0T4cR1T27HKCxkehV2sYMwTierfMBgjwSwDIsxnR4/2mWXg==" - }, - "@turf/meta": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.0.2.tgz", - "integrity": "sha512-VA7HJkx7qF1l3+GNGkDVn2oXy4+QoLP6LktXAaZKjuT1JI0YESat7quUkbCMy4zP9lAUuvS4YMslLyTtr919FA==" - } - } - }, - "@turf/planepoint": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/planepoint/-/planepoint-5.1.5.tgz", - "integrity": "sha1-GLvfAG91ne9eQsagBsn53oGyt/8=" - }, - "@turf/point-grid": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/point-grid/-/point-grid-5.1.5.tgz", - "integrity": "sha1-MFFBJI9Quv42zn5mukuX56sjaIc=" - }, - "@turf/point-on-feature": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/point-on-feature/-/point-on-feature-5.1.5.tgz", - "integrity": "sha1-MMfwMkMCd8ZBjZbSieRba/shP+c=" - }, - "@turf/point-to-line-distance": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/@turf/point-to-line-distance/-/point-to-line-distance-5.1.6.tgz", - "integrity": "sha512-PE3hiTeeDEi4ZLPtI8XAzFYW9nHo1EVsZGm/4ZVV8jo39d3X1oLVHxY3e1PkCmWwRapXy4QLqvnTQ7nU4wspNw==", - "dependencies": { - "@turf/bearing": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/@turf/bearing/-/bearing-6.0.1.tgz", - "integrity": "sha512-mXY1NozqV9EFfBTbUItujwfqfQF0G/Xe2fzvnZle90ekPEUfhi4Dgf5JswJTd96J9LiT8kcd6Jonp5khnx0wIg==" - }, - "@turf/clone": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.0.2.tgz", - "integrity": "sha512-UVpYPnW3wRj3bPncR6Z2PRbowBk+nEdVWgGewPxrKKLfvswtVtG9n/OIyvbU3E3ZOadBVxTH2uAMEMOz4800FA==" - }, - "@turf/distance": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/@turf/distance/-/distance-6.0.1.tgz", - "integrity": "sha512-q7t7rWIWfkg7MP1Vt4uLjSEhe5rPfCO2JjpKmk7JC+QZKEQkuvHEqy3ejW1iC7Kw5ZcZNR3qdMGGz+6HnVwqvg==" - }, - "@turf/helpers": { - "version": "6.1.4", - "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.1.4.tgz", - "integrity": "sha512-vJvrdOZy1ngC7r3MDA7zIGSoIgyrkWcGnNIEaqn/APmw+bVLF2gAW7HIsdTxd12s5wQMqEpqIQrmrbRRZ0xC7g==" - }, - "@turf/invariant": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.1.2.tgz", - "integrity": "sha512-WU08Ph8j0J2jVGlQCKChXoCtI50BB3yEH21V++V0T4cR1T27HKCxkehV2sYMwTierfMBgjwSwDIsxnR4/2mWXg==" - }, - "@turf/meta": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.0.2.tgz", - "integrity": "sha512-VA7HJkx7qF1l3+GNGkDVn2oXy4+QoLP6LktXAaZKjuT1JI0YESat7quUkbCMy4zP9lAUuvS4YMslLyTtr919FA==" - }, - "@turf/projection": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/@turf/projection/-/projection-6.0.1.tgz", - "integrity": "sha512-Y3RvGT6I53MjYKLG69e9sMk45wJXcLbrEO1t6P3WQQQGqA2gYhhMJyV41vE2Z2llrJpvs2dDx/tIeQzGd0HHMQ==" - }, - "@turf/rhumb-bearing": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/@turf/rhumb-bearing/-/rhumb-bearing-6.0.1.tgz", - "integrity": "sha512-MVBra8OVfjM4+/N0B3o6cBIYg9p/uRKzA9uk05RfrzasEbUL1vdD23LkTooVL74Yw4UxL8BQD9hS5Re2COJFDA==" - }, - "@turf/rhumb-distance": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/@turf/rhumb-distance/-/rhumb-distance-6.0.1.tgz", - "integrity": "sha512-3G45DQtQByzzfHFPcCyJdUZFwsd45zfZ7sAb1ddF7mhEj4G70+T2G3GKjInymqDNrbyh2gbG6wQiZSToC8Uf9g==" - } - } - }, - "@turf/points-within-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/points-within-polygon/-/points-within-polygon-5.1.5.tgz", - "integrity": "sha1-K4VaXfOq2lfC7oIKB1SrlJKKIzc=" - }, - "@turf/polygon-tangents": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/polygon-tangents/-/polygon-tangents-5.1.5.tgz", - "integrity": "sha1-K/AJkUcwJbF44lDcfLmuVAm71lI=" - }, - "@turf/polygon-to-line": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/polygon-to-line/-/polygon-to-line-5.1.5.tgz", - "integrity": "sha1-I7tEjYTcTGUZmaxhGjbZHFklA2o=" - }, - "@turf/polygonize": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/polygonize/-/polygonize-5.1.5.tgz", - "integrity": "sha1-BJP6EYefOdELmtAs5qI+lC0IqjI=" - }, - "@turf/projection": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/projection/-/projection-5.1.5.tgz", - "integrity": "sha1-JFF+7rLzaBa6n3EueubWo2jt91c=" - }, - "@turf/random": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/random/-/random-5.1.5.tgz", - "integrity": "sha1-sy78k0Vgroulfo67UfJBw5+6Lns=" - }, - "@turf/rewind": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/rewind/-/rewind-5.1.5.tgz", - "integrity": "sha1-nqPbSmi3PB/R3RH1djGxQ8/vock=" - }, - "@turf/rhumb-bearing": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/rhumb-bearing/-/rhumb-bearing-5.1.5.tgz", - "integrity": "sha1-rPalAkJ+uMSeGM2mrg7/qwxd3NI=" - }, - "@turf/rhumb-destination": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/rhumb-destination/-/rhumb-destination-5.1.5.tgz", - "integrity": "sha1-sbKuuSFUfyrAwamUtqEw+SRjx0I=" - }, - "@turf/rhumb-distance": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/rhumb-distance/-/rhumb-distance-5.1.5.tgz", - "integrity": "sha1-GAaFdiX0IlOE2tQT5p85U4/192U=" - }, - "@turf/sample": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/sample/-/sample-5.1.5.tgz", - "integrity": "sha1-6ctEikeJzFbuPeLdZ4HiNDQ1tBE=" - }, - "@turf/sector": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/sector/-/sector-5.1.5.tgz", - "integrity": "sha1-rCu5TBPt1gNPb9wrZwCBNdIPXgc=" - }, - "@turf/shortest-path": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/shortest-path/-/shortest-path-5.1.5.tgz", - "integrity": "sha1-hUroCW9rw+EwD6ynfz6PZ9j5Nas=" - }, - "@turf/simplify": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/simplify/-/simplify-5.1.5.tgz", - "integrity": "sha1-Csjyei60IYGD7dmZjDJ1q+QIuSY=" - }, - "@turf/square": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/square/-/square-5.1.5.tgz", - "integrity": "sha1-qnsh5gM8ySUsOlvW89iNq9b+0YA=" - }, - "@turf/square-grid": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/square-grid/-/square-grid-5.1.5.tgz", - "integrity": "sha1-G9X3uesU8LYLwjH+/nNR0aMvGlE=" - }, - "@turf/standard-deviational-ellipse": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/standard-deviational-ellipse/-/standard-deviational-ellipse-5.1.5.tgz", - "integrity": "sha1-hc0oO14ayljyG9ZkEuQUtW2FIyQ=" - }, - "@turf/tag": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/tag/-/tag-5.1.5.tgz", - "integrity": "sha1-0e4aUIjs/UoUEQGcmCOczypJfSA=" - }, - "@turf/tesselate": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/tesselate/-/tesselate-5.1.5.tgz", - "integrity": "sha1-MqWU6cIaAEIKn5DSxD3z4RZgYc0=" - }, - "@turf/tin": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/tin/-/tin-5.1.5.tgz", - "integrity": "sha1-KCI+r8X76a6azKgc3P6l0UJMkX0=" - }, - "@turf/transform-rotate": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/transform-rotate/-/transform-rotate-5.1.5.tgz", - "integrity": "sha1-0Jbt2eMA/jFQadVNjkWMQJIh7fs=" - }, - "@turf/transform-scale": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/transform-scale/-/transform-scale-5.1.5.tgz", - "integrity": "sha1-cP064BhWz3uunxWtVhzf6PiQAbk=" - }, - "@turf/transform-translate": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/transform-translate/-/transform-translate-5.1.5.tgz", - "integrity": "sha1-Uwolf7Hccmja3Ks05nkB6yo97GM=" - }, - "@turf/triangle-grid": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/triangle-grid/-/triangle-grid-5.1.5.tgz", - "integrity": "sha1-ezZ2IQhVTBTyjK/zxIsc/ILI3IE=" - }, - "@turf/truncate": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/truncate/-/truncate-5.1.5.tgz", - "integrity": "sha1-nu37Oxi6gfLJjT6tCUMcyhiErYk=" - }, - "@turf/turf": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/@turf/turf/-/turf-5.1.6.tgz", - "integrity": "sha1-wxIlkoh+0jS3VGi4qMRb+Ib7+PY=" - }, - "@turf/union": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/union/-/union-5.1.5.tgz", - "integrity": "sha1-UyhbYJQEf8WNlqrA6pCGXsNNRUs=" - }, - "@turf/unkink-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/unkink-polygon/-/unkink-polygon-5.1.5.tgz", - "integrity": "sha1-ewGEfFD7V0riV54Z5Ey6hSbSE8M=" - }, - "@turf/voronoi": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/voronoi/-/voronoi-5.1.5.tgz", - "integrity": "sha1-6FbpQG3MLyXWbdyJhYTifC6/ymY=" - }, - "@videojs/http-streaming": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@videojs/http-streaming/-/http-streaming-1.1.0.tgz", - "integrity": "sha512-Pf692a9c/ioCuh8NJUb5EaYrACR/9vjHjedSCPC60s9xkh3j6R4/tSwPlnMLCxN2Qau3h8hukGB0P6q6G1OtbA==", - "dependencies": { - "video.js": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/video.js/-/video.js-7.1.0.tgz", - "integrity": "sha512-uF4IOBZB560EqppNHcOYy3laL6Wzu8SDQ8lGmnzqsGFePtVDeLq5RYjBrVGun90c+9Pb+ElT4QyiWDnIyUCfpA==" - }, - "videojs-font": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/videojs-font/-/videojs-font-3.0.0.tgz", - "integrity": "sha512-XS6agz2T7p2cFuuXulJD70md8XMlAN617SJkMWjoTPqZWv+RU8NcZCKsE3Tk73inzxnQdihOp0cvI7NGz2ngHg==" - }, - "videojs-vtt.js": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/videojs-vtt.js/-/videojs-vtt.js-0.14.1.tgz", - "integrity": "sha512-YxOiywx6N9t3J5nqsE5WN2Sw4CSqVe3zV+AZm2T4syOc2buNJaD6ZoexSdeszx2sHLU/RRo2r4BJAXFDQ7Qo2Q==" - }, - "xhr": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.4.0.tgz", - "integrity": "sha1-4W5mpF+GmGHu76tBbV7/ci3ECZM=" - } - } - }, - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true - }, - "accepts": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz", - "integrity": "sha1-63d99gEXI6OxTopywIBcjoZ0a9I=", - "dev": true - }, - "acorn": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.1.tgz", - "integrity": "sha512-d+nbxBUGKg7Arpsvbnlq61mc12ek3EY8EQldM3GPAhWJ1UVxC6TDGbIvUMNU6obBX3i1+ptCIzV4vq0gFPEGVQ==" - }, - "acorn-dynamic-import": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz", - "integrity": "sha1-x1K9IQvvZ5UBtsbLf8hPj0cVjMQ=", - "dependencies": { - "acorn": { - "version": "4.0.13", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz", - "integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=" - } - } - }, - "acorn-jsx": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz", - "integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=", - "dependencies": { - "acorn": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", - "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=" - } - } - }, - "acorn-object-spread": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/acorn-object-spread/-/acorn-object-spread-1.0.0.tgz", - "integrity": "sha1-SOrQ9KjrFplaF6Dbn/xqyq2kumg=", - "dependencies": { - "acorn": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", - "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=" - } - } - }, - "aes-decrypter": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/aes-decrypter/-/aes-decrypter-3.0.0.tgz", - "integrity": "sha1-eEihwUW5/b9Xrj4rWxvHzwZEqPs=" - }, - "after": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz", - "integrity": "sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=", - "dev": true - }, - "ajv": { - "version": "5.5.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", - "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=" - }, - "ajv-keywords": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz", - "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=" - }, - "alchemy-embed-medias": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/alchemy-embed-medias/-/alchemy-embed-medias-0.5.4.tgz", - "integrity": "sha512-rsMaJgGRW09e+eIKmslfhrqgxe12AYP+5Xmd0MAt4UyVx9uxK2oq7XnxmK93nTVYp7UrSrUDeGVcHHpTDR3rFw==", - "dependencies": { - "gulp-install": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/gulp-install/-/gulp-install-1.1.0.tgz", - "integrity": "sha1-k4a0bLRmm0cle2rfTj6i6DySiho=" - } - } - }, - "align-text": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", - "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=" - }, - "amdefine": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", - "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" - }, - "ansi-escapes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz", - "integrity": "sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw==", - "optional": true - }, - "ansi-gray": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", - "integrity": "sha1-KWLPVOyXksSFEKPetSRDaGHvclE=" - }, - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - }, - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "ansi-wrap": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", - "integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=" - }, - "ansicolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/ansicolors/-/ansicolors-0.2.1.tgz", - "integrity": "sha1-vgiVmQl7dKXJxKhKDNvNtivYeu8=" - }, - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==" - }, - "aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", - "dev": true - }, - "archy": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", - "integrity": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=", - "dev": true - }, - "are-we-there-yet": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", - "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", - "dev": true, - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true - } - } - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dependencies": { - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" - } - } - }, - "argsparser": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/argsparser/-/argsparser-0.0.7.tgz", - "integrity": "sha1-QcheDD3nV7NQ8S5u0OSQsegtvgY=", - "dev": true - }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" - }, - "arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" - }, - "arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" - }, - "array-differ": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz", - "integrity": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=" - }, - "array-each": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", - "integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=", - "dev": true - }, - "array-find-index": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", - "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=" - }, - "array-slice": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", - "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", - "dev": true - }, - "array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", - "dev": true - }, - "array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" - }, - "arraybuffer.slice": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz", - "integrity": "sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog==", - "dev": true - }, - "arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", - "dev": true - }, - "asn1": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", - "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==" - }, - "asn1.js": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", - "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==" - }, - "assert": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz", - "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=", - "dependencies": { - "inherits": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" - }, - "util": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", - "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=" - } - } - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - }, - "assertion-error": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.0.0.tgz", - "integrity": "sha1-x/hUOP3UZrx8oWq5DIFRN5el0js=", - "dev": true - }, - "assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" - }, - "async": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.1.tgz", - "integrity": "sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==", - "dependencies": { - "lodash": { - "version": "4.17.10", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", - "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==" - } - } - }, - "async-each": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", - "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=" - }, - "async-each-series": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/async-each-series/-/async-each-series-0.1.1.tgz", - "integrity": "sha1-dhfBkXQB/Yykooqtzj266Yr+tDI=", - "dev": true - }, - "async-foreach": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz", - "integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=", - "dev": true - }, - "async-limiter": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz", - "integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==", - "dev": true - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" - }, - "atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" - }, - "autoprefixer": { - "version": "6.7.7", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz", - "integrity": "sha1-Hb0cg1ZY41zj+ZhAmdsAWFx4IBQ=", - "dev": true - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" - }, - "aws4": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz", - "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==" - }, - "axios": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.16.2.tgz", - "integrity": "sha1-uk+S8XFn37q0CYN4VFS5rBScPG0=" - }, - "babel-runtime": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", - "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=" - }, - "babylon": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", - "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==" - }, - "backbone": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/backbone/-/backbone-1.3.3.tgz", - "integrity": "sha1-TMgOp8sWMaxHSInOQPL4vGg7KZk=" - }, - "backo2": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", - "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=", - "dev": true - }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" - }, - "base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=" - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==" - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==" - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==" - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" - } - } - }, - "base64-arraybuffer": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz", - "integrity": "sha1-c5JncZI7Whl0etZmqlzUv5xunOg=", - "dev": true - }, - "base64-js": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz", - "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==" - }, - "base64id": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/base64id/-/base64id-1.0.0.tgz", - "integrity": "sha1-R2iMuZu2gE8OBtPnY7HDLlfY5rY=", - "dev": true - }, - "batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", - "dev": true - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", - "optional": true - }, - "beeper": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz", - "integrity": "sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak=" - }, - "better-assert": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz", - "integrity": "sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI=", - "dev": true - }, - "big.js": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz", - "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==" - }, - "binary-extensions": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.11.0.tgz", - "integrity": "sha1-RqoXUftqL5PuXmibsQh9SxTGwgU=" - }, - "bl": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.2.tgz", - "integrity": "sha512-e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA==", - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" - } - } - }, - "blob": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/blob/-/blob-0.0.4.tgz", - "integrity": "sha1-vPEwUspURj8w+fx+lbmkdjCpSSE=", - "dev": true - }, - "block-stream": { - "version": "0.0.9", - "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz", - "integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=", - "dev": true - }, - "blueimp-canvas-to-blob": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/blueimp-canvas-to-blob/-/blueimp-canvas-to-blob-3.14.0.tgz", - "integrity": "sha512-i6I2CiX1VR8YwUNYBo+dM8tg89ns4TTHxSpWjaDeHKcYS3yFalpLCwDaY21/EsJMufLy2tnG4j0JN5L8OVNkKQ==" - }, - "blueimp-file-upload": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/blueimp-file-upload/-/blueimp-file-upload-8.9.0.tgz", - "integrity": "sha1-y4dk4TCbz/M9CwsLOHU1nf91hao=" - }, - "blueimp-load-image": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/blueimp-load-image/-/blueimp-load-image-2.19.0.tgz", - "integrity": "sha512-lc5fORHdmkGTGFW8vsr1D7pNWJA+BT0eqlhx8RpEw35VULUvEZB6tJACJXEreqbWIFJc3/jlTsGvOpf9N62WLQ==" - }, - "blueimp-tmpl": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/blueimp-tmpl/-/blueimp-tmpl-3.11.0.tgz", - "integrity": "sha512-+nzph90GQ7YzYdOJNLm1hHJrzWnWbxUGJyJVrLBD+q7HF6PIIjJVNrJCgLkFmNcNvJRKICvWuItL8NpH9Z8J5A==" - }, - "bn.js": { - "version": "4.11.8", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz", - "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==" - }, - "bootstrap-multiselect": { - "version": "0.9.13-1", - "resolved": "https://registry.npmjs.org/bootstrap-multiselect/-/bootstrap-multiselect-0.9.13-1.tgz", - "integrity": "sha1-LFfO4mCxjX8BpO3Z1l8l3wQl/So=" - }, - "bootstrap-sass": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/bootstrap-sass/-/bootstrap-sass-2.3.2.tgz", - "integrity": "sha1-qHu8hgYK1mLVZvyOgMlMBdiMuvk=" - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=" - } - } - }, - "brfs": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/brfs/-/brfs-1.6.1.tgz", - "integrity": "sha512-OfZpABRQQf+Xsmju8XE9bDjs+uU4vLREGolP7bDgcpsI17QREyZ4Bl+2KLxxx1kCgA0fAIhKQBaBYh+PEcCqYQ==" - }, - "brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" - }, - "browser-stdout": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.0.tgz", - "integrity": "sha1-81HTKWnTL6XXpVZxVCY9korjvR8=", - "dev": true - }, - "browser-sync": { - "version": "2.24.6", - "resolved": "https://registry.npmjs.org/browser-sync/-/browser-sync-2.24.6.tgz", - "integrity": "sha512-3cVW8Ft3sPQ1t9gqZXBDZhTyRce8NW4wf5KzpCYcg6fWjPbyt+vZLvEo+sTq7c7eNQhi8lInQWbjIFEpoM2f7Q==", - "dev": true, - "dependencies": { - "anymatch": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz", - "integrity": "sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==", - "dev": true - }, - "arr-diff": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", - "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", - "dev": true - }, - "array-unique": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", - "dev": true - }, - "braces": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", - "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", - "dev": true - }, - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", - "dev": true - }, - "chokidar": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz", - "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", - "dev": true - }, - "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", - "dev": true - }, - "expand-brackets": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", - "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", - "dev": true - }, - "extglob": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", - "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", - "dev": true - }, - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "dev": true - }, - "glob-parent": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", - "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", - "dev": true - }, - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", - "dev": true - }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "dev": true - }, - "load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", - "dev": true - }, - "micromatch": { - "version": "2.3.11", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", - "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", - "dev": true - }, - "os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", - "dev": true - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "dev": true - }, - "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", - "dev": true - }, - "qs": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.2.3.tgz", - "integrity": "sha1-HPyyXBCpsrSDBT/zn138kjOQjP4=", - "dev": true - }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", - "dev": true - }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", - "dev": true - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "dev": true - }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "dev": true - }, - "which-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=", - "dev": true - }, - "window-size": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz", - "integrity": "sha1-tDFbtCFKPXBY6+7okuE/ok2YsHU=", - "dev": true - }, - "yargs": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-6.4.0.tgz", - "integrity": "sha1-gW4ahm1VmMzzTlWW3c4i2S2kkNQ=", - "dev": true - }, - "yargs-parser": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz", - "integrity": "sha1-KczqwNxPA8bIe0qfIX3RjJ90hxw=", - "dev": true - } - } - }, - "browser-sync-ui": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browser-sync-ui/-/browser-sync-ui-1.0.1.tgz", - "integrity": "sha512-RIxmwVVcUFhRd1zxp7m2FfLnXHf59x4Gtj8HFwTA//3VgYI3AKkaQAuDL8KDJnE59XqCshxZa13JYuIWtZlKQg==", - "dev": true - }, - "browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==" - }, - "browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==" - }, - "browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==" - }, - "browserify-package-json": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-package-json/-/browserify-package-json-1.0.1.tgz", - "integrity": "sha1-mN3oqlxWH9bT/km7qhArdLOW/eo=" - }, - "browserify-rsa": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", - "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=" - }, - "browserify-sign": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz", - "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=" - }, - "browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==" - }, - "browserslist": { - "version": "1.7.7", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", - "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", - "dev": true - }, - "bs-recipes": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/bs-recipes/-/bs-recipes-1.3.4.tgz", - "integrity": "sha1-DS1NSKcYyMBEdp/cT4lZLci2lYU=", - "dev": true - }, - "buble": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/buble/-/buble-0.15.2.tgz", - "integrity": "sha1-VH/EdIP45egXbYKqXrzLGDsC1hM=", - "dependencies": { - "acorn": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", - "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=" - }, - "magic-string": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.14.0.tgz", - "integrity": "sha1-VyJK7xcByu7Sc7F6OalW5ysXJGI=" - } - } - }, - "bubleify": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/bubleify/-/bubleify-0.7.0.tgz", - "integrity": "sha1-0I6mQv/Qhf+HEciEP1cHLw1euPY=", - "dependencies": { - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - } - } - }, - "buffer": { - "version": "4.9.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", - "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=", - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - } - } - }, - "buffer-alloc": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", - "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==" - }, - "buffer-alloc-unsafe": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", - "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==" - }, - "buffer-equal": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz", - "integrity": "sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs=" - }, - "buffer-fill": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", - "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=" - }, - "buffer-from": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" - }, - "buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" - }, - "builtin-modules": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", - "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=" - }, - "builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" - }, - "bytes": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-2.5.0.tgz", - "integrity": "sha1-TJQj6i0lLCcMQbK97+/5u2tiwGo=", - "optional": true - }, - "cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==" - }, - "call-matcher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/call-matcher/-/call-matcher-1.0.1.tgz", - "integrity": "sha1-UTTQd5hPcSpU2tPL9i3ijc5BbKg=" - }, - "callsite": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", - "integrity": "sha1-KAOY5dZkvXQDi28JBRU+borxvCA=", - "dev": true - }, - "camelcase": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", - "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=" - }, - "camelcase-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", - "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", - "dev": true, - "dependencies": { - "camelcase": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", - "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", - "dev": true - } - } - }, - "caniuse-db": { - "version": "1.0.30000877", - "resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000877.tgz", - "integrity": "sha512-9RcqvE8HYgdZZzFW6xBmj/CeCaTyCJdUhgkueBCq47AK//w/Yzlg0zcfV1GTlh3jyYEbresGfY2vDEG/AaK/dQ==", - "dev": true - }, - "cardinal": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/cardinal/-/cardinal-0.4.4.tgz", - "integrity": "sha1-ylu2iltRG5D+k7ms6km97lwyv+I=" - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" - }, - "center-align": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", - "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=" - }, - "chai": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/chai/-/chai-1.10.0.tgz", - "integrity": "sha1-5AMcyHZURhp1lD5aNatG6vOcHrk=", - "dev": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=" - }, - "chardet": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz", - "integrity": "sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=", - "optional": true - }, - "chokidar": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz", - "integrity": "sha512-z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ==" - }, - "chownr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.0.1.tgz", - "integrity": "sha1-4qdQQqlVGQi+vSW4Uj1fl2nXkYE=", - "optional": true - }, - "ci-info": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.4.0.tgz", - "integrity": "sha512-Oqmw2pVfCl8sCL+1QgMywPfdxPJPkC51y4usw0iiE2S9qnEOAqXy8bwl1CpMpnoU39g4iKJTz6QZj+28FvOnjQ==", - "optional": true - }, - "cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==" - }, - "class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=" - } - } - }, - "clean-css": { - "version": "3.4.28", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-3.4.28.tgz", - "integrity": "sha1-vxlF6C/ICPVWlebd6uwBQA79A/8=", - "dev": true, - "dependencies": { - "commander": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz", - "integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=", - "dev": true - }, - "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", - "dev": true - } - } - }, - "cli-cursor": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", - "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", - "optional": true - }, - "cli-table": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/cli-table/-/cli-table-0.3.1.tgz", - "integrity": "sha1-9TsFJmqLGguTSz0IIebi3FkUriM=", - "dev": true - }, - "cli-width": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", - "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=", - "optional": true - }, - "cliui": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", - "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=" - }, - "clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=" - }, - "clone-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", - "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=", - "dev": true - }, - "clone-stats": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", - "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=" - }, - "cloneable-readable": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.2.tgz", - "integrity": "sha512-Bq6+4t+lbM8vhTs/Bef5c5AdEMtapp/iFb6+s4/Hh9MVTt8OLKH7ZOOZSCT+Ys7hsHvqv0GuMPJ1lnQJVHvxpg==", - "dev": true, - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true - } - } - }, - "cmd-shim": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/cmd-shim/-/cmd-shim-2.0.2.tgz", - "integrity": "sha1-b8vamUg6j9FdfTChlspp1oii79s=", - "optional": true - }, - "co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" - }, - "collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=" - }, - "color-convert": { - "version": "1.9.2", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.2.tgz", - "integrity": "sha512-3NUJZdhMhcdPn8vJ9v2UQJoH0qqoGUkYTgFEPZaPjEtwmmKUfNV46zZmgB2M5M4DCEQHMaCfWHCxiBflLm04Tg==" - }, - "color-name": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.1.tgz", - "integrity": "sha1-SxQVMEz1ACjqgWQ2Q72C6gWANok=" - }, - "color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==" - }, - "colors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", - "integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=", - "dev": true - }, - "combined-stream": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz", - "integrity": "sha1-cj599ugBrFYTETp+RFqbactjKBg=" - }, - "commander": { - "version": "2.17.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", - "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==" - }, - "component-bind": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz", - "integrity": "sha1-AMYIq33Nk4l8AAllGx06jh5zu9E=", - "dev": true - }, - "component-emitter": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", - "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=" - }, - "component-inherit": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz", - "integrity": "sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM=", - "dev": true - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - }, - "concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" - } - } - }, - "concat-with-sourcemaps": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz", - "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==", - "dev": true, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "concaveman": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/concaveman/-/concaveman-1.1.1.tgz", - "integrity": "sha1-bCSCWAslI874L8K+wAoEFebmgWI=" - }, - "connect": { - "version": "3.6.6", - "resolved": "https://registry.npmjs.org/connect/-/connect-3.6.6.tgz", - "integrity": "sha1-Ce/2xVr3I24TcTWnJXSFi2eG9SQ=", - "dev": true - }, - "connect-history-api-fallback": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz", - "integrity": "sha1-sGhzk0vF40T+9hGhlqb6rgruAVo=", - "dev": true - }, - "console-browserify": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", - "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=" - }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", - "dev": true - }, - "constants-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" - }, - "convert-source-map": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz", - "integrity": "sha1-uCeAl7m8IpNl3lxiz1/K7YtVmeU=" - }, - "cookie": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", - "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=", - "dev": true - }, - "copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" - }, - "core-js": { - "version": "2.5.7", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", - "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==" - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "corslite": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/corslite/-/corslite-0.0.6.tgz", - "integrity": "sha1-YilU4UwzhSEjxMaPo97/qeLRyJY=" - }, - "create-ecdh": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz", - "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==" - }, - "create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==" - }, - "create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==" - }, - "cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=" - }, - "crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==" - }, - "csscolorparser": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/csscolorparser/-/csscolorparser-1.0.3.tgz", - "integrity": "sha1-s085HupNqPPpgjHizNjfnAQfFxs=" - }, - "currently-unhandled": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", - "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=" - }, - "d": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.0.tgz", - "integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=" - }, - "d3-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.1.tgz", - "integrity": "sha512-CyINJQ0SOUHojDdFDH4JEM0552vCR1utGyLHegJHyYH0JyCpSeTPxi4OBqHMA2jJZq4NH782LtaJWBImqI/HBw==" - }, - "d3-geo": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-1.7.1.tgz", - "integrity": "sha512-O4AempWAr+P5qbk2bC2FuN/sDW4z+dN2wDf9QV3bxQt4M5HfOEeXLgJ/UKQW0+o1Dj8BE+L5kiDbdWUMjsmQpw==" - }, - "d3-voronoi": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/d3-voronoi/-/d3-voronoi-1.1.2.tgz", - "integrity": "sha1-Fodmfo8TotFYyAwUgMWinLDYlzw=" - }, - "dargs": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/dargs/-/dargs-5.1.0.tgz", - "integrity": "sha1-7H6lDHhWTNNsnV7Bj2Yyn63ieCk=" - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=" - }, - "date-now": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", - "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=" - }, - "dateformat": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz", - "integrity": "sha1-QGXiATz5+5Ft39gu+1Bq1MZ2kGI=" - }, - "deap": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/deap/-/deap-1.0.1.tgz", - "integrity": "sha512-k75KYNZMvwAwes2xIPry/QTffXIchjD8QfABvvfTr80P85jv5ZcKqcoDo+vMe71nNnVnXYe8MA28weyqcf/DKw==", - "dev": true - }, - "death": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/death/-/death-1.1.0.tgz", - "integrity": "sha1-AaqcQB7dknUFFEcLgmY5DGbGcxg=", - "optional": true - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" - }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" - }, - "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" - }, - "deep-eql": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-0.1.3.tgz", - "integrity": "sha1-71WKyrjeJSBs1xOQbXTlaTDrafI=", - "dev": true - }, - "deep-equal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", - "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=" - }, - "deep-is": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", - "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" - }, - "defaults": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", - "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", - "dev": true - }, - "define-properties": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==" - }, - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dependencies": { - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==" - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==" - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==" - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" - } - } - }, - "del": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz", - "integrity": "sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag=", - "dev": true, - "dependencies": { - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true - } - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" - }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", - "dev": true - }, - "density-clustering": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/density-clustering/-/density-clustering-1.3.0.tgz", - "integrity": "sha1-3J9ZyPCrl+FiSsZJMP0xlIF9ysU=" - }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", - "dev": true - }, - "deprecated": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/deprecated/-/deprecated-0.0.1.tgz", - "integrity": "sha1-+cmvVGSvoeepcUWKi97yqpTVuxk=", - "dev": true - }, - "des.js": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", - "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=" - }, - "destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", - "dev": true - }, - "detect-file": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", - "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=", - "dev": true - }, - "detect-indent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz", - "integrity": "sha1-OHHMCmoALow+Wzz38zYmRnXwa50=", - "optional": true - }, - "dev-ip": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/dev-ip/-/dev-ip-1.0.1.tgz", - "integrity": "sha1-p2o+0YVb56ASu4rBbLgPPADcKPA=", - "dev": true - }, - "diff": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/diff/-/diff-1.0.7.tgz", - "integrity": "sha1-JLuwAcSn1VIhaefKvbLCgU7ZHPQ=", - "dev": true - }, - "diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==" - }, - "doctrine": { - "version": "0.6.4", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-0.6.4.tgz", - "integrity": "sha1-gUKEkalC7xiwSSBW7aOADu5X1h0=" - }, - "dom-walk": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.1.tgz", - "integrity": "sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg=" - }, - "domain-browser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", - "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==" - }, - "duplexer2": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz", - "integrity": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=" - }, - "duplexify": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.6.0.tgz", - "integrity": "sha512-fO3Di4tBKJpYTFHAxTU00BcfWMY9w24r/x21a6rZRbsD/ToUgGxsMbiGRmB7uVAXeGKXD9MwiLZa5E97EVgIRQ==", - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" - } - } - }, - "earcut": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.1.3.tgz", - "integrity": "sha512-AxdCdWUk1zzK/NuZ7e1ljj6IGC+VAdC3Qb7QQDsXpfNrc5IM8tL9nNXUmEGE6jRHTfZ10zhzRhtDmWVsR5pd3A==" - }, - "easy-extender": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/easy-extender/-/easy-extender-2.3.2.tgz", - "integrity": "sha1-PTJI/r4rFZYHMW2PnPSRwWZIIh0=", - "dev": true - }, - "eazy-logger": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/eazy-logger/-/eazy-logger-3.0.2.tgz", - "integrity": "sha1-oyWqXlPROiIliJsqxBE7K5Y29Pw=", - "dev": true - }, - "ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", - "optional": true - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", - "dev": true - }, - "electron-to-chromium": { - "version": "1.3.58", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.58.tgz", - "integrity": "sha512-AGJxlBEn2wOohxqWZkISVsOjZueKTQljfEODTDSEiMqSpH0S+xzV+/5oEM9AGaqhu7DzrpKOgU7ocQRjj0nJmg==", - "dev": true - }, - "elliptic": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.1.tgz", - "integrity": "sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ==" - }, - "emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=" - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", - "dev": true - }, - "end-of-stream": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", - "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==" - }, - "engine.io": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-3.2.0.tgz", - "integrity": "sha512-mRbgmAtQ4GAlKwuPnnAvXXwdPhEx+jkc0OBCLrXuD/CRvwNK3AxRSnqK4FSqmAMRRHryVJP8TopOvmEaA64fKw==", - "dev": true, - "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "dev": true - } - } - }, - "engine.io-client": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.1.6.tgz", - "integrity": "sha512-hnuHsFluXnsKOndS4Hv6SvUrgdYx1pk2NqfaDMW+GWdgfU3+/V25Cj7I8a0x92idSpa5PIhJRKxPvp9mnoLsfg==", - "dev": true, - "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "dev": true - } - } - }, - "engine.io-parser": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.1.2.tgz", - "integrity": "sha512-dInLFzr80RijZ1rGpx1+56/uFoH7/7InhH3kZt+Ms6hT8tNx3NGW/WNSA/f8As1WkOfkuyb3tnRyuXGxusclMw==", - "dev": true - }, - "enhanced-resolve": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz", - "integrity": "sha1-BCHjOf1xQZs9oT0Smzl5BAIwR24=", - "dependencies": { - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - } - } - }, - "errno": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", - "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==" - }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" - }, - "es5-ext": { - "version": "0.10.46", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.46.tgz", - "integrity": "sha512-24XxRvJXNFwEMpJb3nOkiRJKRoupmjYmOPVlI65Qy2SrtxwOTB+g6ODjBKOtwEHbYrhWRty9xxOWLNdClT2djw==" - }, - "es5-shim": { - "version": "4.5.10", - "resolved": "https://registry.npmjs.org/es5-shim/-/es5-shim-4.5.10.tgz", - "integrity": "sha512-vmryBdqKRO8Ei9LJ4yyEk/EOmAOGIagcHDYPpTAi6pot4IMHS1AC2q5cTKPmydpijg2iX8DVmCuqgrNxIWj8Yg==" - }, - "es6-iterator": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=" - }, - "es6-map": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz", - "integrity": "sha1-kTbgUD3MBqMBaQ8LsU/042TpSfA=" - }, - "es6-promise": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.4.tgz", - "integrity": "sha512-/NdNZVJg+uZgtm9eS3O6lrOLYmQag2DjdEXuPaHlZ6RuVqgqaVZfgYCepEIKsLqwdQArOPtC3XzRLqGGfT8KQQ==" - }, - "es6-set": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz", - "integrity": "sha1-0rPsXU2ADO2BjbU40ol02wpzzLE=" - }, - "es6-symbol": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz", - "integrity": "sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=" - }, - "es6-weak-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.2.tgz", - "integrity": "sha1-XjqzIlH/0VOKH45f+hNXdy+S2W8=" - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", - "dev": true - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" - }, - "escodegen": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.9.1.tgz", - "integrity": "sha512-6hTjO1NAWkHnDk3OqQ4YrCuwwmGHL9S3nPlzBOUG/R44rda3wLNrfvQ5fkSGjyhHFKM7ALPKcKGrwvCLe0lC7Q==", - "dependencies": { - "esutils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", - "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=" - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "optional": true - } - } - }, - "escope": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz", - "integrity": "sha1-4Bl16BJ4GhY6ba392AOY3GTIicM=" - }, - "esprima": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", - "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=" - }, - "espurify": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/espurify/-/espurify-1.8.1.tgz", - "integrity": "sha512-ZDko6eY/o+D/gHCWyHTU85mKDgYcS4FJj7S+YD6WIInm7GQ6AnOjmcL4+buFV/JOztVLELi/7MmuGU5NHta0Mg==" - }, - "esrecurse": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", - "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==" - }, - "estraverse": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", - "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=" - }, - "esutils": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-1.1.6.tgz", - "integrity": "sha1-wBzKqa5LiXxtDD4hCuUvPHqEQ3U=" - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", - "dev": true - }, - "event-emitter": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", - "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=" - }, - "eventemitter3": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-1.2.0.tgz", - "integrity": "sha1-HIaZHYFq0eUEdQ5zh0Ik7PO+xQg=", - "dev": true - }, - "events": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz", - "integrity": "sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ=" - }, - "evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==" - }, - "execa": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=" - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=" - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=" - } - } - }, - "expand-range": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", - "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", - "dependencies": { - "fill-range": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", - "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==" - }, - "is-number": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=" - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=" - } - } - }, - "expand-tilde": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", - "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", - "dev": true - }, - "expect.js": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/expect.js/-/expect.js-0.2.0.tgz", - "integrity": "sha1-EChTPSwcNj90pnlv9X7AUg3tK+E=" - }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==" - } - } - }, - "external-editor": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz", - "integrity": "sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==", - "optional": true, - "dependencies": { - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "optional": true - } - } - }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=" - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=" - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==" - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==" - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==" - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" - } - } - }, - "extract-zip": { - "version": "1.6.7", - "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.7.tgz", - "integrity": "sha1-qEC0uK9kAyZMjbV/Txp0Mz74H+k=", - "dev": true - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" - }, - "falafel": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/falafel/-/falafel-2.1.0.tgz", - "integrity": "sha1-lrsXdh2rqU9G0AFzizzt86Z/4Gw=" - }, - "fancy-log": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.2.tgz", - "integrity": "sha1-9BEl49hPLn2JpD0G2VjI94vha+E=" - }, - "fast-deep-equal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", - "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=" - }, - "fast-json-stable-stringify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", - "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" - }, - "fd-slicer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz", - "integrity": "sha1-i1vL2ewyfFBBv5qwI/1nUPEXfmU=", - "dev": true - }, - "figures": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", - "optional": true - }, - "file": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/file/-/file-0.2.2.tgz", - "integrity": "sha1-w9/Y+M81Na5FXCtCPC5SY112tNM=" - }, - "filelist": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-0.0.6.tgz", - "integrity": "sha1-WKZBrR9XV0on/oekQO8xiDS1Vxk=", - "dev": true, - "dependencies": { - "utilities": { - "version": "0.0.37", - "resolved": "https://registry.npmjs.org/utilities/-/utilities-0.0.37.tgz", - "integrity": "sha1-o0cNCn9ogULZ6KV87hEo8S4Z4ZY=", - "dev": true - } - } - }, - "filename-regex": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", - "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=" - }, - "filesize": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-2.0.4.tgz", - "integrity": "sha1-eAWUHGD83+Y/RtfqNYxZreEcEyU=", - "dev": true - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=" - } - } - }, - "finalhandler": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz", - "integrity": "sha1-zgtoVbRYU+eRsvzGgARtiCU91/U=", - "dev": true - }, - "find-index": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/find-index/-/find-index-0.1.1.tgz", - "integrity": "sha1-Z101iyyjiS15Whq0cjL4tuLg3eQ=", - "dev": true - }, - "find-parent-dir": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/find-parent-dir/-/find-parent-dir-0.3.0.tgz", - "integrity": "sha1-M8RLQpqysvBkYpnF+fcY83b/jVQ=" - }, - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=" - }, - "findup-sync": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", - "integrity": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=", - "dev": true, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true - } - } - }, - "fined": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fined/-/fined-1.1.0.tgz", - "integrity": "sha1-s33IRLdqL15wgeiE98CuNE8VNHY=", - "dev": true - }, - "first-chunk-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz", - "integrity": "sha1-Wb+1DNkF9g18OUzT2ayqtOatk04=", - "dev": true - }, - "flagged-respawn": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.0.tgz", - "integrity": "sha1-Tnmumy6zi/hrO7Vr8+ClaqX8q9c=", - "dev": true - }, - "flow-remove-types": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/flow-remove-types/-/flow-remove-types-1.2.3.tgz", - "integrity": "sha512-ypq/U3V+t9atYiOuSJd40tekCra03EHKoRsiK/wXGrsZimuum0kdwVY7Yv0HTaoXgHW1WiayomYd+Q3kkvPl9Q==" - }, - "flowplayer": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/flowplayer/-/flowplayer-6.0.5.tgz", - "integrity": "sha1-JJPyFl1GhzrEfpk4zaaBldkq7yM=" - }, - "follow-redirects": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.5.tgz", - "integrity": "sha512-GHjtHDlY/ehslqv0Gr5N0PUJppgg/q0rOBvX0na1s7y1A3LWxPqCYU76s3Z1bM4+UZB4QF0usaXLT5wFpof5PA==", - "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==" - } - } - }, - "font-awesome": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz", - "integrity": "sha1-j6jPBBGhoxr9B7BtKQK7n8gVoTM=" - }, - "for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==" - }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" - }, - "for-own": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", - "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=" - }, - "foreach": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", - "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=" - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" - }, - "fork-stream": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/fork-stream/-/fork-stream-0.0.4.tgz", - "integrity": "sha1-24Sfznf2cIpfjzhq5TOgkHtUrnA=", - "dev": true - }, - "form-data": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz", - "integrity": "sha1-SXBJi+YEwgwAXU9cI67NIda0kJk=" - }, - "formatio": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/formatio/-/formatio-1.1.1.tgz", - "integrity": "sha1-XtPM1jZVEJc4NGXZlhmRAOhhYek=", - "dev": true - }, - "fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=" - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", - "dev": true - }, - "fs": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/fs/-/fs-0.0.2.tgz", - "integrity": "sha1-4fJE7zkzwbKmS9R5kTYGDQ9ZFPg=", - "dev": true - }, - "fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" - }, - "fs-extra": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz", - "integrity": "sha1-N5TzeMWLNC6n27sjCVEJxLO2IpE=", - "dev": true - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" - }, - "fsevents": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz", - "integrity": "sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==", - "optional": true, - "dependencies": { - "abbrev": { - "version": "1.1.1", - "bundled": true, - "optional": true - }, - "ansi-regex": { - "version": "2.1.1", - "bundled": true - }, - "aproba": { - "version": "1.2.0", - "bundled": true, - "optional": true - }, - "are-we-there-yet": { - "version": "1.1.4", - "bundled": true, - "optional": true - }, - "balanced-match": { - "version": "1.0.0", - "bundled": true - }, - "brace-expansion": { - "version": "1.1.11", - "bundled": true - }, - "chownr": { - "version": "1.0.1", - "bundled": true, - "optional": true - }, - "code-point-at": { - "version": "1.1.0", - "bundled": true - }, - "concat-map": { - "version": "0.0.1", - "bundled": true - }, - "console-control-strings": { - "version": "1.1.0", - "bundled": true - }, - "core-util-is": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "debug": { - "version": "2.6.9", - "bundled": true, - "optional": true - }, - "deep-extend": { - "version": "0.5.1", - "bundled": true, - "optional": true - }, - "delegates": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "detect-libc": { - "version": "1.0.3", - "bundled": true, - "optional": true - }, - "fs-minipass": { - "version": "1.2.5", - "bundled": true, - "optional": true - }, - "fs.realpath": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "gauge": { - "version": "2.7.4", - "bundled": true, - "optional": true - }, - "glob": { - "version": "7.1.2", - "bundled": true, - "optional": true - }, - "has-unicode": { - "version": "2.0.1", - "bundled": true, - "optional": true - }, - "iconv-lite": { - "version": "0.4.21", - "bundled": true, - "optional": true - }, - "ignore-walk": { - "version": "3.0.1", - "bundled": true, - "optional": true - }, - "inflight": { - "version": "1.0.6", - "bundled": true, - "optional": true - }, - "inherits": { - "version": "2.0.3", - "bundled": true - }, - "ini": { - "version": "1.3.5", - "bundled": true, - "optional": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "bundled": true - }, - "isarray": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "minimatch": { - "version": "3.0.4", - "bundled": true - }, - "minimist": { - "version": "0.0.8", - "bundled": true - }, - "minipass": { - "version": "2.2.4", - "bundled": true - }, - "minizlib": { - "version": "1.1.0", - "bundled": true, - "optional": true - }, - "mkdirp": { - "version": "0.5.1", - "bundled": true - }, - "ms": { - "version": "2.0.0", - "bundled": true, - "optional": true - }, - "needle": { - "version": "2.2.0", - "bundled": true, - "optional": true - }, - "node-pre-gyp": { - "version": "0.10.0", - "bundled": true, - "optional": true - }, - "nopt": { - "version": "4.0.1", - "bundled": true, - "optional": true - }, - "npm-bundled": { - "version": "1.0.3", - "bundled": true, - "optional": true - }, - "npm-packlist": { - "version": "1.1.10", - "bundled": true, - "optional": true - }, - "npmlog": { - "version": "4.1.2", - "bundled": true, - "optional": true - }, - "number-is-nan": { - "version": "1.0.1", - "bundled": true - }, - "object-assign": { - "version": "4.1.1", - "bundled": true, - "optional": true - }, - "once": { - "version": "1.4.0", - "bundled": true - }, - "os-homedir": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "os-tmpdir": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "osenv": { - "version": "0.1.5", - "bundled": true, - "optional": true - }, - "path-is-absolute": { - "version": "1.0.1", - "bundled": true, - "optional": true - }, - "process-nextick-args": { - "version": "2.0.0", - "bundled": true, - "optional": true - }, - "rc": { - "version": "1.2.7", - "bundled": true, - "optional": true, - "dependencies": { - "minimist": { - "version": "1.2.0", - "bundled": true, - "optional": true - } - } - }, - "readable-stream": { - "version": "2.3.6", - "bundled": true, - "optional": true - }, - "rimraf": { - "version": "2.6.2", - "bundled": true, - "optional": true - }, - "safe-buffer": { - "version": "5.1.1", - "bundled": true - }, - "safer-buffer": { - "version": "2.1.2", - "bundled": true, - "optional": true - }, - "sax": { - "version": "1.2.4", - "bundled": true, - "optional": true - }, - "semver": { - "version": "5.5.0", - "bundled": true, - "optional": true - }, - "set-blocking": { - "version": "2.0.0", - "bundled": true, - "optional": true - }, - "signal-exit": { - "version": "3.0.2", - "bundled": true, - "optional": true - }, - "string_decoder": { - "version": "1.1.1", - "bundled": true, - "optional": true - }, - "string-width": { - "version": "1.0.2", - "bundled": true - }, - "strip-ansi": { - "version": "3.0.1", - "bundled": true - }, - "strip-json-comments": { - "version": "2.0.1", - "bundled": true, - "optional": true - }, - "tar": { - "version": "4.4.1", - "bundled": true, - "optional": true - }, - "util-deprecate": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "wide-align": { - "version": "1.1.2", - "bundled": true, - "optional": true - }, - "wrappy": { - "version": "1.0.2", - "bundled": true - }, - "yallist": { - "version": "3.0.2", - "bundled": true - } - } - }, - "fstream": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz", - "integrity": "sha1-XB+x8RdHcRTwYyoOtLcbPLD9MXE=", - "dev": true - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "galleria": { - "version": "1.5.7", - "resolved": "https://registry.npmjs.org/galleria/-/galleria-1.5.7.tgz", - "integrity": "sha1-/9wHmx3dASxxgcydSaVna8zizeY=" - }, - "gauge": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", - "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", - "dev": true, - "dependencies": { - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "dev": true - } - } - }, - "gaze": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz", - "integrity": "sha1-QLcJU30k0dRXZ9takIaJ3+aaxE8=", - "dev": true - }, - "geojson-equality": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/geojson-equality/-/geojson-equality-0.1.6.tgz", - "integrity": "sha1-oXE3TvBD5dR5eZWEC65GSOB1LXI=" - }, - "geojson-rbush": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/geojson-rbush/-/geojson-rbush-2.1.0.tgz", - "integrity": "sha1-O9c745H8ELCuaT2bis6iquC4Oo0=" - }, - "geojson-rewind": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/geojson-rewind/-/geojson-rewind-0.3.1.tgz", - "integrity": "sha1-IiQHl8hHzC8MHTE+SqDJFa+n8p0=" - }, - "geojson-vt": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/geojson-vt/-/geojson-vt-3.2.0.tgz", - "integrity": "sha512-qk7sEv7dMfuGzflwClsgtO1fWPut/TqCInWEEUJc/Ofn4tmqBGznnPv3eUdxtwMkulMaAwSL3osHiyN03XJd/w==" - }, - "geonames-server-jquery-plugin": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/geonames-server-jquery-plugin/-/geonames-server-jquery-plugin-0.2.2.tgz", - "integrity": "sha1-jyUknoIwV7S6pE6VkGlgclxVL8M=" - }, - "get-caller-file": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", - "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==" - }, - "get-closest": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/get-closest/-/get-closest-0.0.4.tgz", - "integrity": "sha1-JprHdtHmAiqg/Vht1wjop9Miaa8=" - }, - "get-stdin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", - "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", - "dev": true - }, - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=" - }, - "get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=" - }, - "glob": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==" - }, - "glob-base": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", - "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", - "dependencies": { - "glob-parent": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", - "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=" - }, - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" - }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=" - } - } - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=" - } - } - }, - "glob-stream": { - "version": "3.1.18", - "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-3.1.18.tgz", - "integrity": "sha1-kXCl8St5Awb9/lmPMT+PeVT9FDs=", - "dev": true, - "dependencies": { - "glob": { - "version": "4.5.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz", - "integrity": "sha1-xstz0yJsHv7wTePFbQEvAzd+4V8=", - "dev": true - }, - "minimatch": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", - "integrity": "sha1-jQh8OcazjAAbl/ynzm0OHoCvusc=", - "dev": true - }, - "readable-stream": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", - "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", - "dev": true - }, - "through2": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", - "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", - "dev": true - } - } - }, - "glob-watcher": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.6.tgz", - "integrity": "sha1-uVtKjfdLOcgymLDAXJeLTZo7cQs=", - "dev": true - }, - "glob2base": { - "version": "0.0.12", - "resolved": "https://registry.npmjs.org/glob2base/-/glob2base-0.0.12.tgz", - "integrity": "sha1-nUGbPijxLoOjYhZKJ3BVkiycDVY=", - "dev": true - }, - "global": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/global/-/global-4.3.2.tgz", - "integrity": "sha1-52mJJopsdMOJCLEwWxD8DjlOnQ8=" - }, - "global-modules": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", - "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", - "dev": true - }, - "global-prefix": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", - "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", - "dev": true - }, - "globby": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", - "integrity": "sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0=", - "dev": true, - "dependencies": { - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true - } - } - }, - "globule": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz", - "integrity": "sha1-2cjt3h2nnRJaFRt5UzuXhnY0auU=", - "dev": true, - "dependencies": { - "glob": { - "version": "3.1.21", - "resolved": "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz", - "integrity": "sha1-0p4KBV3qUTj00H7UDomC6DwgZs0=", - "dev": true - }, - "graceful-fs": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz", - "integrity": "sha1-FaSAaldUfLLS2/J/QuiajDRRs2Q=", - "dev": true - }, - "inherits": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz", - "integrity": "sha1-ykMJ2t7mtUzAuNJH6NfHoJdb3Js=", - "dev": true - }, - "lodash": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz", - "integrity": "sha1-j1dWDIO1n8JwvT1WG2kAQ0MOJVE=", - "dev": true - }, - "lru-cache": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz", - "integrity": "sha1-bUUk6LlV+V1PW1iFHOId1y+06VI=", - "dev": true - }, - "minimatch": { - "version": "0.2.14", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", - "integrity": "sha1-x054BXT2PG+aCQ6Q775u9TpqdWo=", - "dev": true - } - } - }, - "glogg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.1.tgz", - "integrity": "sha512-ynYqXLoluBKf9XGR1gA59yEJisIL7YHEH4xr3ZziHB5/yl4qWfaK8Js9jGe6gBGCSCKVqiyO30WnRZADvemUNw==" - }, - "graceful-fs": { - "version": "4.1.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" - }, - "graceful-readlink": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", - "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=", - "dev": true - }, - "gray-matter": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-3.1.1.tgz", - "integrity": "sha512-nZ1qjLmayEv0/wt3sHig7I0s3/sJO0dkAaKYQ5YAOApUtYEOonXSFdWvL1khvnZMTvov4UufkqlFsilPnejEXA==", - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=" - }, - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" - } - } - }, - "grid-index": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/grid-index/-/grid-index-1.0.0.tgz", - "integrity": "sha1-rSxdVM5bNUN/r/HXCprrPR0mERA=" - }, - "growl": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/growl/-/growl-1.7.0.tgz", - "integrity": "sha1-3i1mE20ALhErpw8/EMMc98NQsto=", - "dev": true - }, - "gulp": { - "version": "3.9.1", - "resolved": "https://registry.npmjs.org/gulp/-/gulp-3.9.1.tgz", - "integrity": "sha1-VxzkWSjdQK9lFPxAEYZgFsE4RbQ=", - "dev": true, - "dependencies": { - "semver": { - "version": "4.3.6", - "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz", - "integrity": "sha1-MAvG4OhjdPe6YQaLWx7NV/xlMto=", - "dev": true - } - } - }, - "gulp-autoprefixer": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/gulp-autoprefixer/-/gulp-autoprefixer-3.1.1.tgz", - "integrity": "sha1-dSMAUc0NFxND14O36bXREg7u+bA=", - "dev": true - }, - "gulp-concat": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/gulp-concat/-/gulp-concat-2.6.1.tgz", - "integrity": "sha1-Yz0WyV2IUEYorQJmVmPO5aR5M1M=", - "dev": true, - "dependencies": { - "clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", - "dev": true - }, - "clone-stats": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", - "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=", - "dev": true - }, - "replace-ext": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", - "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=", - "dev": true - }, - "vinyl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.0.tgz", - "integrity": "sha512-MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg==", - "dev": true - } - } - }, - "gulp-concat-util": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/gulp-concat-util/-/gulp-concat-util-0.5.5.tgz", - "integrity": "sha1-yPBjO05ulQ/5PEdbPI07hL4Dt9w=", - "dev": true - }, - "gulp-cssmin": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/gulp-cssmin/-/gulp-cssmin-0.2.0.tgz", - "integrity": "sha1-h6s8ad05sg1dljVcZQStakR7HnI=", - "dev": true, - "dependencies": { - "ansi-regex": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz", - "integrity": "sha1-DY6UaWej2BQ/k+JOKYUl/BsiNfk=", - "dev": true - }, - "ansi-styles": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz", - "integrity": "sha1-6uy/Zs1waIJ2Cy9GkVgrj1XXp94=", - "dev": true - }, - "chalk": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz", - "integrity": "sha1-Zjs6ZItotV0EaQ1JFnqoN4WPIXQ=", - "dev": true - }, - "dateformat": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-1.0.12.tgz", - "integrity": "sha1-nxJLZ1lMk3/3BpMuSmQsyo27/uk=", - "dev": true - }, - "gulp-rename": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/gulp-rename/-/gulp-rename-1.1.0.tgz", - "integrity": "sha1-kwkKqvTThsB/IFOKaIjxXvunJ6E=", - "dev": true - }, - "gulp-util": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-2.2.20.tgz", - "integrity": "sha1-1xRuVyiRC9jwR6awseVJvCLb1kw=", - "dev": true - }, - "has-ansi": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz", - "integrity": "sha1-hPJlqujA5qiKEtcCKJS3VoiUxi4=", - "dev": true - }, - "lodash._reinterpolate": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-2.4.1.tgz", - "integrity": "sha1-TxInqlqHEfxjL1sHofRgequLMiI=", - "dev": true - }, - "lodash.escape": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-2.4.1.tgz", - "integrity": "sha1-LOEsXghNsKV92l5dHu659dF1o7Q=", - "dev": true - }, - "lodash.keys": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-2.4.1.tgz", - "integrity": "sha1-SN6kbfj/djKxDXBrissmWR4rNyc=", - "dev": true - }, - "lodash.template": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-2.4.1.tgz", - "integrity": "sha1-nmEQB+32KRKal0qzxIuBez4c8g0=", - "dev": true - }, - "lodash.templatesettings": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-2.4.1.tgz", - "integrity": "sha1-6nbHXRHrhtTb6JqDiTu4YZKaxpk=", - "dev": true - }, - "minimist": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.2.0.tgz", - "integrity": "sha1-Tf/lJdriuGTGbC4jxicdev3s784=", - "dev": true - }, - "readable-stream": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", - "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", - "dev": true - }, - "strip-ansi": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz", - "integrity": "sha1-JfSOoiynkYfzF0pNuHWTR7sSYiA=", - "dev": true - }, - "supports-color": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz", - "integrity": "sha1-2S3iaU6z9nMjlz1649i1W0wiGQo=", - "dev": true - }, - "through2": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/through2/-/through2-0.5.1.tgz", - "integrity": "sha1-390BLrnHAOIyP9M084rGIqs3Lac=", - "dev": true - }, - "vinyl": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.2.3.tgz", - "integrity": "sha1-vKk4IJWC7FpJrVOKAPofEl5RMlI=", - "dev": true - }, - "xtend": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz", - "integrity": "sha1-XM50B7r2Qsunvs2laBEcST9ZZlo=", - "dev": true - } - } - }, - "gulp-debug": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/gulp-debug/-/gulp-debug-2.1.2.tgz", - "integrity": "sha1-L1/l9kvNH0zxicFg4IDIrQZUMJQ=", - "dev": true, - "dependencies": { - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true - } - } - }, - "gulp-if": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/gulp-if/-/gulp-if-2.0.2.tgz", - "integrity": "sha1-pJe351cwBQQcqivIt92jyARE1ik=", - "dev": true - }, - "gulp-install": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/gulp-install/-/gulp-install-0.6.0.tgz", - "integrity": "sha1-EVQfEfxfehnhjLPvjq255kuOVKo=", - "dev": true - }, - "gulp-match": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/gulp-match/-/gulp-match-1.0.3.tgz", - "integrity": "sha1-kcfA1/Kb7NZgbVfYCn+Hdqh6uo4=", - "dev": true - }, - "gulp-qunit": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/gulp-qunit/-/gulp-qunit-1.5.2.tgz", - "integrity": "sha512-Cj619t43lNMwX40dwgYn5wX+Wx2Jh3iQk0uIwlhPcs+zaQuNDHEhNVWYO6Bz2sSkQCeVjRq8aOG6z/dHfPqBSQ==", - "dev": true, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true - }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "readable-stream": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", - "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true - }, - "through2": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", - "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", - "dev": true - } - } - }, - "gulp-rename": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gulp-rename/-/gulp-rename-1.4.0.tgz", - "integrity": "sha512-swzbIGb/arEoFK89tPY58vg3Ok1bw+d35PfUNwWqdo7KM4jkmuGA78JiDNqR+JeZFaeeHnRg9N7aihX3YPmsyg==", - "dev": true - }, - "gulp-sass": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/gulp-sass/-/gulp-sass-3.2.1.tgz", - "integrity": "sha512-UATbRpSDsyXCnpYSPBUEvdvtSEzksJs7/oQ0CujIpzKqKrO6vlnYwhX2UTsGrf4rNLwqlSSaM271It0uHYvJ3Q==", - "dev": true - }, - "gulp-uglify": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/gulp-uglify/-/gulp-uglify-1.5.4.tgz", - "integrity": "sha1-UkeI2HZm0J+dDCH7IXf5ADmmWMk=", - "dev": true, - "dependencies": { - "async": { - "version": "0.2.10", - "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", - "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=", - "dev": true - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "dev": true - }, - "uglify-js": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.6.4.tgz", - "integrity": "sha1-ZeovswWck5RpLxX+2HwrNsFrmt8=", - "dev": true - }, - "yargs": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", - "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", - "dev": true - } - } - }, - "gulp-util": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz", - "integrity": "sha1-AFTh50RQLifATBh8PsxQXdVLu08=" - }, - "gulp-watch": { - "version": "4.3.11", - "resolved": "https://registry.npmjs.org/gulp-watch/-/gulp-watch-4.3.11.tgz", - "integrity": "sha1-Fi/FY96fx3DpH5p845VVE6mhGMA=", - "dev": true, - "dependencies": { - "anymatch": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz", - "integrity": "sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==", - "dev": true - }, - "arr-diff": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", - "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", - "dev": true - }, - "array-unique": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", - "dev": true - }, - "braces": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", - "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", - "dev": true - }, - "chokidar": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz", - "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", - "dev": true, - "dependencies": { - "glob-parent": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", - "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", - "dev": true - } - } - }, - "expand-brackets": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", - "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", - "dev": true - }, - "extglob": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", - "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", - "dev": true - }, - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", - "dev": true - }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "dev": true - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "micromatch": { - "version": "2.3.11", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", - "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", - "dev": true - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true - }, - "vinyl": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz", - "integrity": "sha1-XIgDbPVl5d8FVYv8kR+GVt8hiIQ=", - "dev": true - } - } - }, - "gulplog": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", - "integrity": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=" - }, - "gunzip-maybe": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/gunzip-maybe/-/gunzip-maybe-1.4.1.tgz", - "integrity": "sha512-qtutIKMthNJJgeHQS7kZ9FqDq59/Wn0G2HYCRNjpup7yKfVI6/eqwpmroyZGFoCYaG+sW6psNVb4zoLADHpp2g==", - "optional": true, - "dependencies": { - "browserify-zlib": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz", - "integrity": "sha1-uzX4pRn2AOD6a4SFJByXnQFB+y0=", - "optional": true - }, - "pako": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", - "integrity": "sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU=", - "optional": true - } - } - }, - "handlebars": { - "version": "4.0.11", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.0.11.tgz", - "integrity": "sha1-Ywo13+ApS8KB7a5v/F0yn8eYLcw=", - "dev": true, - "optional": true, - "dependencies": { - "async": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", - "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", - "dev": true, - "optional": true - }, - "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", - "dev": true, - "optional": true - } - } - }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" - }, - "har-validator": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.0.tgz", - "integrity": "sha512-+qnmNjI4OfH2ipQ9VQOw23bBd/ibtfbVdK2fYbY4acTDqKTW/YDp9McimZdDbG8iV9fZizUqQMD5xvriB146TA==" - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==" - }, - "has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=" - }, - "has-binary2": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-binary2/-/has-binary2-1.0.3.tgz", - "integrity": "sha512-G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw==", - "dev": true, - "dependencies": { - "isarray": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz", - "integrity": "sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=", - "dev": true - } - } - }, - "has-color": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz", - "integrity": "sha1-ZxRKUmDDT8PMpnfQQdr1L+e3iy8=" - }, - "has-cors": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz", - "integrity": "sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=", - "dev": true - }, - "has-flag": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz", - "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=" - }, - "has-gulplog": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz", - "integrity": "sha1-ZBTIKRNpfaUVkDl9r7EvIpZ4Ec4=" - }, - "has-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", - "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=" - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", - "dev": true - }, - "has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=" - }, - "has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", - "dependencies": { - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=" - } - } - }, - "hash-base": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz", - "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=" - }, - "hash.js": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.5.tgz", - "integrity": "sha512-eWI5HG9Np+eHV1KQhisXWwM+4EPPYe5dFX1UZZH7k/E3JzDEazVH+VGlZi6R94ZqImq+A3D1mCEtrFIfg/E7sA==" - }, - "hasha": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/hasha/-/hasha-2.2.0.tgz", - "integrity": "sha1-eNfL/B5tZjA/55g3NlmEUXsvbuE=", - "dev": true - }, - "he": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/he/-/he-1.1.1.tgz", - "integrity": "sha1-k0EP0hsAlzUVH4howvJx80J+I/0=", - "dev": true - }, - "hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=" - }, - "homedir-polyfill": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz", - "integrity": "sha1-TCu8inWJmP7r9e1oWA921GdotLw=", - "dev": true - }, - "hosted-git-info": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz", - "integrity": "sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==" - }, - "html5shiv": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/html5shiv/-/html5shiv-3.7.3.tgz", - "integrity": "sha1-14qEo2e8uacQEA1XgCw4ewhGMdI=" - }, - "http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", - "dev": true, - "dependencies": { - "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", - "dev": true - } - } - }, - "http-proxy": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.15.2.tgz", - "integrity": "sha1-ZC/cr/5S00SNK9o7AHnpQJBk2jE=", - "dev": true - }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=" - }, - "https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" - }, - "humane-js": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/humane-js/-/humane-js-3.2.2.tgz", - "integrity": "sha1-t2KvX4skbz/W9FXrExwlK9XACow=" - }, - "i18next": { - "version": "8.4.3", - "resolved": "https://registry.npmjs.org/i18next/-/i18next-8.4.3.tgz", - "integrity": "sha1-Nrb/UWxPmSAQ7tzOJKNsRgnox9w=" - }, - "i18next-xhr-backend": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/i18next-xhr-backend/-/i18next-xhr-backend-1.5.1.tgz", - "integrity": "sha512-9OLdC/9YxDvTFcgsH5t2BHCODHEotHCa6h7Ly0EUlUC7Y2GS09UeoHOGj3gWKQ3HCqXz8NlH4gOrK3NNc9vPuw==" - }, - "iconv-lite": { - "version": "0.4.23", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", - "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==" - }, - "ieee754": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz", - "integrity": "sha512-GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==" - }, - "immutable": { - "version": "3.8.2", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.8.2.tgz", - "integrity": "sha1-wkOZUUVbs5kT2vKBN28VMOEErfM=", - "dev": true - }, - "imports-loader": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/imports-loader/-/imports-loader-0.7.1.tgz", - "integrity": "sha1-8gS180cCoywdt9SNidXoZ6BEElM=" - }, - "in-publish": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.0.tgz", - "integrity": "sha1-4g/146KvwmkDILbcVSaCqcf631E=", - "dev": true - }, - "indent-string": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", - "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", - "dev": true - }, - "indexof": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", - "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=" - }, - "individual": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/individual/-/individual-2.0.0.tgz", - "integrity": "sha1-gzsJfa0jKU52EXqY+zjg2a1hu5c=" - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=" - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "ini": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", - "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==" - }, - "inquirer": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz", - "integrity": "sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ==", - "optional": true, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "optional": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "optional": true - }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "optional": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "optional": true - }, - "lodash": { - "version": "4.17.10", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", - "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==", - "optional": true - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "optional": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "optional": true - } - } - }, - "insert-css": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/insert-css/-/insert-css-0.0.0.tgz", - "integrity": "sha1-IwS/pviTq+y4/5yo2cdgXZTPKRE=" - }, - "interpret": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz", - "integrity": "sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ=" - }, - "invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "optional": true - }, - "invert-kv": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" - }, - "irregular-plurals": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-1.4.0.tgz", - "integrity": "sha1-LKmwM2UREYVUEvFr5dd8YqRYp2Y=", - "dev": true - }, - "is-absolute": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", - "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", - "dev": true - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=" - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" - }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=" - }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" - }, - "is-builtin-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", - "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=" - }, - "is-callable": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", - "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==" - }, - "is-ci": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.0.tgz", - "integrity": "sha512-plgvKjQtalH2P3Gytb7L61Lmz95g2DlpzFiQyRSFew8WoJKxtKRzrZMeyRN2supblm3Psc8OQGy7Xjb6XG11jw==", - "optional": true - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=" - }, - "is-deflate": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-deflate/-/is-deflate-1.0.0.tgz", - "integrity": "sha1-yGKQHDwWH7CdrHzcfnhPgOmPLxQ=", - "optional": true - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" - } - } - }, - "is-dotfile": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", - "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=" - }, - "is-equal-shallow": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", - "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=" - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" - }, - "is-finite": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", - "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=" - }, - "is-function": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.1.tgz", - "integrity": "sha1-Es+5i2W1fdPRk6MSH19uL0N2ArU=" - }, - "is-glob": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz", - "integrity": "sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A=" - }, - "is-gzip": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-gzip/-/is-gzip-1.0.0.tgz", - "integrity": "sha1-bKiwe5nHeZgCWQDlVc7Y7YCHmoM=", - "optional": true - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=" - }, - "is-number-like": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/is-number-like/-/is-number-like-1.0.8.tgz", - "integrity": "sha512-6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA==", - "dev": true - }, - "is-path-cwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", - "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=", - "dev": true - }, - "is-path-in-cwd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", - "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==", - "dev": true - }, - "is-path-inside": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", - "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", - "dev": true - }, - "is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", - "dev": true - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" - }, - "is-posix-bracket": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", - "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=" - }, - "is-primitive": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", - "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=" - }, - "is-promise": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", - "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=", - "optional": true - }, - "is-regexp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", - "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=", - "dev": true - }, - "is-relative": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", - "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", - "dev": true - }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" - }, - "is-unc-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", - "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", - "dev": true - }, - "is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", - "dev": true - }, - "is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" - }, - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" - }, - "istanbul": { - "version": "0.4.5", - "resolved": "https://registry.npmjs.org/istanbul/-/istanbul-0.4.5.tgz", - "integrity": "sha1-ZcfXPUxNqE1POsMQuRj7C4Azczs=", - "dev": true, - "optional": true, - "dependencies": { - "abbrev": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz", - "integrity": "sha1-kbR5JYinc4wl813W9jdSovh3YTU=", - "dev": true, - "optional": true - }, - "async": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", - "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", - "dev": true, - "optional": true - }, - "escodegen": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.8.1.tgz", - "integrity": "sha1-WltTr0aTEQvrsIZ6o0MN07cKEBg=", - "dev": true, - "optional": true - }, - "esprima": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", - "integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=", - "dev": true - }, - "estraverse": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz", - "integrity": "sha1-r2fy3JIlgkFZUJJgkaQAXSnJu0Q=", - "dev": true, - "optional": true - }, - "esutils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", - "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", - "dev": true, - "optional": true - }, - "glob": { - "version": "5.0.15", - "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", - "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", - "dev": true, - "optional": true - }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", - "dev": true, - "optional": true - }, - "resolve": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", - "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=", - "dev": true, - "optional": true - }, - "source-map": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.2.0.tgz", - "integrity": "sha1-2rc/vPwrqBm03gO9b26qSBZLP50=", - "dev": true, - "optional": true - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "dev": true, - "optional": true - }, - "wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", - "dev": true, - "optional": true - } - } - }, - "jade": { - "version": "0.26.3", - "resolved": "https://registry.npmjs.org/jade/-/jade-0.26.3.tgz", - "integrity": "sha1-jxDXl32NefL2/4YqgbBRPMslaGw=", - "dev": true, - "dependencies": { - "commander": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-0.6.1.tgz", - "integrity": "sha1-+mihT2qUXVTbvlDYzbMyDp47GgY=", - "dev": true - }, - "mkdirp": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz", - "integrity": "sha1-G79asbqCevI1dRQ0kEJkVfSB/h4=", - "dev": true - } - } - }, - "jake": { - "version": "8.0.18", - "resolved": "https://registry.npmjs.org/jake/-/jake-8.0.18.tgz", - "integrity": "sha512-KSF3QH/uNR7pKcWgBuS7U1nYoYdcqitLEB86nvIcYztiiDsePkn2/JoSutiKP77O1MTNlbhTiNHorIrlpyy4sA==", - "dev": true, - "dependencies": { - "ansi-styles": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz", - "integrity": "sha1-yxAt8cVvUSPquLZ817mAJ6AnkXg=", - "dev": true - }, - "async": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", - "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=", - "dev": true - }, - "chalk": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz", - "integrity": "sha1-UZmj3c0MHv4jvAjBsCewYXbgxk8=", - "dev": true - }, - "strip-ansi": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz", - "integrity": "sha1-OeipjQRNFQZgq+SmgIrPcLt7yZE=", - "dev": true - } - } - }, - "jquery": { - "version": "1.11.3", - "resolved": "https://registry.npmjs.org/jquery/-/jquery-1.11.3.tgz", - "integrity": "sha1-3Yt0J4snEC0p32Pq4oMIqM+htYM=" - }, - "jquery-lazyload": { - "version": "1.9.7", - "resolved": "https://registry.npmjs.org/jquery-lazyload/-/jquery-lazyload-1.9.7.tgz", - "integrity": "sha1-mYKziMUzwLYRIUs8WqoLn+3gcfc=" - }, - "jquery-simplecolorpicker": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/jquery-simplecolorpicker/-/jquery-simplecolorpicker-0.3.1.tgz", - "integrity": "sha1-T2vv04CrBUcPWF1UguUYBVbkYOs=" - }, - "jquery-treeview": { - "version": "git+https://github.com/alchemy-fr/jquery-treeview.git#1e9e5a49d2875b878801e904cd08c2d25e85af1e" - }, - "jquery-ui": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/jquery-ui/-/jquery-ui-1.12.1.tgz", - "integrity": "sha1-vLQEXI3QU5wTS8FIjN0+dop6nlE=" - }, - "jquery-ui-datepicker-with-i18n": { - "version": "1.10.4", - "resolved": "https://registry.npmjs.org/jquery-ui-datepicker-with-i18n/-/jquery-ui-datepicker-with-i18n-1.10.4.tgz", - "integrity": "sha1-hiy1tI5MUCpROt7tCGTpI0dZM34=" - }, - "jquery-ui-dist": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/jquery-ui-dist/-/jquery-ui-dist-1.12.1.tgz", - "integrity": "sha1-XAgV08xvkP9fqvWyaKbiO0ypBPo=" - }, - "jquery.cookie": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jquery.cookie/-/jquery.cookie-1.4.1.tgz", - "integrity": "sha1-1j3OIJ6raR/mMxbbCMqeR+D5OFs=" - }, - "jquery.fancytree": { - "version": "2.29.1", - "resolved": "https://registry.npmjs.org/jquery.fancytree/-/jquery.fancytree-2.29.1.tgz", - "integrity": "sha512-6gxwRdXZYfVmtnq/ztBmHvdm1RUxGlBbjMWgZJDlMjTHuOozPVymdLeEXSDo1t4efvhUHFUOQgy7O831jGqFxQ==" - }, - "jquery.tree": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/jquery.tree/-/jquery.tree-0.0.5.tgz", - "integrity": "sha1-JOUSvHOQRj2zYmDGXYN27RdwZw8=", - "dependencies": { - "jquery": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/jquery/-/jquery-2.1.4.tgz", - "integrity": "sha1-IoveaYoMYUMdwmMKahVPFYkNIxc=" - } - } - }, - "js-base64": { - "version": "2.4.8", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.4.8.tgz", - "integrity": "sha512-hm2nYpDrwoO/OzBhdcqs/XGT6XjSuSSCVEpia+Kl2J6x4CYt5hISlVL/AYU1khoDXv0AQVgxtdJySb9gjAn56Q==", - "dev": true - }, - "js-cookie": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-2.2.0.tgz", - "integrity": "sha1-Gywnmm7s44ChIWi5JIUmWzWx7/s=" - }, - "js-fixtures": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/js-fixtures/-/js-fixtures-1.5.3.tgz", - "integrity": "sha1-P3TKsg2Z7xLh+VjM8jHC6AeQaOA=", - "dev": true, - "dependencies": { - "commander": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.0.0.tgz", - "integrity": "sha1-0bhvkB+LZL2UG96tr5JFMDk76Sg=", - "dev": true - }, - "glob": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-3.2.3.tgz", - "integrity": "sha1-4xPusknHr/qlxHUoaw4RW1mDlGc=", - "dev": true - }, - "graceful-fs": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz", - "integrity": "sha1-fNLNsiiko/Nule+mzBQt59GhNtA=", - "dev": true - }, - "lru-cache": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz", - "integrity": "sha1-bUUk6LlV+V1PW1iFHOId1y+06VI=", - "dev": true - }, - "minimatch": { - "version": "0.2.14", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", - "integrity": "sha1-x054BXT2PG+aCQ6Q775u9TpqdWo=", - "dev": true - }, - "mkdirp": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz", - "integrity": "sha1-3j5fiWHIjHh+4TaN+EmsRBPsqNc=", - "dev": true - }, - "mocha": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-1.17.1.tgz", - "integrity": "sha1-f3Zx1oUm0HS3uuZgyQmfh+DqHMs=", - "dev": true - } - } - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "optional": true - }, - "js-yaml": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz", - "integrity": "sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==", - "dependencies": { - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - } - } - }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", - "optional": true - }, - "json-loader": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/json-loader/-/json-loader-0.5.7.tgz", - "integrity": "sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w==" - }, - "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" - }, - "json-schema-traverse": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", - "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=" - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - }, - "JSON2": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/JSON2/-/JSON2-0.1.0.tgz", - "integrity": "sha1-jXSTBApj1YNa919H3suDq2yMB5A=" - }, - "json5": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", - "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=" - }, - "jsonfile": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz", - "integrity": "sha1-pezG9l9T9mLEQVx2daAzHQmS7GY=", - "dev": true - }, - "jsonlint-lines-primitives": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/jsonlint-lines-primitives/-/jsonlint-lines-primitives-1.6.0.tgz", - "integrity": "sha1-u4n2DIubYS/ZE92qI2ZJuEDYZhE=" - }, - "jsonparse": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", - "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=", - "optional": true - }, - "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=" - }, - "JSV": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/JSV/-/JSV-4.0.2.tgz", - "integrity": "sha1-0Hf2glVx+CEy+d/67Vh7QCn+/1c=" - }, - "kdbush": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/kdbush/-/kdbush-1.0.1.tgz", - "integrity": "sha1-PL0D6d6tnA9vZszblkUOXOzGQOA=" - }, - "kew": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz", - "integrity": "sha1-edk9LTM2PW/dKXCzNdkUGtWR15s=", - "dev": true - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=" - }, - "klaw": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz", - "integrity": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=", - "dev": true - }, - "lazy-cache": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", - "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=" - }, - "lcid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", - "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=" - }, - "leaflet": { - "version": "0.7.7", - "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-0.7.7.tgz", - "integrity": "sha1-HjUrpU5j0HZFH6NjyQCJDLLPde4=" - }, - "leaflet-contextmenu": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/leaflet-contextmenu/-/leaflet-contextmenu-1.4.0.tgz", - "integrity": "sha1-4r2kga8QJggOq6oymX5TH9RPYFw=" - }, - "leaflet-draw": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/leaflet-draw/-/leaflet-draw-0.3.2.tgz", - "integrity": "sha1-cX7o/tTCqWecEhYuH5ItLaUD0Qk=" - }, - "leven": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-2.1.0.tgz", - "integrity": "sha1-wuep93IJTe6dNCAq6KzORoeHVYA=", - "optional": true - }, - "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=" - }, - "liftoff": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-2.5.0.tgz", - "integrity": "sha1-IAkpG7Mc6oYbvxCnwVooyvdcMew=", - "dev": true - }, - "limiter": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/limiter/-/limiter-1.1.3.tgz", - "integrity": "sha512-zrycnIMsLw/3ZxTbW7HCez56rcFGecWTx5OZNplzcXUUmJLmoYArC6qdJzmAN5BWiNXGcpjhF9RQ1HSv5zebEw==", - "dev": true - }, - "lineclip": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/lineclip/-/lineclip-1.1.5.tgz", - "integrity": "sha1-K/JgZ9lDVP6r+R5CdoI221YW/RM=" - }, - "load-json-file": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", - "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=" - }, - "loader-runner": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.3.0.tgz", - "integrity": "sha1-9IKuqC1UPgeSFwDVpG7yb9rGuKI=" - }, - "loader-utils": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz", - "integrity": "sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0=" - }, - "localtunnel": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/localtunnel/-/localtunnel-1.9.0.tgz", - "integrity": "sha512-wCIiIHJ8kKIcWkTQE3m1VRABvsH2ZuOkiOpZUofUCf6Q42v3VIZ+Q0YfX1Z4sYDRj0muiKL1bLvz1FeoxsPO0w==", - "dev": true, - "dependencies": { - "axios": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.17.1.tgz", - "integrity": "sha1-LY4+XQvb1zJ/kbyBT1xXZg+Bgk0=", - "dev": true - }, - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", - "dev": true - }, - "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", - "dev": true - }, - "debug": { - "version": "2.6.8", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz", - "integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=", - "dev": true - }, - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "dev": true - }, - "load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", - "dev": true - }, - "os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", - "dev": true - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "dev": true - }, - "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", - "dev": true - }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", - "dev": true - }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", - "dev": true - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "dev": true - }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "dev": true - }, - "which-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=", - "dev": true - }, - "yargs": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz", - "integrity": "sha1-eC7CHvQDNF+DCoCMo9UTr1YGUgg=", - "dev": true - }, - "yargs-parser": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz", - "integrity": "sha1-KczqwNxPA8bIe0qfIX3RjJ90hxw=", - "dev": true - } - } - }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=" - }, - "lodash": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", - "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=" - }, - "lodash-compat": { - "version": "3.10.2", - "resolved": "https://registry.npmjs.org/lodash-compat/-/lodash-compat-3.10.2.tgz", - "integrity": "sha1-xpQBKKnTD46QLNLPmf0Muk7PwYM=" - }, - "lodash._arraycopy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz", - "integrity": "sha1-due3wfH7klRzdIeKVi7Qaj5Q9uE=" - }, - "lodash._arrayeach": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz", - "integrity": "sha1-urFWsqkNPxu9XGU0AzSeXlkz754=" - }, - "lodash._baseassign": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz", - "integrity": "sha1-jDigmVAPIVrQnlnxci/QxSv+Ck4=", - "dev": true - }, - "lodash._basecopy": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz", - "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=" - }, - "lodash._basefor": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash._basefor/-/lodash._basefor-3.0.3.tgz", - "integrity": "sha1-dVC06SGO8J+tJDQ7YSAhx5tMIMI=" - }, - "lodash._basetostring": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz", - "integrity": "sha1-0YYdh3+CSlL2aYMtyvPuFVZqB9U=" - }, - "lodash._basevalues": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz", - "integrity": "sha1-W3dXYoAr3j0yl1A+JjAIIP32Ybc=" - }, - "lodash._bindcallback": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz", - "integrity": "sha1-5THCdkTPi1epnhftlbNcdIeJOS4=" - }, - "lodash._createassigner": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz", - "integrity": "sha1-g4pbri/aymOsIt7o4Z+k5taXCxE=" - }, - "lodash._escapehtmlchar": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash._escapehtmlchar/-/lodash._escapehtmlchar-2.4.1.tgz", - "integrity": "sha1-32fDu2t+jh6DGrSL+geVuSr+iZ0=", - "dev": true - }, - "lodash._escapestringchar": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash._escapestringchar/-/lodash._escapestringchar-2.4.1.tgz", - "integrity": "sha1-7P4iYYoq3lC/7qQ5N+Ud9m8O23I=", - "dev": true - }, - "lodash._getnative": { - "version": "3.9.1", - "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", - "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=" - }, - "lodash._htmlescapes": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash._htmlescapes/-/lodash._htmlescapes-2.4.1.tgz", - "integrity": "sha1-MtFL8IRLbeb4tioFG09nwii2JMs=", - "dev": true - }, - "lodash._isiterateecall": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz", - "integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=" - }, - "lodash._isnative": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash._isnative/-/lodash._isnative-2.4.1.tgz", - "integrity": "sha1-PqZAS3hKe+g2x7V1gOHN95sUgyw=", - "dev": true - }, - "lodash._objecttypes": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash._objecttypes/-/lodash._objecttypes-2.4.1.tgz", - "integrity": "sha1-fAt/admKH3ZSn4kLDNsbTf7BHBE=", - "dev": true - }, - "lodash._reescape": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz", - "integrity": "sha1-Kx1vXf4HyKNVdT5fJ/rH8c3hYWo=" - }, - "lodash._reevaluate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz", - "integrity": "sha1-WLx0xAZklTrgsSTYBpltrKQx4u0=" - }, - "lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=" - }, - "lodash._reunescapedhtml": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash._reunescapedhtml/-/lodash._reunescapedhtml-2.4.1.tgz", - "integrity": "sha1-dHxPxAED6zu4oJduVx96JlnpO6c=", - "dev": true, - "dependencies": { - "lodash.keys": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-2.4.1.tgz", - "integrity": "sha1-SN6kbfj/djKxDXBrissmWR4rNyc=", - "dev": true - } - } - }, - "lodash._root": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz", - "integrity": "sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI=" - }, - "lodash._shimkeys": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash._shimkeys/-/lodash._shimkeys-2.4.1.tgz", - "integrity": "sha1-bpzJZm/wgfC1psl4uD4kLmlJ0gM=", - "dev": true - }, - "lodash.assign": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-3.2.0.tgz", - "integrity": "sha1-POnwI0tLIiPilrj6CsH+6OvKZPo=", - "dev": true - }, - "lodash.clonedeep": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", - "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=", - "dev": true - }, - "lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" - }, - "lodash.defaults": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-2.4.1.tgz", - "integrity": "sha1-p+iIXwXmiFEUS24SqPNngCa8TFQ=", - "dev": true, - "dependencies": { - "lodash.keys": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-2.4.1.tgz", - "integrity": "sha1-SN6kbfj/djKxDXBrissmWR4rNyc=", - "dev": true - } - } - }, - "lodash.escape": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz", - "integrity": "sha1-mV7g3BjBtIzJLv+ucaEKq1tIdpg=" - }, - "lodash.groupby": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.groupby/-/lodash.groupby-4.6.0.tgz", - "integrity": "sha1-Cwih3PaDl8OXhVwyOXg4Mt90A9E=" - }, - "lodash.isarguments": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", - "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=" - }, - "lodash.isarray": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", - "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=" - }, - "lodash.isfinite": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/lodash.isfinite/-/lodash.isfinite-3.3.2.tgz", - "integrity": "sha1-+4m2WpqAKBgz8LdHizpRBPiY67M=", - "dev": true - }, - "lodash.isobject": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-2.4.1.tgz", - "integrity": "sha1-Wi5H/mmVPx7mMafrof5k0tBlWPU=", - "dev": true - }, - "lodash.isplainobject": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-3.2.0.tgz", - "integrity": "sha1-moI4rhayAEMpYM1zRlEtASP79MU=" - }, - "lodash.istypedarray": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/lodash.istypedarray/-/lodash.istypedarray-3.0.6.tgz", - "integrity": "sha1-yaR3SYYHUB2OhJTSg7h8OSgc72I=" - }, - "lodash.keys": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", - "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=" - }, - "lodash.keysin": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/lodash.keysin/-/lodash.keysin-3.0.8.tgz", - "integrity": "sha1-IsRJPrvtsUJ5YqVLRFssinZ/tH8=" - }, - "lodash.merge": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-3.3.2.tgz", - "integrity": "sha1-DZDZPtY3sYeEN7s+IWASYNev6ZQ=" - }, - "lodash.mergewith": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.1.tgz", - "integrity": "sha512-eWw5r+PYICtEBgrBE5hhlT6aAa75f411bgDz/ZL2KZqYV03USvucsxcHUIlGTDTECs1eunpI7HOV7U+WLDvNdQ==", - "dev": true - }, - "lodash.restparam": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz", - "integrity": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=" - }, - "lodash.template": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz", - "integrity": "sha1-+M3sxhaaJVvpCYrosMU9N4kx0U8=" - }, - "lodash.templatesettings": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz", - "integrity": "sha1-+zB4RHU7Zrnxr6VOJix0UwfbqOU=" - }, - "lodash.toarray": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.toarray/-/lodash.toarray-4.4.0.tgz", - "integrity": "sha1-JMS/zWsvuji/0FlNsRedjptlZWE=", - "optional": true - }, - "lodash.toplainobject": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash.toplainobject/-/lodash.toplainobject-3.0.0.tgz", - "integrity": "sha1-KHkK2ULSk9eKpmOgfs9/UsoEGY0=" - }, - "lodash.values": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash.values/-/lodash.values-2.4.1.tgz", - "integrity": "sha1-q/UUQ2s8twUAFieXjLzzCxKA7qQ=", - "dev": true, - "dependencies": { - "lodash.keys": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-2.4.1.tgz", - "integrity": "sha1-SN6kbfj/djKxDXBrissmWR4rNyc=", - "dev": true - } - } - }, - "lolex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/lolex/-/lolex-1.3.2.tgz", - "integrity": "sha1-fD2mL/yzDw9agKJWbKJORdigHzE=", - "dev": true - }, - "longest": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", - "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=" - }, - "loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "optional": true - }, - "loud-rejection": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", - "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=" - }, - "lru-cache": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz", - "integrity": "sha512-fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==" - }, - "m3u8-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/m3u8-parser/-/m3u8-parser-4.2.0.tgz", - "integrity": "sha512-LVHw0U6IPJjwk9i9f7Xe26NqaUHTNlIt4SSWoEfYFROeVKHN6MIjOhbRheI3dg8Jbq5WCuMFQ0QU3EgZpmzFPg==" - }, - "magic-string": { - "version": "0.22.5", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.22.5.tgz", - "integrity": "sha512-oreip9rJZkzvA8Qzk9HFs8fZGF/u7H/gtrE8EN6RjKJ9kh2HlC+yQ2QezifqTZfGyiuAV0dRv5a+y/8gBb1m9w==" - }, - "make-iterator": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", - "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", - "dev": true, - "dependencies": { - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } - } - }, - "map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" - }, - "map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", - "dev": true - }, - "map-stream": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.0.4.tgz", - "integrity": "sha1-XsbekCE+9sey65Nn6a3o2k79tos=", - "dev": true - }, - "map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=" - }, - "mapbox": { - "version": "1.0.0-beta10", - "resolved": "https://registry.npmjs.org/mapbox/-/mapbox-1.0.0-beta10.tgz", - "integrity": "sha1-A3VhvLlcvcBm0d/34s4dbIU5y44=" - }, - "mapbox-gl": { - "version": "0.44.2", - "resolved": "https://registry.npmjs.org/mapbox-gl/-/mapbox-gl-0.44.2.tgz", - "integrity": "sha512-UzrfDEit6pX+HSj5qQTDG633JiF4JKn1MD8vz58S7kAnGRqnnSfFc7rrSVXZ/E6G5SFKsfESURUbLLuGkOcfWA==", - "dependencies": { - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" - } - } - }, - "mapbox-gl-circle": { - "version": "1.6.5", - "resolved": "https://registry.npmjs.org/mapbox-gl-circle/-/mapbox-gl-circle-1.6.5.tgz", - "integrity": "sha512-VHA6lgxZE/WFtBXmMveU2zt7ZeVcBHe42k4U4b8xGEnrDSQs4/++EBPVywEMNqi01XQrbf1eiAhsIDZasR4drw==", - "dependencies": { - "@turf/bbox": { - "version": "4.7.3", - "resolved": "https://registry.npmjs.org/@turf/bbox/-/bbox-4.7.3.tgz", - "integrity": "sha1-461PEKfptBtSKIDTMIMZgZkFkGc=" - }, - "@turf/bbox-polygon": { - "version": "4.7.3", - "resolved": "https://registry.npmjs.org/@turf/bbox-polygon/-/bbox-polygon-4.7.3.tgz", - "integrity": "sha1-NYiQ/R8abK2anLUHmeNzJfuIAXo=" - }, - "@turf/bearing": { - "version": "4.7.3", - "resolved": "https://registry.npmjs.org/@turf/bearing/-/bearing-4.7.3.tgz", - "integrity": "sha1-79GopcjKDNvsvMAhcsQe0hbf+Pk=" - }, - "@turf/circle": { - "version": "4.7.3", - "resolved": "https://registry.npmjs.org/@turf/circle/-/circle-4.7.3.tgz", - "integrity": "sha1-6PmW/4ewyo4+a3S2D2q12vkIZxM=" - }, - "@turf/destination": { - "version": "4.7.3", - "resolved": "https://registry.npmjs.org/@turf/destination/-/destination-4.7.3.tgz", - "integrity": "sha1-8eo7s3Bc9S/tE1p5F9STNuR7jS4=" - }, - "@turf/distance": { - "version": "4.7.3", - "resolved": "https://registry.npmjs.org/@turf/distance/-/distance-4.7.3.tgz", - "integrity": "sha1-tatIoJpkJwbWXDm5GUM9XSzFcbE=" - }, - "@turf/helpers": { - "version": "4.7.3", - "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-4.7.3.tgz", - "integrity": "sha1-vDEqxDyrPFMqSDFRxMOCxWSUKek=" - }, - "@turf/invariant": { - "version": "4.7.3", - "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-4.7.3.tgz", - "integrity": "sha1-U482fSPBE/yEnXDJpSS4Vjh0YB0=" - }, - "@turf/meta": { - "version": "4.7.4", - "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-4.7.4.tgz", - "integrity": "sha1-beLx6YkLj2S2aeS0fAmyCJMGOXc=" - }, - "@turf/truncate": { - "version": "4.7.3", - "resolved": "https://registry.npmjs.org/@turf/truncate/-/truncate-4.7.3.tgz", - "integrity": "sha1-gnqN+P8Mn/+dzxpLMUXL3vgPuZM=" - }, - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "optional": true - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "optional": true - }, - "lodash": { - "version": "4.17.10", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", - "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==" - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "optional": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "optional": true - } - } - }, - "mapbox.js": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/mapbox.js/-/mapbox.js-2.4.0.tgz", - "integrity": "sha1-xDsISl3XEzTIPuHfKPpnRD1zwpw=" - }, - "marked": { - "version": "0.2.10", - "resolved": "https://registry.npmjs.org/marked/-/marked-0.2.10.tgz", - "integrity": "sha1-1f1oJxyq5hxV0pHQe9UDTP9ec+4=" - }, - "math-random": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.1.tgz", - "integrity": "sha1-izqsWIuKZuSXXjzepn97sylgH6w=" - }, - "md5.js": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.4.tgz", - "integrity": "sha1-6b296UogpawYsENA/Fdk1bCdkB0=" - }, - "mem": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz", - "integrity": "sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y=" - }, - "memory-fs": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", - "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" - } - } - }, - "meow": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", - "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", - "dev": true, - "dependencies": { - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "dev": true - }, - "load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", - "dev": true - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "dev": true - }, - "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", - "dev": true - }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", - "dev": true - }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", - "dev": true - }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "dev": true - } - } - }, - "merge-source-map": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.0.4.tgz", - "integrity": "sha1-pd5GU42uhNQRTMXqArR3KmNGcB8=" - }, - "merge-stream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz", - "integrity": "sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE=", - "dev": true, - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true - } - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dependencies": { - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" - } - } - }, - "miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==" - }, - "mime": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", - "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==", - "dev": true - }, - "mime-db": { - "version": "1.35.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.35.0.tgz", - "integrity": "sha512-JWT/IcCTsB0Io3AhWUMjRqucrHSPsSf2xKLaRldJVULioggvkJvggZ3VXNNSRkCddE6D+BUI4HEIZIA2OjwIvg==" - }, - "mime-types": { - "version": "2.1.19", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.19.tgz", - "integrity": "sha512-P1tKYHVSZ6uFo26mtnve4HQFE3koh1UWVkp8YUC+ESBHe945xWSoXuHHiGarDqcEZ+whpCDnlNw5LON0kLo+sw==" - }, - "mimic-fn": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==" - }, - "min-document": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", - "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=" - }, - "minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" - }, - "minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" - }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==" - }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" - }, - "mixin-deep": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz", - "integrity": "sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==", - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==" - } - } - }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "dependencies": { - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" - } - } - }, - "mocha": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-4.1.0.tgz", - "integrity": "sha512-0RVnjg1HJsXY2YFDoTNzcc1NKhYuXKRrBAG2gDygmJJA136Cs2QlRliZG1mA0ap7cuaT30mw16luAeln+4RiNA==", - "dev": true, - "dependencies": { - "commander": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz", - "integrity": "sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==", - "dev": true - }, - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "dev": true - }, - "diff": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/diff/-/diff-3.3.1.tgz", - "integrity": "sha512-MKPHZDMB0o6yHyDryUOScqZibp914ksXwAMYMTHj6KO8UeKsRYNJD3oNCKjTqZon+V488P7N/HzXF8t7ZR95ww==", - "dev": true - }, - "growl": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.3.tgz", - "integrity": "sha512-hKlsbA5Vu3xsh1Cg3J7jSmX/WaW6A5oBeqzM88oNbCRQFz+zUaXm6yxS4RVytp1scBoJzSYl4YAEOQIt6O8V1Q==", - "dev": true - }, - "supports-color": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.4.0.tgz", - "integrity": "sha512-rKC3+DyXWgK0ZLKwmRsrkyHVZAjNkfzeehuFWdGGcqGDTZFH73+RH6S/RDAAxl9GusSjZSUWYLmT9N5pzXFOXQ==", - "dev": true - } - } - }, - "modernizr": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/modernizr/-/modernizr-3.0.0.tgz", - "integrity": "sha1-yPLbnrz5fmgkS3ZyaeVBQN+uxds=" - }, - "monotone-convex-hull-2d": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/monotone-convex-hull-2d/-/monotone-convex-hull-2d-1.0.1.tgz", - "integrity": "sha1-R/Xa6t88Sv03dkuqGqh4ekDu4Iw=" - }, - "mpd-parser": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/mpd-parser/-/mpd-parser-0.6.1.tgz", - "integrity": "sha512-3ucsY5NJMABltTLtYMSDfqZpvKV4yF8YvMx91hZFrHiblseuoKq4XUQ5IkcdtFAIRBAkPhXMU3/eunTFNCNsHw==" - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "multi-stage-sourcemap": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/multi-stage-sourcemap/-/multi-stage-sourcemap-0.2.1.tgz", - "integrity": "sha1-sJ/IWG6qF/gdV1xK0C4Pej9rEQU=", - "dependencies": { - "source-map": { - "version": "0.1.43", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", - "integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=" - } - } - }, - "multipipe": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz", - "integrity": "sha1-Ko8t33Du1WTf8tV/HhoTfZ8FB4s=" - }, - "mustache": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/mustache/-/mustache-2.2.1.tgz", - "integrity": "sha1-LEDKIcJ49TFQaCvPkJDkGjM5uHY=" - }, - "mute-stream": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", - "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=" - }, - "mux.js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/mux.js/-/mux.js-4.4.1.tgz", - "integrity": "sha512-KxeFqCXDWZS9ZflufC8PmPx8r3cAq+xWyPxYpgKiDmcImgwRyl/R0N5Eun4eWtxfJ98xZ7UdbBVKq0r06dFBOw==" - }, - "nan": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz", - "integrity": "sha512-bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA==" - }, - "nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "dependencies": { - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" - } - } - }, - "natives": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/natives/-/natives-1.1.4.tgz", - "integrity": "sha512-Q29yeg9aFKwhLVdkTAejM/HvYG0Y1Am1+HUkFQGn5k2j8GS+v60TVmZh6nujpEAj/qql+wGUrlryO8bF+b1jEg==", - "dev": true - }, - "negotiator": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", - "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=", - "dev": true - }, - "neo-async": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.5.2.tgz", - "integrity": "sha512-vdqTKI9GBIYcAEbFAcpKPErKINfPF5zIuz3/niBfq8WUZjpT2tytLlFVrBgWdOtqI4uaA/Rb6No0hux39XXDuw==" - }, - "next-tick": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", - "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" - }, - "node-emoji": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.8.1.tgz", - "integrity": "sha512-+ktMAh1Jwas+TnGodfCfjUbJKoANqPaJFN0z0iqh41eqD8dvguNzcitVSBSVK1pidz0AqGbLKcoVuVLRVZ/aVg==", - "optional": true - }, - "node-ensure": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/node-ensure/-/node-ensure-0.0.0.tgz", - "integrity": "sha1-7K52QVDemYYexcgQ/V0Jaxg5Mqc=" - }, - "node-gyp": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz", - "integrity": "sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==", - "dev": true, - "dependencies": { - "semver": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", - "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=", - "dev": true - } - } - }, - "node-libs-browser": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.1.0.tgz", - "integrity": "sha512-5AzFzdoIMb89hBGMZglEegffzgRg+ZFoUmisQ8HI4j1KDdpx13J0taNp2y9xPbur6W61gepGDDotGBVQ7mfUCg==", - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" - }, - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" - } - } - }, - "node-sass": { - "version": "4.9.3", - "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.9.3.tgz", - "integrity": "sha512-XzXyGjO+84wxyH7fV6IwBOTrEBe2f0a6SBze9QWWYR/cL74AcQUks2AsqcCZenl/Fp/JVbuEaLpgrLtocwBUww==", - "dev": true, - "dependencies": { - "cross-spawn": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-3.0.1.tgz", - "integrity": "sha1-ElYDfsufDF9549bvE14wdwGEuYI=", - "dev": true - }, - "gaze": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", - "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", - "dev": true - }, - "globule": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/globule/-/globule-1.2.1.tgz", - "integrity": "sha512-g7QtgWF4uYSL5/dn71WxubOrS7JVGCnFPEnoeChJmBnyR9Mw8nGoEwOgJL/RC2Te0WhbsEUCejfH8SZNJ+adYQ==", - "dev": true - }, - "har-validator": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz", - "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=", - "dev": true - }, - "lodash": { - "version": "4.17.10", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", - "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==", - "dev": true - }, - "lodash.assign": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", - "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=", - "dev": true - }, - "oauth-sign": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", - "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=", - "dev": true - }, - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", - "dev": true - }, - "request": { - "version": "2.87.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.87.0.tgz", - "integrity": "sha512-fcogkm7Az5bsS6Sl0sibkbhcKsnyon/jV1kF3ajGmF0c8HrttdKTPRT9hieOaQHA5HEq6r8OyWOo/o781C1tNw==", - "dev": true - }, - "tough-cookie": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz", - "integrity": "sha512-TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==", - "dev": true - } - } - }, - "nomnom": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/nomnom/-/nomnom-1.8.1.tgz", - "integrity": "sha1-IVH3Ikcrp55Qp2/BJbuMjy5Nwqc=", - "dependencies": { - "ansi-styles": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz", - "integrity": "sha1-yxAt8cVvUSPquLZ817mAJ6AnkXg=" - }, - "chalk": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz", - "integrity": "sha1-UZmj3c0MHv4jvAjBsCewYXbgxk8=" - }, - "strip-ansi": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz", - "integrity": "sha1-OeipjQRNFQZgq+SmgIrPcLt7yZE=" - }, - "underscore": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz", - "integrity": "sha1-izixDKze9jM3uLJOT/htRa6lKag=" - } - } - }, - "nopt": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", - "integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=", - "dev": true - }, - "normalize-css": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/normalize-css/-/normalize-css-2.3.1.tgz", - "integrity": "sha1-/APjuR46Uap6GDa657K2rG1R4VY=" - }, - "normalize-package-data": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", - "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==" - }, - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=" - }, - "normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", - "dev": true - }, - "nouislider": { - "version": "9.2.0", - "resolved": "https://registry.npmjs.org/nouislider/-/nouislider-9.2.0.tgz", - "integrity": "sha1-6HxQfeKwtNB1A4taQlR8fbvrr2k=" - }, - "npm": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/npm/-/npm-6.4.0.tgz", - "integrity": "sha512-k0VteQaxRuI1mREBxCtLUksesD2ZmX5gxjXNEjTmTrxQ3SHW22InkCKyX4NzoeGAYtgmDg5MuE7rcXYod7xgug==", - "dependencies": { - "abbrev": { - "version": "1.1.1", - "bundled": true - }, - "agent-base": { - "version": "4.2.0", - "bundled": true - }, - "agentkeepalive": { - "version": "3.4.1", - "bundled": true - }, - "ajv": { - "version": "5.5.2", - "bundled": true - }, - "ansi-align": { - "version": "2.0.0", - "bundled": true - }, - "ansi-regex": { - "version": "2.1.1", - "bundled": true - }, - "ansi-styles": { - "version": "3.2.1", - "bundled": true - }, - "ansicolors": { - "version": "0.3.2", - "bundled": true - }, - "ansistyles": { - "version": "0.1.3", - "bundled": true - }, - "aproba": { - "version": "1.2.0", - "bundled": true - }, - "archy": { - "version": "1.0.0", - "bundled": true - }, - "are-we-there-yet": { - "version": "1.1.4", - "bundled": true - }, - "asap": { - "version": "2.0.6", - "bundled": true - }, - "asn1": { - "version": "0.2.3", - "bundled": true - }, - "assert-plus": { - "version": "1.0.0", - "bundled": true - }, - "asynckit": { - "version": "0.4.0", - "bundled": true - }, - "aws-sign2": { - "version": "0.7.0", - "bundled": true - }, - "aws4": { - "version": "1.7.0", - "bundled": true - }, - "balanced-match": { - "version": "1.0.0", - "bundled": true - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "bin-links": { - "version": "1.1.2", - "bundled": true - }, - "block-stream": { - "version": "0.0.9", - "bundled": true - }, - "bluebird": { - "version": "3.5.1", - "bundled": true - }, - "boxen": { - "version": "1.3.0", - "bundled": true - }, - "brace-expansion": { - "version": "1.1.11", - "bundled": true - }, - "buffer-from": { - "version": "1.0.0", - "bundled": true - }, - "builtin-modules": { - "version": "1.1.1", - "bundled": true - }, - "builtins": { - "version": "1.0.3", - "bundled": true - }, - "byline": { - "version": "5.0.0", - "bundled": true - }, - "byte-size": { - "version": "4.0.3", - "bundled": true - }, - "cacache": { - "version": "11.1.0", - "bundled": true - }, - "call-limit": { - "version": "1.1.0", - "bundled": true - }, - "camelcase": { - "version": "4.1.0", - "bundled": true - }, - "capture-stack-trace": { - "version": "1.0.0", - "bundled": true - }, - "caseless": { - "version": "0.12.0", - "bundled": true - }, - "chalk": { - "version": "2.4.1", - "bundled": true - }, - "chownr": { - "version": "1.0.1", - "bundled": true - }, - "ci-info": { - "version": "1.1.3", - "bundled": true - }, - "cidr-regex": { - "version": "2.0.9", - "bundled": true - }, - "cli-boxes": { - "version": "1.0.0", - "bundled": true - }, - "cli-columns": { - "version": "3.1.2", - "bundled": true - }, - "cli-table3": { - "version": "0.5.0", - "bundled": true - }, - "cliui": { - "version": "4.1.0", - "bundled": true, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "bundled": true - }, - "strip-ansi": { - "version": "4.0.0", - "bundled": true - } - } - }, - "clone": { - "version": "1.0.4", - "bundled": true - }, - "cmd-shim": { - "version": "2.0.2", - "bundled": true - }, - "co": { - "version": "4.6.0", - "bundled": true - }, - "code-point-at": { - "version": "1.1.0", - "bundled": true - }, - "color-convert": { - "version": "1.9.1", - "bundled": true - }, - "color-name": { - "version": "1.1.3", - "bundled": true - }, - "colors": { - "version": "1.1.2", - "bundled": true, - "optional": true - }, - "columnify": { - "version": "1.5.4", - "bundled": true - }, - "combined-stream": { - "version": "1.0.6", - "bundled": true - }, - "concat-map": { - "version": "0.0.1", - "bundled": true - }, - "concat-stream": { - "version": "1.6.2", - "bundled": true - }, - "config-chain": { - "version": "1.1.11", - "bundled": true - }, - "configstore": { - "version": "3.1.2", - "bundled": true - }, - "console-control-strings": { - "version": "1.1.0", - "bundled": true - }, - "copy-concurrently": { - "version": "1.0.5", - "bundled": true, - "dependencies": { - "iferr": { - "version": "0.1.5", - "bundled": true - } - } - }, - "core-util-is": { - "version": "1.0.2", - "bundled": true - }, - "create-error-class": { - "version": "3.0.2", - "bundled": true - }, - "cross-spawn": { - "version": "5.1.0", - "bundled": true - }, - "crypto-random-string": { - "version": "1.0.0", - "bundled": true - }, - "cyclist": { - "version": "0.2.2", - "bundled": true - }, - "dashdash": { - "version": "1.14.1", - "bundled": true, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "bundled": true - } - } - }, - "debug": { - "version": "3.1.0", - "bundled": true, - "dependencies": { - "ms": { - "version": "2.0.0", - "bundled": true - } - } - }, - "debuglog": { - "version": "1.0.1", - "bundled": true - }, - "decamelize": { - "version": "1.2.0", - "bundled": true - }, - "decode-uri-component": { - "version": "0.2.0", - "bundled": true - }, - "deep-extend": { - "version": "0.5.1", - "bundled": true - }, - "defaults": { - "version": "1.0.3", - "bundled": true - }, - "delayed-stream": { - "version": "1.0.0", - "bundled": true - }, - "delegates": { - "version": "1.0.0", - "bundled": true - }, - "detect-indent": { - "version": "5.0.0", - "bundled": true - }, - "detect-newline": { - "version": "2.1.0", - "bundled": true - }, - "dezalgo": { - "version": "1.0.3", - "bundled": true - }, - "dot-prop": { - "version": "4.2.0", - "bundled": true - }, - "dotenv": { - "version": "5.0.1", - "bundled": true - }, - "duplexer3": { - "version": "0.1.4", - "bundled": true - }, - "duplexify": { - "version": "3.6.0", - "bundled": true - }, - "ecc-jsbn": { - "version": "0.1.1", - "bundled": true, - "optional": true - }, - "editor": { - "version": "1.0.0", - "bundled": true - }, - "encoding": { - "version": "0.1.12", - "bundled": true - }, - "end-of-stream": { - "version": "1.4.1", - "bundled": true - }, - "err-code": { - "version": "1.1.2", - "bundled": true - }, - "errno": { - "version": "0.1.7", - "bundled": true - }, - "es6-promise": { - "version": "4.2.4", - "bundled": true - }, - "es6-promisify": { - "version": "5.0.0", - "bundled": true - }, - "escape-string-regexp": { - "version": "1.0.5", - "bundled": true - }, - "execa": { - "version": "0.7.0", - "bundled": true - }, - "extend": { - "version": "3.0.1", - "bundled": true - }, - "extsprintf": { - "version": "1.3.0", - "bundled": true - }, - "fast-deep-equal": { - "version": "1.1.0", - "bundled": true - }, - "fast-json-stable-stringify": { - "version": "2.0.0", - "bundled": true - }, - "figgy-pudding": { - "version": "3.2.0", - "bundled": true - }, - "find-npm-prefix": { - "version": "1.0.2", - "bundled": true - }, - "find-up": { - "version": "2.1.0", - "bundled": true - }, - "flush-write-stream": { - "version": "1.0.3", - "bundled": true - }, - "forever-agent": { - "version": "0.6.1", - "bundled": true - }, - "form-data": { - "version": "2.3.2", - "bundled": true - }, - "from2": { - "version": "2.3.0", - "bundled": true - }, - "fs-minipass": { - "version": "1.2.5", - "bundled": true - }, - "fs-vacuum": { - "version": "1.2.10", - "bundled": true - }, - "fs-write-stream-atomic": { - "version": "1.0.10", - "bundled": true, - "dependencies": { - "iferr": { - "version": "0.1.5", - "bundled": true - } - } - }, - "fs.realpath": { - "version": "1.0.0", - "bundled": true - }, - "fstream": { - "version": "1.0.11", - "bundled": true - }, - "gauge": { - "version": "2.7.4", - "bundled": true, - "dependencies": { - "string-width": { - "version": "1.0.2", - "bundled": true - } - } - }, - "genfun": { - "version": "4.0.1", - "bundled": true - }, - "gentle-fs": { - "version": "2.0.1", - "bundled": true, - "dependencies": { - "iferr": { - "version": "0.1.5", - "bundled": true - } - } - }, - "get-caller-file": { - "version": "1.0.2", - "bundled": true - }, - "get-stream": { - "version": "3.0.0", - "bundled": true - }, - "getpass": { - "version": "0.1.7", - "bundled": true, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "bundled": true - } - } - }, - "glob": { - "version": "7.1.2", - "bundled": true - }, - "global-dirs": { - "version": "0.1.1", - "bundled": true - }, - "got": { - "version": "6.7.1", - "bundled": true - }, - "graceful-fs": { - "version": "4.1.11", - "bundled": true - }, - "har-schema": { - "version": "2.0.0", - "bundled": true - }, - "har-validator": { - "version": "5.0.3", - "bundled": true - }, - "has-flag": { - "version": "3.0.0", - "bundled": true - }, - "has-unicode": { - "version": "2.0.1", - "bundled": true - }, - "hosted-git-info": { - "version": "2.7.1", - "bundled": true - }, - "http-cache-semantics": { - "version": "3.8.1", - "bundled": true - }, - "http-proxy-agent": { - "version": "2.1.0", - "bundled": true - }, - "http-signature": { - "version": "1.2.0", - "bundled": true - }, - "https-proxy-agent": { - "version": "2.2.1", - "bundled": true - }, - "humanize-ms": { - "version": "1.2.1", - "bundled": true - }, - "iconv-lite": { - "version": "0.4.23", - "bundled": true - }, - "iferr": { - "version": "1.0.2", - "bundled": true - }, - "ignore-walk": { - "version": "3.0.1", - "bundled": true - }, - "import-lazy": { - "version": "2.1.0", - "bundled": true - }, - "imurmurhash": { - "version": "0.1.4", - "bundled": true - }, - "inflight": { - "version": "1.0.6", - "bundled": true - }, - "inherits": { - "version": "2.0.3", - "bundled": true - }, - "ini": { - "version": "1.3.5", - "bundled": true - }, - "init-package-json": { - "version": "1.10.3", - "bundled": true - }, - "invert-kv": { - "version": "1.0.0", - "bundled": true - }, - "ip": { - "version": "1.1.5", - "bundled": true - }, - "ip-regex": { - "version": "2.1.0", - "bundled": true - }, - "is-builtin-module": { - "version": "1.0.0", - "bundled": true - }, - "is-ci": { - "version": "1.1.0", - "bundled": true - }, - "is-cidr": { - "version": "2.0.6", - "bundled": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "bundled": true - }, - "is-installed-globally": { - "version": "0.1.0", - "bundled": true - }, - "is-npm": { - "version": "1.0.0", - "bundled": true - }, - "is-obj": { - "version": "1.0.1", - "bundled": true - }, - "is-path-inside": { - "version": "1.0.1", - "bundled": true - }, - "is-redirect": { - "version": "1.0.0", - "bundled": true - }, - "is-retry-allowed": { - "version": "1.1.0", - "bundled": true - }, - "is-stream": { - "version": "1.1.0", - "bundled": true - }, - "is-typedarray": { - "version": "1.0.0", - "bundled": true - }, - "isarray": { - "version": "1.0.0", - "bundled": true - }, - "isexe": { - "version": "2.0.0", - "bundled": true - }, - "isstream": { - "version": "0.1.2", - "bundled": true - }, - "jsbn": { - "version": "0.1.1", - "bundled": true, - "optional": true - }, - "json-parse-better-errors": { - "version": "1.0.2", - "bundled": true - }, - "json-schema": { - "version": "0.2.3", - "bundled": true - }, - "json-schema-traverse": { - "version": "0.3.1", - "bundled": true - }, - "json-stringify-safe": { - "version": "5.0.1", - "bundled": true - }, - "jsonparse": { - "version": "1.3.1", - "bundled": true - }, - "JSONStream": { - "version": "1.3.3", - "bundled": true - }, - "jsprim": { - "version": "1.4.1", - "bundled": true, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "bundled": true - } - } - }, - "latest-version": { - "version": "3.1.0", - "bundled": true - }, - "lazy-property": { - "version": "1.0.0", - "bundled": true - }, - "lcid": { - "version": "1.0.0", - "bundled": true - }, - "libcipm": { - "version": "2.0.1", - "bundled": true - }, - "libnpmhook": { - "version": "4.0.1", - "bundled": true, - "dependencies": { - "npm-registry-fetch": { - "version": "3.1.1", - "bundled": true - } - } - }, - "libnpx": { - "version": "10.2.0", - "bundled": true - }, - "locate-path": { - "version": "2.0.0", - "bundled": true - }, - "lock-verify": { - "version": "2.0.2", - "bundled": true - }, - "lockfile": { - "version": "1.0.4", - "bundled": true - }, - "lodash._baseindexof": { - "version": "3.1.0", - "bundled": true - }, - "lodash._baseuniq": { - "version": "4.6.0", - "bundled": true - }, - "lodash._bindcallback": { - "version": "3.0.1", - "bundled": true - }, - "lodash._cacheindexof": { - "version": "3.0.2", - "bundled": true - }, - "lodash._createcache": { - "version": "3.1.2", - "bundled": true - }, - "lodash._createset": { - "version": "4.0.3", - "bundled": true - }, - "lodash._getnative": { - "version": "3.9.1", - "bundled": true - }, - "lodash._root": { - "version": "3.0.1", - "bundled": true - }, - "lodash.clonedeep": { - "version": "4.5.0", - "bundled": true - }, - "lodash.restparam": { - "version": "3.6.1", - "bundled": true - }, - "lodash.union": { - "version": "4.6.0", - "bundled": true - }, - "lodash.uniq": { - "version": "4.5.0", - "bundled": true - }, - "lodash.without": { - "version": "4.4.0", - "bundled": true - }, - "lowercase-keys": { - "version": "1.0.1", - "bundled": true - }, - "lru-cache": { - "version": "4.1.3", - "bundled": true - }, - "make-dir": { - "version": "1.3.0", - "bundled": true - }, - "make-fetch-happen": { - "version": "4.0.1", - "bundled": true - }, - "meant": { - "version": "1.0.1", - "bundled": true - }, - "mem": { - "version": "1.1.0", - "bundled": true - }, - "mime-db": { - "version": "1.33.0", - "bundled": true - }, - "mime-types": { - "version": "2.1.18", - "bundled": true - }, - "mimic-fn": { - "version": "1.2.0", - "bundled": true - }, - "minimatch": { - "version": "3.0.4", - "bundled": true - }, - "minimist": { - "version": "0.0.8", - "bundled": true - }, - "minipass": { - "version": "2.3.3", - "bundled": true, - "dependencies": { - "yallist": { - "version": "3.0.2", - "bundled": true - } - } - }, - "minizlib": { - "version": "1.1.0", - "bundled": true - }, - "mississippi": { - "version": "3.0.0", - "bundled": true - }, - "mkdirp": { - "version": "0.5.1", - "bundled": true - }, - "move-concurrently": { - "version": "1.0.1", - "bundled": true - }, - "ms": { - "version": "2.1.1", - "bundled": true - }, - "mute-stream": { - "version": "0.0.7", - "bundled": true - }, - "node-fetch-npm": { - "version": "2.0.2", - "bundled": true - }, - "node-gyp": { - "version": "3.8.0", - "bundled": true, - "dependencies": { - "nopt": { - "version": "3.0.6", - "bundled": true - }, - "semver": { - "version": "5.3.0", - "bundled": true - }, - "tar": { - "version": "2.2.1", - "bundled": true - } - } - }, - "nopt": { - "version": "4.0.1", - "bundled": true - }, - "normalize-package-data": { - "version": "2.4.0", - "bundled": true - }, - "npm-audit-report": { - "version": "1.3.1", - "bundled": true - }, - "npm-bundled": { - "version": "1.0.3", - "bundled": true - }, - "npm-cache-filename": { - "version": "1.0.2", - "bundled": true - }, - "npm-install-checks": { - "version": "3.0.0", - "bundled": true - }, - "npm-lifecycle": { - "version": "2.0.3", - "bundled": true - }, - "npm-logical-tree": { - "version": "1.2.1", - "bundled": true - }, - "npm-package-arg": { - "version": "6.1.0", - "bundled": true - }, - "npm-packlist": { - "version": "1.1.10", - "bundled": true - }, - "npm-pick-manifest": { - "version": "2.1.0", - "bundled": true - }, - "npm-profile": { - "version": "3.0.2", - "bundled": true - }, - "npm-registry-client": { - "version": "8.5.1", - "bundled": true, - "dependencies": { - "retry": { - "version": "0.10.1", - "bundled": true - }, - "ssri": { - "version": "5.3.0", - "bundled": true - } - } - }, - "npm-registry-fetch": { - "version": "1.1.0", - "bundled": true, - "dependencies": { - "cacache": { - "version": "10.0.4", - "bundled": true, - "dependencies": { - "mississippi": { - "version": "2.0.0", - "bundled": true - } - } - }, - "figgy-pudding": { - "version": "2.0.1", - "bundled": true - }, - "make-fetch-happen": { - "version": "3.0.0", - "bundled": true - }, - "pump": { - "version": "2.0.1", - "bundled": true - }, - "smart-buffer": { - "version": "1.1.15", - "bundled": true - }, - "socks": { - "version": "1.1.10", - "bundled": true - }, - "socks-proxy-agent": { - "version": "3.0.1", - "bundled": true - }, - "ssri": { - "version": "5.3.0", - "bundled": true - } - } - }, - "npm-run-path": { - "version": "2.0.2", - "bundled": true - }, - "npm-user-validate": { - "version": "1.0.0", - "bundled": true - }, - "npmlog": { - "version": "4.1.2", - "bundled": true - }, - "number-is-nan": { - "version": "1.0.1", - "bundled": true - }, - "oauth-sign": { - "version": "0.8.2", - "bundled": true - }, - "object-assign": { - "version": "4.1.1", - "bundled": true - }, - "once": { - "version": "1.4.0", - "bundled": true - }, - "opener": { - "version": "1.4.3", - "bundled": true - }, - "os-homedir": { - "version": "1.0.2", - "bundled": true - }, - "os-locale": { - "version": "2.1.0", - "bundled": true - }, - "os-tmpdir": { - "version": "1.0.2", - "bundled": true - }, - "osenv": { - "version": "0.1.5", - "bundled": true - }, - "p-finally": { - "version": "1.0.0", - "bundled": true - }, - "p-limit": { - "version": "1.2.0", - "bundled": true - }, - "p-locate": { - "version": "2.0.0", - "bundled": true - }, - "p-try": { - "version": "1.0.0", - "bundled": true - }, - "package-json": { - "version": "4.0.1", - "bundled": true - }, - "pacote": { - "version": "8.1.6", - "bundled": true - }, - "parallel-transform": { - "version": "1.1.0", - "bundled": true - }, - "path-exists": { - "version": "3.0.0", - "bundled": true - }, - "path-is-absolute": { - "version": "1.0.1", - "bundled": true - }, - "path-is-inside": { - "version": "1.0.2", - "bundled": true - }, - "path-key": { - "version": "2.0.1", - "bundled": true - }, - "performance-now": { - "version": "2.1.0", - "bundled": true - }, - "pify": { - "version": "3.0.0", - "bundled": true - }, - "prepend-http": { - "version": "1.0.4", - "bundled": true - }, - "process-nextick-args": { - "version": "2.0.0", - "bundled": true - }, - "promise-inflight": { - "version": "1.0.1", - "bundled": true - }, - "promise-retry": { - "version": "1.1.1", - "bundled": true, - "dependencies": { - "retry": { - "version": "0.10.1", - "bundled": true - } - } - }, - "promzard": { - "version": "0.3.0", - "bundled": true - }, - "proto-list": { - "version": "1.2.4", - "bundled": true - }, - "protoduck": { - "version": "5.0.0", - "bundled": true - }, - "prr": { - "version": "1.0.1", - "bundled": true - }, - "pseudomap": { - "version": "1.0.2", - "bundled": true - }, - "pump": { - "version": "3.0.0", - "bundled": true - }, - "pumpify": { - "version": "1.5.1", - "bundled": true, - "dependencies": { - "pump": { - "version": "2.0.1", - "bundled": true - } - } - }, - "punycode": { - "version": "1.4.1", - "bundled": true - }, - "qrcode-terminal": { - "version": "0.12.0", - "bundled": true - }, - "qs": { - "version": "6.5.2", - "bundled": true - }, - "query-string": { - "version": "6.1.0", - "bundled": true - }, - "qw": { - "version": "1.0.1", - "bundled": true - }, - "rc": { - "version": "1.2.7", - "bundled": true, - "dependencies": { - "minimist": { - "version": "1.2.0", - "bundled": true - } - } - }, - "read": { - "version": "1.0.7", - "bundled": true - }, - "read-cmd-shim": { - "version": "1.0.1", - "bundled": true - }, - "read-installed": { - "version": "4.0.3", - "bundled": true - }, - "read-package-json": { - "version": "2.0.13", - "bundled": true - }, - "read-package-tree": { - "version": "5.2.1", - "bundled": true - }, - "readable-stream": { - "version": "2.3.6", - "bundled": true - }, - "readdir-scoped-modules": { - "version": "1.0.2", - "bundled": true - }, - "registry-auth-token": { - "version": "3.3.2", - "bundled": true - }, - "registry-url": { - "version": "3.1.0", - "bundled": true - }, - "request": { - "version": "2.87.0", - "bundled": true - }, - "require-directory": { - "version": "2.1.1", - "bundled": true - }, - "require-main-filename": { - "version": "1.0.1", - "bundled": true - }, - "resolve-from": { - "version": "4.0.0", - "bundled": true - }, - "retry": { - "version": "0.12.0", - "bundled": true - }, - "rimraf": { - "version": "2.6.2", - "bundled": true - }, - "run-queue": { - "version": "1.0.3", - "bundled": true - }, - "safe-buffer": { - "version": "5.1.2", - "bundled": true - }, - "safer-buffer": { - "version": "2.1.2", - "bundled": true - }, - "semver": { - "version": "5.5.0", - "bundled": true - }, - "semver-diff": { - "version": "2.1.0", - "bundled": true - }, - "set-blocking": { - "version": "2.0.0", - "bundled": true - }, - "sha": { - "version": "2.0.1", - "bundled": true - }, - "shebang-command": { - "version": "1.2.0", - "bundled": true - }, - "shebang-regex": { - "version": "1.0.0", - "bundled": true - }, - "signal-exit": { - "version": "3.0.2", - "bundled": true - }, - "slash": { - "version": "1.0.0", - "bundled": true - }, - "slide": { - "version": "1.1.6", - "bundled": true - }, - "smart-buffer": { - "version": "4.0.1", - "bundled": true - }, - "socks": { - "version": "2.2.0", - "bundled": true - }, - "socks-proxy-agent": { - "version": "4.0.1", - "bundled": true - }, - "sorted-object": { - "version": "2.0.1", - "bundled": true - }, - "sorted-union-stream": { - "version": "2.1.3", - "bundled": true, - "dependencies": { - "from2": { - "version": "1.3.0", - "bundled": true - }, - "isarray": { - "version": "0.0.1", - "bundled": true - }, - "readable-stream": { - "version": "1.1.14", - "bundled": true - }, - "string_decoder": { - "version": "0.10.31", - "bundled": true - } - } - }, - "spdx-correct": { - "version": "3.0.0", - "bundled": true - }, - "spdx-exceptions": { - "version": "2.1.0", - "bundled": true - }, - "spdx-expression-parse": { - "version": "3.0.0", - "bundled": true - }, - "spdx-license-ids": { - "version": "3.0.0", - "bundled": true - }, - "sshpk": { - "version": "1.14.2", - "bundled": true, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "bundled": true - } - } - }, - "ssri": { - "version": "6.0.0", - "bundled": true - }, - "stream-each": { - "version": "1.2.2", - "bundled": true - }, - "stream-iterate": { - "version": "1.2.0", - "bundled": true - }, - "stream-shift": { - "version": "1.0.0", - "bundled": true - }, - "strict-uri-encode": { - "version": "2.0.0", - "bundled": true - }, - "string_decoder": { - "version": "1.1.1", - "bundled": true - }, - "string-width": { - "version": "2.1.1", - "bundled": true, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "bundled": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "bundled": true - }, - "strip-ansi": { - "version": "4.0.0", - "bundled": true - } - } - }, - "stringify-package": { - "version": "1.0.0", - "bundled": true - }, - "strip-ansi": { - "version": "3.0.1", - "bundled": true - }, - "strip-eof": { - "version": "1.0.0", - "bundled": true - }, - "strip-json-comments": { - "version": "2.0.1", - "bundled": true - }, - "supports-color": { - "version": "5.4.0", - "bundled": true - }, - "tar": { - "version": "4.4.6", - "bundled": true, - "dependencies": { - "yallist": { - "version": "3.0.2", - "bundled": true - } - } - }, - "term-size": { - "version": "1.2.0", - "bundled": true - }, - "text-table": { - "version": "0.2.0", - "bundled": true - }, - "through": { - "version": "2.3.8", - "bundled": true - }, - "through2": { - "version": "2.0.3", - "bundled": true - }, - "timed-out": { - "version": "4.0.1", - "bundled": true - }, - "tiny-relative-date": { - "version": "1.3.0", - "bundled": true - }, - "tough-cookie": { - "version": "2.3.4", - "bundled": true - }, - "tunnel-agent": { - "version": "0.6.0", - "bundled": true - }, - "tweetnacl": { - "version": "0.14.5", - "bundled": true, - "optional": true - }, - "typedarray": { - "version": "0.0.6", - "bundled": true - }, - "uid-number": { - "version": "0.0.6", - "bundled": true - }, - "umask": { - "version": "1.1.0", - "bundled": true - }, - "unique-filename": { - "version": "1.1.0", - "bundled": true - }, - "unique-slug": { - "version": "2.0.0", - "bundled": true - }, - "unique-string": { - "version": "1.0.0", - "bundled": true - }, - "unpipe": { - "version": "1.0.0", - "bundled": true - }, - "unzip-response": { - "version": "2.0.1", - "bundled": true - }, - "update-notifier": { - "version": "2.5.0", - "bundled": true - }, - "url-parse-lax": { - "version": "1.0.0", - "bundled": true - }, - "util-deprecate": { - "version": "1.0.2", - "bundled": true - }, - "util-extend": { - "version": "1.0.3", - "bundled": true - }, - "uuid": { - "version": "3.3.2", - "bundled": true - }, - "validate-npm-package-license": { - "version": "3.0.4", - "bundled": true - }, - "validate-npm-package-name": { - "version": "3.0.0", - "bundled": true - }, - "verror": { - "version": "1.10.0", - "bundled": true, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "bundled": true - } - } - }, - "wcwidth": { - "version": "1.0.1", - "bundled": true - }, - "which": { - "version": "1.3.1", - "bundled": true - }, - "which-module": { - "version": "2.0.0", - "bundled": true - }, - "wide-align": { - "version": "1.1.2", - "bundled": true, - "dependencies": { - "string-width": { - "version": "1.0.2", - "bundled": true - } - } - }, - "widest-line": { - "version": "2.0.0", - "bundled": true - }, - "worker-farm": { - "version": "1.6.0", - "bundled": true - }, - "wrap-ansi": { - "version": "2.1.0", - "bundled": true, - "dependencies": { - "string-width": { - "version": "1.0.2", - "bundled": true - } - } - }, - "wrappy": { - "version": "1.0.2", - "bundled": true - }, - "write-file-atomic": { - "version": "2.3.0", - "bundled": true - }, - "xdg-basedir": { - "version": "3.0.0", - "bundled": true - }, - "xtend": { - "version": "4.0.1", - "bundled": true - }, - "y18n": { - "version": "4.0.0", - "bundled": true - }, - "yallist": { - "version": "2.1.2", - "bundled": true - }, - "yargs": { - "version": "11.0.0", - "bundled": true, - "dependencies": { - "y18n": { - "version": "3.2.1", - "bundled": true - } - } - }, - "yargs-parser": { - "version": "9.0.2", - "bundled": true - } - } - }, - "npm-modernizr": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/npm-modernizr/-/npm-modernizr-2.8.3.tgz", - "integrity": "sha1-9q4SES+q49Fz6n6KRf2oDnqII+0=" - }, - "npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=" - }, - "npmlog": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", - "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", - "dev": true - }, - "num2fraction": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", - "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", - "dev": true - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" - }, - "oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" - }, - "object-assign": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", - "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=" - }, - "object-component": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz", - "integrity": "sha1-8MaapQ78lbhmwYb0AKM3acsvEpE=", - "dev": true - }, - "object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=" - } - } - }, - "object-inspect": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.4.1.tgz", - "integrity": "sha512-wqdhLpfCUbEsoEwl3FXwGyv8ief1k/1aUdIPCqVnupM6e8l63BEJdiF/0swtn04/8p05tG/T0FrpTlfwvljOdw==" - }, - "object-keys": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.12.tgz", - "integrity": "sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag==" - }, - "object-path": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/object-path/-/object-path-0.11.4.tgz", - "integrity": "sha1-NwrnUvvzfePqcKhhwju6iRVpGUk=", - "optional": true - }, - "object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=" - }, - "object.assign": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", - "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==" - }, - "object.defaults": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", - "integrity": "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=", - "dev": true, - "dependencies": { - "for-own": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", - "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", - "dev": true - } - } - }, - "object.map": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", - "integrity": "sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=", - "dev": true, - "dependencies": { - "for-own": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", - "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", - "dev": true - } - } - }, - "object.omit": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", - "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=" - }, - "object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=" - }, - "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", - "dev": true - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=" - }, - "onetime": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", - "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", - "optional": true - }, - "openurl": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/openurl/-/openurl-1.1.1.tgz", - "integrity": "sha1-OHW0sO96UsFW8NtB1GCduw+Us4c=", - "dev": true - }, - "opn": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/opn/-/opn-4.0.2.tgz", - "integrity": "sha1-erwi5kTf9jsKltWrfyeQwPAavJU=", - "dev": true, - "dependencies": { - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true - } - } - }, - "optimist": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", - "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", - "dev": true, - "optional": true, - "dependencies": { - "minimist": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", - "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=", - "dev": true, - "optional": true - } - } - }, - "optionator": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", - "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", - "dependencies": { - "wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" - } - } - }, - "orchestrator": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/orchestrator/-/orchestrator-0.3.8.tgz", - "integrity": "sha1-FOfp4nZPcxX7rBhOUGx6pt+UrX4=", - "dev": true, - "dependencies": { - "end-of-stream": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-0.1.5.tgz", - "integrity": "sha1-jhdyBsPICDfYVjLouTWd/osvbq8=", - "dev": true - }, - "once": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", - "integrity": "sha1-suJhVXzkwxTsgwTz+oJmPkKXyiA=", - "dev": true - } - } - }, - "ordered-read-streams": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz", - "integrity": "sha1-/VZamvjrRHO6abbtijQ1LLVS8SY=", - "dev": true - }, - "os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" - }, - "os-homedir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" - }, - "os-locale": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz", - "integrity": "sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==" - }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" - }, - "osenv": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", - "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", - "dev": true - }, - "p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" - }, - "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==" - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=" - }, - "p-queue": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-1.2.0.tgz", - "integrity": "sha1-Y5y4sHJwwVtx16ZEao4wQU88ltE=" - }, - "p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" - }, - "package-json-versionify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/package-json-versionify/-/package-json-versionify-1.0.4.tgz", - "integrity": "sha1-WGBYepRIc6a35tJujlH/siMVvxc=" - }, - "pako": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.6.tgz", - "integrity": "sha512-lQe48YPsMJAig+yngZ87Lus+NF+3mtu7DVOBu6b/gHO1YpKwIj5AWjZ/TOS7i46HD/UixzWb1zeWDZfGZ3iYcg==" - }, - "parse-asn1": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz", - "integrity": "sha512-KPx7flKXg775zZpnp9SxJlz00gTd4BmJ2yJufSc44gMCRrRQ7NSzAcSJQfifuOLgW6bEi+ftrALtsgALeB2Adw==" - }, - "parse-filepath": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", - "integrity": "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=", - "dev": true - }, - "parse-glob": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", - "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", - "dependencies": { - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" - }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=" - } - } - }, - "parse-headers": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.1.tgz", - "integrity": "sha1-aug6eqJanZtwCswoaYzR8e1+lTY=" - }, - "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=" - }, - "parse-passwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", - "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", - "dev": true - }, - "parseqs": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz", - "integrity": "sha1-1SCKNzjkZ2bikbouoXNoSSGouJ0=", - "dev": true - }, - "parseuri": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/parseuri/-/parseuri-0.0.5.tgz", - "integrity": "sha1-gCBKUNTbt3m/3G6+J3jZDkvOMgo=", - "dev": true - }, - "parseurl": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", - "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=", - "dev": true - }, - "pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" - }, - "path": { - "version": "0.12.7", - "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", - "integrity": "sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8=", - "dev": true, - "dependencies": { - "process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", - "dev": true - } - } - }, - "path-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz", - "integrity": "sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo=" - }, - "path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" - }, - "path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", - "dev": true - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" - }, - "path-parse": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" - }, - "path-root": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", - "integrity": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=", - "dev": true - }, - "path-root-regex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", - "integrity": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=", - "dev": true - }, - "path-type": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", - "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=" - }, - "pbf": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pbf/-/pbf-3.1.0.tgz", - "integrity": "sha512-/hYJmIsTmh7fMkHAWWXJ5b8IKLWdjdlAFb3IHkRBn1XUhIYBChVGfVwmHEAV3UfXTxsP/AKfYTXTS/dCPxJd5w==" - }, - "pbkdf2": { - "version": "3.0.16", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.16.tgz", - "integrity": "sha512-y4CXP3thSxqf7c0qmOF+9UeOTrifiVTIM+u7NWlq+PRsHbr7r7dpCmvzrZxa96JJUNi0Y5w9VqG5ZNeCVMoDcA==" - }, - "pdfjs-dist": { - "version": "1.8.366", - "resolved": "https://registry.npmjs.org/pdfjs-dist/-/pdfjs-dist-1.8.366.tgz", - "integrity": "sha1-kLHZoUHEBCLx7bSNELk5eKdpDZA=" - }, - "peek-stream": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/peek-stream/-/peek-stream-1.1.3.tgz", - "integrity": "sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==", - "optional": true - }, - "pend": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=", - "dev": true - }, - "performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" - }, - "phantomjs-prebuilt": { - "version": "2.1.16", - "resolved": "https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.16.tgz", - "integrity": "sha1-79ISpKOWbTZHaE6ouniFSb4q7+8=", - "dev": true, - "dependencies": { - "fs-extra": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz", - "integrity": "sha1-zTzl9+fLYUWIP8rjGR6Yd/hYeVA=", - "dev": true - }, - "jsonfile": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", - "integrity": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=", - "dev": true - } - } - }, - "phraseanet-common": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/phraseanet-common/-/phraseanet-common-0.4.2.tgz", - "integrity": "sha512-uyKULVCV9df161A970mWnZtdxAb/ZWCuUdnSTn0T9AGvwsWvKf2p6+pgEVtBQ81LIGn1m5UlhiF7dUlc6nT7iQ==", - "dependencies": { - "jquery": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.3.1.tgz", - "integrity": "sha512-Ubldcmxp5np52/ENotGxlLe6aGMvmF4R8S6tZjsP6Knsaxd/xp3Zrh50cG93lR6nPXyUFwzN3ZSOQI0wRJNdGg==" - } - } - }, - "phraseanet-production-client": { - "version": "0.33.58", - "resolved": "https://registry.npmjs.org/phraseanet-production-client/-/phraseanet-production-client-0.33.58.tgz", - "integrity": "sha512-MOmDDpL4XAwA9THljC2GhH48aqXq1b/x4VkBCWY3N5K5VWI6zjqwn1f67Gl1lIPoR8J+EvQ1K4bPaRC1uRNErQ==", - "dependencies": { - "blueimp-canvas-to-blob": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/blueimp-canvas-to-blob/-/blueimp-canvas-to-blob-3.5.0.tgz", - "integrity": "sha1-VnmsMvaig1gh8MOtZhcZ/4WpI2s=", - "optional": true - }, - "blueimp-file-upload": { - "version": "9.22.0", - "resolved": "https://registry.npmjs.org/blueimp-file-upload/-/blueimp-file-upload-9.22.0.tgz", - "integrity": "sha512-zq7FarMdf21UaAIJZxSNUiHb899Dg3koMTpgC81y5k1MDJp9kNb9qOQuc7SQlNbLQ7zy/NRQgncz08u5AZkutA==", - "dependencies": { - "blueimp-load-image": { - "version": "2.12.2", - "resolved": "https://registry.npmjs.org/blueimp-load-image/-/blueimp-load-image-2.12.2.tgz", - "integrity": "sha1-ahdZiquFjU+/AVQ+BjEUG1EFfIc=", - "optional": true - } - } - }, - "blueimp-tmpl": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/blueimp-tmpl/-/blueimp-tmpl-3.6.0.tgz", - "integrity": "sha1-pJEJddBC4rwDunfw5i0E8VSKUkw=", - "optional": true - }, - "jquery": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.3.1.tgz", - "integrity": "sha512-Ubldcmxp5np52/ENotGxlLe6aGMvmF4R8S6tZjsP6Knsaxd/xp3Zrh50cG93lR6nPXyUFwzN3ZSOQI0wRJNdGg==" - }, - "jquery-treeview": { - "version": "git+https://github.com/alchemy-fr/jquery-treeview.git#1e9e5a49d2875b878801e904cd08c2d25e85af1e" - }, - "jquery-ui": { - "version": "1.10.5", - "resolved": "https://registry.npmjs.org/jquery-ui/-/jquery-ui-1.10.5.tgz", - "integrity": "sha1-gmrtPdH4jTKudddN9IZD3EMaWBU=" - }, - "jquery.fancytree": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/jquery.fancytree/-/jquery.fancytree-2.7.0.tgz", - "integrity": "sha1-VCrwAO2bcRghwpd3OjdhYqQCyPg=" - }, - "lodash.merge": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.1.tgz", - "integrity": "sha512-AOYza4+Hf5z1/0Hztxpm2/xiPZgi/cjMqdnKTUWTBSKchJlxXXuUSxCCl8rJlf4g6yww/j6mA8nC8Hw/EZWxKQ==" - }, - "video.js": { - "version": "6.12.1", - "resolved": "https://registry.npmjs.org/video.js/-/video.js-6.12.1.tgz", - "integrity": "sha512-Ld4umuJhaBLnHoU/vV7NM+sPVA3RnZuXvYAOvQWYL+Tze2S77B8MjUjY44mZ9nivnU1K1qtMepSxzlflgqdC3Q==" - }, - "videojs-font": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/videojs-font/-/videojs-font-2.1.0.tgz", - "integrity": "sha1-olkwpn9snPvyu4jay4xrRR8JM3k=" - }, - "videojs-ie8": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/videojs-ie8/-/videojs-ie8-1.1.2.tgz", - "integrity": "sha1-oj09hgitcZK2nGB3/E64SJmNNdk=" - }, - "xhr": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.4.0.tgz", - "integrity": "sha1-4W5mpF+GmGHu76tBbV7/ci3ECZM=" - } - } - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" - }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", - "dev": true - }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", - "dev": true - }, - "pkcs7": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pkcs7/-/pkcs7-1.0.2.tgz", - "integrity": "sha1-ttulJ1KMKUK/wSLOLa/NteWQdOc=" - }, - "plur": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/plur/-/plur-2.1.2.tgz", - "integrity": "sha1-dIJFLBoPUI4+NE6uwxLJHCncZVo=", - "dev": true - }, - "point-in-polygon": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/point-in-polygon/-/point-in-polygon-1.0.1.tgz", - "integrity": "sha1-1Ztk6P7kHElFiqyCtWcYxZV7Kvc=" - }, - "portscanner": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/portscanner/-/portscanner-2.1.1.tgz", - "integrity": "sha1-6rtAnk3iSVD1oqUW01rnaTQ/u5Y=", - "dev": true, - "dependencies": { - "async": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", - "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", - "dev": true - } - } - }, - "posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" - }, - "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", - "dev": true, - "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", - "dev": true - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "dev": true - } - } - }, - "postcss-value-parser": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz", - "integrity": "sha1-h/OPnxj3dKSrTIojL1xc6IcqnRU=", - "dev": true - }, - "prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" - }, - "preserve": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", - "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=" - }, - "pretty-hrtime": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", - "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=", - "dev": true - }, - "process": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/process/-/process-0.5.2.tgz", - "integrity": "sha1-FjjYqONML0QKkduVq5rrZ3/Bhc8=" - }, - "process-nextick-args": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" - }, - "progress": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz", - "integrity": "sha1-4mDHj2Fhzdmw5WzD4Khd4Xx6V74=", - "dev": true - }, - "proper-lockfile": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-2.0.1.tgz", - "integrity": "sha1-FZ+wYZPTIAP0s2kd0uwaY0qoDR0=", - "optional": true - }, - "protocol-buffers-schema": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.3.2.tgz", - "integrity": "sha512-Xdayp8sB/mU+sUV4G7ws8xtYMGdQnxbeIfLjyO9TZZRJdztBGhlmbI5x1qcY4TG5hBkIKGnc28i7nXxaugu88w==" - }, - "prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=" - }, - "pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" - }, - "psl": { - "version": "1.1.29", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.29.tgz", - "integrity": "sha512-AeUmQ0oLN02flVHXWh9sSJF7mcdFq0ppid/JkErufc3hGIV/AMa8Fo9VgDo/cT2jFdOWoFvHp90qqBH54W+gjQ==" - }, - "public-encrypt": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.2.tgz", - "integrity": "sha512-4kJ5Esocg8X3h8YgJsKAuoesBgB7mqH3eowiDzMUPKiRDDE7E/BqqZD1hnTByIaAFiwAw246YEltSq7tdrOH0Q==" - }, - "pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "optional": true - }, - "pumpify": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", - "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", - "optional": true - }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" - }, - "pym.js": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/pym.js/-/pym.js-1.3.2.tgz", - "integrity": "sha512-/fFzHFB4BTsJQP5id0wzUdYsDT4VPkfAxk+uENBE9/aP6YbvhAEpcuJHdjxqisqfXOCrcz7duTK1fbtF2rz8RQ==" - }, - "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" - }, - "querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" - }, - "querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=" - }, - "quickselect": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-1.1.1.tgz", - "integrity": "sha512-qN0Gqdw4c4KGPsBOQafj6yj/PA6c/L63f6CaZ/DCF/xF4Esu3jVmKLUDYxghFx8Kb/O7y9tI7x2RjTSXwdK1iQ==" - }, - "qunit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/qunit/-/qunit-1.0.0.tgz", - "integrity": "sha1-HT3Pv67IGXnLS9ruRUULteWRT4w=", - "dev": true, - "dependencies": { - "qunitjs": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/qunitjs/-/qunitjs-2.1.1.tgz", - "integrity": "sha1-wwh8hk2alEMQO9vezA7zWceoIoE=", - "dev": true - } - } - }, - "qunit-phantomjs-runner": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/qunit-phantomjs-runner/-/qunit-phantomjs-runner-2.3.1.tgz", - "integrity": "sha512-RLg51606zm6/HwZi29NciAMAqifyJE1oGg77tEuk05vEa7kuqEaI0Mkjw976Ynnq7GXurATnbFd+471c024tBQ==", - "dev": true - }, - "qunit-reporter-junit": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/qunit-reporter-junit/-/qunit-reporter-junit-1.1.1.tgz", - "integrity": "sha1-7rYiZFeJaZPnlaEZQPGK9q+lebQ=", - "dev": true - }, - "qunitjs": { - "version": "1.23.1", - "resolved": "https://registry.npmjs.org/qunitjs/-/qunitjs-1.23.1.tgz", - "integrity": "sha1-GXHPl6yb4Bpk0jFVCNLkjm/U5xk=", - "dev": true - }, - "quote-stream": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/quote-stream/-/quote-stream-1.0.2.tgz", - "integrity": "sha1-hJY/jJwmuULhU/7rU6rnRlK34LI=" - }, - "randomatic": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.0.tgz", - "integrity": "sha512-KnGPVE0lo2WoXxIZ7cPR8YBpiol4gsSuOwDSg410oHh80ZMp5EiypNqL2K4Z77vJn6lB5rap7IkAmcUlalcnBQ==", - "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" - } - } - }, - "randombytes": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.0.6.tgz", - "integrity": "sha512-CIQ5OFxf4Jou6uOKe9t1AOgqpeU5fd70A8NPdHSGeYXqXsPe6peOwI0cUl88RWZ6sP1vPMV3avd/R6cZ5/sP1A==" - }, - "randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==" - }, - "range-parser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", - "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=", - "dev": true - }, - "raw-body": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz", - "integrity": "sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==", - "dev": true, - "dependencies": { - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", - "dev": true - } - } - }, - "rbush": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/rbush/-/rbush-2.0.2.tgz", - "integrity": "sha512-XBOuALcTm+O/H8G90b6pzu6nX6v2zCKiFG4BJho8a+bY6AER6t8uQUZdi5bomQc0AprCWhEGa7ncAbbRap0bRA==" - }, - "read": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", - "integrity": "sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=", - "optional": true - }, - "read-pkg": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", - "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=" - }, - "read-pkg-up": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", - "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=" - }, - "readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=" - }, - "readdirp": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz", - "integrity": "sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg=", - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" - } - } - }, - "rechoir": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", - "dev": true - }, - "redent": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", - "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", - "dev": true - }, - "redeyed": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/redeyed/-/redeyed-0.4.4.tgz", - "integrity": "sha1-N+mQpvKyGyoRwuakj9QTVpjLqX8=", - "dependencies": { - "esprima": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz", - "integrity": "sha1-n1V+CPw7TSbs6d00+Pv0drYlha0=" - } - } - }, - "regenerator-runtime": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", - "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" - }, - "regex-cache": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz", - "integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==" - }, - "regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==" - }, - "remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" - }, - "repeat-element": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", - "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==" - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" - }, - "repeating": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", - "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", - "dev": true - }, - "replace-ext": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", - "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=" - }, - "request": { - "version": "2.88.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", - "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==" - }, - "request-capture-har": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/request-capture-har/-/request-capture-har-1.2.2.tgz", - "integrity": "sha1-zWks+yzHRP2EozWKrG7lFSjPcg0=", - "optional": true - }, - "request-progress": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-2.0.1.tgz", - "integrity": "sha1-XTa7V5YcZzqlt4jbyBQf3yO0Tgg=", - "dev": true - }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" - }, - "require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" - }, - "requirejs": { - "version": "2.3.5", - "resolved": "https://registry.npmjs.org/requirejs/-/requirejs-2.3.5.tgz", - "integrity": "sha512-svnO+aNcR/an9Dpi44C7KSAy5fFGLtmPbaaCeQaklUz8BQhS64tWWIIlvEA5jrWICzlO/X9KSzSeXFnZdBu8nw==" - }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", - "dev": true - }, - "resolve": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz", - "integrity": "sha512-AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==" - }, - "resolve-dir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", - "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", - "dev": true - }, - "resolve-protobuf-schema": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/resolve-protobuf-schema/-/resolve-protobuf-schema-2.1.0.tgz", - "integrity": "sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==" - }, - "resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" - }, - "resp-modifier": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/resp-modifier/-/resp-modifier-6.0.2.tgz", - "integrity": "sha1-sSTeXE+6/LpUH0j/pzlw9KpFa08=", - "dev": true - }, - "rest": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/rest/-/rest-2.0.0.tgz", - "integrity": "sha1-bfrfZqQFxJz71bS9JbWf0pzYYbw=" - }, - "restore-cursor": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", - "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", - "optional": true - }, - "ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" - }, - "retry": { - "version": "0.10.1", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.10.1.tgz", - "integrity": "sha1-52OI0heZLCUnUCQdPTlW/tmNj/Q=", - "optional": true - }, - "right-align": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", - "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=" - }, - "rimraf": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", - "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==" - }, - "ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==" - }, - "robust-orientation": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/robust-orientation/-/robust-orientation-1.1.3.tgz", - "integrity": "sha1-2v9bANO+TmByLw6cAVbvln8cIEk=" - }, - "robust-scale": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/robust-scale/-/robust-scale-1.0.2.tgz", - "integrity": "sha1-d1Ey7QlULQKOWLLMecBikLz3jDI=" - }, - "robust-subtract": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/robust-subtract/-/robust-subtract-1.0.0.tgz", - "integrity": "sha1-4LFk4e2LpOOl3aRaEgODSNvtPpo=" - }, - "robust-sum": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/robust-sum/-/robust-sum-1.0.0.tgz", - "integrity": "sha1-FmRuUlKStNJdgnV6KGlV4Lv6U9k=" - }, - "run-async": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", - "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=", - "optional": true - }, - "rust-result": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/rust-result/-/rust-result-1.0.0.tgz", - "integrity": "sha1-NMdbLm3Dn+WHXlveyFteD5FTb3I=" - }, - "rw": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", - "integrity": "sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q=" - }, - "rx": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz", - "integrity": "sha1-pfE/957zt0D+MKqAP7CfmIBdR4I=" - }, - "rx-lite": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz", - "integrity": "sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ=" - }, - "rx-lite-aggregates": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz", - "integrity": "sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74=", - "optional": true - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "safe-json-parse": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/safe-json-parse/-/safe-json-parse-4.0.0.tgz", - "integrity": "sha1-fA9XjPzNEtM6ccDgVBPi7KFx6qw=" - }, - "safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=" - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "samsam": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/samsam/-/samsam-1.1.2.tgz", - "integrity": "sha1-vsEf3IOp/aBjQBIQ5AF2wwJNFWc=", - "dev": true - }, - "sanitize-caja": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/sanitize-caja/-/sanitize-caja-0.1.3.tgz", - "integrity": "sha1-zvvXyw6Qe+p06KvLjoZ1PsVEVXY=" - }, - "sass-graph": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.4.tgz", - "integrity": "sha1-E/vWPNHK8JCLn9k0dq1DpR0eC0k=", - "dev": true, - "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", - "dev": true - }, - "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", - "dev": true - }, - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "dev": true - }, - "load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", - "dev": true - }, - "lodash": { - "version": "4.17.10", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", - "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==", - "dev": true - }, - "os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", - "dev": true - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "dev": true - }, - "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", - "dev": true - }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", - "dev": true - }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", - "dev": true - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "dev": true - }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "dev": true - }, - "which-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=", - "dev": true - }, - "yargs": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz", - "integrity": "sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg=", - "dev": true - }, - "yargs-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz", - "integrity": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=", - "dev": true - } - } - }, - "schema-utils": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.3.0.tgz", - "integrity": "sha1-9YdyIs4+kx7a4DnxfrNxbnE3+M8=" - }, - "screenfull": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/screenfull/-/screenfull-2.0.0.tgz", - "integrity": "sha1-oAspqT4GsaxXYO2mQsoJLVUYFP4=" - }, - "scss-tokenizer": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz", - "integrity": "sha1-jrBtualyMzOCTT9VMGQRSYR85dE=", - "dev": true, - "dependencies": { - "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", - "dev": true - } - } - }, - "seedrandom": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/seedrandom/-/seedrandom-2.4.4.tgz", - "integrity": "sha512-9A+PDmgm+2du77B5i0Ip2cxOqqHjgNxnBgglxLcX78A2D6c2rTo61z4jnVABpF4cKeDMDG+cmXXvdnqse2VqMA==" - }, - "semver": { - "version": "5.5.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.1.tgz", - "integrity": "sha512-PqpAxfrEhlSUWge8dwIp4tZnQ25DIOthpiaHNIthsjEFQD6EvqUKUDM7L8O2rShkFccYo1VjJR0coWfNkCubRw==" - }, - "send": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", - "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==", - "dev": true, - "dependencies": { - "statuses": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", - "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==", - "dev": true - } - } - }, - "sequencify": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/sequencify/-/sequencify-0.0.7.tgz", - "integrity": "sha1-kM/xnQLgcCf9dn9erT57ldHnOAw=", - "dev": true - }, - "serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", - "dev": true - }, - "serve-static": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", - "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==", - "dev": true - }, - "server-destroy": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz", - "integrity": "sha1-8Tv5KOQrnD55OD5hzDmYtdFObN0=", - "dev": true - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" - }, - "set-immediate-shim": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", - "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=" - }, - "set-value": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz", - "integrity": "sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==", - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=" - } - } - }, - "setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" - }, - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true - }, - "sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==" - }, - "shallow-copy": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/shallow-copy/-/shallow-copy-0.0.1.tgz", - "integrity": "sha1-QV9CcC1z2BAzApLMXuhurhoRoXA=" - }, - "sharkdown": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/sharkdown/-/sharkdown-0.1.0.tgz", - "integrity": "sha1-YdT+Up510CRCEnzJI0NiJlCZIU8=", - "dependencies": { - "minimist": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.5.tgz", - "integrity": "sha1-16oye87PUY+RBqxrjwA/o7zqhWY=" - } - } - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=" - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" - }, - "shuffle-seed": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/shuffle-seed/-/shuffle-seed-1.1.6.tgz", - "integrity": "sha1-UzwSaDurO0+j6HUfxOViFGdEJgs=" - }, - "sigmund": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", - "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=", - "dev": true - }, - "signal-exit": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" - }, - "sinon": { - "version": "1.17.7", - "resolved": "https://registry.npmjs.org/sinon/-/sinon-1.17.7.tgz", - "integrity": "sha1-RUKk9JugxFwF6y6d2dID4rjv4L8=", - "dev": true - }, - "sinon-chai": { - "version": "2.14.0", - "resolved": "https://registry.npmjs.org/sinon-chai/-/sinon-chai-2.14.0.tgz", - "integrity": "sha512-9stIF1utB0ywNHNT7RgiXbdmen8QDCRsrTjw+G9TgKt1Yexjiv8TOWZ6WHsTPz57Yky3DIswZvEqX8fpuHNDtQ==", - "dev": true - }, - "skmeans": { - "version": "0.9.7", - "resolved": "https://registry.npmjs.org/skmeans/-/skmeans-0.9.7.tgz", - "integrity": "sha512-hNj1/oZ7ygsfmPZ7ZfN5MUBRoGg1gtpnImuJBgLO0ljQ67DtJuiQaiYdS4lUA6s0KCwnPhGivtC/WRwIZLkHyg==" - }, - "slash": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", - "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", - "dev": true - }, - "snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=" - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=" - } - } - }, - "snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=" - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==" - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==" - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==" - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" - } - } - }, - "snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==" - }, - "socket.io": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz", - "integrity": "sha512-rORqq9c+7W0DAK3cleWNSyfv/qKXV99hV4tZe+gGLfBECw3XEhBy7x85F3wypA9688LKjtwO9pX9L33/xQI8yA==", - "dev": true, - "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "dev": true - }, - "engine.io-client": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.2.1.tgz", - "integrity": "sha512-y5AbkytWeM4jQr7m/koQLc5AxpRKC1hEVUb/s1FUAWEJq5AzJJ4NLvzuKPuxtDi5Mq755WuDvZ6Iv2rXj4PTzw==", - "dev": true - }, - "isarray": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz", - "integrity": "sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=", - "dev": true - }, - "socket.io-client": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.1.1.tgz", - "integrity": "sha512-jxnFyhAuFxYfjqIgduQlhzqTcOEQSn+OHKVfAxWaNWa7ecP7xSNk2Dx/3UEsDcY7NcFafxvNvKPmmO7HTwTxGQ==", - "dev": true - }, - "socket.io-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.2.0.tgz", - "integrity": "sha512-FYiBx7rc/KORMJlgsXysflWx/RIvtqZbyGLlHZvjfmPTPeuD/I8MaW7cfFrj5tRltICJdgwflhfZ3NVVbVLFQA==", - "dev": true - } - } - }, - "socket.io-adapter": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-1.1.1.tgz", - "integrity": "sha1-KoBeihTWNyEk3ZFZrUUC+MsH8Gs=", - "dev": true - }, - "socket.io-client": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.0.4.tgz", - "integrity": "sha1-CRilUkBtxeVAs4Dc2Xr8SmQzL44=", - "dev": true - }, - "socket.io-parser": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.1.3.tgz", - "integrity": "sha512-g0a2HPqLguqAczs3dMECuA1RgoGFPyvDqcbaDEdCWY9g59kdUAz3YRmaJBNKXflrHNwB7Q12Gkf/0CZXfdHR7g==", - "dev": true, - "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "dev": true - }, - "isarray": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz", - "integrity": "sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=", - "dev": true - } - } - }, - "sort-asc": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/sort-asc/-/sort-asc-0.1.0.tgz", - "integrity": "sha1-q3md9h/HPqCVbHnEtTHtHp53J+k=" - }, - "sort-desc": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/sort-desc/-/sort-desc-0.1.1.tgz", - "integrity": "sha1-GYuMDN6wlcRjNBhh45JdTuNZqe4=" - }, - "sort-object": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/sort-object/-/sort-object-0.3.2.tgz", - "integrity": "sha1-mODRme3kDgfGGoRAPGHWw7KQ+eI=" - }, - "source-list-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.0.tgz", - "integrity": "sha512-I2UmuJSRr/T8jisiROLU3A3ltr+swpniSmNPI4Ml3ZCX6tVnDsuZzK7F2hl5jTqbZBWCEKlj5HRQiPExXLgE8A==" - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "source-map-resolve": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", - "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==" - }, - "source-map-url": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", - "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=" - }, - "sparkles": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz", - "integrity": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==" - }, - "spdx-correct": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.0.tgz", - "integrity": "sha512-N19o9z5cEyc8yQQPukRCZ9EUmb4HUpnrmaL/fxS2pBo2jbfcFRVuFZ/oFC+vZz0MNNk0h80iMn5/S6qGZOL5+g==" - }, - "spdx-exceptions": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz", - "integrity": "sha512-4K1NsmrlCU1JJgUrtgEeTVyfx8VaYea9J9LvARxhbHtVtohPs/gFGG5yy49beySjlIMhhXZ4QqujIZEfS4l6Cg==" - }, - "spdx-expression-parse": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", - "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==" - }, - "spdx-license-ids": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz", - "integrity": "sha512-2+EPwgbnmOIl8HjGBXXMd9NAu02vLjOO1nWw4kmeRDFyHn+M/ETfHxQUK0oXg8ctgVnl9t3rosNVsZ1jG61nDA==" - }, - "split": { - "version": "0.2.10", - "resolved": "https://registry.npmjs.org/split/-/split-0.2.10.tgz", - "integrity": "sha1-Zwl8YB1pfOE2j0GPBs0gHPBSGlc=" - }, - "split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==" - }, - "sprintf-js": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.1.tgz", - "integrity": "sha1-Nr54Mgr+WAH2zqPueLblqrlA6gw=" - }, - "squirejs": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/squirejs/-/squirejs-0.2.1.tgz", - "integrity": "sha1-ClKxPe2KEq20NgThM/0p5OAnxmc=", - "dev": true - }, - "sshpk": { - "version": "1.14.2", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.14.2.tgz", - "integrity": "sha1-xvxhZIo9nE52T9P8306hBeSSupg=" - }, - "static-eval": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.0.0.tgz", - "integrity": "sha512-6flshd3F1Gwm+Ksxq463LtFd1liC77N/PX1FVVc3OzL3hAmo2fwHFbuArkcfi7s9rTNsLEhcRmXGFZhlgy40uw==" - }, - "static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=" - } - } - }, - "static-module": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/static-module/-/static-module-2.2.5.tgz", - "integrity": "sha512-D8vv82E/Kpmz3TXHKG8PPsCPg+RAX6cbCOyvjM6x04qZtQ47EtJFVwRsdov3n5d6/6ynrOY9XB4JkaZwB2xoRQ==", - "dependencies": { - "duplexer2": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", - "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=" - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" - } - } - }, - "statuses": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", - "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=", - "dev": true - }, - "stdout-stream": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.0.tgz", - "integrity": "sha1-osfIWH5U2UJ+qe2zrD8s1SLfN4s=", - "dev": true, - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true - } - } - }, - "stream-browserify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz", - "integrity": "sha1-ZiZu5fm9uZQKTkUUyvtDu3Hlyds=", - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" - } - } - }, - "stream-combiner2": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", - "integrity": "sha1-+02KFCDqNidk4hrUeAOXvry0HL4=", - "dev": true, - "dependencies": { - "duplexer2": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", - "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", - "dev": true - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true - } - } - }, - "stream-consume": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/stream-consume/-/stream-consume-0.1.1.tgz", - "integrity": "sha512-tNa3hzgkjEP7XbCkbRXe1jpg+ievoa0O4SCFlMOYEscGSS4JJsckGL8swUyAa/ApGU3Ae4t6Honor4HhL+tRyg==", - "dev": true - }, - "stream-http": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", - "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" - } - } - }, - "stream-shift": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz", - "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=" - }, - "stream-spigot": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/stream-spigot/-/stream-spigot-2.1.2.tgz", - "integrity": "sha1-feFF6Bn43Q20UJDRPc9zqO08wDU=" - }, - "stream-throttle": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/stream-throttle/-/stream-throttle-0.1.3.tgz", - "integrity": "sha1-rdV8jXzHOoFjDTHNVdOWHPr7qcM=", - "dev": true - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=" - } - } - }, - "stringify-object": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-2.4.0.tgz", - "integrity": "sha1-xi0RAj6yH+LZsIe+A5om3zsioJ0=", - "dev": true - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=" - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" - }, - "strip-bom-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-2.0.0.tgz", - "integrity": "sha1-+H217yYT9paKpUWr/h7HKLaoKco=", - "dev": true, - "dependencies": { - "first-chunk-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-2.0.0.tgz", - "integrity": "sha1-G97NuOCDwGZLkZRVgVd6Q6nzHXA=", - "dev": true - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true - }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "dev": true - } - } - }, - "strip-bom-string": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz", - "integrity": "sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI=" - }, - "strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" - }, - "strip-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", - "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", - "dev": true - }, - "supercluster": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/supercluster/-/supercluster-2.3.0.tgz", - "integrity": "sha1-h6tWCBu+qaHXJN9TUe6ejDry9Is=" - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - }, - "swfobject": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/swfobject/-/swfobject-2.2.1.tgz", - "integrity": "sha1-5VRR1d3lllczXIawFzLGGpIyk+I=" - }, - "tapable": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-0.2.8.tgz", - "integrity": "sha1-mTcqXJmb8t8WCvwNdL7U9HlIzSI=" - }, - "tar": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz", - "integrity": "sha1-jk0qJWwOIYXGsYrWlK7JaLg8sdE=", - "dev": true - }, - "tar-fs": { - "version": "1.16.3", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-1.16.3.tgz", - "integrity": "sha512-NvCeXpYx7OsmOh8zIOP/ebG55zZmxLE0etfWRbWok+q2Qo8x/vOR/IJT1taADXPe+jsiu9axDb3X4B+iIgNlKw==", - "optional": true, - "dependencies": { - "pump": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/pump/-/pump-1.0.3.tgz", - "integrity": "sha512-8k0JupWme55+9tCVE+FS5ULT3K6AbgqrGa58lTT49RpyfwwcGedHqaC5LlQNdEAumn/wFsu6aPwkuPMioy8kqw==", - "optional": true - } - } - }, - "tar-stream": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.1.tgz", - "integrity": "sha512-IFLM5wp3QrJODQFPm6/to3LJZrONdBY/otxcvDIQzu217zKye6yVR3hhi9lAjrC2Z+m/j5oDxMPb1qcd8cIvpA==", - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" - } - } - }, - "temp-write": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/temp-write/-/temp-write-0.1.1.tgz", - "integrity": "sha1-C2Rng43Xf79/YqDJPah5cy/9qTI=", - "dev": true, - "dependencies": { - "graceful-fs": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz", - "integrity": "sha1-fNLNsiiko/Nule+mzBQt59GhNtA=", - "dev": true - } - } - }, - "tempfile": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-0.1.3.tgz", - "integrity": "sha1-fWtxAEcznTn4RzJ6BW2t8YMQMBA=", - "dev": true, - "dependencies": { - "uuid": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-1.4.2.tgz", - "integrity": "sha1-RTAZ9oaWam34PNxSROfJkOzDMvw=", - "dev": true - } - } - }, - "ternary-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/ternary-stream/-/ternary-stream-2.0.1.tgz", - "integrity": "sha1-Bk5Im0tb9gumpre8fy9cJ07Pgmk=", - "dev": true - }, - "tfunk": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/tfunk/-/tfunk-3.1.0.tgz", - "integrity": "sha1-OORBT8ZJd9h6/apy+sttKfgve1s=", - "dev": true, - "dependencies": { - "object-path": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/object-path/-/object-path-0.9.2.tgz", - "integrity": "sha1-D9mnT8X60a45aLWGvaXGMr1sBaU=", - "dev": true - } - } - }, - "throttleit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz", - "integrity": "sha1-nnhYNtr0Z0MUWlmEtiaNgoUorGw=", - "dev": true - }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" - }, - "through2": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", - "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" - } - } - }, - "tildify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/tildify/-/tildify-1.2.0.tgz", - "integrity": "sha1-3OwD9V3Km3qj5bBPIYF+tW5jWIo=", - "dev": true - }, - "time-stamp": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", - "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=" - }, - "timers-browserify": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz", - "integrity": "sha512-YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg==" - }, - "tinymce": { - "version": "4.8.2", - "resolved": "https://registry.npmjs.org/tinymce/-/tinymce-4.8.2.tgz", - "integrity": "sha512-ssq/cGcK8ELG+a96H2mqH6QvsmTSlQk9wj+OYxLIOxsDnWfu90T1TGIachwcQnXsD5FeNFz5X7K860CP9JQCtQ==" - }, - "tinyqueue": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/tinyqueue/-/tinyqueue-1.2.3.tgz", - "integrity": "sha512-Qz9RgWuO9l8lT+Y9xvbzhPT2efIUIFd69N7eF7tJ9lnQl0iLj1M7peK7IoUGZL9DJHw9XftqLreccfxcQgYLxA==" - }, - "tmp": { - "version": "0.0.23", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.23.tgz", - "integrity": "sha1-3odKpel0qF8KMs39vXRmPLO9nHQ=", - "dev": true - }, - "to-array": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/to-array/-/to-array-0.1.4.tgz", - "integrity": "sha1-F+bBH3PdTz10zaek/zI46a2b+JA=", - "dev": true - }, - "to-arraybuffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" - }, - "to-buffer": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", - "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==" - }, - "to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=" - }, - "to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==" - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=" - }, - "topojson-client": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.0.0.tgz", - "integrity": "sha1-H5kpOnfvQqRI0DKoGqmCtz82DS8=" - }, - "topojson-server": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/topojson-server/-/topojson-server-3.0.0.tgz", - "integrity": "sha1-N4546Hw5cqe1vixdYENptrrmnF4=" - }, - "tough-cookie": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", - "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", - "dependencies": { - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" - } - } - }, - "tracejs": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/tracejs/-/tracejs-0.1.8.tgz", - "integrity": "sha1-bCZ4exhT8TcWNGIsHIC8RAJsXXA=", - "dev": true - }, - "trim": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", - "integrity": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=" - }, - "trim-newlines": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", - "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", - "dev": true - }, - "true-case-path": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.2.tgz", - "integrity": "sha1-fskRMJJHZsf1c74wIMNPj9/QDWI=", - "dev": true, - "dependencies": { - "glob": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", - "integrity": "sha1-DwiGD2oVUSey+t1PnOJLGqtuTSI=", - "dev": true - } - } - }, - "tsml": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tsml/-/tsml-1.0.1.tgz", - "integrity": "sha1-ifghi52eJX9H1/a1bQHFpNLGj8M=" - }, - "tty-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" - }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=" - }, - "turf-jsts": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/turf-jsts/-/turf-jsts-1.2.3.tgz", - "integrity": "sha512-Ja03QIJlPuHt4IQ2FfGex4F4JAr8m3jpaHbFbQrgwr7s7L6U8ocrHiF3J1+wf9jzhGKxvDeaCAnGDot8OjGFyA==" - }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", - "optional": true - }, - "two-product": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/two-product/-/two-product-1.0.2.tgz", - "integrity": "sha1-Z9ldSyV6kh4stL16+VEfkIhSLqo=" - }, - "two-sum": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/two-sum/-/two-sum-1.0.0.tgz", - "integrity": "sha1-MdPzIjnk9zHsqd+RVeKyl/AIq2Q=" - }, - "type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=" - }, - "type-detect": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-0.1.1.tgz", - "integrity": "sha1-C6XsKohWQORw6k6FBZcZANrFiCI=", - "dev": true - }, - "typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" - }, - "ua-parser-js": { - "version": "0.7.17", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.17.tgz", - "integrity": "sha512-uRdSdu1oA1rncCQL7sCj8vSyZkgtL7faaw9Tc9rZ3mGgraQ7+Pdx7w5mnOSF3gw9ZNG6oc+KXfkon3bKuROm0g==", - "dev": true - }, - "uglify-js": { - "version": "2.8.29", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", - "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", - "dependencies": { - "yargs": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", - "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=" - } - } - }, - "uglify-save-license": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/uglify-save-license/-/uglify-save-license-0.4.1.tgz", - "integrity": "sha1-lXJsF8xv0XHDYX479NjYKqjEzOE=", - "dev": true - }, - "uglify-to-browserify": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", - "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=" - }, - "uglifyjs-webpack-plugin": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz", - "integrity": "sha1-uVH0q7a9YX5m9j64kUmOORdj4wk=" - }, - "ultron": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz", - "integrity": "sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==", - "dev": true - }, - "unassert": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/unassert/-/unassert-1.5.1.tgz", - "integrity": "sha1-y8iOw4dBfFpeTALTzQe+mL11/3Y=", - "dependencies": { - "acorn": { - "version": "4.0.13", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz", - "integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=" - }, - "esutils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", - "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=" - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - } - } - }, - "unassertify": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/unassertify/-/unassertify-2.1.1.tgz", - "integrity": "sha512-YIAaIlc6/KC9Oib8cVZLlpDDhK1UTEuaDyx9BwD97xqxDZC0cJOqwFcs/Y6K3m73B5VzHsRTBLXNO0dxS/GkTw==" - }, - "unc-path-regex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", - "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=", - "dev": true - }, - "underscore": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.9.1.tgz", - "integrity": "sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg==" - }, - "unflowify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/unflowify/-/unflowify-1.0.1.tgz", - "integrity": "sha1-ouoNJcCv/MRpVeZHNXX3xaH0ppY=" - }, - "union-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz", - "integrity": "sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ=", - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=" - }, - "set-value": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz", - "integrity": "sha1-fbCPnT0i3H945Trzw79GZuzfzPE=" - } - } - }, - "unique-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-1.0.0.tgz", - "integrity": "sha1-1ZpKdUJ0R9mqbJHnAmP40mpLEEs=", - "dev": true - }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "dev": true - }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", - "dev": true - }, - "unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", - "dependencies": { - "has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", - "dependencies": { - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=" - } - } - }, - "has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - } - } - }, - "upath": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.0.tgz", - "integrity": "sha512-bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw==" - }, - "uri-js": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", - "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==" - }, - "urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" - }, - "url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", - "dependencies": { - "punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" - } - } - }, - "url-toolkit": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/url-toolkit/-/url-toolkit-2.1.4.tgz", - "integrity": "sha512-jAzm/85zNFfkW5Do/37GeGC7uGXBMMawToVdcf5SIpc+x9TmZDrRIUuLRPcvDMfqtt3m8VmDrYhCWh4UbsQLyg==" - }, - "use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" - }, - "user-home": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz", - "integrity": "sha1-K1viOjK2Onyd640PKNSFcko98ZA=", - "dev": true - }, - "util": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", - "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==" - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - }, - "utilities": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/utilities/-/utilities-1.0.5.tgz", - "integrity": "sha1-8rd6iPNRBzP8chW1xIalBKdaskU=", - "dev": true - }, - "utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", - "dev": true - }, - "uuid": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", - "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==" - }, - "v8-compile-cache": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-1.1.2.tgz", - "integrity": "sha512-ejdrifsIydN1XDH7EuR2hn8ZrkRKUYF7tUcBjBy/lhrCvs2K+zRlbW9UHc0IQ9RsYFZJFqJrieoIHfkCa0DBRA==", - "optional": true - }, - "v8flags": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-2.1.1.tgz", - "integrity": "sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ=", - "dev": true - }, - "validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==" - }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=" - }, - "video.js": { - "version": "5.5.3", - "resolved": "https://registry.npmjs.org/video.js/-/video.js-5.5.3.tgz", - "integrity": "sha1-pD8r/Hk9cNThKNrQLN46L04Qe0A=" - }, - "videojs-chapter-thumbnails": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/videojs-chapter-thumbnails/-/videojs-chapter-thumbnails-1.1.2.tgz", - "integrity": "sha1-NMUst0k7qPPMl8sQNELvifZZcOQ=" - }, - "videojs-flash": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/videojs-flash/-/videojs-flash-2.1.1.tgz", - "integrity": "sha512-hPWzLqM6D6ZGHRMgnVGHZFVgfxzAirgGNdE3tkIS0/TuvQYSX2UUODFBDDpQvuqTePlxNQJhCJNz74Clq1ZtxQ==", - "dependencies": { - "video.js": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/video.js/-/video.js-7.1.0.tgz", - "integrity": "sha512-uF4IOBZB560EqppNHcOYy3laL6Wzu8SDQ8lGmnzqsGFePtVDeLq5RYjBrVGun90c+9Pb+ElT4QyiWDnIyUCfpA==" - }, - "videojs-font": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/videojs-font/-/videojs-font-3.0.0.tgz", - "integrity": "sha512-XS6agz2T7p2cFuuXulJD70md8XMlAN617SJkMWjoTPqZWv+RU8NcZCKsE3Tk73inzxnQdihOp0cvI7NGz2ngHg==" - }, - "videojs-swf": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/videojs-swf/-/videojs-swf-5.4.1.tgz", - "integrity": "sha1-IHfvccdJ8seCPvSbq65N0qywj4c=" - }, - "videojs-vtt.js": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/videojs-vtt.js/-/videojs-vtt.js-0.14.1.tgz", - "integrity": "sha512-YxOiywx6N9t3J5nqsE5WN2Sw4CSqVe3zV+AZm2T4syOc2buNJaD6ZoexSdeszx2sHLU/RRo2r4BJAXFDQ7Qo2Q==" - }, - "xhr": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.4.0.tgz", - "integrity": "sha1-4W5mpF+GmGHu76tBbV7/ci3ECZM=" - } - } - }, - "videojs-font": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/videojs-font/-/videojs-font-1.5.1.tgz", - "integrity": "sha1-ZHkYIAMUuLH5U6SJo3ZlMfzoIuM=" - }, - "videojs-hotkeys": { - "version": "0.2.22", - "resolved": "https://registry.npmjs.org/videojs-hotkeys/-/videojs-hotkeys-0.2.22.tgz", - "integrity": "sha512-sl/D6blI+SY40uD9OJBBUZB4PzV5g4xpfV2aPqzYgYiO1GEdXFAZKXWj80Hz2VEmJ8tXj5ToIbVq+t4v3ckvNw==" - }, - "videojs-ie8": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/videojs-ie8/-/videojs-ie8-1.1.1.tgz", - "integrity": "sha1-Jp1iT/Mls7ySWElfLIbwvA8CBsA=" - }, - "videojs-swf": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/videojs-swf/-/videojs-swf-5.0.1.tgz", - "integrity": "sha1-IYa9nsX/xdBl1dlWyw3yUz/6KYM=" - }, - "videojs-vtt.js": { - "version": "0.12.6", - "resolved": "https://registry.npmjs.org/videojs-vtt.js/-/videojs-vtt.js-0.12.6.tgz", - "integrity": "sha512-XFXeGBQiljnElMhwCcZst0RDbZn2n8LU7ZScXryd3a00OaZsHAjdZu/7/RdSr7Z1jHphd45FnOvOQkGK4YrWCQ==" - }, - "vinyl": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz", - "integrity": "sha1-sEVbOPxeDPMNQyUTLkYZcMIJHN4=" - }, - "vinyl-file": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/vinyl-file/-/vinyl-file-2.0.0.tgz", - "integrity": "sha1-p+v1/779obfRjRQPyweyI++2dRo=", - "dev": true, - "dependencies": { - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "dev": true - }, - "vinyl": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz", - "integrity": "sha1-XIgDbPVl5d8FVYv8kR+GVt8hiIQ=", - "dev": true - } - } - }, - "vinyl-fs": { - "version": "0.3.14", - "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-0.3.14.tgz", - "integrity": "sha1-mmhRzhysHBzqX+hsCTHWIMLPqeY=", - "dev": true, - "dependencies": { - "clone": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz", - "integrity": "sha1-xhJqkK1Pctv1rNskPMN3JP6T/B8=", - "dev": true - }, - "graceful-fs": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz", - "integrity": "sha1-dhPHeKGv6mLyXGMKCG1/Osu92Bg=", - "dev": true - }, - "readable-stream": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", - "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", - "dev": true - }, - "strip-bom": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-1.0.0.tgz", - "integrity": "sha1-hbiGLzhEtabV7IRnqTWYFzo295Q=", - "dev": true - }, - "through2": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", - "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", - "dev": true - }, - "vinyl": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz", - "integrity": "sha1-LzVsh6VQolVGHza76ypbqL94SEc=", - "dev": true - } - } - }, - "vinyl-sourcemaps-apply": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz", - "integrity": "sha1-q2VJ1h0XLCsbh75cUI0jnI74dwU=", - "dev": true - }, - "vlq": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/vlq/-/vlq-0.2.3.tgz", - "integrity": "sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow==" - }, - "vm-browserify": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz", - "integrity": "sha1-XX6kW7755Kb/ZflUOOCofDV9WnM=" - }, - "vt-pbf": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/vt-pbf/-/vt-pbf-3.1.1.tgz", - "integrity": "sha512-pHjWdrIoxurpmTcbfBWXaPwSmtPAHS105253P1qyEfSTV2HJddqjM+kIHquaT/L6lVJIk9ltTGc0IxR/G47hYA==" - }, - "watchpack": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz", - "integrity": "sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==" - }, - "webl10n": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/webl10n/-/webl10n-1.0.0.tgz", - "integrity": "sha1-2haAxjzqgaAdC8WeL5Q6UuuncO0=" - }, - "webpack": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-3.12.0.tgz", - "integrity": "sha512-Sw7MdIIOv/nkzPzee4o0EdvCuPmxT98+vVpIvwtcwcF1Q4SDSNp92vwcKc4REe7NItH9f1S4ra9FuQ7yuYZ8bQ==", - "dependencies": { - "ajv": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.3.tgz", - "integrity": "sha512-LqZ9wY+fx3UMiiPd741yB2pj3hhil+hQc8taf4o2QGRFpWgZ2V5C8HA165DY9sS3fJwsk7uT7ZlFEyC3Ig3lLg==" - }, - "camelcase": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=" - }, - "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", - "dependencies": { - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=" - } - } - }, - "fast-deep-equal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", - "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=" - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "supports-color": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", - "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=" - }, - "yargs": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-8.0.2.tgz", - "integrity": "sha1-YpmpBVsc78lp/355wdkY3Osiw2A=" - } - } - }, - "webpack-sources": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.1.0.tgz", - "integrity": "sha512-aqYp18kPphgoO5c/+NaUvEeACtZjMESmDChuD3NBciVpah3XpMEU9VAAtIaB1BsfJWWTSdv8Vv1m3T0aRk2dUw==", - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "webworkify": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/webworkify/-/webworkify-1.5.0.tgz", - "integrity": "sha512-AMcUeyXAhbACL8S2hqqdqOLqvJ8ylmIbNwUIqQujRSouf4+eUFaXbG6F1Rbu+srlJMmxQWsiU7mOJi0nMBfM1g==" - }, - "wgs84": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/wgs84/-/wgs84-0.0.0.tgz", - "integrity": "sha1-NP3FVZF7blfPKigu0ENxDASc3HY=" - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" - }, - "which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" - }, - "wide-align": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", - "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", - "dev": true - }, - "window-size": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", - "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=" - }, - "wordwrap": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", - "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=" - }, - "worker-loader": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/worker-loader/-/worker-loader-0.8.1.tgz", - "integrity": "sha1-6OmVMx6jTfW/aCloJL+38K1XjUM=" - }, - "wrap-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", - "dependencies": { - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=" - } - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - }, - "wrench": { - "version": "1.5.9", - "resolved": "https://registry.npmjs.org/wrench/-/wrench-1.5.9.tgz", - "integrity": "sha1-QRaRxjqbJTGxcAJnJ5veyiOyFCo=", - "dev": true - }, - "ws": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz", - "integrity": "sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==", - "dev": true - }, - "xhr": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.2.2.tgz", - "integrity": "sha1-LuclcYafhobUFVmp6ihsGJcUNf8=" - }, - "xmlhttprequest-ssl": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz", - "integrity": "sha1-wodrBhaKrcQOV9l+gRkayPQ5iz4=", - "dev": true - }, - "xtend": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", - "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" - }, - "y18n": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", - "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=" - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" - }, - "yargs": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-2.3.0.tgz", - "integrity": "sha1-6QDIclDsXNCA22AJ/j3WMVbx1/s=" - }, - "yargs-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz", - "integrity": "sha1-jQrELxbqVd69MyyvTEA4s+P139k=", - "dependencies": { - "camelcase": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=" - } - } - }, - "yarn": { - "version": "0.27.5", - "resolved": "https://registry.npmjs.org/yarn/-/yarn-0.27.5.tgz", - "integrity": "sha1-Bv5n2AQIApk/nx4ZI9Zxy/nq1dE=", - "optional": true, - "dependencies": { - "arr-diff": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", - "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", - "optional": true - }, - "array-unique": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", - "optional": true - }, - "braces": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", - "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", - "optional": true - }, - "camelcase": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", - "optional": true - }, - "expand-brackets": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", - "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", - "optional": true - }, - "extglob": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", - "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", - "optional": true - }, - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" - }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "optional": true - }, - "micromatch": { - "version": "2.3.11", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", - "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", - "optional": true - } - } - }, - "yauzl": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.4.1.tgz", - "integrity": "sha1-lSj0QtqxsihOWLQ3m7GU4i4MQAU=", - "dev": true - }, - "yeast": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz", - "integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk=", - "dev": true - }, - "zxcvbn": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/zxcvbn/-/zxcvbn-4.4.2.tgz", - "integrity": "sha1-KOwXzwl0PtyrBW3dixsGJizHPDA=" - } - } -} diff --git a/package.json b/package.json index 36be25d7d1..4b89b778ce 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,6 @@ }, "dependencies": { "JSON2": "^0.1.0", - "alchemy-embed-medias": "^0.5.1", "backbone": "^1.3.3", "blueimp-file-upload": "^8.3.0", "blueimp-load-image": "^2.17.1", @@ -66,7 +65,7 @@ "normalize-css": "^2.1.0", "npm": "^6.0.0", "npm-modernizr": "^2.8.3", - "phraseanet-production-client": "^0.33.0", + "phraseanet-production-client": "0.34.77-d", "requirejs": "^2.3.5", "tinymce": "^4.0.28", "underscore": "^1.8.3", diff --git a/resources/ansible/playbook-boxes.yml b/resources/ansible/playbook-boxes.yml new file mode 100644 index 0000000000..3418297c6c --- /dev/null +++ b/resources/ansible/playbook-boxes.yml @@ -0,0 +1,21 @@ +--- +- hosts: all + sudo: true + vars_files: + - vars/all.yml + roles: +# - server +# - repositories +# - vagrant_local + - nginx +# - mariadb +# - elasticsearch +# - rabbitmq +# - php + - xdebug +# - composer + - mailcatcher +# - node +# - yarn +# - ffmpeg + - app diff --git a/resources/ansible/playbook.yml b/resources/ansible/playbook.yml index a2969de18c..c4f76aaa61 100644 --- a/resources/ansible/playbook.yml +++ b/resources/ansible/playbook.yml @@ -17,5 +17,5 @@ - mailcatcher - node - yarn - - app - ffmpeg + - app diff --git a/resources/ansible/roles/app/tasks/main.yml b/resources/ansible/roles/app/tasks/main.yml index 66de8ad0ea..623d28d124 100644 --- a/resources/ansible/roles/app/tasks/main.yml +++ b/resources/ansible/roles/app/tasks/main.yml @@ -60,7 +60,7 @@ chdir: /vagrant/ - name: Create ElasticSearch indexes - shell: php bin/console s:i:c + shell: php bin/console searchengine:index -c args: chdir: /vagrant/ diff --git a/resources/ansible/roles/elasticsearch/tasks/main.yml b/resources/ansible/roles/elasticsearch/tasks/main.yml index fdd5f0ea7a..655567c119 100644 --- a/resources/ansible/roles/elasticsearch/tasks/main.yml +++ b/resources/ansible/roles/elasticsearch/tasks/main.yml @@ -13,7 +13,7 @@ changed_when: false - name: Install Dependencies - apt: pkg=openjdk-7-jre state=latest + apt: pkg=openjdk-8-jre state=latest - name: Remove temporary debian package shell: rm -f /tmp/elasticsearch-{{ elasticsearch.version }}.deb @@ -38,11 +38,15 @@ when: not is_installed with_items: "{{ elasticsearch.plugins }}" -- name: Set port - replace: > - dest="/etc/elasticsearch/elasticsearch.yml" - regexp='^#?(http\.port\:).*' - replace='\1 {{ elasticsearch.port }}' +- name: Configure Elasticsearch. + lineinfile: + dest: /etc/elasticsearch/elasticsearch.yml + regexp: "{{ item.regexp }}" + line: "{{ item.line }}" + state: present + with_items: + - { regexp: '^#? ?network\.host', line: 'network.host: {{ elasticsearch.host }}' } + - { regexp: '^#? ?http\.port', line: 'http.port: {{ elasticsearch.port }}' } - name: Flush handlers to apply config changes meta: flush_handlers diff --git a/resources/ansible/roles/mailcatcher/tasks/main.yml b/resources/ansible/roles/mailcatcher/tasks/main.yml index 7d1ca213ea..45a377ebe8 100644 --- a/resources/ansible/roles/mailcatcher/tasks/main.yml +++ b/resources/ansible/roles/mailcatcher/tasks/main.yml @@ -13,7 +13,7 @@ - name: Install mailcatcher gem # gem module is flaky, this is consistent - command: gem install mailcatcher --conservative + command: gem install mailcatcher -v 0.6.4 --conservative ignore_errors: yes - name: Install mailcatcher supervisord conf diff --git a/resources/ansible/roles/php/tasks/mod-php.yml b/resources/ansible/roles/php/tasks/mod-php.yml index 355ae6551c..c85d24e2b6 100644 --- a/resources/ansible/roles/php/tasks/mod-php.yml +++ b/resources/ansible/roles/php/tasks/mod-php.yml @@ -28,3 +28,13 @@ lineinfile: dest=/etc/php/{{ phpversion }}/apache2/php.ini regexp=';?max_input_vars\s*=\s*' line='max_input_vars = 12000' + +- name: set session.hash_bits_per_character apache2 + lineinfile: dest=/etc/php/{{ phpversion }}/apache2/php.ini + regexp=';?session.hash_bits_per_character\s*=\s*' + line='session.hash_bits_per_character = 6' + +- name: set session.hash_function apache2 + lineinfile: dest=/etc/php/{{ phpversion }}/apache2/php.ini + regexp=';?session.hash_function\s*=\s*' + line='session.hash_function = 1' \ No newline at end of file diff --git a/resources/ansible/roles/php/tasks/php-cli.yml b/resources/ansible/roles/php/tasks/php-cli.yml index 41016aceab..90e06fd2e5 100644 --- a/resources/ansible/roles/php/tasks/php-cli.yml +++ b/resources/ansible/roles/php/tasks/php-cli.yml @@ -28,3 +28,13 @@ lineinfile: dest=/etc/php/{{ phpversion }}/cli/php.ini regexp=';?max_input_vars\s*=\s*' line='max_input_vars = 12000' + +- name: set session.hash_function cli + lineinfile: dest=/etc/php/{{ phpversion }}/cli/php.ini + regexp=';?session.hash_function\s*=\s*' + line='session.hash_function = 1' + +- name: set session.hash_bits_per_character cli + lineinfile: dest=/etc/php/{{ phpversion }}/cli/php.ini + regexp=';?session.hash_bits_per_character\s*=\s*' + line='session.hash_bits_per_character = 6' \ No newline at end of file diff --git a/resources/ansible/roles/php/tasks/php-fpm.yml b/resources/ansible/roles/php/tasks/php-fpm.yml index 1319e2ee19..ef07f5a599 100644 --- a/resources/ansible/roles/php/tasks/php-fpm.yml +++ b/resources/ansible/roles/php/tasks/php-fpm.yml @@ -46,3 +46,16 @@ regexp=';?max_input_vars\s*=\s*' line='max_input_vars = 12000' notify: restart php{{ phpversion }}-fpm + +- name: set session.hash_function fpm + lineinfile: dest=/etc/php/{{ phpversion }}/fpm/php.ini + regexp=';?session.hash_function\s*=\s*' + line='session.hash_function = 1' + notify: restart php{{ phpversion }}-fpm + + +- name: set session.hash_bits_per_character fpm + lineinfile: dest=/etc/php/{{ phpversion }}/fpm/php.ini + regexp=';?session.hash_bits_per_character\s*=\s*' + line='session.hash_bits_per_character = 6' + notify: restart php{{ phpversion }}-fpm diff --git a/resources/ansible/roles/repositories/tasks/main.yml b/resources/ansible/roles/repositories/tasks/main.yml index 2c00cef1e7..ee459d8949 100644 --- a/resources/ansible/roles/repositories/tasks/main.yml +++ b/resources/ansible/roles/repositories/tasks/main.yml @@ -16,7 +16,7 @@ - name: Add Key for MariaDB Repository sudo: yes - apt_key: url=http://keyserver.ubuntu.com/pks/lookup?op=get&search=0xcbcb082a1bb943db + apt_key: url=http://keyserver.ubuntu.com/pks/lookup?op=get&search=0xF1656F24C74CD1D8 # RabbitMQ - name: Add rabbitmq package repository diff --git a/resources/ansible/roles/server/tasks/main.yml b/resources/ansible/roles/server/tasks/main.yml index d1aac1d10f..531e6fa74d 100644 --- a/resources/ansible/roles/server/tasks/main.yml +++ b/resources/ansible/roles/server/tasks/main.yml @@ -18,6 +18,10 @@ with_items: '{{ server.packages }}' when: server.packages is defined +- name: Pip install ndg-httpsclient + shell: pip install ndg-httpsclient + sudo: yes + - name: Configure the timezone sudo: yes template: src=timezone.j2 dest=/etc/timezone diff --git a/resources/ansible/roles/vagrant_local/tasks/docker-hosts-container.yml b/resources/ansible/roles/vagrant_local/tasks/docker-hosts-container.yml new file mode 100644 index 0000000000..794961f90c --- /dev/null +++ b/resources/ansible/roles/vagrant_local/tasks/docker-hosts-container.yml @@ -0,0 +1,4 @@ +--- +- name: Update /etc/hosts + lineinfile: dest=/etc/hosts regexp='^127\.0\.0\.1' line='127.0.0.1 localhost {{ vagrant_local.vm.docker_hosts_container|default('') }}' owner=root group=root mode=0644 + when: vagrant_local.vm.docker_hosts_container is defined \ No newline at end of file diff --git a/resources/ansible/roles/vagrant_local/tasks/main.yml b/resources/ansible/roles/vagrant_local/tasks/main.yml index 619c3b4260..33de639dac 100644 --- a/resources/ansible/roles/vagrant_local/tasks/main.yml +++ b/resources/ansible/roles/vagrant_local/tasks/main.yml @@ -10,3 +10,5 @@ - name: Update /etc/hosts lineinfile: dest=/etc/hosts regexp='^127\.0\.0\.1' line='127.0.0.1 localhost {{ vagrant_local.vm.hostname|default('') }}' owner=root group=root mode=0644 when: vagrant_local.vm.hostname is defined + +- include: docker-hosts-container.yml \ No newline at end of file diff --git a/resources/ansible/vars/all.yml b/resources/ansible/vars/all.yml index e5b9b88ac4..acef9788e3 100644 --- a/resources/ansible/vars/all.yml +++ b/resources/ansible/vars/all.yml @@ -21,18 +21,27 @@ server: - xpdf - libav-tools - gpac + - python + - python-urllib3 + - python3-openssl + - python-pyasn1 + - python-pyasn1-modules + - python3-pyasn1 + - python-pip timezone: UTC locales: - en_GB.UTF-8 - fr_FR.UTF-8 - de_DE.UTF-8 - nl_NL.UTF-8 + repositories: php: 'ppa:ondrej/php' - mariadb: 'deb http://mirror6.layerjet.com/mariadb/repo/10.1/ubuntu' + mariadb: 'deb [arch=amd64,arm64,i386,ppc64el] http://mirror.nodesdirect.com/mariadb/repo/10.3/ubuntu' elasticsearch: 'ppa:webupd8team/java' rabbitmq: 'deb http://www.rabbitmq.com/debian/ testing main' yarn: 'https://dl.yarnpkg.com/debian/' + vagrant_local: install: '1' vm: @@ -41,6 +50,8 @@ vagrant_local: sharedfolder: ./ useVagrantCloud: '1' syncType: nfs + hostname: '' + docker_hosts_container: 'db elasticsearch redis rabbitmq' nginx: install: '1' docroot: /vagrant @@ -55,6 +66,7 @@ mariadb: dump: '' elasticsearch: install: '1' + host: '127.0.0.1' port: '9200' version: '2.3.3' plugins: diff --git a/resources/gulp/components/report.js b/resources/gulp/components/report.js index 12fbea870a..f67944a667 100644 --- a/resources/gulp/components/report.js +++ b/resources/gulp/components/report.js @@ -8,13 +8,7 @@ gulp.task('copy-report-images', function(){ .pipe(gulp.dest( config.paths.build + 'report/images')); }); -gulp.task('build-report-print-css', function(){ - return utils.buildCssGroup([ - config.paths.src + 'report/styles/main-print.scss' - ], 'print', 'report/css/', debugMode); -}); - -gulp.task('build-report-css', ['build-report-print-css'], function(){ +gulp.task('build-report-css', function(){ return utils.buildCssGroup([ config.paths.src + 'report/styles/main.scss' ], 'report', 'report/css/', debugMode); @@ -22,10 +16,6 @@ gulp.task('build-report-css', ['build-report-print-css'], function(){ gulp.task('build-report-js', function(){ var reportGroup = [ - config.paths.src + 'report/js/jquery.print.js', - config.paths.src + 'report/js/jquery.cluetip.js', - config.paths.src + 'report/js/jquery.nicoslider.js', - config.paths.src + 'report/js/jquery.gvChart-0.1.js', config.paths.src + 'report/js/report.js' ]; return utils.buildJsGroup(reportGroup, 'report', 'report/js', debugMode); diff --git a/resources/gulp/components/vendors/alchemy-embed.js b/resources/gulp/components/vendors/alchemy-embed.js index f3dd6cc217..2ac75ed0f4 100644 --- a/resources/gulp/components/vendors/alchemy-embed.js +++ b/resources/gulp/components/vendors/alchemy-embed.js @@ -11,12 +11,16 @@ gulp.task('copy-alchemy-embed-debug', function(){ gulp.task('copy-alchemy-embed', function(){ // copy all dist folder: - if( debugMode === true) { - return gulp.src('vendor/alchemy/embed-bundle/dist/**/*') + return gulp.src('vendor/alchemy/embed-bundle/dist/**/*') + .pipe(gulp.dest( config.paths.build + 'vendors/alchemy-embed-medias')); + + + /* if( debugMode === true) { + return gulp.src('vendor/alchemy/embed-bundle/dist/!**!/!*') .pipe(gulp.dest( config.paths.build + 'vendors/alchemy-embed-medias')); } - return gulp.src(config.paths.nodes + 'alchemy-embed-medias/dist/**/*') - .pipe(gulp.dest( config.paths.build + 'vendors/alchemy-embed-medias')); + return gulp.src(config.paths.nodes + 'alchemy-embed-medias/dist/!**!/!*') + .pipe(gulp.dest( config.paths.build + 'vendors/alchemy-embed-medias'));*/ }); gulp.task('watch-alchemy-embed-js', function() { debugMode = true; diff --git a/resources/locales/messages.de.xlf b/resources/locales/messages.de.xlf index 2b2c43e381..e33805ddeb 100644 --- a/resources/locales/messages.de.xlf +++ b/resources/locales/messages.de.xlf @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2"> - <file date="2018-09-17T13:13:42Z" source-language="en" target-language="de" datatype="plaintext" original="not.available"> + <file date="2019-11-15T08:02:31Z" source-language="en" target-language="de" datatype="plaintext" original="not.available"> <header> <tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/> <note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note> @@ -9,8 +9,8 @@ <trans-unit id="da39a3ee5e6b4b0d3255bfef95601890afd80709" resname=""> <source></source> <target state="new"></target> - <jms:reference-file line="47">Form/Configuration/EmailFormType.php</jms:reference-file> <jms:reference-file line="60">Form/Login/PhraseaAuthenticationForm.php</jms:reference-file> + <jms:reference-file line="47">Form/Configuration/EmailFormType.php</jms:reference-file> </trans-unit> <trans-unit id="c03e9a1b443b7d9ac9a84e4d2cf55ebc016a9c5b" resname=" Add"> <source> Add</source> @@ -24,77 +24,84 @@ url through a forwarded mail for example. </source> <target state="translated">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).</target> - <jms:reference-file line="174">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="175">prod/templates/push.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="17b36ba11b9598e1ca72638a17637c71db031f8b" resname="#3567c6"> + <trans-unit id="2dda59c67dea4da116191fe9603dcf80cb3c8c3d" resname=" {0} No results|{1} Result|]1,Inf[ Results "> + <source> {0} No results|{1} Result|]1,Inf[ Results + </source> + <target state="new"> {0} No results|{1} Result|]1,Inf[ Results + </target> + <jms:reference-file line="7">WorkZone/Browser/Results.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="17b36ba11b9598e1ca72638a17637c71db031f8b" resname="#3567c6" approved="yes"> <source>#3567c6</source> - <target state="new">#3567c6</target> + <target state="translated">#3567c6</target> <jms:reference-file line="81">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="c18097cf04c5f24e6b201e44603c26f000cbf266" resname="#4497d5"> + <trans-unit id="c18097cf04c5f24e6b201e44603c26f000cbf266" resname="#4497d5" approved="yes"> <source>#4497d5</source> - <target state="new">#4497d5</target> + <target state="translated">#4497d5</target> <jms:reference-file line="80">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="654b7f2144322b13150ca53f8eb712644275fbbb" resname="#5aa53b"> + <trans-unit id="654b7f2144322b13150ca53f8eb712644275fbbb" resname="#5aa53b" approved="yes"> <source>#5aa53b</source> - <target state="new">#5aa53b</target> + <target state="translated">#5aa53b</target> <jms:reference-file line="78">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="81184afa6b2fb59a54a368a94c5af314882f4379" resname="#a1d0d0"> + <trans-unit id="81184afa6b2fb59a54a368a94c5af314882f4379" resname="#a1d0d0" approved="yes"> <source>#a1d0d0</source> - <target state="new">#a1d0d0</target> + <target state="translated">#a1d0d0</target> <jms:reference-file line="79">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="69760e828adabd5e543638f8b396d108e4e1c7f6" resname="#ad0800"> + <trans-unit id="69760e828adabd5e543638f8b396d108e4e1c7f6" resname="#ad0800" approved="yes"> <source>#ad0800</source> - <target state="new">#ad0800</target> + <target state="translated">#ad0800</target> <jms:reference-file line="71">Form/Configuration/CustomLinkFormType.php</jms:reference-file> <jms:reference-file line="72">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="8868030f047d29838dccd3ebd90a8cbcf5cf97b9" resname="#b151ee"> + <trans-unit id="8868030f047d29838dccd3ebd90a8cbcf5cf97b9" resname="#b151ee" approved="yes"> <source>#b151ee</source> - <target state="new">#b151ee</target> + <target state="translated">#b151ee</target> <jms:reference-file line="82">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="df800d7d3f6bec2f0c48d7b18ad0f7515b4ed8a4" resname="#b8d84e"> + <trans-unit id="df800d7d3f6bec2f0c48d7b18ad0f7515b4ed8a4" resname="#b8d84e" approved="yes"> <source>#b8d84e</source> - <target state="new">#b8d84e</target> + <target state="translated">#b8d84e</target> <jms:reference-file line="77">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="4d3505d50f73a3440832d861060fc212eb2d929a" resname="#c875ea"> + <trans-unit id="4d3505d50f73a3440832d861060fc212eb2d929a" resname="#c875ea" approved="yes"> <source>#c875ea</source> - <target state="new">#c875ea</target> + <target state="translated">#c875ea</target> <jms:reference-file line="83">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="cdd9fb48ed6b38bdf4cd732d30851062312f64b3" resname="#e46990"> + <trans-unit id="cdd9fb48ed6b38bdf4cd732d30851062312f64b3" resname="#e46990" approved="yes"> <source>#e46990</source> - <target state="new">#e46990</target> + <target state="translated">#e46990</target> <jms:reference-file line="84">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="22a0112b6eafc281d17f1b98fb8405847d01f04b" resname="#f06006"> + <trans-unit id="22a0112b6eafc281d17f1b98fb8405847d01f04b" resname="#f06006" approved="yes"> <source>#f06006</source> - <target state="new">#f06006</target> + <target state="translated">#f06006</target> <jms:reference-file line="73">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="db6ca79114142b612eebf0ca5f80b94c80cbf453" resname="#f4ea5b"> + <trans-unit id="db6ca79114142b612eebf0ca5f80b94c80cbf453" resname="#f4ea5b" approved="yes"> <source>#f4ea5b</source> - <target state="new">#f4ea5b</target> + <target state="translated">#f4ea5b</target> <jms:reference-file line="76">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="cc4fad5f043fc9875dcdc532a296ec359a6c39e1" resname="#f5842b"> + <trans-unit id="cc4fad5f043fc9875dcdc532a296ec359a6c39e1" resname="#f5842b" approved="yes"> <source>#f5842b</source> - <target state="new">#f5842b</target> + <target state="translated">#f5842b</target> <jms:reference-file line="74">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="590b78bf59d578b0efdd1a7b1a385e8004fa88e8" resname="#ffc322"> + <trans-unit id="590b78bf59d578b0efdd1a7b1a385e8004fa88e8" resname="#ffc322" approved="yes"> <source>#ffc322</source> - <target state="new">#ffc322</target> + <target state="translated">#ffc322</target> <jms:reference-file line="75">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="0cc996e2ae03790c84ef6edc0601ba0245d7cf1c" resname="#ffccd7"> + <trans-unit id="0cc996e2ae03790c84ef6edc0601ba0245d7cf1c" resname="#ffccd7" approved="yes"> <source>#ffccd7</source> - <target state="new">#ffccd7</target> + <target state="translated">#ffccd7</target> <jms:reference-file line="85">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> <trans-unit id="a9378053eb7743587671aa830ffd2c9f1b13ad1a" resname="%ElementsCount% records" approved="yes"> @@ -105,15 +112,14 @@ <trans-unit id="5c0c6d2fb4202111af321f54b5a3942bda803eb8" resname="%Total% results" approved="yes"> <source>%Total% results</source> <target state="translated">%Total% Ergebnisse</target> - <jms:reference-file line="12">WorkZone/Browser/Results.html.twig</jms:reference-file> - <jms:reference-file line="115">WorkZone/Browser/Results.html.twig</jms:reference-file> + <jms:reference-file line="91">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="21a4ac34dfdf249b5e2e3b3fde7061b354080f4b" resname="%basket_length% documents" approved="yes"> <source>%basket_length% documents</source> <target state="translated">%basket_length% Dokument(e)</target> + <jms:reference-file line="39">mobile/lightbox/validate.html.twig</jms:reference-file> <jms:reference-file line="65">web/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="123">web/lightbox/index.html.twig</jms:reference-file> - <jms:reference-file line="39">mobile/lightbox/validate.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b444b30c762b94c468daf384f731e5ffc3ae998d" resname="%countable% documents can not be modified." approved="yes"> <source>%countable% documents can not be modified.</source> @@ -154,7 +160,7 @@ <source>%length% peoples</source> <target state="translated">%length% Leute</target> <jms:reference-file line="42">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="107">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="103">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="65779fe6ac99437fb7d81ba645a989e7745e6a29" resname="%n_elements% elements ne peuvent etre uploades" approved="yes"> <source>%n_elements% elements ne peuvent etre uploades</source> @@ -192,21 +198,21 @@ <trans-unit id="e39dc3a90b0674916ef22f19912638564f33e518" resname="%nb_view% vue" approved="yes"> <source>%nb_view% vue</source> <target state="translated">%nb_view% Ansicht</target> - <jms:reference-file line="5">Bridge/Flickr/element_informations.html.twig</jms:reference-file> - <jms:reference-file line="5">Bridge/Youtube/element_informations.html.twig</jms:reference-file> <jms:reference-file line="5">Bridge/Dailymotion/element_informations.html.twig</jms:reference-file> + <jms:reference-file line="5">Bridge/Youtube/element_informations.html.twig</jms:reference-file> + <jms:reference-file line="5">Bridge/Flickr/element_informations.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ae7480d89dfd1ca0d1732014aee13f9958836bf8" resname="%nb_view% vues" approved="yes"> <source>%nb_view% vues</source> <target state="translated">%nb_view% Ansichten</target> - <jms:reference-file line="7">Bridge/Flickr/element_informations.html.twig</jms:reference-file> - <jms:reference-file line="7">Bridge/Youtube/element_informations.html.twig</jms:reference-file> <jms:reference-file line="7">Bridge/Dailymotion/element_informations.html.twig</jms:reference-file> + <jms:reference-file line="7">Bridge/Youtube/element_informations.html.twig</jms:reference-file> + <jms:reference-file line="7">Bridge/Flickr/element_informations.html.twig</jms:reference-file> </trans-unit> <trans-unit id="de0804eb70c10b14d71df74292e45c6daa13d672" resname="%number% documents<br/>selectionnes" approved="yes"> <source><![CDATA[%number% documents<br/>selectionnes]]></source> <target state="translated"><![CDATA[%number% documents<br/> ausgewählt]]></target> - <jms:reference-file line="246">Controller/Prod/QueryController.php</jms:reference-file> + <jms:reference-file line="271">Controller/Prod/QueryController.php</jms:reference-file> </trans-unit> <trans-unit id="ac5c6fe2979cfa2496c95dcb218f135fd916040d" resname="%quantity% Stories attached to the WorkZone" approved="yes"> <source>%quantity% Stories attached to the WorkZone</source> @@ -257,7 +263,7 @@ <trans-unit id="d7c38bf41291d1f920c6e0b56a1c4a1cfc0b6743" resname="%quantity% selected files" approved="yes"> <source>%quantity% selected files</source> <target state="translated">%quantity% ausgewählte Dateien</target> - <jms:reference-file line="108">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="111">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="eae910e840fe7df8ef8211d587e72af74ab69463" resname="%quantity_records% records have been sent for validation to %quantity_users% users" approved="yes"> <source>%quantity_records% records have been sent for validation to %quantity_users% users</source> @@ -272,7 +278,7 @@ <trans-unit id="4d90df6ce9691d4bc172b9129250a5af4bef4b7f" resname="%record_count% records match the unique identifier :" approved="yes"> <source>%record_count% records match the unique identifier :</source> <target state="translated">%record_count% Datensätze entsprechen dem eindeutigen Bezeichner:</target> - <jms:reference-file line="379">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="585">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1d847e60f4e92e438c94f0eb3176ce96113c63e5" resname="%s field has been created with success." approved="yes"> <source>%s field has been created with success.</source> @@ -287,17 +293,12 @@ <trans-unit id="f9b19aa0c7cf7aab245692450b473acff6a077e4" resname="%total% reponses" approved="yes"> <source>%total% reponses</source> <target state="translated">%total% Ergebnisse</target> - <jms:reference-file line="294">Controller/Prod/QueryController.php</jms:reference-file> - </trans-unit> - <trans-unit id="3d850bddc9385d23589a2204c4583dcc0d62ffe5" resname="%total_count% results" approved="yes"> - <source>%total_count% results</source> - <target state="translated">%total_count% Ergebnisse</target> - <jms:reference-file line="35">web/report/generate_tab.html.twig</jms:reference-file> + <jms:reference-file line="319">Controller/Prod/QueryController.php</jms:reference-file> </trans-unit> <trans-unit id="99d2e1a7e8d0ba4a7132282b53b15e503b91c2cb" resname="%user% a envoye son rapport de validation de %title%" approved="yes"> <source>%user% a envoye son rapport de validation de %title%</source> <target state="translated">%user% hat seinen Bestätigungsbericht von %title% gesendet</target> - <jms:reference-file line="58">eventsmanager/notify/validationdone.php</jms:reference-file> + <jms:reference-file line="65">eventsmanager/notify/validationdone.php</jms:reference-file> </trans-unit> <trans-unit id="762e4f2823b111e8a3c45176a1376312afeb014e" resname="%user% a passe une %opening_link% commande %end_link%" approved="yes"> <source>%user% a passe une %opening_link% commande %end_link%</source> @@ -347,7 +348,7 @@ <trans-unit id="578411bc3eda63423c62f54431d62591422c6e5f" resname="%user% vous a delivre %quantity% document(s) pour votre commande %title%" approved="yes"> <source>%user% vous a delivre %quantity% document(s) pour votre commande %title%</source> <target state="translated">%user% hat %quantity% Dokument(e) für Ihre Bestellung %title% geliefert</target> - <jms:reference-file line="58">eventsmanager/notify/orderdeliver.php</jms:reference-file> + <jms:reference-file line="66">eventsmanager/notify/orderdeliver.php</jms:reference-file> </trans-unit> <trans-unit id="991c3d22c945eab4d10ee5974ff3d12e0c165185" resname="%user% vous a delivre votre commande, consultez la en ligne a l'adresse suivante" approved="yes"> <source>%user% vous a delivre votre commande, consultez la en ligne a l'adresse suivante</source> @@ -407,9 +408,7 @@ <trans-unit id="4e633811d5f61e7ef626265d09c454908f56df17" resname="1 result" approved="yes"> <source>1 result</source> <target state="translated">1 Ergebnis</target> - <jms:reference-file line="10">WorkZone/Browser/Results.html.twig</jms:reference-file> - <jms:reference-file line="113">WorkZone/Browser/Results.html.twig</jms:reference-file> - <jms:reference-file line="33">web/report/generate_tab.html.twig</jms:reference-file> + <jms:reference-file line="89">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="fbe42fc27804535bb12503b7990343d52141318c" resname="10 tags maximum" approved="yes"> <source>10 tags maximum</source> @@ -490,7 +489,7 @@ <trans-unit id="e6558cad562de9eeae699e5f7fc7c8ae076d38c8" resname="A record matches the unique identifier :" approved="yes"> <source>A record matches the unique identifier :</source> <target state="translated">Ein Datensatz entspricht dem eindeutigen Bezeichner :</target> - <jms:reference-file line="377">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="583">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b73e8cb42d796f56db9989972e41942d9135c2cc" resname="A required field is missing or has an empty value" approved="yes"> <source>A required field is missing or has an empty value</source> @@ -505,7 +504,7 @@ <trans-unit id="2966d9d14e339b1aa59cd4591bbb616f2af1f070" resname="A task has been creted, please run it to complete empty collection" approved="yes"> <source>A task has been creted, please run it to complete empty collection</source> <target state="translated">Eine Aufgabe wurde erstellt. Bitte führen Sie diese aus um die Leerung der Kollektion fertigstellen zu können</target> - <jms:reference-file line="134">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="135">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="1745c0ee532c1592e3751ef7ef48c382df74c457" resname="A third-party application is a product developed apart from Phraseanet and that would access Phraseanet data." approved="yes"> <source>A third-party application is a product developed apart from Phraseanet and that would access Phraseanet data.</source> @@ -530,11 +529,11 @@ <trans-unit id="123328affd9ccbf569617c058422eb0104017f47" resname="API Webhook" approved="yes"> <source>API Webhook</source> <target state="translated">API Webhook</target> - <jms:reference-file line="45">TaskManager/Job/WebhookJob.php</jms:reference-file> + <jms:reference-file line="58">TaskManager/Job/WebhookJob.php</jms:reference-file> </trans-unit> - <trans-unit id="62a3ad0fef668c4e2a220f6982de94942fbf1d1e" resname="AR"> + <trans-unit id="62a3ad0fef668c4e2a220f6982de94942fbf1d1e" resname="AR" approved="yes"> <source>AR</source> - <target state="new">AR</target> + <target state="translated">AR</target> <jms:reference-file line="39">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> <trans-unit id="8887b473975b3b740e5afe559123403a6c219524" resname="About Roles :" approved="yes"> @@ -586,7 +585,7 @@ <trans-unit id="322d1ea01506ec9e0344d8cd25dd10808d427343" resname="Access to the above bases constitutes acceptance of the following Terms of Use (TOU)." approved="yes"> <source>Access to the above bases constitutes acceptance of the following Terms of Use (TOU).</source> <target state="translated">Wenn Sie auf die Datenbanken oben zugreifen, erklären Sie sich damit einverstanden, die folgenden Nutzungsbedingungen zu beachten.</target> - <jms:reference-file line="185">web/account/access.html.twig</jms:reference-file> + <jms:reference-file line="19">web/account/access.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9db7fb32c517586a4123d511613b492d910aecaa" resname="Access user have readonly access" approved="yes"> <source>Access user have readonly access</source> @@ -618,7 +617,7 @@ <source>Accuse de reception</source> <target state="translated">Empfangsbestätigung</target> <jms:reference-file line="91">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="160">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="161">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="589db073670b88b4b42b9f60b53d87e049fa5e3f" resname="Accuse de reception indisponible, vous n'avez pas declare d'adresse email" approved="yes"> <source>Accuse de reception indisponible, vous n'avez pas declare d'adresse email</source> @@ -633,12 +632,12 @@ <trans-unit id="c3cd636a585b20c40ac2df5ffb403e83cb2eef51" resname="Actions" approved="yes"> <source>Actions</source> <target state="translated">Handlungen</target> - <jms:reference-file line="12">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="26">Bridge/Flickr/actionelements.html.twig</jms:reference-file> - <jms:reference-file line="12">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="26">Bridge/Youtube/actionelements.html.twig</jms:reference-file> - <jms:reference-file line="12">Bridge/Dailymotion/actioncontainers.html.twig</jms:reference-file> <jms:reference-file line="26">Bridge/Dailymotion/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="12">Bridge/Dailymotion/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="26">Bridge/Youtube/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="12">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="26">Bridge/Flickr/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="12">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c4a4f00323184bd750ee72b5c05e6e17d1584bfd" resname="Activate highlight" approved="yes"> <source>Activate highlight</source> @@ -654,9 +653,9 @@ <trans-unit id="b96fa78d63e470aece8873de8f36bc6d07d0ce1e" resname="Activer" approved="yes"> <source>Activer</source> <target state="translated">aktivieren</target> + <jms:reference-file line="192">admin/databox/databox.html.twig</jms:reference-file> <jms:reference-file line="19">web/admin/editusers_timelimit.html.twig</jms:reference-file> <jms:reference-file line="15">web/admin/editusers_timelimit_sbas.html.twig</jms:reference-file> - <jms:reference-file line="192">admin/databox/databox.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2ad25a56545b3378229ca9165351fb4cb528c722" resname="Activer le grant_type de type password pour votre application" approved="yes"> <source>Activer le grant_type de type password pour votre application</source> @@ -671,15 +670,15 @@ <trans-unit id="81c0d915fa6d82fd30661c5e66e204cea52bb2b5" resname="Activity"> <source>Activity</source> <target state="new">Activity</target> - <jms:reference-file line="174">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="170">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="61cc55aa0453184734c3fa0b621eda6fa874bd83" resname="Add" approved="yes"> <source>Add</source> <target state="translated">Hinzufügen</target> + <jms:reference-file line="161">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="509">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="510">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="39">prod/User/Add.html.twig</jms:reference-file> - <jms:reference-file line="154">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="352">prod/upload/lazaret.html.twig</jms:reference-file> - <jms:reference-file line="353">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="983c5aed52d2f74bf36e97dc34dbce97fdd43f5b" resname="Add a new field"> <source>Add a @@ -723,11 +722,16 @@ <target state="new">Add new range</target> <jms:reference-file line="138">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> + <trans-unit id="1b27740ce4d6bea2dd21cee1c12fa73206c1444a" resname="Add this url" approved="yes"> + <source>Add this url</source> + <target state="translated">Fügen Sie diese URL hinzu</target> + <jms:reference-file line="36">prod/upload/upload.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="f347a8ddd22508ed0310a2f9d8cf43dd96be34b1" resname="Add user" approved="yes"> <source>Add user</source> <target state="translated">Benutzer hinzufügen</target> - <jms:reference-file line="167">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="172">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="174">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="179">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="001c0aa88aab8441b8835c947c94c7290eadf779" resname="Additionnal modules" approved="yes"> <source>Additionnal modules</source> @@ -757,12 +761,13 @@ <trans-unit id="f38d53519197909c91536558af4b561b0b38c32f" resname="Advanced Search" approved="yes"> <source>Advanced Search</source> <target state="translated">Erweiterte Suche</target> - <jms:reference-file line="270">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="281">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="292">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="36ee3c1fd529ba9fd031d157e04c6fecb356591c" resname="Advanced mode"> <source>Advanced mode</source> <target state="new">Advanced mode</target> - <jms:reference-file line="53">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="49">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2e8bbf396d28ec55f8a6987f31422f44b693a08c" resname="Advanced settings"> <source>Advanced settings</source> @@ -772,66 +777,66 @@ <trans-unit id="bc8f3ed663adc3f670da96cfd59f14ca2d063439" resname="Affichage" approved="yes"> <source>Affichage</source> <target state="translated">Anzeige</target> - <jms:reference-file line="579">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="670">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1f9a8a4181e8f3f461180be54e1a63f70d9bce77" resname="Affichage au demarrage" approved="yes"> <source>Affichage au demarrage</source> <target state="translated">beim Start anzeigen</target> - <jms:reference-file line="683">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="774">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a810fdb68ba89818cce5c607021256e40cf14170" resname="Afficher la fiche descriptive" approved="yes"> <source>Afficher la fiche descriptive</source> <target state="translated">das beschriftliche Blatt anzeigen</target> - <jms:reference-file line="849">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="940">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="946bf37a064ede9145bd8e3c7ce50e8608885518" resname="Afficher le titre" approved="yes"> <source>Afficher le titre</source> <target state="translated">den Titel anzeigen</target> - <jms:reference-file line="858">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="949">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7627cf7574df870b584ab3bd8a67d62d7ab4a18b" resname="Afficher les status" approved="yes"> <source>Afficher les status</source> <target state="translated">die Status anzeigen</target> - <jms:reference-file line="840">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="931">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="47743dc906e82db1978c23daf01e4d5e727702bd" resname="Afficher une icone" approved="yes"> <source>Afficher une icone</source> <target state="translated">eine Ikone anzeigen</target> - <jms:reference-file line="653">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="744">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="53c62ab422733fc26fc4d0b64a7da7548588ae8b" resname="After metadata" approved="yes"> <source>After metadata</source> <target state="translated">Nach Metadaten</target> - <jms:reference-file line="641">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="732">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b9ba037c0e4c06d192c83e08070b15787f07daaa" resname="Aggregation" approved="yes"> <source>Aggregation</source> <target state="translated">Aggregation</target> - <jms:reference-file line="223">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="238">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="40a1dd8272b48953d037ba565c6189e9ef5cd06b" resname="Aide" approved="yes"> <source>Aide</source> <target state="translated">Hilfe</target> - <jms:reference-file line="697">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="788">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c26a1a41764983bc03456d418ee43e732e5f513e" resname="Aide sur les expressions regulieres" approved="yes"> <source>Aide sur les expressions regulieres</source> <target state="translated">Hilfe zu reguläre Ausdrücken</target> - <jms:reference-file line="315">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="317">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5e8a35671080dba23a7f84416dcf97fd975a33e6" resname="Ajouter a" approved="yes"> <source>Ajouter a</source> <target state="translated">Hinzufügen zu</target> - <jms:reference-file line="5">Bridge/Flickr/actionelements.html.twig</jms:reference-file> - <jms:reference-file line="5">Bridge/Youtube/actionelements.html.twig</jms:reference-file> <jms:reference-file line="5">Bridge/Dailymotion/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="5">Bridge/Youtube/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="5">Bridge/Flickr/actionelements.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6be348e8c91127640dc04e94dca7d5503ddb6c7d" resname="Ajouter ma selection courrante" approved="yes"> <source>Ajouter ma selection courrante</source> <target state="translated">Meine aktuelle Auswahl hinzufügen</target> <jms:reference-file line="10">prod/Baskets/Create.html.twig</jms:reference-file> - <jms:reference-file line="22">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="15">prod/Story/Create.html.twig</jms:reference-file> + <jms:reference-file line="22">prod/orders/order_item.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8d391a678bc6acf01f3f67c57b07853c5a588171" resname="Ajouter un nouvel utilisateur" approved="yes"> <source>Ajouter un nouvel utilisateur</source> @@ -853,17 +858,23 @@ <target state="translated">Alle</target> <jms:reference-file line="35">Form/Configuration/CustomLinkFormType.php</jms:reference-file> <jms:reference-file line="13">WorkZone/Browser/Browser.html.twig</jms:reference-file> - <jms:reference-file line="193">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="203">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="213">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="223">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="233">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="243">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="189">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="199">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="209">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="219">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="229">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="239">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="8">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="cff1e86ef3cd4771d8b9a289d1e75a465d5b48a7" resname="All these conditions" approved="yes"> + <source>All these conditions</source> + <target state="translated">Alle Bedingungen</target> + <jms:reference-file line="414">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4f5920cee28837f31429fd82f7bc5a335272a436" resname="All values" approved="yes"> <source>All values</source> <target state="translated">Alle Werte</target> - <jms:reference-file line="232">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="247">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="bc5595b574bc9e623a22a54ae40ae0cef6c28e80" resname="Aller a" approved="yes"> <source>Aller a</source> @@ -880,11 +891,6 @@ <target state="translated">Erlaubt</target> <jms:reference-file line="37">web/account/authorized_apps.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="38bee8bd21d8a303b49f881d977af44c493ad168" resname="Allowed access to the following collections"> - <source>Allowed access to the following collections</source> - <target state="new">Allowed access to the following collections</target> - <jms:reference-file line="30">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="c264a7efdbe0e0af2a6fe69e2bc9a89b90c5ec0e" resname="Allowed to access report" approved="yes"> <source>Allowed to access report</source> <target state="translated">Zugriff auf Report wird erlaubt</target> @@ -933,14 +939,14 @@ <trans-unit id="f2daa38baf15cf880ed52b7ce074c1d24f9fd58a" resname="Alphabetic asc"> <source>Alphabetic asc</source> <target state="new">Alphabetic asc</target> - <jms:reference-file line="714">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="731">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="743">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="805">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="822">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="834">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e7029550f725d4758c662974089acb89c467d221" resname="Alphabetic desc"> <source>Alphabetic desc</source> <target state="new">Alphabetic desc</target> - <jms:reference-file line="716">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="807">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ebd447ea09611b090d7b8a12835ffaf79ea17e47" resname="Also delete records that rely on groupings." approved="yes"> <source>Also delete records that rely on groupings.</source> @@ -950,23 +956,8 @@ <trans-unit id="f0cf9a47c6b420dda55c973a12840600fc19b7fb" resname="An error occured" approved="yes"> <source>An error occured</source> <target state="translated">Ein Fehler ist aufgetreten</target> - <jms:reference-file line="173">Controller/Prod/BasketController.php</jms:reference-file> - <jms:reference-file line="163">Controller/Prod/MoveCollectionController.php</jms:reference-file> - <jms:reference-file line="214">Controller/Prod/StoryController.php</jms:reference-file> - <jms:reference-file line="243">Controller/Prod/LazaretController.php</jms:reference-file> - <jms:reference-file line="170">Controller/Prod/ToolsController.php</jms:reference-file> - <jms:reference-file line="185">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="225">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="266">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="449">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="517">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="557">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="595">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="633">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="666">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="699">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="807">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="71">Controller/Admin/DataboxesController.php</jms:reference-file> + <jms:reference-file line="118">Model/Manipulator/LazaretManipulator.php</jms:reference-file> + <jms:reference-file line="233">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="82">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="155">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="187">Controller/Admin/DataboxController.php</jms:reference-file> @@ -977,14 +968,34 @@ <jms:reference-file line="499">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="581">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="647">Controller/Admin/DataboxController.php</jms:reference-file> - <jms:reference-file line="118">Model/Manipulator/LazaretManipulator.php</jms:reference-file> - <jms:reference-file line="231">Model/Manipulator/LazaretManipulator.php</jms:reference-file> - <jms:reference-file line="25">admin/collection/suggested_value.html.twig</jms:reference-file> - <jms:reference-file line="23">admin/collection/collection.html.twig</jms:reference-file> - <jms:reference-file line="194">task-manager/task-editor/task.html.twig</jms:reference-file> - <jms:reference-file line="19">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="71">Controller/Admin/DataboxesController.php</jms:reference-file> + <jms:reference-file line="186">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="226">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="267">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="450">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="518">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="558">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="596">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="634">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="667">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="700">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="808">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="173">Controller/Prod/BasketController.php</jms:reference-file> + <jms:reference-file line="170">Controller/Prod/ToolsController.php</jms:reference-file> + <jms:reference-file line="257">Controller/Prod/LazaretController.php</jms:reference-file> + <jms:reference-file line="164">Controller/Prod/MoveCollectionController.php</jms:reference-file> + <jms:reference-file line="214">Controller/Prod/StoryController.php</jms:reference-file> <jms:reference-file line="653">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="19">admin/databox/databox.html.twig</jms:reference-file> <jms:reference-file line="15">web/admin/databases.html.twig</jms:reference-file> + <jms:reference-file line="23">admin/collection/collection.html.twig</jms:reference-file> + <jms:reference-file line="25">admin/collection/suggested_value.html.twig</jms:reference-file> + <jms:reference-file line="194">task-manager/task-editor/task.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="a16a3255c311eccbe2471bfc5b5cd92f3b907654" resname="An error occured when wanting to change status!"> + <source>An error occured when wanting to change status!</source> + <target state="new">An error occured when wanting to change status!</target> + <jms:reference-file line="136">Controller/Prod/LazaretController.php</jms:reference-file> </trans-unit> <trans-unit id="a518072a2c5c91cdd2591c1b8d79777664df1ea4" resname="An error occured while denying, please retry or contact an admin if problem persists" approved="yes"> <source>An error occured while denying, please retry or contact an admin if problem persists</source> @@ -1021,12 +1032,12 @@ <source>An error occurred</source> <target state="translated">Ein Fehler ist aufgetreten</target> <jms:reference-file line="77">Order/Controller/ProdOrderController.php</jms:reference-file> - <jms:reference-file line="145">Controller/Prod/BasketController.php</jms:reference-file> - <jms:reference-file line="125">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="521">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="108">Controller/Admin/SearchEngineController.php</jms:reference-file> - <jms:reference-file line="2008">Controller/Api/V1Controller.php</jms:reference-file> - <jms:reference-file line="2454">Controller/Api/V1Controller.php</jms:reference-file> + <jms:reference-file line="126">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="145">Controller/Prod/BasketController.php</jms:reference-file> + <jms:reference-file line="2050">Controller/Api/V1Controller.php</jms:reference-file> + <jms:reference-file line="2496">Controller/Api/V1Controller.php</jms:reference-file> <jms:reference-file line="81">web/admin/statusbit.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7e861f79c8744b5cb0b59ce4f0100603952751b1" resname="An error occurred reading this file" approved="yes"> @@ -1057,7 +1068,7 @@ <trans-unit id="aae1263383b96270870516a4097020921912df74" resname="Aperture" approved="yes"> <source>Aperture</source> <target state="translated">Blende</target> - <jms:reference-file line="284">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="295">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> <jms:reference-file line="104">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="013cf62916a339608ae3c498d34b9e55afa46dc1" resname="Apparait aussi dans ces paniers" approved="yes"> @@ -1124,8 +1135,8 @@ <trans-unit id="b8fb717785e899f8e3bacfd74a395da7a434af9e" resname="Apply changes" approved="yes"> <source>Apply changes</source> <target state="translated">Änderungen anwenden</target> - <jms:reference-file line="113">actions/Property/index.html.twig</jms:reference-file> <jms:reference-file line="49">actions/Property/type.html.twig</jms:reference-file> + <jms:reference-file line="113">actions/Property/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0e585e139fb6fc86d30e02ba78bdbb4dff6ac6b9" resname="Apply status on story children." approved="yes"> <source>Apply status on story children.</source> @@ -1145,7 +1156,8 @@ <trans-unit id="2621c6fd51a58e1d1d5c491aac71488647b20224" resname="Archive" approved="yes"> <source>Archive</source> <target state="translated">Archivieren</target> - <jms:reference-file line="170">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="180">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="181">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6e8fd96e9e2759d3e405608bfb1a064d3338b4dd" resname="Are you sure you want delete users rights ?" approved="yes"> <source>Are you sure you want delete users rights ?</source> @@ -1161,7 +1173,7 @@ <source>Are you sure you want to delete this list ?</source> <target state="translated">Wollen Sie diese Liste sicher löschen?</target> <jms:reference-file line="83">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="131">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="132">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0ad86fda5d367a9ff74a9c278344f3bb8f75c223" resname="Are you sure you want to rebuild the sub-definitions of selected records?" approved="yes"> <source>Are you sure you want to rebuild the sub-definitions of selected records?</source> @@ -1197,7 +1209,7 @@ <trans-unit id="b2ed82f1bf1c30916cde300ded82176c2ff0300a" resname="Aucun" approved="yes"> <source>Aucun</source> <target state="translated">Kein(e)</target> - <jms:reference-file line="214">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="229">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3f9f7ad2bc75b4c34160ea51aeff9a273da06c1f" resname="Aucun bridge disponible. Veuillez contacter un administrateur." approved="yes"> <source>Aucun bridge disponible. Veuillez contacter un administrateur.</source> @@ -1212,7 +1224,7 @@ <trans-unit id="5c4eb810a8d51375a0e76c76d183446905d39d3a" resname="Aucun statut editable" approved="yes"> <source>Aucun statut editable</source> <target state="translated">Kein editierbarer Status</target> - <jms:reference-file line="207">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="209">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e8f882731020de75c4168f82456175a386828cd1" resname="Aucune" approved="yes"> <source>Aucune</source> @@ -1253,33 +1265,38 @@ <trans-unit id="acdac205f5e24cb75113c4b281a2c13f08b75159" resname="Audio" approved="yes"> <source>Audio</source> <target state="translated">Audio</target> - <jms:reference-file line="296">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="321">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8074d6bbaaca47f35831923ebfd25c58be4b1cee" resname="Audio Birate" approved="yes"> <source>Audio Birate</source> <target state="translated">Audio-Bitrate</target> - <jms:reference-file line="32">Media/Subdef/Audio.php</jms:reference-file> + <jms:reference-file line="35">Media/Subdef/Audio.php</jms:reference-file> </trans-unit> <trans-unit id="d6caeca6303e9c722c929fbb58744a013a7ba7db" resname="Audio Codec" approved="yes"> <source>Audio Codec</source> <target state="translated">Audio Codec</target> + <jms:reference-file line="37">Media/Subdef/Audio.php</jms:reference-file> <jms:reference-file line="36">Media/Subdef/Video.php</jms:reference-file> - <jms:reference-file line="34">Media/Subdef/Audio.php</jms:reference-file> </trans-unit> - <trans-unit id="a80232c45008d73666e95544f7c9c8c0896536af" resname="Audio Samplerate"> + <trans-unit id="a80232c45008d73666e95544f7c9c8c0896536af" resname="Audio Samplerate" approved="yes"> <source>Audio Samplerate</source> - <target state="new">Audio Samplerate</target> - <jms:reference-file line="320">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <target state="translated">Audio Samplerate</target> + <jms:reference-file line="339">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> - <trans-unit id="bdeea21f6257f434dcfcffb4f0470a042a1b5c17" resname="Audio codec"> + <trans-unit id="31afcc88a7f552bfd4d330c2c70d8fafd7b8e0f9" resname="Audio channel" approved="yes"> + <source>Audio channel</source> + <target state="translated">Audiokanal</target> + <jms:reference-file line="38">Media/Subdef/Audio.php</jms:reference-file> + </trans-unit> + <trans-unit id="bdeea21f6257f434dcfcffb4f0470a042a1b5c17" resname="Audio codec" approved="yes"> <source>Audio codec</source> - <target state="new">Audio codec</target> - <jms:reference-file line="330">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <target state="translated">Audio-Codec</target> + <jms:reference-file line="353">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="27be4ad944410219f1a8dd01cc5e216a09c16646" resname="AudioSamplerate" approved="yes"> <source>AudioSamplerate</source> <target state="translated">Audio Samplerate</target> - <jms:reference-file line="33">Media/Subdef/Audio.php</jms:reference-file> + <jms:reference-file line="36">Media/Subdef/Audio.php</jms:reference-file> </trans-unit> <trans-unit id="9e761dfcff90efcb07867accd3e8b109762fc596" resname="Auth_token directory path" approved="yes"> <source>Auth_token directory path</source> @@ -1322,9 +1339,9 @@ <target state="translated">*Phraseanet Navigator* aktivieren</target> <jms:reference-file line="27">Form/Configuration/APIClientsFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="b85de40822e66ce4309b94ccad5bb731f2a89373" resname="Authorize Adobe cc Plugin to connect."> + <trans-unit id="b85de40822e66ce4309b94ccad5bb731f2a89373" resname="Authorize Adobe cc Plugin to connect." approved="yes"> <source>Authorize Adobe cc Plugin to connect.</source> - <target state="new">Authorize Adobe cc Plugin to connect.</target> + <target state="translated">Adobe cc Plugin Verbindung erlauben</target> <jms:reference-file line="36">Form/Configuration/APIClientsFormType.php</jms:reference-file> </trans-unit> <trans-unit id="6e1ead524b95ba3b45281df7ba45d2addbbf1a79" resname="Authorize Microsoft Office Plugin to connect." approved="yes"> @@ -1350,20 +1367,20 @@ <trans-unit id="11d4e8a639615510da9cd75da3031e91f4f551bb" resname="Autorisation d'acces" approved="yes"> <source>Autorisation d'acces</source> <target state="translated">Zugriffsberechtigung</target> - <jms:reference-file line="89">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="69">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="89">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ff83984310dc25c919f046ccac2c300469efa084" resname="Autoriser" approved="yes"> <source>Autoriser</source> <target state="translated">Berechtigen</target> - <jms:reference-file line="105">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="85">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="105">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b0f9d3132d4759c2fd88c394935503435cebbc79" resname="Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ?" approved="yes"> <source>Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ?</source> <target state="translated">Ermächtigen Sie die Anwendung %application_name%, Ihren Inhalt auf %home_title% zuzugreifen?</target> - <jms:reference-file line="94">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="74">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="94">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="45fc87c2d0ade465c57c00f7aa434a4d0bebe106" resname="Available in multi-export tab" approved="yes"> <source>Available in multi-export tab</source> @@ -1387,12 +1404,12 @@ <trans-unit id="738444fb7badaeb28467562ed8af8e1311e42eac" resname="Back to Feedback" approved="yes"> <source>Back to Feedback</source> <target state="translated">Zurück zum Feedback</target> - <jms:reference-file line="275">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="280">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6b61d67b7d0f7a7548068655adbd7f0a91a2eb8d" resname="Back to Push" approved="yes"> <source>Back to Push</source> <target state="translated">Zurück zum Push</target> - <jms:reference-file line="271">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="276">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ba753fe34fb03869657d308ee16ef7bc8cc695f9" resname="Back to basket list" approved="yes"> <source>Back to basket list</source> @@ -1402,10 +1419,10 @@ <trans-unit id="ae1378dc6a6f7df2435c398db9e6eac71646092b" resname="Bad request format, only JSON is allowed" approved="yes"> <source>Bad request format, only JSON is allowed</source> <target state="translated">Bad Request Format, nur JSON wird erlaubt</target> + <jms:reference-file line="187">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="573">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="58">Controller/Admin/RootController.php</jms:reference-file> <jms:reference-file line="220">Controller/Admin/RootController.php</jms:reference-file> - <jms:reference-file line="573">Controller/Admin/DataboxController.php</jms:reference-file> - <jms:reference-file line="180">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="fa0d7d2cb29f1ca72b4108bfaa0bf5686d3910ff" resname="Bad request, please contact an admin" approved="yes"> <source>Bad request, please contact an admin</source> @@ -1420,8 +1437,8 @@ <trans-unit id="3e06b5206dcaf1dca9ccaab68e3fbb918b450113" resname="Base %base%" approved="yes"> <source>Base %base%</source> <target state="translated">Datenbank %base%</target> - <jms:reference-file line="4">web/admin/editusers_timelimit.html.twig</jms:reference-file> <jms:reference-file line="42">web/admin/editusers_quotas.html.twig</jms:reference-file> + <jms:reference-file line="4">web/admin/editusers_timelimit.html.twig</jms:reference-file> <jms:reference-file line="4">web/admin/editusers_timelimit_sbas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="65a99419ccf90ea10839c45a87a109f3b8c581a9" resname="Base could not be created" approved="yes"> @@ -1462,7 +1479,7 @@ <trans-unit id="83602366c2bc77de4a17181cf566da428eaee78e" resname="Basket is not found" approved="yes"> <source>Basket is not found</source> <target state="translated">Sammelkorb wurde nicht gefunden</target> - <jms:reference-file line="166">Model/Repositories/BasketRepository.php</jms:reference-file> + <jms:reference-file line="184">Model/Repositories/BasketRepository.php</jms:reference-file> </trans-unit> <trans-unit id="f149359beace4d242ac47578384e4cb7e001b9e7" resname="Basket updated" approved="yes"> <source>Basket updated</source> @@ -1502,9 +1519,9 @@ <trans-unit id="38481c2ad1ad4de56004cc8e542ad04652002add" resname="Browse Baskets" approved="yes"> <source>Browse Baskets</source> <target state="translated">Sammelkörbe durchsuchen</target> - <jms:reference-file line="211">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="213">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="214">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="215">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="216">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="54a2cf5e634dbba0be2bf8a55f79252f5c790bdb" resname="Browser" approved="yes"> <source>Browser</source> @@ -1514,7 +1531,7 @@ <trans-unit id="2d90cbe9431fb9e8d6013b651c2fb46a598de9eb" resname="Business Fields" approved="yes"> <source>Business Fields</source> <target state="translated">Geschäftsfelder</target> - <jms:reference-file line="197">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="212">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7985544ae054430f8b4416a883fa9d0b084ee0cf" resname="By checking this box, you accept %beginning_link% Terms of Use %end_link%" approved="yes"> <source>By checking this box, you accept %beginning_link% Terms of Use %end_link%</source> @@ -1532,32 +1549,27 @@ <trans-unit id="2a8e6c2695279fb4760d299974903123f751b3bf" resname="By field"> <source>By field</source> <target state="new">By field</target> - <jms:reference-file line="355">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="384">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="48bf97f55c15fa2acb0a283e3a7e3f4f738b781d" resname="CHAMPS" approved="yes"> <source>CHAMPS</source> <target state="translated">Felder</target> <jms:reference-file line="123">web/admin/tree.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="23cb1ba2135af54bb7f9dc4ac628c8c16b1274c8" resname="CSV export" approved="yes"> - <source>CSV export</source> - <target state="translated">CSV Export</target> - <jms:reference-file line="22">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="07d75a5073e3247c7ac54d3a797d3f777b421863" resname="Camera Model" approved="yes"> <source>Camera Model</source> <target state="translated">Kameramodell</target> - <jms:reference-file line="274">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="281">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> <jms:reference-file line="56">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="77dfd2135f4db726c47299bb55be26f7f4525a46" resname="Cancel" approved="yes"> <source>Cancel</source> <target state="translated">Abbrechen</target> <jms:reference-file line="119">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="38">prod/User/Add.html.twig</jms:reference-file> <jms:reference-file line="52">prod/actions/delete_records_confirm.html.twig</jms:reference-file> - <jms:reference-file line="115">actions/Property/index.html.twig</jms:reference-file> <jms:reference-file line="50">actions/Property/type.html.twig</jms:reference-file> + <jms:reference-file line="115">actions/Property/index.html.twig</jms:reference-file> + <jms:reference-file line="38">prod/User/Add.html.twig</jms:reference-file> <jms:reference-file line="77">task-manager/task-editor/task.html.twig</jms:reference-file> <jms:reference-file line="42">user/import/view.html.twig</jms:reference-file> <jms:reference-file line="68">admin/fields/templates.html.twig</jms:reference-file> @@ -1565,8 +1577,8 @@ <trans-unit id="ae1f9ef7dc1cee4760e7f208f36c225e3ab1aa1f" resname="Cancel all" approved="yes"> <source>Cancel all</source> <target state="translated">Alle abbrechen</target> + <jms:reference-file line="131">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="121">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="128">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="82695f04e6097106923a58949a9e1b0fadd1a989" resname="Cannot upload Zero Byte files" approved="yes"> <source>Cannot upload Zero Byte files</source> @@ -1586,9 +1598,9 @@ <trans-unit id="790d9876f3745353f60eb4d5232b26bb597ca5a3" resname="Categorie" approved="yes"> <source>Categorie</source> <target state="translated">Kategorie</target> + <jms:reference-file line="38">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> <jms:reference-file line="58">Bridge/Youtube/upload.html.twig</jms:reference-file> <jms:reference-file line="45">Bridge/Youtube/video_modify.html.twig</jms:reference-file> - <jms:reference-file line="38">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> </trans-unit> <trans-unit id="bf1584669680e7841bf069b9495ea2f012bff60b" resname="Ce champ est decrit comme element du %DublinCoreElementSet%" approved="yes"> <source>Ce champ est decrit comme element du %DublinCoreElementSet%</source> @@ -1620,12 +1632,12 @@ <target state="translated">Dieses Feld ist ein Pflichtfeld</target> <jms:reference-file line="691">Bridge/Api/Flickr.php</jms:reference-file> <jms:reference-file line="713">Bridge/Api/Flickr.php</jms:reference-file> - <jms:reference-file line="798">Bridge/Api/Dailymotion.php</jms:reference-file> - <jms:reference-file line="823">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="905">Bridge/Api/Youtube.php</jms:reference-file> <jms:reference-file line="908">Bridge/Api/Youtube.php</jms:reference-file> <jms:reference-file line="931">Bridge/Api/Youtube.php</jms:reference-file> <jms:reference-file line="934">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="798">Bridge/Api/Dailymotion.php</jms:reference-file> + <jms:reference-file line="823">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="e821f6f0c9613624f82ae880c01573ab0c0a0eac" resname="Ce champ est relie a une branche de thesaurus" approved="yes"> <source>Ce champ est relie a une branche de thesaurus</source> @@ -1648,10 +1660,10 @@ <target state="translated">Dieses Feld ist zu lang, maximal %length% Zeichen</target> <jms:reference-file line="694">Bridge/Api/Flickr.php</jms:reference-file> <jms:reference-file line="716">Bridge/Api/Flickr.php</jms:reference-file> - <jms:reference-file line="801">Bridge/Api/Dailymotion.php</jms:reference-file> - <jms:reference-file line="826">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="911">Bridge/Api/Youtube.php</jms:reference-file> <jms:reference-file line="937">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="801">Bridge/Api/Dailymotion.php</jms:reference-file> + <jms:reference-file line="826">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="6a436b2b01f08a63284006c23ac3b38c9a699cbd" resname="Ce champ est utilise en titre a l'affichage" approved="yes"> <source>Ce champ est utilise en titre a l'affichage</source> @@ -1768,8 +1780,8 @@ <trans-unit id="7135ee5eaed0e404c4fcf48d6eb7d2808f8e55f2" resname="Clear list" approved="yes"> <source>Clear list</source> <target state="translated">Liste löschen</target> + <jms:reference-file line="112">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="109">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="109">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0fcdb8c5215c8bd73769c3492e47d86ec3f6837e" resname="Client application" approved="yes"> <source>Client application</source> @@ -1791,11 +1803,6 @@ <target state="translated">die ganze Spalte markieren</target> <jms:reference-file line="43">web/admin/index.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="9f6dde6e53de78e748cd510d4dcd153b38a0b855" resname="Cochez les cases correspondantes aux colonnes que vous desirez voire apparaitre dans le report" approved="yes"> - <source>Cochez les cases correspondantes aux colonnes que vous desirez voire apparaitre dans le report</source> - <target state="translated">Markieren Sie die Felder, die Sie im Report sehen möchten</target> - <jms:reference-file line="4">web/report/listColumn.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="3db8c513d71fe9dd08684c52c36e0a9d5bc591c5" resname="Code d'acces" approved="yes"> <source>Code d'acces</source> <target state="translated">Zugangscode</target> @@ -1804,7 +1811,7 @@ <trans-unit id="397cd77cd56f7d480a93a17770e90f2d8a1ac032" resname="Codec Audio" approved="yes"> <source>Codec Audio</source> <target state="translated">Audio Codec</target> - <jms:reference-file line="83">actions/Tools/videoEditor.html.twig</jms:reference-file> + <jms:reference-file line="96">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="140">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="672e654e54323537399e2353680dd144c0b9af32" resname="Codec Video" approved="yes"> @@ -1816,24 +1823,24 @@ <source>Collection</source> <target state="translated">Kollektion</target> <jms:reference-file line="3">prod/Story/Create.html.twig</jms:reference-file> - <jms:reference-file line="344">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="441">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="12">admin/databox/details.html.twig</jms:reference-file> </trans-unit> <trans-unit id="814cd4d896d0d93eac2f4d71dc24c91a46cd5e28" resname="Collection %collection%" approved="yes"> <source>Collection %collection%</source> <target state="translated">%collection% Kollektion</target> - <jms:reference-file line="8">web/admin/editusers_timelimit.html.twig</jms:reference-file> <jms:reference-file line="46">web/admin/editusers_quotas.html.twig</jms:reference-file> + <jms:reference-file line="8">web/admin/editusers_timelimit.html.twig</jms:reference-file> </trans-unit> <trans-unit id="915c5b033858560e7d04ae453279b9418637eade" resname="Collection empty successful" approved="yes"> <source>Collection empty successful</source> <target state="translated">Die Leerung der Kollektion wurde erfolgreich abgeschlossen</target> - <jms:reference-file line="131">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="132">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="898b7e63805ba2e4277ee0f4523c6376dcd0e579" resname="Collection order"> <source>Collection order</source> <target state="new">Collection order</target> - <jms:reference-file line="706">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="797">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f704cc39c26f37922029d5ff58c61b607d384521" resname="Color Depth" approved="yes"> <source>Color Depth</source> @@ -1845,16 +1852,16 @@ <target state="translated">Farbraum</target> <jms:reference-file line="62">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="0b8cb446bc8277d5fd8242aa11ecb0054f9bbaa6" resname="Colorspace"> + <trans-unit id="0b8cb446bc8277d5fd8242aa11ecb0054f9bbaa6" resname="Colorspace" approved="yes"> <source>Colorspace</source> - <target state="new">Colorspace</target> - <jms:reference-file line="340">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <target state="translated">Colorspace</target> + <jms:reference-file line="367">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="478443411674f0df06db3b28230d37625383f8c2" resname="Commande" approved="yes"> <source>Commande</source> <target state="translated">Bestellung</target> <jms:reference-file line="20">eventsmanager/notify/ordernotdelivered.php</jms:reference-file> - <jms:reference-file line="20">eventsmanager/notify/orderdeliver.php</jms:reference-file> + <jms:reference-file line="23">eventsmanager/notify/orderdeliver.php</jms:reference-file> </trans-unit> <trans-unit id="71e4baa0bd2b501d3cffecac38f650c5db86c3f4" resname="Commande du %date%" approved="yes"> <source>Commande du %date%</source> @@ -1864,14 +1871,14 @@ <trans-unit id="17275970238d7ec2311e2097df8868fb3d338585" resname="Commandes" approved="yes"> <source>Commandes</source> <target state="translated">Bestellungen</target> - <jms:reference-file line="119">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="120">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7a1994999d181deea68e4304b3346e78f838ecb7" resname="Company" approved="yes"> <source>Company</source> <target state="translated">Unternehmen</target> - <jms:reference-file line="20">prod/User/Add.html.twig</jms:reference-file> - <jms:reference-file line="177">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="173">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="22">actions/Feedback/ListsMacros.html.twig</jms:reference-file> + <jms:reference-file line="20">prod/User/Add.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ebbde5a0aa9da74fc06083bd39398b2caecf42e5" resname="Complete the fields below to register on %instance_title%!" approved="yes"> <source>Complete the fields below to register on %instance_title%!</source> @@ -1886,10 +1893,10 @@ <trans-unit id="f7853f027e327a9ddf52dd60f8d1719ae6904333" resname="Confidentialite" approved="yes"> <source>Confidentialite</source> <target state="translated">Vertraulichkeit</target> - <jms:reference-file line="87">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="56">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="75">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="56">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="87">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="56">Bridge/Youtube/video_modify.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6e9445beaddb548587c6f275e49da38e9fc7b785" resname="Confidentialite : privee" approved="yes"> <source>Confidentialite : privee</source> @@ -1904,7 +1911,7 @@ <trans-unit id="754164850f38c1ecdaf6b8ed894cb192bc36c5f4" resname="Configuration" approved="yes"> <source>Configuration</source> <target state="translated">Konfiguration</target> - <jms:reference-file line="580">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="671">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="37c3584d7b7d64dcff10d75caf719d4908e1f433" resname="Confirm new email address" approved="yes"> <source>Confirm new email address</source> @@ -1929,13 +1936,13 @@ <trans-unit id="6512ee1541e9a6c52d5bf7cf465332e8df25ea3c" resname="Connection" approved="yes"> <source>Connection</source> <target state="translated">Verbindung</target> - <jms:reference-file line="74">login/oauth/login.html.twig</jms:reference-file> - <jms:reference-file line="15">login/providers/bind.html.twig</jms:reference-file> - <jms:reference-file line="73">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="15">login/providers/mapping.html.twig</jms:reference-file> <jms:reference-file line="89">login/providers/mapping.html.twig</jms:reference-file> + <jms:reference-file line="15">login/providers/bind.html.twig</jms:reference-file> + <jms:reference-file line="73">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="24">web/login/index.html.twig</jms:reference-file> - <jms:reference-file line="84">web/login/index.html.twig</jms:reference-file> + <jms:reference-file line="85">web/login/index.html.twig</jms:reference-file> + <jms:reference-file line="74">login/oauth/login.html.twig</jms:reference-file> </trans-unit> <trans-unit id="64b7896508144a1f427b5bad0d51c6b139c610f3" resname="Connection is OK but database does not exists or can not be accessed" approved="yes"> <source>Connection is OK but database does not exists or can not be accessed</source> @@ -1957,6 +1964,11 @@ <target state="translated">Bitte lesen Sie Online die Voraussetzungen und die Web-Server Konfiguration</target> <jms:reference-file line="311">web/setup/step2.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="33e15d008d511f3101566a2e25203ef2a3f605a0" resname="Contains" approved="yes"> + <source>Contains</source> + <target state="translated">enthält</target> + <jms:reference-file line="433">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="34326e71e2592544dedcb84077a6317dc5a5e700" resname="Continuer ?" approved="yes"> <source>Continuer ?</source> <target state="translated">Fortsetzen?</target> @@ -1995,7 +2007,7 @@ <trans-unit id="2d4f012e5f06719ae9bbd6de1696d7502474ba2d" resname="Could not perform request, please contact an administrator." approved="yes"> <source>Could not perform request, please contact an administrator.</source> <target state="translated">Antrag konnte nicht durchgeführt werden. Bitte wenden Sie sich an Ihren Systemadministrator</target> - <jms:reference-file line="87">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="94">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="c183d160b24ba4d8cd1a39ffb5ceed69be38ee51" resname="Could not retrieve the file ID, please retry or contact an admin if problem persist" approved="yes"> <source>Could not retrieve the file ID, please retry or contact an admin if problem persist</source> @@ -2010,12 +2022,12 @@ <trans-unit id="7ebde54d7a6733f04781a2112a3d7548cb144e1f" resname="Couleur de selection" approved="yes"> <source>Couleur de selection</source> <target state="translated">Farbauswahl</target> - <jms:reference-file line="674">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="765">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d523ebbd10146cdfd39dee077f04c9d08468d0bc" resname="Country" approved="yes"> <source>Country</source> <target state="translated">Land</target> - <jms:reference-file line="183">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="179">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="36">actions/Feedback/ListsMacros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1a86d07315c59a10355c667fbd3cdd3d813aa476" resname="Create a user"> @@ -2051,9 +2063,9 @@ <trans-unit id="2bd00521d39c34d7b8a4a42573e1cf42fb319036" resname="Creer" approved="yes"> <source>Creer</source> <target state="translated">erstellen</target> - <jms:reference-file line="4">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="4">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> <jms:reference-file line="4">Bridge/Dailymotion/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="4">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="4">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e0c179a64761a8abdbd1a1ef499e6aa7fd41b516" resname="Creer la tache d'ecriture des metadonnees" approved="yes"> <source>Creer la tache d'ecriture des metadonnees</source> @@ -2098,8 +2110,8 @@ <trans-unit id="6a2b9fb6f6a60bde44a1bbe5e058c013cb1004ea" resname="Creer une playlist" approved="yes"> <source>Creer une playlist</source> <target state="translated">einen neuen Playlist erstellen</target> - <jms:reference-file line="4">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> <jms:reference-file line="4">Bridge/Dailymotion/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="4">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> </trans-unit> <trans-unit id="27c26eb5f5ded79caa39c9dd44376bf3556f6466" resname="Creez une application pour commencer a utiliser l'API Phraseanet" approved="yes"> <source>Creez une application pour commencer a utiliser l'API Phraseanet</source> @@ -2121,7 +2133,7 @@ errors</source> <target state="new">Current configuration contains some errors</target> - <jms:reference-file line="290">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="309">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="31b3c410ee3a3630f3efc08bae2fd9d06ec16ff4" resname="Current operations cannot be executed because the site is temporarily in maintenance mode. Wait a few minutes and try your request again" approved="yes"> <source>Current operations cannot be executed because the site is temporarily in maintenance mode. Wait a few minutes and try your request again</source> @@ -2149,14 +2161,14 @@ <target state="translated">DCES</target> <jms:reference-file line="121">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="ce3e4bed2954adbf05f8edfaf1a4c0cc0cea70e9" resname="DE"> + <trans-unit id="ce3e4bed2954adbf05f8edfaf1a4c0cc0cea70e9" resname="DE" approved="yes"> <source>DE</source> - <target state="new">DE</target> + <target state="translated">DE</target> <jms:reference-file line="40">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="129bcdb9bbdbd9bba49b7e1eb1ec49698604f0b0" resname="DU"> + <trans-unit id="129bcdb9bbdbd9bba49b7e1eb1ec49698604f0b0" resname="DU" approved="yes"> <source>DU</source> - <target state="new">DU</target> + <target state="translated">DU</target> <jms:reference-file line="41">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> <trans-unit id="5e2dc4518235e7567a3d68c45cb6165ec116fa3c" resname="Danger zone !"> @@ -2219,12 +2231,12 @@ <trans-unit id="eb9a4bc1c0c153e4e4b042a79113b815b7e3021d" resname="Date" approved="yes"> <source>Date</source> <target state="translated">Datum</target> - <jms:reference-file line="337">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="434">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2aafad40063bdb20757ad69b9fc9e0a06d6ca1c1" resname="Date Added" approved="yes"> <source>Date Added</source> <target state="translated">Hinzufügungsdatum</target> - <jms:reference-file line="348">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="377">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a4dde3acaa2424fe7135b962c49e37b13b1ebb43" resname="Date Creation" approved="yes"> <source>Date Creation</source> @@ -2234,16 +2246,16 @@ <trans-unit id="ae5ac088b6ef50c2a9e1ccf96d6f3c6d65cc4c05" resname="Date Updated"> <source>Date Updated</source> <target state="new">Date Updated</target> - <jms:reference-file line="351">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="380">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="910c2f8e114bda3eef68b7f17eee5e864be52dc4" resname="Date de connexion" approved="yes"> <source>Date de connexion</source> <target state="translated">Verbindungsdatum</target> <jms:reference-file line="22">web/account/sessions.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="d5e8d1af5f3c137fb998b7afa347eeea683a7229" resname="Date de création"> + <trans-unit id="d5e8d1af5f3c137fb998b7afa347eeea683a7229" resname="Date de création" approved="yes"> <source>Date de création</source> - <target state="new">Date de création</target> + <target state="translated">Erstellungsdatum</target> <jms:reference-file line="10">prod/Baskets/Reorder.html.twig</jms:reference-file> <jms:reference-file line="9">prod/Story/Reorder.html.twig</jms:reference-file> </trans-unit> @@ -2254,12 +2266,17 @@ <jms:reference-file line="103">prod/orders/order_box.html.twig</jms:reference-file> <jms:reference-file line="154">prod/orders/order_box.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="c004345fde85bded2c74513e29c8cd58d74b594f" resname="Date de modification"> + <trans-unit id="c004345fde85bded2c74513e29c8cd58d74b594f" resname="Date de modification" approved="yes"> <source>Date de modification</source> - <target state="new">Date de modification</target> + <target state="translated">Änderungsdatum</target> <jms:reference-file line="11">prod/Baskets/Reorder.html.twig</jms:reference-file> <jms:reference-file line="10">prod/Story/Reorder.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="ce084029e351b4bfa9f425ae70e8aaa14a8904e5" resname="Date(s) from field(s)" approved="yes"> + <source>Date(s) from field(s)</source> + <target state="translated">Datum vom Feld</target> + <jms:reference-file line="459">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="6b98c9b528241fc8135fb9fd472c7db12ec14964" resname="De" approved="yes"> <source>De</source> <target state="translated">von</target> @@ -2301,7 +2318,7 @@ <trans-unit id="21cec17f6cd9c992f10804a71ea6d286a56c456a" resname="Default basket" approved="yes"> <source>Default basket</source> <target state="translated">Standard Sammelkorb</target> - <jms:reference-file line="48">Phrasea/Helper/WorkZone.php</jms:reference-file> + <jms:reference-file line="49">Phrasea/Helper/WorkZone.php</jms:reference-file> </trans-unit> <trans-unit id="1747ef3d688685c5844db2dc7c98aafd78ce3893" resname="Default export title" approved="yes"> <source>Default export title</source> @@ -2336,7 +2353,7 @@ <trans-unit id="93603718ec74d5e4b9bc11e64f36a5d90f03f48e" resname="Defined by admin"> <source>Defined by admin</source> <target state="new">Defined by admin</target> - <jms:reference-file line="712">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="803">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3b6bf506a535e9bf22431eace58b8f2f704dbd2a" resname="Defined in Apache configuration" approved="yes"> <source>Defined in Apache configuration</source> @@ -2356,10 +2373,15 @@ <trans-unit id="f6fdbe48dc54dd86f63097a03bd24094dedd713a" resname="Delete" approved="yes"> <source>Delete</source> <target state="translated">Löschen</target> - <jms:reference-file line="355">prod/upload/lazaret.html.twig</jms:reference-file> - <jms:reference-file line="356">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="512">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="513">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="25">admin/task-manager/templates.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="1b5737dea168495fa0495e00ce58b4832772a492" resname="Delete account successfull" approved="yes"> + <source>Delete account successfull</source> + <target state="translated">Benutzerkonto erfolgreich gelöscht</target> + <jms:reference-file line="21">Notification/Mail/MailSuccessAccountDelete.php</jms:reference-file> + </trans-unit> <trans-unit id="7533d4121d8de10e9b2b4b9c5afa5dfbde846af1" resname="Delete all users rights" approved="yes"> <source>Delete all users rights</source> <target state="translated">Alle Nutzerrechte löschen</target> @@ -2369,7 +2391,7 @@ <trans-unit id="ddd0876d47dc58418b245cf6a3d73a97d8b09400" resname="Delete basket" approved="yes"> <source>Delete basket</source> <target state="translated">Sammelkorb löschen</target> - <jms:reference-file line="37">WorkZone/Browser/Results.html.twig</jms:reference-file> + <jms:reference-file line="18">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dba1d3851f7f3efec8a1956e040bae0328da98d0" resname="Delete current"> <source>Delete current</source> @@ -2384,7 +2406,7 @@ <trans-unit id="c6d08354792522fdbda121b635282d0f2c41c507" resname="Delete the selection"> <source>Delete the selection</source> <target state="new">Delete the selection</target> - <jms:reference-file line="72">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="68">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5934638eb5d7384a3c63899019365bb9b7b53aff" resname="Delete the subview ?"> <source>Delete the subview ?</source> @@ -2406,9 +2428,9 @@ <trans-unit id="57ec2e2addbd6a4117f16c1fff5f491fe3c5642c" resname="Deplacement %n_element% elements" approved="yes"> <source>Deplacement %n_element% elements</source> <target state="translated">Bewegung von %n_element% Elemente</target> - <jms:reference-file line="6">Bridge/Flickr/photo_moveinto_photoset.html.twig</jms:reference-file> - <jms:reference-file line="6">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> <jms:reference-file line="6">Bridge/Dailymotion/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="6">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="6">Bridge/Flickr/photo_moveinto_photoset.html.twig</jms:reference-file> </trans-unit> <trans-unit id="17c91ee147631da4f5aacabed0e198eb02955790" resname="Dernier access" approved="yes"> <source>Dernier access</source> @@ -2418,8 +2440,8 @@ <trans-unit id="821ed4c906c76220f9dc83eba5e0b861e22baa04" resname="Derniere mise a jour le %updated_on%" approved="yes"> <source>Derniere mise a jour le %updated_on%</source> <target state="translated">letztes Update am %updated_on%</target> - <jms:reference-file line="45">prod/results/entry.html.twig</jms:reference-file> <jms:reference-file line="39">prod/results/feeds_entry.html.twig</jms:reference-file> + <jms:reference-file line="45">prod/results/entry.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dcce9368ad626fe4addfa719b7a16807d464aa9b" resname="Derniers envois"> <source>Derniers envois</source> @@ -2434,39 +2456,40 @@ <trans-unit id="55f8ebc805e65b5b71ddafdae390e3be2bcd69af" resname="Description" approved="yes"> <source>Description</source> <target state="translated">Beschreibung</target> - <jms:reference-file line="19">prod/Tooltip/DCESFieldInfo.html.twig</jms:reference-file> - <jms:reference-file line="52">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="31">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> - <jms:reference-file line="24">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="44">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="24">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="31">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="43">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="31">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="24">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="44">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="31">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="24">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="52">Bridge/Flickr/upload.html.twig</jms:reference-file> + <jms:reference-file line="31">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> + <jms:reference-file line="19">prod/Tooltip/DCESFieldInfo.html.twig</jms:reference-file> <jms:reference-file line="68">web/developers/application_form.html.twig</jms:reference-file> </trans-unit> <trans-unit id="85cce1e14782f67cb830f74002ebe5603783c674" resname="Deselect all" approved="yes"> <source>Deselect all</source> <target state="translated">Alle abwählen</target> - <jms:reference-file line="64">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="216">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="27">web/report/form_date_and_base.html.twig</jms:reference-file> + <jms:reference-file line="222">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="60">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="71">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="48">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="fd281ce85e6f98a7dad0aa31a2e493a85ef178ca" resname="Design of personalization logo section"> + <trans-unit id="fd281ce85e6f98a7dad0aa31a2e493a85ef178ca" resname="Design of personalization logo section" approved="yes"> <source>Design of personalization logo section</source> - <target state="new">Design of personalization logo section</target> + <target state="translated">Logo Anpassung</target> <jms:reference-file line="60">Form/Configuration/GeneralFormType.php</jms:reference-file> </trans-unit> <trans-unit id="ac930a136ebd04a19bc5f2ce1769fc065efb7bdf" resname="Detailed view URL" approved="yes"> <source>Detailed view URL</source> <target state="translated">Detailansicht URL</target> - <jms:reference-file line="50">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="56">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dc3decbb93847518f1a049dcf49d0d7c6560bcc6" resname="Details" approved="yes"> <source>Details</source> <target state="translated">Einzelheiten</target> - <jms:reference-file line="2">admin/collection/details.html.twig</jms:reference-file> <jms:reference-file line="2">admin/databox/details.html.twig</jms:reference-file> + <jms:reference-file line="2">admin/collection/details.html.twig</jms:reference-file> </trans-unit> <trans-unit id="426d7f1b0dc37d0fb8ebff49d28335b1fd73774e" resname="Developpeur" approved="yes"> <source>Developpeur</source> @@ -2481,9 +2504,9 @@ <trans-unit id="45e147abd920eeb1aca320340e18cf67b4c77252" resname="Dimension" approved="yes"> <source>Dimension</source> <target state="translated">Grösse</target> + <jms:reference-file line="32">Media/Subdef/Image.php</jms:reference-file> <jms:reference-file line="32">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="32">Media/Subdef/Video.php</jms:reference-file> - <jms:reference-file line="32">Media/Subdef/Image.php</jms:reference-file> </trans-unit> <trans-unit id="8b6613d50c2d8718fd7cab023e1530ce11650736" resname="Disable document type sharing" approved="yes"> <source>Disable document type sharing</source> @@ -2503,22 +2526,22 @@ <trans-unit id="fa9fd169cd55f0433c6e7a4b5d758f90d0847411" resname="Display & action settings" approved="yes"> <source><![CDATA[Display & action settings]]></source> <target state="translated">Anzeige und Handlung-Einstellungen</target> - <jms:reference-file line="153">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="152">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d47165ea879fb259a5754e6c4052a1a4437dfda8" resname="Display technical data" approved="yes"> <source>Display technical data</source> <target state="translated">Technische Informationen anzeigen</target> - <jms:reference-file line="634">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="725">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="91ac9f9a0ff33ed65ca817be668da3693d743364" resname="Display thumbnails" approved="yes"> <source>Display thumbnails</source> <target state="translated">Vorschaubilder anschauen</target> - <jms:reference-file line="210">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="225">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f2f91f3c9d0ddbb497a99ee01c0f18a4b896bad4" resname="Do not display" approved="yes"> <source>Do not display</source> <target state="translated">Nicht anzeigen</target> - <jms:reference-file line="645">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="736">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e3eb8417683d81ed1fb08ad9399e3c61f7054000" resname="Do not forget to restart the tasks scheduler" approved="yes"> <source>Do not forget to restart the tasks scheduler</source> @@ -2550,7 +2573,7 @@ <trans-unit id="e214b8a29923056887b7edf6635d90dcbb2abe88" resname="Document" approved="yes"> <source>Document</source> <target state="translated">Dokument</target> - <jms:reference-file line="297">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="322">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c5bd0e534d218eb5680d7e83804e69cef318ea3f" resname="Document Type Sharing" approved="yes"> <source>Document Type Sharing</source> @@ -2633,17 +2656,17 @@ <trans-unit id="0d01e2e86669e98441ab4dce5520696c318b7098" resname="E-mail" approved="yes"> <source>E-mail</source> <target state="translated">E-Mail Adresse</target> - <jms:reference-file line="37">Form/Login/PhraseaRegisterForm.php</jms:reference-file> <jms:reference-file line="23">Form/Login/PhraseaForgotPasswordForm.php</jms:reference-file> + <jms:reference-file line="37">Form/Login/PhraseaRegisterForm.php</jms:reference-file> </trans-unit> <trans-unit id="9cf2896f8b2e9e6a28f9b151e8be31f220a5d256" resname="E-mail domain"> <source>E-mail domain</source> <target state="new">E-mail domain</target> - <jms:reference-file line="171">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="167">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="734a78cd06d0929c433f487754d18bf073e43bf6" resname="EN"> + <trans-unit id="734a78cd06d0929c433f487754d18bf073e43bf6" resname="EN" approved="yes"> <source>EN</source> - <target state="new">EN</target> + <target state="translated">EN</target> <jms:reference-file line="37">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> <trans-unit id="a908567d2c0292366061394efd6d40b139e033c5" resname="ERREUR : La classe de subdef est necessaire et egal a "thumbnail","preview" ou "document"" approved="yes"> @@ -2661,9 +2684,9 @@ <target state="translated">FEHLER : Alle "subdefgroup" tags brauchen ein "name" Attribut</target> <jms:reference-file line="213">lib/classes/databox.php</jms:reference-file> </trans-unit> - <trans-unit id="9debabbaa01a190fabe8324c5e6e2f2808052099" resname="ES"> + <trans-unit id="9debabbaa01a190fabe8324c5e6e2f2808052099" resname="ES" approved="yes"> <source>ES</source> - <target state="new">ES</target> + <target state="translated">ES</target> <jms:reference-file line="38">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> <trans-unit id="5301648dcf6b53cefc9ed52999aaa92d4603cae0" resname="Edit" approved="yes"> @@ -2689,9 +2712,9 @@ <trans-unit id="5184ecbec7829b91dda100c703ea3fa284c7f5e8" resname="Edition de 1 element" approved="yes"> <source>Edition de 1 element</source> <target state="translated">Bearbeitung von 1 Element</target> - <jms:reference-file line="10">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> - <jms:reference-file line="10">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="10">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="10">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="10">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> </trans-unit> <trans-unit id="99ead0eb32b2089a9933db5ccc262e2fc35fd0a6" resname="Edition des droits de %display_name%" approved="yes"> <source>Edition des droits de %display_name%</source> @@ -2706,7 +2729,7 @@ <trans-unit id="92376275a970f44a04fcce0319075ec61bbac9ca" resname="Edition impossible" approved="yes"> <source>Edition impossible</source> <target state="translated">Bearbeitung nicht möglich</target> - <jms:reference-file line="400">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="402">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c7e9fb2ea6c3b8c3ce97645eb902c348d859f36d" resname="Editor" approved="yes"> <source>Editor</source> @@ -2744,13 +2767,13 @@ <trans-unit id="84add5b2952787581cb9a8851eef63d1ec75d22b" resname="Email" approved="yes"> <source>Email</source> <target state="translated">Email Adresse</target> - <jms:reference-file line="140">admin/publications/fiche.html.twig</jms:reference-file> <jms:reference-file line="129">web/admin/dashboard.html.twig</jms:reference-file> + <jms:reference-file line="140">admin/publications/fiche.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4492ab77c9378c5582b87621ecd89c96fef88640" resname="Email '%email%' for login '%login%' already exists in database" approved="yes"> <source>Email '%email%' for login '%login%' already exists in database</source> <target state="translated">Email '%email%' für Login '%login%' existiert schon in der Databank</target> - <jms:reference-file line="654">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="655">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="e4aaac273d3c0d793207e6b559a7b7f97d543064" resname="Email Name" approved="yes"> <source>Email Name</source> @@ -2775,14 +2798,32 @@ <trans-unit id="d8efc876746f2fe8dae7e433323dc4f22535d1ac" resname="Email successfully confirmed" approved="yes"> <source>Email successfully confirmed</source> <target state="translated">E-Mail erfolgreich bestätigt</target> - <jms:reference-file line="21">Notification/Mail/MailSuccessEmailConfirmationUnregistered.php</jms:reference-file> <jms:reference-file line="21">Notification/Mail/MailSuccessEmailConfirmationRegistered.php</jms:reference-file> + <jms:reference-file line="21">Notification/Mail/MailSuccessEmailConfirmationUnregistered.php</jms:reference-file> </trans-unit> <trans-unit id="b529e23b7676146d364266e97d9f242eac2e28b4" resname="Email test result : %email_status%" approved="yes"> <source>Email test result : %email_status%</source> <target state="translated">E-Mail Test Ergebnis: %email_status%</target> <jms:reference-file line="136">web/admin/dashboard.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="c839b2905a9c9e4e611519e461c6f3e0dde4ec78" resname="Email:deletion:request:message Hello %civility% %firstName% %lastName%. We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below. If you are not at the origin of this request, please change your password as soon as possible %resetPassword% Link is valid for one hour." approved="yes"> + <source>Email:deletion:request:message Hello %civility% %firstName% %lastName%. + We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below. + If you are not at the origin of this request, please change your password as soon as possible %resetPassword% + Link is valid for one hour.</source> + <target state="translated">Hallo % civility %% firstName %% lastName%. Wir haben eine Löschungsanfrage für Ihr Konto bei% urlInstance% erhalten. Bitte bestätigen Sie diesen Löschvorgang, indem Sie auf den untenstehenden Link klicken. Wenn Sie sich nicht am Ursprung dieser Anfrage befinden, ändern Sie Ihr Passwort so bald wie möglich.% ResetPassword% Link ist eine Stunde lang gültig.</target> + <jms:reference-file line="51">Notification/Mail/MailRequestAccountDelete.php</jms:reference-file> + </trans-unit> + <trans-unit id="ccbd5b5d94afa34b04935d0b084335f2656d96af" resname="Email:deletion:request:subject Delete account confirmation" approved="yes"> + <source>Email:deletion:request:subject Delete account confirmation</source> + <target state="translated">Benutzerkonto Löschung Bestätigung</target> + <jms:reference-file line="39">Notification/Mail/MailRequestAccountDelete.php</jms:reference-file> + </trans-unit> + <trans-unit id="b37c2cc6df6ff49078905d16da4e3fa3a28490e4" resname="Email:deletion:request:textButton Delete my account" approved="yes"> + <source>Email:deletion:request:textButton Delete my account</source> + <target state="translated">Mein Benutzerkonto löschen</target> + <jms:reference-file line="68">Notification/Mail/MailRequestAccountDelete.php</jms:reference-file> + </trans-unit> <trans-unit id="473558393914486d8e60b9968e5443e40be433e0" resname="Emails" approved="yes"> <source>Emails</source> <target state="translated">E-Mail Adressen</target> @@ -2791,7 +2832,7 @@ <trans-unit id="7884b9b422d77cabded5da8a9a56524a84481930" resname="Embed code" approved="yes"> <source>Embed code</source> <target state="translated">Embed-Code</target> - <jms:reference-file line="61">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="67">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e5afbbe7023486a123b45581f49820899571c415" resname="Empty a collection" approved="yes"> <source>Empty a collection</source> @@ -2817,8 +2858,8 @@ <trans-unit id="b21b69f5882b80aa94dde1b4b588cc884758d886" resname="Empty the collection before removing" approved="yes"> <source>Empty the collection before removing</source> <target state="translated">Kollektion leeren bevor Entfernung</target> - <jms:reference-file line="68">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="455">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="69">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="456">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="5231158f14d4ea45584d5ad019c76e7e5e52e7ef" resname="En attente" approved="yes"> <source>En attente</source> @@ -2833,8 +2874,8 @@ <trans-unit id="0413c20ae2fd31e0a1eef73e7768c8e1c68558d9" resname="En cours d'encodage" approved="yes"> <source>En cours d'encodage</source> <target state="translated">Kodierung läuft</target> - <jms:reference-file line="531">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="495">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="531">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="56">actions/Bridge/records_list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="43494e363213dc176e0699b914ccf966ccbd994d" resname="En cours d'envoi" approved="yes"> @@ -2968,6 +3009,11 @@ <target state="translated">erfolgreich versendet</target> <jms:reference-file line="445">Phrasea/Controller/LightboxController.php</jms:reference-file> </trans-unit> + <trans-unit id="09b6a6dcd3f6d4a7d3a95bceaad67a7f1800272f" resname="Equals" approved="yes"> + <source>Equals</source> + <target state="translated">gleicht</target> + <jms:reference-file line="434">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="ab546c237a6685e5c75689266cfa715eeb21b7db" resname="Erreur" approved="yes"> <source>Erreur</source> <target state="translated">Fehler</target> @@ -2976,8 +3022,8 @@ <trans-unit id="fb6a263ee36a9eebf03b39221b223a2b7b2eae5f" resname="Erreur !" approved="yes"> <source>Erreur !</source> <target state="translated">Fehler !</target> - <jms:reference-file line="9">web/lightbox/error.html.twig</jms:reference-file> <jms:reference-file line="15">mobile/lightbox/error.html.twig</jms:reference-file> + <jms:reference-file line="9">web/lightbox/error.html.twig</jms:reference-file> </trans-unit> <trans-unit id="90aa6d11f451da9eab381da74e349cb9d7f53647" resname="Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas" approved="yes"> <source>Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas</source> @@ -3032,9 +3078,9 @@ <trans-unit id="7f7bf810a272a035f6da919a27124160567c0b3f" resname="Erreur lors de la tentative ; errreur : %message%" approved="yes"> <source>Erreur lors de la tentative ; errreur : %message%</source> <target state="translated">Fehler beim Versuch ; Fehler : %message%</target> - <jms:reference-file line="135">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> - <jms:reference-file line="483">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> - <jms:reference-file line="495">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> + <jms:reference-file line="139">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> + <jms:reference-file line="493">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> + <jms:reference-file line="507">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> </trans-unit> <trans-unit id="bd8b889cda696b61ee9c4d197f3d93e93c1ab8e6" resname="Erreur lors de votre authentification" approved="yes"> <source>Erreur lors de votre authentification</source> @@ -3059,7 +3105,7 @@ <trans-unit id="3bce15460cac7169ea217ebc3f887d839e28e3a8" resname="Error while creating user" approved="yes"> <source>Error while creating user</source> <target state="translated">Fehler bei der Erstellung des Benutzers</target> - <jms:reference-file line="489">Controller/Prod/PushController.php</jms:reference-file> + <jms:reference-file line="494">Controller/Prod/PushController.php</jms:reference-file> </trans-unit> <trans-unit id="15059bc07c7d22747a0bf89dbefdeffe625a4776" resname="Error while saving preference" approved="yes"> <source>Error while saving preference</source> @@ -3070,8 +3116,8 @@ <trans-unit id="ef89b844df981421f3abce06ad08d28d2b31e539" resname="Error while sending the file" approved="yes"> <source>Error while sending the file</source> <target state="translated">Fehler beim Datei Senden</target> - <jms:reference-file line="59">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="38">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="60">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="cbd40a831648175ebe3f427f83956d626506dc56" resname="Error while uploading" approved="yes"> <source>Error while uploading</source> @@ -3081,8 +3127,8 @@ <trans-unit id="40019ae278d51a265b82e37738989bf1b22157b7" resname="Etendue de la publication" approved="yes"> <source>Etendue de la publication</source> <target state="translated">Erweiterung der Veröffentlichung</target> - <jms:reference-file line="22">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="105">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="22">admin/publications/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="255f8b2705b27e25acc23428730bfd7a32d9a0db" resname="Etes vous sur de supprimer %number% photos ?" approved="yes"> <source>Etes vous sur de supprimer %number% photos ?</source> @@ -3097,14 +3143,19 @@ <trans-unit id="e7f864e2cef6464cd4342b0a0b607c6b53fd8263" resname="Etes vous sur de supprimer %number% playlists ?" approved="yes"> <source>Etes vous sur de supprimer %number% playlists ?</source> <target state="translated">Sind Sie sicher, %number% Playlisten zu löschen?</target> - <jms:reference-file line="13">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/playlist_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f0181b1da6f09b84ae46efce781899eb57ec74b8" resname="Etes vous sur de supprimer %number% videos ?" approved="yes"> <source>Etes vous sur de supprimer %number% videos ?</source> <target state="translated">Sind Sie sicher, %number% Videos zu löschen?</target> - <jms:reference-file line="13">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="46a1884f7b083976b0fd0678f10b8f00ee93cde9" resname="Ex : Paris, bleu, montagne" approved="yes"> + <source>Ex : Paris, bleu, montagne</source> + <target state="translated">Ex : Berlin, blau, Gebirge</target> + <jms:reference-file line="436">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a9c067c65c9f9d5a8e96791db7d189bc22eca9c1" resname="Executables externes" approved="yes"> <source>Executables externes</source> @@ -3119,9 +3170,9 @@ <trans-unit id="f3e4fadb9e370a1e2c0c622c01fc8c77daf93a2c" resname="Export" approved="yes"> <source>Export</source> <target state="translated">Exportieren</target> - <jms:reference-file line="107">Controller/Prod/LanguageController.php</jms:reference-file> <jms:reference-file line="75">Controller/Prod/DoDownloadController.php</jms:reference-file> <jms:reference-file line="76">Controller/Prod/DoDownloadController.php</jms:reference-file> + <jms:reference-file line="107">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> <trans-unit id="9c26d273867dffc55d40f46e6a163067c75969f5" resname="Export ranges"> <source>Export ranges</source> @@ -3133,9 +3184,9 @@ <target state="translated">Export in der Warteschlange gespeichert</target> <jms:reference-file line="136">Controller/Prod/ExportController.php</jms:reference-file> </trans-unit> - <trans-unit id="6d2830b1e76dc7300fce6745176601827d233de8" resname="FR"> + <trans-unit id="6d2830b1e76dc7300fce6745176601827d233de8" resname="FR" approved="yes"> <source>FR</source> - <target state="new">FR</target> + <target state="translated">FR</target> <jms:reference-file line="36">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> <trans-unit id="acb28212fba0272ee990cebd571ebe09b463312e" resname="FTP" approved="yes"> @@ -3165,7 +3216,7 @@ <jms:reference-file line="54">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="51">prod/WorkZone/Basket.html.twig</jms:reference-file> <jms:reference-file line="143">web/prod/toolbar.html.twig</jms:reference-file> - <jms:reference-file line="192">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="190">web/prod/toolbar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ffe8e99492ee9b850395d53f6c519938952fde0d" resname="Feeds" approved="yes"> <source>Feeds</source> @@ -3220,11 +3271,11 @@ <trans-unit id="aadf78d4b7c7c7341aa891adca70897c4f978cb6" resname="File is not present in quarantine anymore, please refresh" approved="yes"> <source>File is not present in quarantine anymore, please refresh</source> <target state="translated">Datei befindet sich nicht mehr in der Quarantäne, bitte aktualisieren</target> - <jms:reference-file line="78">Controller/Prod/LazaretController.php</jms:reference-file> - <jms:reference-file line="197">Controller/Prod/LazaretController.php</jms:reference-file> <jms:reference-file line="54">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="134">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="155">Model/Manipulator/LazaretManipulator.php</jms:reference-file> + <jms:reference-file line="78">Controller/Prod/LazaretController.php</jms:reference-file> + <jms:reference-file line="207">Controller/Prod/LazaretController.php</jms:reference-file> </trans-unit> <trans-unit id="3491d2e44dd1896af3411bb1a048847c13647feb" resname="File is too big : 64k max" approved="yes"> <source>File is too big : 64k max</source> @@ -3254,7 +3305,7 @@ <trans-unit id="a3cbb98ddf5ee976bc1c3be5221d66ce3ca2e867" resname="Filename" approved="yes"> <source>Filename</source> <target state="translated">Dateiname</target> - <jms:reference-file line="336">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="433">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="246a65679a39e030c98cad396903b0a3d8874dbc" resname="Fils disponibles" approved="yes"> <source>Fils disponibles</source> @@ -3267,11 +3318,6 @@ <target state="translated">Filtern</target> <jms:reference-file line="41">web/admin/users.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="a7a02ef54f4fa28248414c42efbf3c45d2942326" resname="Filtrer" approved="yes"> - <source>Filtrer</source> - <target state="translated">Filtern</target> - <jms:reference-file line="62">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="b6ea992aab4668311bb94778e056dd0285f27621" resname="First Name" approved="yes"> <source>First Name</source> <target state="translated">Vorname</target> @@ -3292,19 +3338,19 @@ <trans-unit id="b62482236f533b5e0f245e716211965a8774a2f2" resname="Flash" approved="yes"> <source>Flash</source> <target state="translated">Flash</target> - <jms:reference-file line="298">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="323">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="87">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="2869d115faa9aa305076269dfbaf57c28cbd9fb6" resname="FlashFired"> + <trans-unit id="2869d115faa9aa305076269dfbaf57c28cbd9fb6" resname="FlashFired" approved="yes"> <source>FlashFired</source> - <target state="new">FlashFired</target> - <jms:reference-file line="303">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <target state="translated">FlashFired</target> + <jms:reference-file line="318">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="02893456d53323f0fdbbe9447fe5b3401f2102f7" resname="Flatten layers" approved="yes"> <source>Flatten layers</source> <target state="translated">Flatten Layers</target> - <jms:reference-file line="35">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="35">Media/Subdef/Image.php</jms:reference-file> + <jms:reference-file line="35">Media/Subdef/Unknown.php</jms:reference-file> </trans-unit> <trans-unit id="9bd85a7d22f6cdee554e5b9e865d26dcbb4dafc9" resname="Focal length" approved="yes"> <source>Focal length</source> @@ -3314,7 +3360,7 @@ <trans-unit id="0267a34f43c33d216cc700ffcd521bf8a5ddcd0c" resname="Force authentication" approved="yes"> <source>Force authentication</source> <target state="translated">Authentifizierung zwingen</target> - <jms:reference-file line="168">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="169">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c7dbc1bf5eabb170eb6a0597a076723db79ec064" resname="Force sending of the document ?" approved="yes"> <source>Force sending of the document ?</source> @@ -3334,10 +3380,10 @@ <trans-unit id="4c29f7f0335807c2524d8c36d531496aee23f473" resname="Forgot password?" approved="yes"> <source>Forgot password?</source> <target state="translated">Passwort vergessen ?</target> - <jms:reference-file line="58">login/oauth/login.html.twig</jms:reference-file> - <jms:reference-file line="58">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="74">login/providers/mapping.html.twig</jms:reference-file> + <jms:reference-file line="58">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="70">web/login/index.html.twig</jms:reference-file> + <jms:reference-file line="58">login/oauth/login.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a2f060b7363f54c9f80d62805d36636dd7ebc33c" resname="Forgot your password?" approved="yes"> <source>Forgot your password?</source> @@ -3354,10 +3400,10 @@ <target state="translated">Bildfrequenz</target> <jms:reference-file line="33">Media/Subdef/Video.php</jms:reference-file> </trans-unit> - <trans-unit id="629fe48e7fcf628a108551add706c29832b214df" resname="FrameRate"> + <trans-unit id="629fe48e7fcf628a108551add706c29832b214df" resname="FrameRate" approved="yes"> <source>FrameRate</source> - <target state="new">FrameRate</target> - <jms:reference-file line="315">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <target state="translated">Framerate</target> + <jms:reference-file line="332">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="d4947df23a237794a9ff63353bd60ebe679c830c" resname="Frequence d'echantillonage" approved="yes"> <source>Frequence d'echantillonage</source> @@ -3389,24 +3435,19 @@ <target state="translated">Allgemeine Einstellungen</target> <jms:reference-file line="87">web/admin/dashboard.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="fc45f9b7a9a6e8b48f0e28821ec1981804dd1eb6" resname="Generate" approved="yes"> - <source>Generate</source> - <target state="translated">Erstellen</target> - <jms:reference-file line="21">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="1738f829e68f7add441844e11cae6237acf401d1" resname="Generate dashboard" approved="yes"> - <source>Generate dashboard</source> - <target state="translated">Dashboard erstellen</target> - <jms:reference-file line="52">web/report/report_layout_child.html.twig</jms:reference-file> + <trans-unit id="05db1e4e974fff47ae67bae1309fb4edd9b0a053" resname="Generate-cterms"> + <source>Generate-cterms</source> + <target state="new">Generate-cterms</target> + <jms:reference-file line="267">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9f1b4c9f85fcbbf355fdd3c97210173b63551aa6" resname="Generates a flexpaper flash file" approved="yes"> <source>Generates a flexpaper flash file</source> <target state="translated">Erstellt eine Flexpaper Flash Datei</target> <jms:reference-file line="32">Media/Subdef/FlexPaper.php</jms:reference-file> </trans-unit> - <trans-unit id="b2af9671fd7a6a61d5dd01e3c033bcade0d9695a" resname="Generates a pdf file"> + <trans-unit id="b2af9671fd7a6a61d5dd01e3c033bcade0d9695a" resname="Generates a pdf file" approved="yes"> <source>Generates a pdf file</source> - <target state="new">Generates a pdf file</target> + <target state="translated">Erzeugt eine PDF Datei</target> <jms:reference-file line="24">Media/Subdef/Pdf.php</jms:reference-file> </trans-unit> <trans-unit id="d40d73fbcffe62e09f9430c0043ec2e7011a801b" resname="Generates a video file" approved="yes"> @@ -3422,18 +3463,18 @@ <trans-unit id="7ba409c16f96c035c4bdd4246eecf1070e8efd46" resname="Generates an audio file" approved="yes"> <source>Generates an audio file</source> <target state="translated">Erstellt eine Audio Datei</target> - <jms:reference-file line="44">Media/Subdef/Audio.php</jms:reference-file> + <jms:reference-file line="48">Media/Subdef/Audio.php</jms:reference-file> </trans-unit> <trans-unit id="d1e6306fa0e2c34c9580854b101bc70e510bc5a3" resname="Generates an image" approved="yes"> <source>Generates an image</source> <target state="translated">Erstellt ein Bild</target> - <jms:reference-file line="47">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="47">Media/Subdef/Image.php</jms:reference-file> + <jms:reference-file line="47">Media/Subdef/Unknown.php</jms:reference-file> </trans-unit> <trans-unit id="621654fc14cd9c0d5f5009ff29c1ba0db747f162" resname="Geo Search"> <source>Geo Search</source> <target state="new">Geo Search</target> - <jms:reference-file line="274">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="296">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="efd1f5fd46c31701d2e70555e9ab45efe27b4048" resname="Geonames server address" approved="yes"> <source>Geonames server address</source> @@ -3508,24 +3549,13 @@ <trans-unit id="779f61efcfe62182d0052c9526f3910378764758" resname="Graphiste (preview au rollover)" approved="yes"> <source>Graphiste (preview au rollover)</source> <target state="translated">Grafiker (Voransicht mit Rollover)</target> - <jms:reference-file line="629">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="720">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="bd846adf34307e77ff7d457b28a426470fc0bad9" resname="Great" approved="yes"> <source>Great</source> <target state="translated">Großartig</target> <jms:reference-file line="153">Controller/Root/LoginController.php</jms:reference-file> </trans-unit> - <trans-unit id="325f1aa7d25c7b35a2006768bef41b1e7727d444" resname="Groupement des resultats sur le champ %name%" approved="yes"> - <source>Groupement des resultats sur le champ %name%</source> - <target state="translated">Ergebnisse Gruppierung auf Feld %name%</target> - <jms:reference-file line="607">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="754">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="42c8f672af9a6da3268b6f4a99958d6e735607b1" resname="Grouper" approved="yes"> - <source>Grouper</source> - <target state="translated">Gruppieren</target> - <jms:reference-file line="66">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="d36ed42d18a32e092664742ba0e0879f66ff0439" resname="Groupez 2 ou plusieurs mots avec des guillemets: "Michael Jackson"" approved="yes"> <source>Groupez 2 ou plusieurs mots avec des guillemets: "Michael Jackson"</source> <target state="translated">Gruppieren Sie 2 oder mehrere Wörter mit Anführungszeichen : "Michael Jackson"</target> @@ -3534,8 +3564,8 @@ <trans-unit id="face83ee3014bdc8f98203cc94e2e89222452e90" resname="Guest" approved="yes"> <source>Guest</source> <target state="translated">Gast</target> - <jms:reference-file line="165">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="246">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="149">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="223">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="233f29cc242544136b94f354693299956575a9d0" resname="Guest access" approved="yes"> <source>Guest access</source> @@ -3547,6 +3577,16 @@ <target state="translated">Gast, sie müssen authentifizieren, um die Dateien herunterzuladen.</target> <jms:reference-file line="88">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="771d30c668093219776b418dc5d3475682457167" resname="Gui-editable"> + <source>Gui-editable</source> + <target state="new">Gui-editable</target> + <jms:reference-file line="196">admin/fields/templates.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="c3ccdd44c467c7149733d19a40e0068ddb00ab25" resname="Gui-visible"> + <source>Gui-visible</source> + <target state="new">Gui-visible</target> + <jms:reference-file line="204">admin/fields/templates.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="6bc9ceaf6239215199222552fbbe96c17a549705" resname="HD Download" approved="yes"> <source>HD Download</source> <target state="translated">HD Download</target> @@ -3555,14 +3595,14 @@ <trans-unit id="d0d3632efe2a20cf1235aead5d817e03308131cc" resname="Hello %username%" approved="yes"> <source>Hello %username%</source> <target state="translated">Hallo %username%</target> + <jms:reference-file line="62">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="45">api/auth/native_app_access_token.html.twig</jms:reference-file> <jms:reference-file line="82">api/auth/end_user_authorization.html.twig</jms:reference-file> - <jms:reference-file line="62">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c47ae15370cfe1ed2781eedc1dc2547d12d9e972" resname="Help" approved="yes"> <source>Help</source> <target state="translated">Hilfe</target> - <jms:reference-file line="69">login/layout/base-layout.html.twig</jms:reference-file> + <jms:reference-file line="70">login/layout/base-layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7c4fcd241b7c7436fc9380f34ad57efcb70fd49c" resname="Hi, Please log in" approved="yes"> <source>Hi, Please log in</source> @@ -3577,11 +3617,11 @@ <trans-unit id="70f8bb9a8a5393ef080507a89e4b98d139000d65" resname="Home" approved="yes"> <source>Home</source> <target state="translated">Hautpseite</target> - <jms:reference-file line="66">login/layout/base-layout.html.twig</jms:reference-file> - <jms:reference-file line="3">login/include/language-block.html.twig</jms:reference-file> - <jms:reference-file line="17">mobile/lightbox/feed.html.twig</jms:reference-file> <jms:reference-file line="50">mobile/lightbox/basket_element.html.twig</jms:reference-file> + <jms:reference-file line="17">mobile/lightbox/feed.html.twig</jms:reference-file> <jms:reference-file line="33">mobile/lightbox/validate.html.twig</jms:reference-file> + <jms:reference-file line="3">login/include/language-block.html.twig</jms:reference-file> + <jms:reference-file line="67">login/layout/base-layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="99f3b7dca04d6f354a9d2a3b633d9578a9ad8cac" resname="Homepage slideshow" approved="yes"> <source>Homepage slideshow</source> @@ -3604,10 +3644,10 @@ <target state="translated">IP</target> <jms:reference-file line="28">web/account/sessions.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="4f325d995b6d028ccc75771b1679537b623521c4" resname="ISO"> + <trans-unit id="4f325d995b6d028ccc75771b1679537b623521c4" resname="ISO" approved="yes"> <source>ISO</source> - <target state="new">ISO</target> - <jms:reference-file line="279">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <target state="translated">ISO</target> + <jms:reference-file line="288">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="16a5173a6d384d155354f429d72834cd0bd6bc54" resname="ISO sensibility" approved="yes"> <source>ISO sensibility</source> @@ -3617,7 +3657,7 @@ <trans-unit id="e195951cb1946935a88fdd9ee6735e0f6ddc120b" resname="Iconographe (description au rollover)" approved="yes"> <source>Iconographe (description au rollover)</source> <target state="translated">Bildredakteur (Beschreibung mit Rollover)</target> - <jms:reference-file line="625">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="716">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="474ae52625b87d7628ae7b20a499329a99e07119" resname="Id" approved="yes"> <source>Id</source> @@ -3662,7 +3702,7 @@ <trans-unit id="50e19fda0d5b4b74a4a1a1d584e56578693a4ea4" resname="Image" approved="yes"> <source>Image</source> <target state="translated">Bild</target> - <jms:reference-file line="294">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="319">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="57a8e563190f921afb876d6489bb40ed74f43a1a" resname="ImageMagick" approved="yes"> <source>ImageMagick</source> @@ -3672,7 +3712,7 @@ <trans-unit id="3e38a20c1629a473809ea6a14c9cdf4204d3ac3b" resname="Images par secondes" approved="yes"> <source>Images par secondes</source> <target state="translated">Bilder pro Sekunde</target> - <jms:reference-file line="78">actions/Tools/videoEditor.html.twig</jms:reference-file> + <jms:reference-file line="91">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="134">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4d39de5885805135b502a3e8920ffb0b1921cb6f" resname="Imagette indisponible" approved="yes"> @@ -3688,7 +3728,7 @@ <trans-unit id="ca13920228ea59b30c40b8372f53df3bf4631520" resname="In the answer grid" approved="yes"> <source>In the answer grid</source> <target state="translated">In einem Tooltip</target> - <jms:reference-file line="637">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="728">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="37ba6b0018a45c0890440d9e1cae63e046bad31d" resname="Include Business-fields in caption" approved="yes"> <source>Include Business-fields in caption</source> @@ -3700,12 +3740,12 @@ <trans-unit id="e60e6d0321b0dc4e2a47c163bdb8402df3deb18f" resname="Incorrect please try again" approved="yes"> <source>Incorrect please try again</source> <target state="translated">Falsch, bitte versuchen Sie es erneut</target> - <jms:reference-file line="19">web/common/macros.html.twig</jms:reference-file> + <jms:reference-file line="19">web/common/macro_captcha.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d8b6addd60debc77c2c9b03c90e8b626de36d170" resname="Indexable" approved="yes"> <source>Indexable</source> <target state="translated">indizierbar</target> - <jms:reference-file line="181">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="180">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="85737399ad7bf8da1405c20f9984ceef5efe1ca9" resname="Indexation task" approved="yes"> <source>Indexation task</source> @@ -3720,9 +3760,9 @@ <trans-unit id="54937b3a4f8cfa4576692882d3ff7b14c90c4ce5" resname="Informations" approved="yes"> <source>Informations</source> <target state="translated">Informationen</target> - <jms:reference-file line="195">admin/user/registrations.html.twig</jms:reference-file> - <jms:reference-file line="33">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="56">web/account/base.html.twig</jms:reference-file> + <jms:reference-file line="33">web/admin/dashboard.html.twig</jms:reference-file> + <jms:reference-file line="195">admin/user/registrations.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e1e0586141223b0143df16f7422dae5a43b77103" resname="Informations personnelles" approved="yes"> <source>Informations personnelles</source> @@ -3737,8 +3777,8 @@ <trans-unit id="9be51f96ff02e94d1a5108f14de0b373ef3dd675" resname="Inscription" approved="yes"> <source>Inscription</source> <target state="translated">Anmeldung</target> - <jms:reference-file line="14">web/login/register.html.twig</jms:reference-file> <jms:reference-file line="15">web/login/register-classic.html.twig</jms:reference-file> + <jms:reference-file line="14">web/login/register.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ff4fc2499da3e8fafdb7402dafd3b326aa0cc762" resname="Install in progess" approved="yes"> <source>Install in progess</source> @@ -3758,8 +3798,8 @@ <trans-unit id="3da203883b919e942c295aa2ebec1ac7e121c3fb" resname="Invalid file format" approved="yes"> <source>Invalid file format</source> <target state="translated">Ungültiges Datei Format</target> - <jms:reference-file line="62">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="41">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="63">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="56f848f49e2a8c9efeb61b986ec48e6328cac5cc" resname="Invalid file type" approved="yes"> <source>Invalid file type</source> @@ -3770,9 +3810,9 @@ <trans-unit id="3a8b37b23cc60ea1c00e28058bfbb15cf00a547d" resname="Invalid file type, only (%supported_file_types%) file formats are supported" approved="yes"> <source>Invalid file type, only (%supported_file_types%) file formats are supported</source> <target state="translated">ungültiger Dateityp, nur (%supported_file_types%) Dateitypen werden unterstützt</target> + <jms:reference-file line="397">admin/databox/databox.html.twig</jms:reference-file> <jms:reference-file line="60">user/import/file.html.twig</jms:reference-file> <jms:reference-file line="199">admin/statusbit/edit.html.twig</jms:reference-file> - <jms:reference-file line="397">admin/databox/databox.html.twig</jms:reference-file> </trans-unit> <trans-unit id="65fd566280b15a384df25c73315b0dcbc6dacb69" resname="Invalid file type, only (%supported_file_types%) file formats are supported'" approved="yes"> <source>Invalid file type, only (%supported_file_types%) file formats are supported'</source> @@ -3782,8 +3822,8 @@ <trans-unit id="1c3a084c7a6e7e196db6c80a473d0bf0dfdd8f69" resname="Invalid labels parameter" approved="yes"> <source>Invalid labels parameter</source> <target state="translated">ungültige Labels Parameter</target> - <jms:reference-file line="574">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="134">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="575">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="d211e2ef8dd9e15443e081e455da91938085a2ff" resname="Invalid link." approved="yes"> <source>Invalid link.</source> @@ -3793,7 +3833,7 @@ <trans-unit id="8a3506d6dd32abc6a9d3651ec8b9bba513f65e81" resname="Invalid password provided" approved="yes"> <source>Invalid password provided</source> <target state="translated">ungültiges Passwort geliefert</target> - <jms:reference-file line="64">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="71">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="a1244ab057df1737a47854d003cc98ec33ad3c09" resname="Invalid target collection" approved="yes"> <source>Invalid target collection</source> @@ -3856,17 +3896,17 @@ <trans-unit id="a5efbcf21fb4f967dcf3c54434390038f645d761" resname="L'utilisateur approuve ce document" approved="yes"> <source>L'utilisateur approuve ce document</source> <target state="translated">Benutzer genehmigt dieses Dokument</target> - <jms:reference-file line="361">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="391">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f1a075e09cf00ad7f6a7b13f0e7982c01f71b4db" resname="L'utilisateur desapprouve ce document" approved="yes"> <source>L'utilisateur desapprouve ce document</source> <target state="translated">Benutzer lehnt dieses Dokument ab</target> - <jms:reference-file line="365">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="395">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d189e6ca37fc13568fa40c4e089d3c55f1bb26cf" resname="L'utilisateur n'a pas encore donne son avis sur ce document" approved="yes"> <source>L'utilisateur n'a pas encore donne son avis sur ce document</source> <target state="translated">Benutzer hat seine Meinung nocht nicht gegeben</target> - <jms:reference-file line="363">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="393">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6f16ba73379400f5465d624690a333f732ba02a5" resname="La connection vers le serveur distant est OK" approved="yes"> <source>La connection vers le serveur distant est OK</source> @@ -3883,20 +3923,20 @@ <trans-unit id="cfa0120ab592ae2bc3198dbde15a7a87a0c792c4" resname="La taille maximale d'une video est de %duration% minutes." approved="yes"> <source>La taille maximale d'une video est de %duration% minutes.</source> <target state="translated">Maximale Dauer für eine Video ist %duration% Minuten.</target> - <jms:reference-file line="900">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="1014">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="900">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="1dcfd86b957b9cf12ede165c6c2fa0acf12f3eeb" resname="La video a ete rejetee" approved="yes"> <source>La video a ete rejetee</source> <target state="translated">Das Video wurde abgelehnt</target> - <jms:reference-file line="527">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="491">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="527">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="653e67f152ecc63ff3ee1014e86cc630a35dfe1a" resname="La video a ete supprimee" approved="yes"> <source>La video a ete supprimee</source> <target state="translated">Das Video wurde gelöscht</target> - <jms:reference-file line="525">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="489">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="525">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="da1c672d0d761ed5ac292335ed60e14ff3073265" resname="La video est restreinte" approved="yes"> <source>La video est restreinte</source> @@ -3909,10 +3949,10 @@ <jms:reference-file line="38">admin/statusbit/edit.html.twig</jms:reference-file> <jms:reference-file line="103">admin/statusbit/edit.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="89b86ab0e66f527166d98df92ddbcf5416ed58f6" resname="Language"> + <trans-unit id="89b86ab0e66f527166d98df92ddbcf5416ed58f6" resname="Language" approved="yes"> <source>Language</source> - <target state="new">Language</target> - <jms:reference-file line="593">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Sprache</target> + <jms:reference-file line="684">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="863cb39fbe7d70597076af1960b7ae4618d9e1bc" resname="Last Name" approved="yes"> <source>Last Name</source> @@ -3942,7 +3982,7 @@ <trans-unit id="73d43eca841fe44e1b9b41795ecbe13ee0772b38" resname="Last uploaded version" approved="yes"> <source>Last uploaded version</source> <target state="translated">zuletzte geladene Version</target> - <jms:reference-file line="330">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="427">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0e0925b2bb685e25d3e94442cb0faea41156392b" resname="Le bridge Dailymotion ne prend en charge que les videos" approved="yes"> <source>Le bridge Dailymotion ne prend en charge que les videos</source> @@ -3977,7 +4017,7 @@ <trans-unit id="1486ba721fa0e62d17c809eb55964a1c514f6d3f" resname="Le contenu de cet email est confidentiel, ne le divulguez pas." approved="yes"> <source>Le contenu de cet email est confidentiel, ne le divulguez pas.</source> <target state="translated">Der Inhalt von dieser Email ist geheim, bitte nicht enthüllen</target> - <jms:reference-file line="119">templates/web/email-template.html.twig</jms:reference-file> + <jms:reference-file line="125">templates/web/email-template.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8d90d64a516aa1d05e3aa4c5beb4f9e80bf77bb1" resname="Le nom de base de donnee est incorrect" approved="yes"> <source>Le nom de base de donnee est incorrect</source> @@ -3993,15 +4033,15 @@ <source>Le poids maximum d'un fichier est de %size%</source> <target state="translated">Maximales Gewicht von Datei ist %size%</target> <jms:reference-file line="814">Bridge/Api/Flickr.php</jms:reference-file> - <jms:reference-file line="906">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="1020">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="906">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="13b9d7ef8e81663d7162d25b84cec1c24041e630" resname="Le record n'a pas de fichier physique" approved="yes"> <source>Le record n'a pas de fichier physique</source> <target state="translated">Der Datensatz hat keine physikalische Datei</target> <jms:reference-file line="808">Bridge/Api/Flickr.php</jms:reference-file> - <jms:reference-file line="896">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="1010">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="896">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="a596c989f20650068f6278338c1a966b7a8693f8" resname="Le token n'a pas encore ete genere" approved="yes"> <source>Le token n'a pas encore ete genere</source> @@ -4022,9 +4062,9 @@ <trans-unit id="e330465da3182b7f6ed1b78217993edb4e22aacb" resname="Les elements ne peuvent etre uploades (problemes de type ou de droit)" approved="yes"> <source>Les elements ne peuvent etre uploades (problemes de type ou de droit)</source> <target state="translated">Die Elemente können nicht hochgeladen werden (Typ oder Rechte Problem).</target> - <jms:reference-file line="16">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="15">Bridge/Youtube/upload.html.twig</jms:reference-file> <jms:reference-file line="15">Bridge/Dailymotion/upload.html.twig</jms:reference-file> + <jms:reference-file line="15">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="16">Bridge/Flickr/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="72d3dbec389dce620bfa531d37c5f199ca2ccfda" resname="Les indications donnees ci dessous sont a titre informatif." approved="yes"> <source>Les indications donnees ci dessous sont a titre informatif.</source> @@ -4044,18 +4084,24 @@ <trans-unit id="a733c2df9772facab04b4773c9d2bed560c25e9a" resname="Les status de certains documents ne sont pas accessibles par manque de droits" approved="yes"> <source>Les status de certains documents ne sont pas accessibles par manque de droits</source> <target state="translated">Status von einigen Dokumenten werden nicht erreichbar, fehlende Rechte</target> - <jms:reference-file line="210">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="212">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="663929297180bbb5ff977df2695f71e94c35fa5e" resname="Les termes apparaissent dans le(s) champs" approved="yes"> <source>Les termes apparaissent dans le(s) champs</source> <target state="translated">Die Begriffe befinden sich in Feld(er):</target> - <jms:reference-file line="375">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="405">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="83d5335897894b8ddd91c98ef5ba0e9cbc6a6db9" resname="Light Value" approved="yes"> <source>Light Value</source> <target state="translated">Lichtwert</target> <jms:reference-file line="122">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="99f6a030c5134d53253c7442cb05c1be14229565" resname="Lightbox" approved="yes"> + <source>Lightbox</source> + <target state="translated">Lightbox</target> + <jms:reference-file line="152">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="153">prod/WorkZone/Macros.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="3edfadcb908b635854afe7332087309fcd436f22" resname="Limite temporelle" approved="yes"> <source>Limite temporelle</source> <target state="translated">zeitliche Beschränkung</target> @@ -4065,7 +4111,7 @@ <trans-unit id="646afe6f18d162b8c66197f9a080bbdabe03ec82" resname="Limited vocabulary" approved="yes"> <source>Limited vocabulary</source> <target state="translated">begrenzter Wortschatz</target> - <jms:reference-file line="147">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="146">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c360543a2117bfc435eb3ba34f161bdcd1b6c9bf" resname="List %name% has been created" approved="yes"> <source>List %name% has been created</source> @@ -4075,12 +4121,12 @@ <trans-unit id="a925ff45a3aec48f2d2284ee9bb6868db34c1ebb" resname="List Manager" approved="yes"> <source>List Manager</source> <target state="translated">Liste Manager</target> - <jms:reference-file line="88">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="97">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="bb5453db2e4b2a0d4da46011ba58a8dbbca13cf6" resname="List Name" approved="yes"> <source>List Name</source> <target state="translated">Name der Liste</target> - <jms:reference-file line="103">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="99">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="986d90f23c096a5e41777014cf1079b53c430cef" resname="List has been deleted" approved="yes"> <source>List has been deleted</source> @@ -4116,8 +4162,8 @@ <trans-unit id="57c9502a7d7d48fd4a86b45fefb2b163491c3ae1" resname="Lists" approved="yes"> <source>Lists</source> <target state="translated">Liste</target> + <jms:reference-file line="61">prod/actions/Push.html.twig</jms:reference-file> <jms:reference-file line="15">actions/Feedback/lists-all.html.twig</jms:reference-file> - <jms:reference-file line="62">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="309cbd8221d07b28b0bd59d151777b155d5d3d3d" resname="Live search" approved="yes"> <source>Live search</source> @@ -4139,30 +4185,30 @@ <target state="translated">Benutzername</target> <jms:reference-file line="32">Form/Login/PhraseaAuthenticationForm.php</jms:reference-file> <jms:reference-file line="8">actions/Feedback/ListsMacros.html.twig</jms:reference-file> - <jms:reference-file line="9">login/oauth/login.html.twig</jms:reference-file> - <jms:reference-file line="7">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="7">login/providers/mapping.html.twig</jms:reference-file> + <jms:reference-file line="7">login/providers/bind.html.twig</jms:reference-file> + <jms:reference-file line="9">login/oauth/login.html.twig</jms:reference-file> </trans-unit> <trans-unit id="950c019b3fdf4ee87547ab457330c0f003fdec4b" resname="Login %login% already exists in database" approved="yes"> <source>Login %login% already exists in database</source> <target state="translated">Benutzername %login% existiert schon im Datenbank</target> - <jms:reference-file line="638">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="639">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="092417444255d19227b90cb8b6a31eb531c3e045" resname="Login %login% is already defined in the file at line %line%" approved="yes"> <source>Login %login% is already defined in the file at line %line%</source> <target state="translated">Benutzername %login% ist schon in Datei in Linie %line% definiert</target> - <jms:reference-file line="632">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="633">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="01a1b17937851d24fabec72d491bfe7693dcbeb5" resname="Login line %line% is empty" approved="yes"> <source>Login line %line% is empty</source> <target state="translated">Benutzername Zeile %line% ist leer</target> - <jms:reference-file line="630">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="631">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="9a839961790bd116cb1d19dd249a0f68170ea33d" resname="Login to link your account" approved="yes"> <source>Login to link your account</source> <target state="translated">Einloggen, um Ihr Konto zu verknüpfen</target> - <jms:reference-file line="28">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="44">login/providers/mapping.html.twig</jms:reference-file> + <jms:reference-file line="28">login/providers/bind.html.twig</jms:reference-file> </trans-unit> <trans-unit id="126dd3b70a5ca7818e0e26ad1e008d23b0f14a53" resname="Logs" approved="yes"> <source>Logs</source> @@ -4173,12 +4219,12 @@ <trans-unit id="9769982c266077f46f2c0a0290183511ec5536fb" resname="Ma derniere question" approved="yes"> <source>Ma derniere question</source> <target state="translated">meine letzte Suchabfrage</target> - <jms:reference-file line="688">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="779">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c176d759339c846576bc2937aab7e01f5404e4e3" resname="Mail line %line% is empty" approved="yes"> <source>Mail line %line% is empty</source> <target state="translated">Email Zeile %line% ist leer</target> - <jms:reference-file line="652">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="653">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="fdb9efd7a759711741fc699549c92e54c664e38c" resname="Mail sent" approved="yes"> <source>Mail sent</source> @@ -4228,7 +4274,7 @@ <trans-unit id="4c2ea2d10dc0ede0423eff4ee1aac7300cd7cc28" resname="Mandatory" approved="yes"> <source>Mandatory</source> <target state="translated">erforderlich</target> - <jms:reference-file line="173">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="172">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="60706a32c32fff7bad89e110e221466d30c96f37" resname="Mandatory fields" approved="yes"> <source>Mandatory fields</source> @@ -4259,12 +4305,12 @@ <source>Message</source> <target state="translated">Nachricht</target> <jms:reference-file line="87">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="154">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="155">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cbcbdf92e7a47c81ec1719f03f00d8e6c5b5f5ef" resname="Message automatique de Phraseanet" approved="yes"> <source>Message automatique de Phraseanet</source> <target state="translated">Phraseanet Automatische Meldung</target> - <jms:reference-file line="128">templates/web/email-template.html.twig</jms:reference-file> + <jms:reference-file line="134">templates/web/email-template.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3f17a172513ae816fbe5f183f85cd0c465de0860" resname="Mettre a jour" approved="yes"> <source>Mettre a jour</source> @@ -4276,10 +4322,10 @@ <target state="translated">Mime Typ</target> <jms:reference-file line="14">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="1bd7ccbde8d3077fec1f549017e747393223a900" resname="MimeType"> + <trans-unit id="1bd7ccbde8d3077fec1f549017e747393223a900" resname="MimeType" approved="yes"> <source>MimeType</source> - <target state="new">MimeType</target> - <jms:reference-file line="345">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <target state="translated">MimeType</target> + <jms:reference-file line="374">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="cb4f425374af2741715669ed8b541a666078b729" resname="Minimum number of letters before truncation" approved="yes"> <source>Minimum number of letters before truncation</source> @@ -4294,8 +4340,8 @@ <trans-unit id="a9b8f078d07adc678766fb9d2094292080ab3c52" resname="Missing labels parameter" approved="yes"> <source>Missing labels parameter</source> <target state="translated">Labels-Parameter fehlt</target> - <jms:reference-file line="571">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="131">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="572">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="b4efaf7a18aa1ca3f50081c404e78c7fec456e40" resname="Missing mandatory parameter %parameter%" approved="yes"> <source>Missing mandatory parameter %parameter%</source> @@ -4305,7 +4351,7 @@ <trans-unit id="0f0312bad12a23972edbf3999e9de2678039b079" resname="Missing name parameter" approved="yes"> <source>Missing name parameter</source> <target state="translated">Name-Parameter fehlt</target> - <jms:reference-file line="540">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="541">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="0f79e8927b12fa1faaf351996f502775b4642c2d" resname="Missing path parameter" approved="yes"> <source>Missing path parameter</source> @@ -4330,7 +4376,7 @@ <trans-unit id="e18d18d8f28fe0d795ee04013be3a7f8ce96be7b" resname="Mode de presentation" approved="yes"> <source>Mode de presentation</source> <target state="translated">Anzeigemodus</target> - <jms:reference-file line="604">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="695">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f67d47fbf556ab52703a984d7b5aafcaab35735e" resname="Modele de donnees" approved="yes"> <source>Modele de donnees</source> @@ -4340,7 +4386,7 @@ <trans-unit id="f3798f81c7b6fecad2cbfec741314f8a66c0eca3" resname="Models" approved="yes"> <source>Models</source> <target state="translated">Vorlage</target> - <jms:reference-file line="186">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="182">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="197">admin/user/registrations.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9fe408e12dc6ee8d44c87b38b82ff435c397a441" resname="Modify" approved="yes"> @@ -4392,7 +4438,12 @@ <trans-unit id="3bd45e2eb3d0af33531dc6ab4a45ee550ead2180" resname="Multivalued" approved="yes"> <source>Multivalued</source> <target state="translated">mehrwertiges</target> - <jms:reference-file line="159">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="158">admin/fields/templates.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="1b369c4651e2b82200334fa587669b3828071192" resname="My application " approved="yes"> + <source>My application </source> + <target state="translated">Meine Anwendung</target> + <jms:reference-file line="266">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9f36fd4dc42df8a92572afe51d887c5f33dda5b0" resname="My baskets" approved="yes"> <source>My baskets</source> @@ -4411,7 +4462,7 @@ <jms:reference-file line="86">Controller/Prod/LanguageController.php</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/playlist_createcontainer.html.twig</jms:reference-file> <jms:reference-file line="38">actions/Download/prepare.html.twig</jms:reference-file> - <jms:reference-file line="150">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="151">prod/templates/push.html.twig</jms:reference-file> <jms:reference-file line="50">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="994e92a6f1e83337ca0193b7fa44cf6b3e9287e5" resname="Name or email" approved="yes"> @@ -4432,8 +4483,8 @@ <trans-unit id="611ce61a8afa84c06dd4ae06d9405b50d7cadc70" resname="Ne pas autoriser" approved="yes"> <source>Ne pas autoriser</source> <target state="translated">Nicht berechtigen</target> - <jms:reference-file line="112">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="92">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="112">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f5a3032fbde245ea35d8fa654d628809a9a448fc" resname="Ne pas creer de DataBox maintenant" approved="yes"> <source>Ne pas creer de DataBox maintenant</source> @@ -4444,7 +4495,7 @@ <source>New list name ?</source> <target state="translated">Neuer Name der Liste?</target> <jms:reference-file line="84">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="124">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="125">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d850ee188c7c55b64bc3624534de5c5051a57dc6" resname="New password" approved="yes"> <source>New password</source> @@ -4473,12 +4524,13 @@ <trans-unit id="816c52fd2bdd94a63cd0944823a6c0aa9384c103" resname="No" approved="yes"> <source>No</source> <target state="translated">Nein</target> + <jms:reference-file line="290">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="32">web/developers/applications.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8c123d8ad43d08cc48c3d6a7676e65f71eea59df" resname="No URL available" approved="yes"> <source>No URL available</source> <target state="translated">keine verfügbare URL</target> - <jms:reference-file line="135">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="141">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="486829367591dc8209f3fc6960814c0bdd8930d1" resname="No account yet?" approved="yes"> <source>No account yet?</source> @@ -4543,7 +4595,7 @@ <trans-unit id="3a5aa5b9e5d2494ebc5a37af09018367b4220845" resname="No preview available" approved="yes"> <source>No preview available</source> <target state="translated">Keine Voransicht verfügbar</target> - <jms:reference-file line="63">actions/Tools/videoEditor.html.twig</jms:reference-file> + <jms:reference-file line="75">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="657c9f21a7a4da0e213e67dbee089b281dce3279" resname="No receivers specified" approved="yes"> <source>No receivers specified</source> @@ -4558,8 +4610,12 @@ <trans-unit id="b993b0c537190bfc94b21360ac5abe51e56be36f" resname="No results" approved="yes"> <source>No results</source> <target state="translated">Keine Ergebnisse</target> - <jms:reference-file line="8">WorkZone/Browser/Results.html.twig</jms:reference-file> - <jms:reference-file line="111">WorkZone/Browser/Results.html.twig</jms:reference-file> + <jms:reference-file line="87">WorkZone/Browser/Results.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="bfccc7c966ca427d629149d67548af04605eb746" resname="No thesaurus concept query" approved="yes"> + <source>No thesaurus concept query</source> + <target state="translated">Keine Thesaurus Suche</target> + <jms:reference-file line="16">prod/results/infos.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6866c8b666718aff85382e93b25ef50cd321669b" resname="No users selected" approved="yes"> <source>No users selected</source> @@ -4595,15 +4651,15 @@ <trans-unit id="c57d307e10f641b5b496db576d0dcd69d1daf25e" resname="Non-Restreinte (publique)" approved="yes"> <source>Non-Restreinte (publique)</source> <target state="translated">Nicht eingeschränkt (öffentlich)</target> - <jms:reference-file line="25">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="108">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="25">admin/publications/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6eef6648406c333a4035cd5e60d0bf2ecf2606d7" resname="None" approved="yes"> <source>None</source> <target state="translated">Keine</target> <jms:reference-file line="41">Form/Configuration/EmailFormType.php</jms:reference-file> - <jms:reference-file line="260">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="53">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="260">admin/user/registrations.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ece3fad87bd747a7b0b1f3ff9336645ee1a36078" resname="None of the records can be modified." approved="yes"> <source>None of the records can be modified.</source> @@ -4633,7 +4689,7 @@ <trans-unit id="a6633333760410e40ad92a50baade0b83afe8f7f" resname="Not aggregated" approved="yes"> <source>Not aggregated</source> <target state="translated">Nicht aggregiert</target> - <jms:reference-file line="227">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="242">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cc451929f50e088ffcff10e90dfe157d2319e753" resname="Notification par email" approved="yes"> <source>Notification par email</source> @@ -4643,8 +4699,8 @@ <trans-unit id="753a22b2eb617204efee4644795034b8ace1ee14" resname="Notifications" approved="yes"> <source>Notifications</source> <target state="translated">Benachrichtigungen</target> - <jms:reference-file line="156">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="229">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="214">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="286">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ac0b3b17f88b480b11c468d0b5bea6409bbd14b8" resname="Notifications globales" approved="yes"> <source>Notifications globales</source> @@ -4654,7 +4710,7 @@ <trans-unit id="18ee7ad22bf04f818fd95599481303c7f7d1b29f" resname="Notify third party application when an event occurs in Phraseanet" approved="yes"> <source>Notify third party application when an event occurs in Phraseanet</source> <target state="translated">Drittanwendung benachrichtigen, beim Eintreten eines Ereignisses</target> - <jms:reference-file line="61">TaskManager/Job/WebhookJob.php</jms:reference-file> + <jms:reference-file line="74">TaskManager/Job/WebhookJob.php</jms:reference-file> </trans-unit> <trans-unit id="3ccc3824ae2ffdfea7482564cbc8cf35de78766d" resname="Notify users about this publication" approved="yes"> <source>Notify users about this publication</source> @@ -4694,7 +4750,7 @@ <trans-unit id="39e336676dcacd1411fbc236d035878a38989667" resname="Number of records to process per batch" approved="yes"> <source>Number of records to process per batch</source> <target state="translated">Anzahl von Datensätzen per Stapel zu verarbeiten</target> - <jms:reference-file line="39">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="42">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="997c69f6571530618bb38ac03f4cf2d236dcc15e" resname="Number of replicas" approved="yes"> <source>Number of replicas</source> @@ -4716,8 +4772,8 @@ <trans-unit id="9ce3bd4224c8c1780db56b4125ecf3f24bf748b7" resname="OK" approved="yes"> <source>OK</source> <target state="translated">OK</target> - <jms:reference-file line="535">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="499">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="535">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="b0a98216a32426b9e66a4ac1eb6df2e96e1b495c" resname="Ok" approved="yes"> <source>Ok</source> @@ -4740,6 +4796,11 @@ <target state="new">One frame forward</target> <jms:reference-file line="125">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> + <trans-unit id="c15c49205663ceff94e31db82030bb5da10df870" resname="One of these conditions" approved="yes"> + <source>One of these conditions</source> + <target state="translated">Eine von diesen Bedingungen</target> + <jms:reference-file line="419">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="1ae26e7b698cf33577df1bd9fd55ddd1d0771802" resname="Only %nbEditableDocuments% records can be modified." approved="yes"> <source>Only %nbEditableDocuments% records can be modified.</source> <target state="translated">Nur %nbEditableDocuments% Datensätze können nicht geändert werden</target> @@ -4755,13 +4816,18 @@ <target state="translated">Öffnen Sie die URL in einem neuen Fenster</target> <jms:reference-file line="125">Core/Provider/TwigServiceProvider.php</jms:reference-file> </trans-unit> + <trans-unit id="e72184f55cc026514b7160d78c3c5aef63c2a050" resname="Or" approved="yes"> + <source>Or</source> + <target state="translated">Oder</target> + <jms:reference-file line="35">prod/upload/upload.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="94946e4d2391ccf8ff24f984869ae8fcf9ede7c4" resname="Or login with" approved="yes"> <source>Or login with</source> <target state="translated">Oder Anmeldung mit</target> - <jms:reference-file line="56">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="36">web/login/register.html.twig</jms:reference-file> + <jms:reference-file line="103">web/login/index.html.twig</jms:reference-file> <jms:reference-file line="91">login/oauth/login.html.twig</jms:reference-file> - <jms:reference-file line="102">web/login/index.html.twig</jms:reference-file> + <jms:reference-file line="56">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1d75774c0f96b6ee44eb6643c9fea71b50b90ea8" resname="Order" approved="yes"> <source>Order</source> @@ -4786,17 +4852,17 @@ <source>Orders manager</source> <target state="translated">Bestellungen Manager</target> <jms:reference-file line="45">eventsmanager/notify/order.php</jms:reference-file> - <jms:reference-file line="117">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="118">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0bc63392df32795e16ab5cbb605be75812542d30" resname="Ordinary" approved="yes"> <source>Ordinary</source> <target state="translated">Einfach</target> <jms:reference-file line="151">Controller/Root/LoginController.php</jms:reference-file> </trans-unit> - <trans-unit id="86e4e3875420cdee95d08d4472073493729a7aee" resname="Orientation"> + <trans-unit id="86e4e3875420cdee95d08d4472073493729a7aee" resname="Orientation" approved="yes"> <source>Orientation</source> - <target state="new">Orientation</target> - <jms:reference-file line="335">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <target state="translated">Ausrichtung</target> + <jms:reference-file line="360">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="77561f3d48cb738cc40f376dec4616a77da54ee1" resname="Original name" approved="yes"> <source>Original name</source> @@ -4808,11 +4874,6 @@ <target state="translated">Hoppla! Etwas ist schiefgegangen</target> <jms:reference-file line="10">actions/Bridge/error.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="4e3f5ff6fef1232b4a80b35f08a3db8f776f44d0" resname="Outdated access to the following collections"> - <source>Outdated access to the following collections</source> - <target state="new">Outdated access to the following collections</target> - <jms:reference-file line="134">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="89ff31225c5f042fff61e92ec8cf80e417a7140c" resname="Owner" approved="yes"> <source>Owner</source> <target state="translated">Besitzer</target> @@ -4838,24 +4899,25 @@ <trans-unit id="fe42b90acc297644b70123354014701c49384489" resname="Paniers" approved="yes"> <source>Paniers</source> <target state="translated">Sammelkörbe</target> + <jms:reference-file line="50">mobile/lightbox/index.html.twig</jms:reference-file> + <jms:reference-file line="116">mobile/lightbox/index.html.twig</jms:reference-file> + <jms:reference-file line="257">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="91">web/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="127">lightbox/IE6/validate.html.twig</jms:reference-file> <jms:reference-file line="140">web/lightbox/validate.html.twig</jms:reference-file> - <jms:reference-file line="50">mobile/lightbox/index.html.twig</jms:reference-file> - <jms:reference-file line="116">mobile/lightbox/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="379c70ed96868079feece6d5c6a2b91545c2515b" resname="Par %author%" approved="yes"> <source>Par %author%</source> <target state="translated">Von %author%</target> - <jms:reference-file line="20">prod/results/entry.html.twig</jms:reference-file> - <jms:reference-file line="14">prod/results/feeds_entry.html.twig</jms:reference-file> <jms:reference-file line="25">mobile/lightbox/feed.html.twig</jms:reference-file> + <jms:reference-file line="14">prod/results/feeds_entry.html.twig</jms:reference-file> + <jms:reference-file line="20">prod/results/entry.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8be3c943b1609fffbfc51aad666d0a04adf83c9d" resname="Password" approved="yes"> <source>Password</source> <target state="translated">Passwort</target> - <jms:reference-file line="52">Form/Login/PhraseaRegisterForm.php</jms:reference-file> <jms:reference-file line="41">Form/Login/PhraseaAuthenticationForm.php</jms:reference-file> + <jms:reference-file line="52">Form/Login/PhraseaRegisterForm.php</jms:reference-file> <jms:reference-file line="81">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e3c007b7794e8f9fc4381136dfc7cdff5aa788a8" resname="Password (confirmation)" approved="yes"> @@ -4866,7 +4928,7 @@ <trans-unit id="6e77cc0549ad99a9d3ba5c384f7f329db24d6d0c" resname="Password is empty at line %line%" approved="yes"> <source>Password is empty at line %line%</source> <target state="translated">Passwort ist leer in Zeile %line%</target> - <jms:reference-file line="667">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="668">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="1dde2526f4dbbd53204d28438a85c8b30284c584" resname="Password renewal for login "%login%" has been requested" approved="yes"> <source>Password renewal for login "%login%" has been requested</source> @@ -4893,11 +4955,6 @@ <target state="new">Pays</target> <jms:reference-file line="32">prod/User/Add.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="42dea402e91b757c7437006335c9cc8d0382f29d" resname="Pending access to the following collections"> - <source>Pending access to the following collections</source> - <target state="new">Pending access to the following collections</target> - <jms:reference-file line="84">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="3d8de900b56813bb78e97afbf22578720d473219" resname="Periodically fetches an FTP repository content locally" approved="yes"> <source>Periodically fetches an FTP repository content locally</source> <target state="translated">Holt regelmässig einen FTP Repository Inhalt lokal</target> @@ -4962,14 +5019,14 @@ <trans-unit id="cd95b41f85ddc0922e3fce8844279c55e9e3cdd9" resname="Playlist" approved="yes"> <source>Playlist</source> <target state="translated">Playlist</target> - <jms:reference-file line="14">Bridge/Youtube/actionelements.html.twig</jms:reference-file> <jms:reference-file line="14">Bridge/Dailymotion/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="14">Bridge/Youtube/actionelements.html.twig</jms:reference-file> </trans-unit> <trans-unit id="77b69f32c8780049ce0eec9782c3b77bb1e52bc3" resname="Playlists" approved="yes"> <source>Playlists</source> <target state="translated">Playlisten</target> - <jms:reference-file line="183">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="168">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="183">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="9a79729c3f4563330799d576273950579e1ba3f5" resname="Please accept the terms of use to register." approved="yes"> <source>Please accept the terms of use to register.</source> @@ -4989,12 +5046,12 @@ <trans-unit id="7d971fb22555bf3deb2da6d7820d2379b6f37d12" resname="Please consider send this push to the following users : %recommendation%" approved="yes"> <source>Please consider send this push to the following users : %recommendation%</source> <target state="translated">Vorschläge: Sie können auch diesen Push zu den folgenden Benutzern senden: %recommendation%</target> - <jms:reference-file line="135">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="142">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="78fbf70be163b16d5c72147a659d43a1ddbe4f62" resname="Please consider send this validation to the following users : %recommendation%" approved="yes"> <source>Please consider send this validation to the following users : %recommendation%</source> <target state="translated">Bitte prüfen Sie, ob Sie dieseBewertung zu folgenden Benutzern senden möchten: %recommendation%</target> - <jms:reference-file line="137">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="144">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cb75472a748e630791f52a7e31b275376a65b600" resname="Please enter the databox name to reset or create" approved="yes"> <source>Please enter the databox name to reset or create</source> @@ -5069,7 +5126,7 @@ <trans-unit id="cf1c85adba548e8d681255278976584a7e4a44de" resname="Position" approved="yes"> <source>Position</source> <target state="translated">Funktion</target> - <jms:reference-file line="180">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="176">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="502823ab9297855805de9b08960bcb4654a235a9" resname="Pour davantage d'informations, consulter le lien suivant %lien%" approved="yes"> <source>Pour davantage d'informations, consulter le lien suivant %lien%</source> @@ -5079,7 +5136,7 @@ <trans-unit id="b7a45fd93ff9471252ff1535c56c82f2f2d93865" resname="Pour gérer l'envoi d'email automatique, connectez-vous à %link%" approved="yes"> <source>Pour gérer l'envoi d'email automatique, connectez-vous à %link%</source> <target state="translated">Bitte besuchen Sie %link%, um automatisierte Meldungen zu verwalten</target> - <jms:reference-file line="134">templates/web/email-template.html.twig</jms:reference-file> + <jms:reference-file line="140">templates/web/email-template.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cb6a1b19177957adc64d41ef7744e5f3f2f1d220" resname="Preference saved !" approved="yes"> <source>Preference saved !</source> @@ -5090,10 +5147,10 @@ <trans-unit id="9dfd349ebee555eb8d652be20dad971cae439eca" resname="Preferences" approved="yes"> <source>Preferences</source> <target state="translated">Einstellungen</target> - <jms:reference-file line="249">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="250">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="477">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="576">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="253">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="256">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="568">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="667">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="40c963556bf21635f163641ae0bbc354c6f8452c" resname="Prefix for notification emails" approved="yes"> <source>Prefix for notification emails</source> @@ -5108,12 +5165,12 @@ <trans-unit id="9cafca25680cc440912450d10272214d3f3daee4" resname="Presentation de vignettes" approved="yes"> <source>Presentation de vignettes</source> <target state="translated">Miniaturansichten</target> - <jms:reference-file line="622">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="713">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="be11dff872b14e749d330f920d6b159e107f277a" resname="Presentation de vignettes de panier" approved="yes"> <source>Presentation de vignettes de panier</source> <target state="translated">Vorstellung der Voransichten des Sammelkorbes</target> - <jms:reference-file line="833">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="924">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e709e76ff5425bd59879423588e80e67d778fa57" resname="Presets"> <source>Presets</source> @@ -5135,8 +5192,8 @@ <trans-unit id="e6ad53898d609dbabefb5da33ee1b4cc04fba023" resname="Problemes de connexion ?" approved="yes"> <source>Problemes de connexion ?</source> <target state="translated">Verbindungsprobleme ?</target> - <jms:reference-file line="74">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="54">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="74">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="376483bbeebdab912944e9b41d8d31510132abde" resname="Process the registration" approved="yes"> <source>Process the registration</source> @@ -5166,10 +5223,10 @@ <trans-unit id="0855684c1444ece44c79b3612a7f4cfac9ae6e2a" resname="Publications" approved="yes"> <source>Publications</source> <target state="translated">Veröffentlichungen</target> - <jms:reference-file line="694">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="785">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="2">admin/publications/wrapper.html.twig</jms:reference-file> <jms:reference-file line="58">web/admin/tree.html.twig</jms:reference-file> - <jms:reference-file line="109">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="110">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="34e6b19e8980f86ac8f2a33377c8cd669b66ac9b" resname="Publier" approved="yes"> <source>Publier</source> @@ -5179,8 +5236,8 @@ <trans-unit id="a255047b3f86eb4c0c79377f0725c89ceafe07ae" resname="Publique" approved="yes"> <source>Publique</source> <target state="translated">öffentliche</target> - <jms:reference-file line="40">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="123">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="40">admin/publications/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="107e7fab79b95c8f34990d625dd309e15996acba" resname="Publishers" approved="yes"> <source>Publishers</source> @@ -5206,64 +5263,64 @@ <trans-unit id="dc5a4abd4a0dd0729a7935958c49369f845aefe7" resname="Push::filter on companies" approved="yes"> <source>Push::filter on companies</source> <target state="translated">Unternehmensname</target> - <jms:reference-file line="151">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="147">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="46">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0062d9a99e994aa4c343618e2236b82cf70fdf4a" resname="Push::filter on countries" approved="yes"> <source>Push::filter on countries</source> <target state="translated">Land</target> - <jms:reference-file line="148">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="144">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="45">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3dec8278889a4c672e776c0f810f7ed4a4ff7179" resname="Push::filter on emails" approved="yes"> <source>Push::filter on emails</source> <target state="translated">E-Mail</target> - <jms:reference-file line="154">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="150">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="47">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d839b546e93714294e67e04cc94c6fcd2196cb9f" resname="Push::filter on login" approved="yes"> <source>Push::filter on login</source> <target state="translated">Benutzername</target> - <jms:reference-file line="142">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="138">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="43">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="68226ba2a14991c3fc4b892b6b826868d5a093f0" resname="Push::filter on name" approved="yes"> <source>Push::filter on name</source> <target state="translated">Nachname/Vorname</target> - <jms:reference-file line="145">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="141">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="df2d864dd4e6285082e77bd1c265e71d5c65645c" resname="Push::filter on templates" approved="yes"> <source>Push::filter on templates</source> <target state="translated">Letzte Vorlage</target> - <jms:reference-file line="157">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="153">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d2f5c0ac80b1da7a8257a2b0df31f94dc9e6b072" resname="Push::filter starts" approved="yes"> <source>Push::filter starts</source> <target state="translated">beginnt mit</target> - <jms:reference-file line="160">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="156">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="49">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dcf907ccbbcda0c0a828ef73ff1e6320748c1fad" resname="Push::une validation est une demande d'appreciation a d'autres personnes" approved="yes"> <source>Push::une validation est une demande d'appreciation a d'autres personnes</source> <target state="translated">"Bewertung" erlaubt es Dokumente an Empfänger zu senden. In einem E-Mai ist ein link, der das Modul Phraseanet Lightbox startet. In diesem können Sie die Dokumente mittels 3 verschieden Symbolen bewerten und bei Berechtigung auch downloaden. Für eingeloggte Benutzer ist die "Bewertung" im Modul Prod als Sammelkorb verfügbar.</target> - <jms:reference-file line="182">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="189">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3e45857148ed08b19a425b5f4a2775e30dd346a7" resname="Push::unpush permet d'envoyer un lot d'image a des destinataires" approved="yes"> <source>Push::unpush permet d'envoyer un lot d'image a des destinataires</source> <target state="translated">Das Modul Push ermöglicht es einen Stapel Bilder an Emfänger zu senden. Diese erhalten eine E-Mail mit einem link, der das Modul Phraseanet Lightbox startet. In diesem Modul kann man die Dokumente anschauen und bei Berechtigung auch downloaden. Für registrierte Benutze rerscheinen die mit Push gesendeten Daten im Modul Prod als "Sammelkorb erhalten"</target> - <jms:reference-file line="180">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="187">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a60f2c73604f623449f263e78f5857849ad5e429" resname="Quality" approved="yes"> <source>Quality</source> <target state="translated">Qualität</target> - <jms:reference-file line="36">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="36">Media/Subdef/Image.php</jms:reference-file> + <jms:reference-file line="36">Media/Subdef/Unknown.php</jms:reference-file> </trans-unit> <trans-unit id="7f983c163b8d6973ad2a1aa6de868dad5be7f8e2" resname="Quarantine" approved="yes"> <source>Quarantine</source> <target state="translated">Quarantäne</target> - <jms:reference-file line="15">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="15">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="15">prod/upload/upload-flash.html.twig</jms:reference-file> </trans-unit> <trans-unit id="edd025b4ece2ab6693982ff127227d5672c7b0f1" resname="Quarantine notificaton" approved="yes"> <source>Quarantine notificaton</source> @@ -5278,80 +5335,80 @@ <trans-unit id="64ef3e9b9c1030a3df3515f8837f98d76950dd3a" resname="Raccourcis claviers de la zone des paniers :" approved="yes"> <source>Raccourcis claviers de la zone des paniers :</source> <target state="translated">Sammelkörbe und Funktionen Abkürzungen</target> - <jms:reference-file line="536">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="627">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0fa257c61469082fe30f197cec92755b9b4fa8f0" resname="Raccourcis claviers en cours de editing :" approved="yes"> <source>Raccourcis claviers en cours de editing :</source> <target state="translated">Fenster Abkürzungen bearbeiten</target> - <jms:reference-file line="544">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="635">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b9401adb809efe10b4f5c4cb884566bd566a7969" resname="Raccourcis claviers en cours de preview :" approved="yes"> <source>Raccourcis claviers en cours de preview :</source> <target state="translated">Fenster Abkürzungen, Detailansicht</target> - <jms:reference-file line="550">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="641">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6d5b336b50c5326a4cfdaa1a9e8ac7c4bc6d7b3b" resname="Raccourcis claviers en cours de recherche :" approved="yes"> <source>Raccourcis claviers en cours de recherche :</source> <target state="translated">Hauptfenster Abkürzungen</target> - <jms:reference-file line="524">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="615">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c53cf63d91236443a009fd132ae3728c8c8c7da0" resname="Raccourcis:: ctrl-a : tout selectionner" approved="yes"> <source>Raccourcis:: ctrl-a : tout selectionner</source> <target state="translated">ctrl-a : alles auswählen</target> - <jms:reference-file line="526">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="538">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="617">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="629">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="812022dea00fadf2f69eeae12652173c5292a306" resname="Raccourcis:: ctrl-e : editer la selection" approved="yes"> <source>Raccourcis:: ctrl-e : editer la selection</source> <target state="translated">ctrl-e : Auswahl bearbeiten</target> - <jms:reference-file line="528">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="540">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="619">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="631">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c99e1c9838e7a805cbeac7e7f0c5268b64787ee8" resname="Raccourcis:: ctrl-p : imprimer la selection" approved="yes"> <source>Raccourcis:: ctrl-p : imprimer la selection</source> <target state="translated">ctrl-p : drucken</target> - <jms:reference-file line="527">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="539">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="618">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="630">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4dbc2034b309af31b59245364f6f02b7f7234737" resname="Raccourcis::espace : arreter/demarrer le diaporama" approved="yes"> <source>Raccourcis::espace : arreter/demarrer le diaporama</source> <target state="translated">Dia-Schau starten</target> - <jms:reference-file line="554">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="645">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b6b7ba6a989c15ed4a35c733f02597ba34607758" resname="Raccourcis::fleche bas : scroll vertical" approved="yes"> <source>Raccourcis::fleche bas : scroll vertical</source> <target state="translated">Abwärtspfeil: vertikal scrollen</target> - <jms:reference-file line="532">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="623">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="11d9cd036e502f222ca13b3fe1cefb7a9af7189b" resname="Raccourcis::fleche droite : page suivante" approved="yes"> <source>Raccourcis::fleche droite : page suivante</source> <target state="translated">Rechtspfeil: nächste Seite</target> - <jms:reference-file line="530">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="621">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f9cdc8b16bcbc46ca9a0ec80f780e584e27a5999" resname="Raccourcis::fleche gauche : en arriere" approved="yes"> <source>Raccourcis::fleche gauche : en arriere</source> <target state="translated">Abwärtspfeil: letztes Dokument</target> - <jms:reference-file line="553">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="644">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="500299a27b8ec15496801e637d2ffa5e9ca45c17" resname="Raccourcis::fleche gauche : en avant" approved="yes"> <source>Raccourcis::fleche gauche : en avant</source> <target state="translated">Rechtspfeil: nächstes Dokument</target> - <jms:reference-file line="552">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="643">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3c8f969d01141d75f1a5c8cc19da3f22b17e7bb5" resname="Raccourcis::fleche gauche : page precedente" approved="yes"> <source>Raccourcis::fleche gauche : page precedente</source> <target state="translated">Linkspfeil: vorherige Seite</target> - <jms:reference-file line="529">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="620">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ea7b04fcba2b542ae05ff8bf1c2eccab32451a78" resname="Raccourcis::fleche haut : scroll vertical" approved="yes"> <source>Raccourcis::fleche haut : scroll vertical</source> <target state="translated">Pfeil oben: vertikal scrollen</target> - <jms:reference-file line="531">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="622">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="82c2178626ff2cdee250667a4efd09961f720dee" resname="Raccourcis::tab/shift-tab se ballade dans les champs" approved="yes"> <source>Raccourcis::tab/shift-tab se ballade dans les champs</source> <target state="translated">tab/shift-tab : Feld ändern</target> - <jms:reference-file line="546">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="637">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4efaf5e07d4b4b4c4373d24615adeed3a0eca433" resname="Rappel : Il vous reste %number% jours pour valider %title% de %user%" approved="yes"> <source>Rappel : Il vous reste %number% jours pour valider %title% de %user%</source> @@ -5366,29 +5423,31 @@ <trans-unit id="aafcf684757a5a4e1bf1630db0821e75f47a2d08" resname="Rapport de Validation" approved="yes"> <source>Rapport de Validation</source> <target state="translated">Bestätigungsbericht</target> - <jms:reference-file line="74">eventsmanager/notify/validationdone.php</jms:reference-file> + <jms:reference-file line="80">eventsmanager/notify/validationdone.php</jms:reference-file> </trans-unit> <trans-unit id="17e7c81f42087a2439ab16806eea8693d6bcfff0" resname="Re-initialiser" approved="yes"> <source>Re-initialiser</source> <target state="translated">Zurücksetzen</target> <jms:reference-file line="8">prod/Baskets/Reorder.html.twig</jms:reference-file> - <jms:reference-file line="328">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="7">prod/Story/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="328">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ca2a6abfc98ae1a46c15a6f8bbdc5fac25531462" resname="Re-ordonner" approved="yes"> <source>Re-ordonner</source> <target state="translated">wieder ordnen</target> - <jms:reference-file line="181">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="182">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="248">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="252">prod/WorkZone/Macros.html.twig</jms:reference-file> <jms:reference-file line="13">prod/Baskets/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="188">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="189">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="190">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="274">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="278">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="279">prod/WorkZone/Macros.html.twig</jms:reference-file> <jms:reference-file line="12">prod/Story/Reorder.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9b19a5a212deb29444cc1b420ad81703205848be" resname="Read-only" approved="yes"> <source>Read-only</source> <target state="translated">schreibgeschützt</target> - <jms:reference-file line="189">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="188">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8af84354a61a59531041ee67713997b84e7657ee" resname="Recaptcha private key" approved="yes"> <source>Recaptcha private key</source> @@ -5419,27 +5478,22 @@ <source>Received from %user_name%</source> <target state="translated">Von %user_name% bekommen</target> <jms:reference-file line="43">WorkZone/Browser/Basket.html.twig</jms:reference-file> - <jms:reference-file line="73">WorkZone/Browser/Results.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="8434c52b54f0df88fc7f845d21a20f6a6d5ff880" resname="Receiver" approved="yes"> - <source>Receiver</source> - <target state="translated">Empfänger</target> - <jms:reference-file line="595">Controller/Report/ActivityController.php</jms:reference-file> + <jms:reference-file line="50">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="da14ea4ea4ade5295d38ee6c0cd689aee3cd62ba" resname="Reception d'un rapport de validation" approved="yes"> <source>Reception d'un rapport de validation</source> <target state="translated">Empfang eines Bestätigungsberichtes</target> - <jms:reference-file line="83">eventsmanager/notify/validationdone.php</jms:reference-file> + <jms:reference-file line="89">eventsmanager/notify/validationdone.php</jms:reference-file> </trans-unit> <trans-unit id="69d1feaf46a349a3e34611edbfd84d913f5cf209" resname="Reception d'une commande" approved="yes"> <source>Reception d'une commande</source> <target state="translated">Eingang einer Bestellung</target> - <jms:reference-file line="82">eventsmanager/notify/orderdeliver.php</jms:reference-file> + <jms:reference-file line="90">eventsmanager/notify/orderdeliver.php</jms:reference-file> </trans-unit> <trans-unit id="62046e2515337958c10c5a6c4e08a3e415af005b" resname="Reception de commande" approved="yes"> <source>Reception de commande</source> <target state="translated">Empfangskontrolle</target> - <jms:reference-file line="73">eventsmanager/notify/orderdeliver.php</jms:reference-file> + <jms:reference-file line="81">eventsmanager/notify/orderdeliver.php</jms:reference-file> </trans-unit> <trans-unit id="49f32abd3c743170b12fd28ce4e6035d5f0d1014" resname="Reception of %basket_name%" approved="yes"> <source>Reception of %basket_name%</source> @@ -5479,7 +5533,7 @@ <trans-unit id="f5e93456bc3a36a53bbcc31ea9dc7dc18b084a3d" resname="Rechercher dans un champ date" approved="yes"> <source>Rechercher dans un champ date</source> <target state="translated">im Feld "Datum" suchen</target> - <jms:reference-file line="441">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="470">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4faa65b556f68207d69cb14bcae4acb71980a036" resname="Recommendations" approved="yes"> <source>Recommendations</source> @@ -5499,7 +5553,7 @@ <trans-unit id="3cd74928930cda94205568949be186e4cae37119" resname="Record Not Found" approved="yes"> <source>Record Not Found</source> <target state="translated">Datensatz wurde nicht gefunden</target> - <jms:reference-file line="2006">Controller/Api/V1Controller.php</jms:reference-file> + <jms:reference-file line="2048">Controller/Api/V1Controller.php</jms:reference-file> </trans-unit> <trans-unit id="ef0112aa634cbad5a586b72e4befe1ab1a39e73f" resname="Record removed from basket" approved="yes"> <source>Record removed from basket</source> @@ -5524,7 +5578,7 @@ <trans-unit id="1361dc265b8f8d5fbfae5c59f5eb7008345b0a60" resname="Records have been successfuly moved" approved="yes"> <source>Records have been successfuly moved</source> <target state="translated">Datensätze wurden erfolgreich bewegt</target> - <jms:reference-file line="158">Controller/Prod/MoveCollectionController.php</jms:reference-file> + <jms:reference-file line="159">Controller/Prod/MoveCollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="c5122f4f064abbc30552663cb0942faf7c7eb035" resname="Records type" approved="yes"> <source>Records type</source> @@ -5540,10 +5594,10 @@ <trans-unit id="d672995a14650d0e018026b64f297663d8c71c8d" resname="Register" approved="yes"> <source>Register</source> <target state="translated">Registrieren</target> - <jms:reference-file line="6">web/login/register.html.twig</jms:reference-file> <jms:reference-file line="7">web/login/register-classic.html.twig</jms:reference-file> - <jms:reference-file line="10">login/include/register-link-block.html.twig</jms:reference-file> + <jms:reference-file line="6">web/login/register.html.twig</jms:reference-file> <jms:reference-file line="6">web/login/register-provider.html.twig</jms:reference-file> + <jms:reference-file line="10">login/include/register-link-block.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9ab985702970c5012a1c1a2db7b65d95926aecaf" resname="Register approbation" approved="yes"> <source>Register approbation</source> @@ -5567,15 +5621,10 @@ <jms:reference-file line="117">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="30">web/admin/users.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="c3c3adf6aadb4b23c2012f0ca5904b3d8172d98a" resname="Rejected access to the following collections"> - <source>Rejected access to the following collections</source> - <target state="new">Rejected access to the following collections</target> - <jms:reference-file line="57">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="dcb70f5244f8883ac49c5eceb7d1e1cdeaf82711" resname="Relevance" approved="yes"> <source>Relevance</source> <target state="translated">Relevanz</target> - <jms:reference-file line="354">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="383">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ced7b308a348567fbf21dd775ee496dd01207f24" resname="Remember me" approved="yes"> <source>Remember me</source> @@ -5590,8 +5639,8 @@ <trans-unit id="ecd6539bc6678ec0ff3748ecac64d64cee566b8f" resname="Remove ICC Profile" approved="yes"> <source>Remove ICC Profile</source> <target state="translated">Entfernt ICC-Profil</target> - <jms:reference-file line="34">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="34">Media/Subdef/Image.php</jms:reference-file> + <jms:reference-file line="34">Media/Subdef/Unknown.php</jms:reference-file> </trans-unit> <trans-unit id="db7741b4a5e42acd8d4e758ae50075157a0c08b7" resname="Remove current Range"> <source>Remove current Range</source> @@ -5639,12 +5688,7 @@ <trans-unit id="ee45c30326b750387589752c0f75e1dd87ddc7e4" resname="Report" approved="yes"> <source>Report</source> <target state="translated">Report</target> - <jms:reference-file line="205">admin/fields/templates.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="c0d6afbb9a5d52be258437c6100523c0ca890975" resname="Report generation may take a long time to generate, depending on the number of collections and the period selected." approved="yes"> - <source>Report generation may take a long time to generate, depending on the number of collections and the period selected.</source> - <target state="translated">Report Erzeugung kann lange dauern, anhängig von der Anzahl von Kollektionen und der ausgewählten Zeit</target> - <jms:reference-file line="27">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="220">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="859ca6c24228b6fe9c9010bed75d2933884d7b49" resname="Request access" approved="yes"> <source>Request access</source> @@ -5710,13 +5754,13 @@ <trans-unit id="516aae52959dcf5398a9985414a78b8c24a4f0e5" resname="Resolution" approved="yes"> <source>Resolution</source> <target state="translated">Unterauflösung</target> - <jms:reference-file line="33">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="33">Media/Subdef/Image.php</jms:reference-file> + <jms:reference-file line="33">Media/Subdef/Unknown.php</jms:reference-file> </trans-unit> <trans-unit id="8e78cff6cd2bb8595029060cb53dba7a4ba72b8a" resname="Resource URL" approved="yes"> <source>Resource URL</source> <target state="translated">Resource URL</target> - <jms:reference-file line="38">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="44">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2479ef7e025d9d4c6e5463dc366c2d6c79aaefbe" resname="Resquest access" approved="yes"> <source>Resquest access</source> @@ -5726,12 +5770,12 @@ <trans-unit id="ce2c77f1871ac286de08f393786b2a43da8aeb60" resname="Restart the task every X records" approved="yes"> <source>Restart the task every X records</source> <target state="translated">Starten Sie die Aufgabe alle n Datensätze noch einmal</target> - <jms:reference-file line="45">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="48">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="72f952850433b0f6e2359d47502eb500eb41ddad" resname="Restart the task if memory reaches" approved="yes"> <source>Restart the task if memory reaches</source> <target state="translated">Starten Sie die Aufgabe noch einmal, wenn der Speicher erreicht</target> - <jms:reference-file line="51">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="54">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="68135bb8f15e79ba2b97fcf79236ac3b2ba42dac" resname="Reste" approved="yes"> <source>Reste</source> @@ -5857,14 +5901,14 @@ <trans-unit id="efc007a393f66cdb14d57d385822a3d9e36ef873" resname="Save" approved="yes"> <source>Save</source> <target state="translated">Speichern</target> - <jms:reference-file line="112">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="108">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="45">web/account/change-password.html.twig</jms:reference-file> <jms:reference-file line="26">admin/search-engine/general-aggregation.html.twig</jms:reference-file> <jms:reference-file line="3">admin/search-engine/elastic-search.html.twig</jms:reference-file> <jms:reference-file line="75">task-manager/task-editor/task.html.twig</jms:reference-file> - <jms:reference-file line="45">web/account/change-password.html.twig</jms:reference-file> - <jms:reference-file line="41">web/login/renew-password.html.twig</jms:reference-file> <jms:reference-file line="53">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="91">web/developers/application.html.twig</jms:reference-file> + <jms:reference-file line="41">web/login/renew-password.html.twig</jms:reference-file> </trans-unit> <trans-unit id="960c9d85e9849fa58deb038c6c9bcf36ec973c99" resname="Save all changes" approved="yes"> <source>Save all changes</source> @@ -5874,12 +5918,12 @@ <trans-unit id="a68dd32b578cf2863f4df4362232db4d80a9557c" resname="Save the list"> <source>Save the list</source> <target state="new">Save the list</target> - <jms:reference-file line="90">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="86">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e5c05c39658269a025f4dc37b50af1bb5ab946ca" resname="Save this list" approved="yes"> <source>Save this list</source> <target state="translated">Diese Liste speichern</target> - <jms:reference-file line="241">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="247">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="fedf2439f275db3b471d35c2e773398bfff1c9eb" resname="Se connecter" approved="yes"> <source>Se connecter</source> @@ -5931,8 +5975,8 @@ <trans-unit id="b945126af2994e142e712b4e6f3c2cb2dd186a76" resname="See my order" approved="yes"> <source>See my order</source> <target state="translated">Meine Bestellung ansehen</target> - <jms:reference-file line="74">Notification/Mail/MailInfoOrderDelivered.php</jms:reference-file> <jms:reference-file line="75">Notification/Mail/MailInfoOrderCancelled.php</jms:reference-file> + <jms:reference-file line="74">Notification/Mail/MailInfoOrderDelivered.php</jms:reference-file> </trans-unit> <trans-unit id="369b9cb821dd6966e989359a1b8aadaf9c4db387" resname="See others" approved="yes"> <source>See others</source> @@ -5942,24 +5986,30 @@ <trans-unit id="76f0c2c4f58a932f4d61175ea0da5799c1b3c231" resname="See the list"> <source>See the list</source> <target state="new">See the list</target> - <jms:reference-file line="138">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="134">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7c2ce4a38c55478fb397967408b8c6d7c29fcc3b" resname="See validation results" approved="yes"> <source>See validation results</source> <target state="translated">Bestätigung Ergebnisse ansehen</target> <jms:reference-file line="81">Notification/Mail/MailInfoValidationDone.php</jms:reference-file> </trans-unit> + <trans-unit id="fd6294adde442e65458da9640beeafed76f7f66a" resname="Select a field" approved="yes"> + <source>Select a field</source> + <target state="translated">Wählen Sie ein Feld aus</target> + <jms:reference-file line="425">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="68679be6d90db68ca5ceebaded92d5d83de8761c" resname="Select a list on the left and edit it !" approved="yes"> <source>Select a list on the left and edit it !</source> <target state="translated">Wählen Sie eine Liste auf der linken Seite aus und bearbeiten Sie diese.</target> - <jms:reference-file line="295">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="300">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="913afff1faf79724f1f685fe8b1e36a729123ca2" resname="Select all" approved="yes"> <source>Select all</source> <target state="translated">Alle auswählen</target> - <jms:reference-file line="61">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="215">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="24">web/report/form_date_and_base.html.twig</jms:reference-file> + <jms:reference-file line="221">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="57">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="68">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="45">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7c83f0d10a0a04ab6ae1ceb098113b081e9bc4d5" resname="Select all collections" approved="yes"> <source>Select all collections</source> @@ -5969,8 +6019,8 @@ <trans-unit id="aacba52fe3c2b562e2ef14b41fcd4abab92a0619" resname="Select files..." approved="yes"> <source>Select files...</source> <target state="translated">Dateien auswählen...</target> - <jms:reference-file line="202">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="31">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="202">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="160">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="185">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="210">admin/collection/collection.html.twig</jms:reference-file> @@ -5978,6 +6028,11 @@ <jms:reference-file line="56">admin/statusbit/edit.html.twig</jms:reference-file> <jms:reference-file line="121">admin/statusbit/edit.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="49fae2071d9672ce46d9fbadda409a3fa0cbc238" resname="Selected base(s)" approved="yes"> + <source>Selected base(s)</source> + <target state="translated">Ausgewählte Datenbank(en) :</target> + <jms:reference-file line="345">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="2c418c187fb3108749d7156765e7b9b16a51215f" resname="Selected files" approved="yes"> <source>Selected files</source> <target state="translated">ausgewählte Dateien</target> @@ -5987,12 +6042,12 @@ <source>Send</source> <target state="translated">Senden</target> <jms:reference-file line="90">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="254">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="256">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="259">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="261">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="113">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="110">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="185">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="220">prod/orders/order_item.html.twig</jms:reference-file> - <jms:reference-file line="110">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="110">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="130">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="46">web/login/forgot-password.html.twig</jms:reference-file> </trans-unit> @@ -6006,16 +6061,18 @@ <target state="translated">Auf Facebook teilen</target> <jms:reference-file line="32">prod/Share/record.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="60b2d62f2951ccf92ed7fb647ee7d6ab7ecfdd5e" resname="Send to Linkedin" approved="yes"> + <source>Send to Linkedin</source> + <target state="translated">Auf LinkedIn teilen</target> + <jms:reference-file line="37">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="38">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="39">prod/Share/record.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="29f82ee42eeecce87dfe9223d5d7ff716dc68ead" resname="Send to Twitter" approved="yes"> <source>Send to Twitter</source> <target state="translated">Auf Twitter teilen</target> <jms:reference-file line="24">prod/Share/record.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="35f49dcfbfb2e03fdce327671e82bf173b1ccb8b" resname="Sent" approved="yes"> - <source>Sent</source> - <target state="translated">gesendet</target> - <jms:reference-file line="199">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="31f38dffd0e514c2f0c21da7a49966442217f792" resname="Sent documents (mail)" approved="yes"> <source>Sent documents (mail)</source> <target state="translated">versendete Dokumente (E-Mail)</target> @@ -6025,12 +6082,12 @@ <source>Sent for validation to %list_participants%</source> <target state="translated">Für die Bestätigung zu %list_participants% gesendet</target> <jms:reference-file line="66">WorkZone/Browser/Basket.html.twig</jms:reference-file> - <jms:reference-file line="91">WorkZone/Browser/Results.html.twig</jms:reference-file> + <jms:reference-file line="68">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b4b289a7b76be83adf9d38e7a3ee28190349bff2" resname="Separator" approved="yes"> <source>Separator</source> <target state="translated">Trennzeichen</target> - <jms:reference-file line="163">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="162">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="af8c1d265158926dfd6209077b075c5efaa5c0d2" resname="Service youtube introuvable." approved="yes"> <source>Service youtube introuvable.</source> @@ -6055,8 +6112,8 @@ <trans-unit id="4b1933037822e34594e624b3f814726a137a71fd" resname="Set labels" approved="yes"> <source>Set labels</source> <target state="translated">Labels einstellen</target> - <jms:reference-file line="100">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="96">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="100">admin/collection/collection.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9137bba9319a52102294ab278c3a7aca79d67e29" resname="Set statuses restrictions" approved="yes"> <source>Set statuses restrictions</source> @@ -6071,8 +6128,8 @@ <trans-unit id="cdd7bb2816b7a8f88bce0e47be39943bc369516b" resname="Setup" approved="yes"> <source>Setup</source> <target state="translated">Aufstellung</target> - <jms:reference-file line="22">web/admin/tree.html.twig</jms:reference-file> <jms:reference-file line="2">web/admin/setup.html.twig</jms:reference-file> + <jms:reference-file line="22">web/admin/tree.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a6fac1ccf7f969630ff9a2226f831a093093448b" resname="Setup my password" approved="yes"> <source>Setup my password</source> @@ -6102,13 +6159,13 @@ <trans-unit id="396c2137a0b503759e5d4930af8a16aa28ce3ee7" resname="Short description" approved="yes"> <source>Short description</source> <target state="translated">Kurzbeschreibung</target> - <jms:reference-file line="18">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="101">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="18">admin/publications/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="32e50dd99f3b67dc93272aa6c904b83d37f4f48d" resname="Shutter speed" approved="yes"> <source>Shutter speed</source> <target state="translated">Verschlusszeit</target> - <jms:reference-file line="292">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="305">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> <jms:reference-file line="98">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e4538baf30d4eb324ec64e4b48c1ca424dd3b773" resname="Si cet email contient des liens non cliquables, copiez/collez ces liens dans votre navigateur." approved="yes"> @@ -6144,7 +6201,7 @@ <trans-unit id="b7152342a267362add3c0d7f69f720f7a9c76c9e" resname="Size" approved="yes"> <source>Size</source> <target state="translated">Grösse</target> - <jms:reference-file line="86">actions/Tools/videoEditor.html.twig</jms:reference-file> + <jms:reference-file line="99">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="40">actions/Download/prepare.html.twig</jms:reference-file> <jms:reference-file line="37">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> @@ -6208,8 +6265,8 @@ <trans-unit id="8657e88f4bf4b28dd29659361c70f11dea58efa5" resname="Sous-titre" approved="yes"> <source>Sous-titre</source> <target state="translated">Untertitel</target> - <jms:reference-file line="16">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="99">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="16">admin/publications/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="970f057325af27424f32675051fea5366873b007" resname="Space bar"> <source>Space bar</source> @@ -6235,7 +6292,7 @@ <trans-unit id="2e5dd1202b7de8194a1498340953992c32738494" resname="Start by creating one by using the "add" button on the left !" approved="yes"> <source>Start by creating one by using the "add" button on the left !</source> <target state="translated">Beginnen Sie mit der Erstellung: Klicken sie auf "Hinzufügen" links !</target> - <jms:reference-file line="291">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="296">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7ec5491e76522fe1687d799f35ab2ba39ae573fe" resname="Start validation" approved="yes"> <source>Start validation</source> @@ -6250,8 +6307,8 @@ </trans-unit> <trans-unit id="4e1c8377cce4ac872e1c3e8fc6bc760c5130946d" resname="Status des documents a rechercher" approved="yes"> <source>Status des documents a rechercher</source> - <target state="translated">Zustand der Dokumente zu suchen</target> - <jms:reference-file line="389">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Zustand der Dokumente</target> + <jms:reference-file line="502">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5b9261222b0e03c8cd1796d7c8adabf1bb552e4d" resname="Status edition" approved="yes"> <source>Status edition</source> @@ -6289,7 +6346,7 @@ <trans-unit id="315bc332aafca63cad8ac042c2e2f5111544fe9d" resname="Story Not Found" approved="yes"> <source>Story Not Found</source> <target state="translated">Bericht wurde nicht gefunden</target> - <jms:reference-file line="2452">Controller/Api/V1Controller.php</jms:reference-file> + <jms:reference-file line="2494">Controller/Api/V1Controller.php</jms:reference-file> </trans-unit> <trans-unit id="94e347da85f4797810ed7987973c8ef79092057e" resname="Story created" approved="yes"> <source>Story created</source> @@ -6344,8 +6401,8 @@ <trans-unit id="8017bd7de9961cf42f59abc587d0495a9d25c2a9" resname="Substitute" approved="yes"> <source>Substitute</source> <target state="translated">Ersatz</target> - <jms:reference-file line="359">prod/upload/lazaret.html.twig</jms:reference-file> - <jms:reference-file line="360">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="516">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="517">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3d48a1d66362cef46e567ddf521b0dc3233f57a2" resname="Substitution is not possible for this kind of record" approved="yes"> <source>Substitution is not possible for this kind of record</source> @@ -6355,8 +6412,8 @@ <trans-unit id="42a8f651d79fd005eeac0612df6442b983a01184" resname="Success" approved="yes"> <source>Success</source> <target state="translated">Erfolg</target> - <jms:reference-file line="508">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="9">api/auth/native_app_access_token.html.twig</jms:reference-file> + <jms:reference-file line="508">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5f7dcc16f00b622a8fb8bf4abf16dad52640a5fc" resname="Successful install" approved="yes"> <source>Successful install</source> @@ -6366,22 +6423,16 @@ <trans-unit id="4b7dae46777ddbfd995aab044d4a51239c1cb2ca" resname="Successful removal" approved="yes"> <source>Successful removal</source> <target state="translated">erfolgreiches Löschen</target> - <jms:reference-file line="185">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="225">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="266">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="460">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="99">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="394">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="186">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="226">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="267">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="461">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="6ba2cae76f3ec74086cc39f093db7b475944448b" resname="Successful update" approved="yes"> <source>Successful update</source> <target state="translated">Erfolgreiches Update</target> - <jms:reference-file line="557">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="595">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="633">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="666">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="699">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="807">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="155">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="187">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="221">Controller/Admin/DataboxController.php</jms:reference-file> @@ -6389,10 +6440,16 @@ <jms:reference-file line="464">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="602">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="647">Controller/Admin/DataboxController.php</jms:reference-file> - <jms:reference-file line="168">actions/Tools/videoEditor.html.twig</jms:reference-file> - <jms:reference-file line="20">admin/collection/suggested_value.html.twig</jms:reference-file> - <jms:reference-file line="18">admin/collection/collection.html.twig</jms:reference-file> + <jms:reference-file line="558">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="596">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="634">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="667">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="700">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="808">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="181">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="10">web/admin/databases.html.twig</jms:reference-file> + <jms:reference-file line="18">admin/collection/collection.html.twig</jms:reference-file> + <jms:reference-file line="20">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> <trans-unit id="432156a872c392232a4f7434feca02cdf36cfbfa" resname="Successfull connection" approved="yes"> <source>Successfull connection</source> @@ -6422,14 +6479,14 @@ <trans-unit id="dd631af5459e2fae291effe51fbb608d13a75163" resname="Suppression de %n_element% playlists" approved="yes"> <source>Suppression de %n_element% playlists</source> <target state="translated">Löschen von %n_element% Playlisten</target> - <jms:reference-file line="6">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="6">Bridge/Dailymotion/playlist_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="6">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> </trans-unit> <trans-unit id="299c2796a0d682b2495627623e9f228410b8a84a" resname="Suppression de %n_element% videos" approved="yes"> <source>Suppression de %n_element% videos</source> <target state="translated">Löschen von %n_element% Videos</target> - <jms:reference-file line="6">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="6">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="6">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1acfc1c7d761310db2e5e876c0cade4d522cfed2" resname="Supprimer" approved="yes"> <source>Supprimer</source> @@ -6441,11 +6498,6 @@ <target state="translated">Auch die Dokumente die mit diesen Berichten verknüpft sind löschen?</target> <jms:reference-file line="39">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> - <trans-unit id="65cc662ad8bf7275ba279006da212ce5a48f4eec" resname="Suspended access to the following collections"> - <source>Suspended access to the following collections</source> - <target state="new">Suspended access to the following collections</target> - <jms:reference-file line="159">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="8f040009fef60fd317d7519f22f4fe97ee277dc0" resname="Symbolized by" approved="yes"> <source>Symbolized by</source> <target state="translated">symbolisiert durch</target> @@ -6470,16 +6522,16 @@ <trans-unit id="848eed0fbd5429f556b2982dec3ea87136e33e44" resname="Tags" approved="yes"> <source>Tags</source> <target state="translated">Tags</target> - <jms:reference-file line="68">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="71">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="38">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="57">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="49">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="71">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="38">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="68">Bridge/Flickr/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0e98caed82acc9fa2f1ba9edeab7789e75e49c36" resname="Target Device" approved="yes"> <source>Target Device</source> <target state="translated">Zielgerät</target> - <jms:reference-file line="388">classes/databox/subdef.php</jms:reference-file> + <jms:reference-file line="392">classes/databox/subdef.php</jms:reference-file> </trans-unit> <trans-unit id="5fb2e4a63ebe9160da52c28fba2f61029c85c8d6" resname="Task Edition" approved="yes"> <source>Task Edition</source> @@ -6513,11 +6565,6 @@ <target state="translated">Herunterladbar</target> <jms:reference-file line="417">web/admin/subdefs.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="e7b08fafe055633f6df0d3f22da6d788f79e4d9f" resname="Temporary access to the following collections"> - <source>Temporary access to the following collections</source> - <target state="new">Temporary access to the following collections</target> - <jms:reference-file line="109">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="d32cbb0b2df6ec0df4b80910498d4ef9ce5f0bb3" resname="Terms Of Use" approved="yes"> <source>Terms Of Use</source> <target state="translated">Nutzungsbedingungen</target> @@ -6539,8 +6586,8 @@ <target state="translated">Nutzungsbedingungen</target> <jms:reference-file line="72">Controller/Prod/TOUController.php</jms:reference-file> <jms:reference-file line="141">web/admin/tree.html.twig</jms:reference-file> - <jms:reference-file line="74">login/layout/base-layout.html.twig</jms:reference-file> <jms:reference-file line="6">web/login/cgus.html.twig</jms:reference-file> + <jms:reference-file line="75">login/layout/base-layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="903b3a1a72b51b7b51f85ec8c81def53ed9c9b0c" resname="The Phraseanet Web API allows other web application to rely on this instance"> <source>The Phraseanet Web API allows other web application to rely on this instance</source> @@ -6561,7 +6608,7 @@ <source>The application is going down for maintenance, please logout.</source> <target state="translated">Die Anwendung wird wegen Überarbeitung heruntergefahren. Vielen Dank für Ihr Verständnis</target> <jms:reference-file line="85">Controller/Root/SessionController.php</jms:reference-file> - <jms:reference-file line="173">Controller/Root/SessionController.php</jms:reference-file> + <jms:reference-file line="175">Controller/Root/SessionController.php</jms:reference-file> </trans-unit> <trans-unit id="dbc7a77bb18477228fe3550ec43be9d8632599f6" resname="The authentication token specified in the Authorization header has expired." approved="yes"> <source>The authentication token specified in the Authorization header has expired.</source> @@ -6581,7 +6628,7 @@ <trans-unit id="96d9248cb4dfd196e98cbb278169e01e69ecc41a" resname="The destination record provided is not allowed" approved="yes"> <source>The destination record provided is not allowed</source> <target state="translated">Zieldatensatz wird nicht erlaubt</target> - <jms:reference-file line="215">Controller/Prod/LazaretController.php</jms:reference-file> + <jms:reference-file line="225">Controller/Prod/LazaretController.php</jms:reference-file> </trans-unit> <trans-unit id="3814607399fa053b6054a4d7ce214f2d34034150" resname="The document %name% has been quarantined" approved="yes"> <source>The document %name% has been quarantined</source> @@ -6621,13 +6668,13 @@ <trans-unit id="bed6ca36bed72a06b8787982e6c74a8fbbb7715f" resname="The file is too big" approved="yes"> <source>The file is too big</source> <target state="translated">Datei ist zu gross</target> - <jms:reference-file line="65">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="44">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="66">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="1d5dadcdeeecd294a88baf096ba0440053ecf738" resname="The file was moved to the quarantine" approved="yes"> <source>The file was moved to the quarantine</source> <target state="translated">Datei wurde unter Quarantäne gestellt</target> - <jms:reference-file line="225">Controller/Prod/UploadController.php</jms:reference-file> + <jms:reference-file line="282">Controller/Prod/UploadController.php</jms:reference-file> </trans-unit> <trans-unit id="1818502d42e14ffcb9c664fd1365fafa969971ff" resname="The following errors have been detected" approved="yes"> <source>The following errors have been detected</source> @@ -6637,13 +6684,13 @@ <trans-unit id="d22c09c164965d42fcdb8d8fe2b40d7d57799a8f" resname="The publication has been stopped" approved="yes"> <source>The publication has been stopped</source> <target state="translated">Veröffentlichung wurde gestoppt</target> - <jms:reference-file line="516">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="498">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="517">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="bae1c72ecbe1459751e4a0fee382a305bbf933b7" resname="The record was successfully created" approved="yes"> <source>The record was successfully created</source> <target state="translated">Datensatz wurde erfolgreich erstellt</target> - <jms:reference-file line="196">Controller/Prod/UploadController.php</jms:reference-file> + <jms:reference-file line="253">Controller/Prod/UploadController.php</jms:reference-file> </trans-unit> <trans-unit id="209817489c23cec8b7a15f6b8ca3e45daf08656d" resname="The records have been properly ordered" approved="yes"> <source>The records have been properly ordered</source> @@ -6679,7 +6726,7 @@ <trans-unit id="a797e30923ac1be590300ce6b08e63b4e6dc6688" resname="Theme" approved="yes"> <source>Theme</source> <target state="translated">Thema</target> - <jms:reference-file line="616">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="707">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="322573ed2c245ecca02a8d7e8c96d89511d99b5a" resname="There is no one to validate orders, please contact an administrator" approved="yes"> <source>There is no one to validate orders, please contact an administrator</source> @@ -6705,7 +6752,7 @@ <trans-unit id="163fc70a23cf29331bab9896c9a8a0cb0b113bd6" resname="Thesaurus branch" approved="yes"> <source>Thesaurus branch</source> <target state="translated">Thesaurus Sprung</target> - <jms:reference-file line="248">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="263">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c80f8a4f795945c822db75e5414796446ada185c" resname="Thesaurus ou CTerms invalide" approved="yes"> <source>Thesaurus ou CTerms invalide</source> @@ -6762,7 +6809,7 @@ <trans-unit id="0845a443aa08307788a65ee5e1218a618dfcc9aa" resname="This link is valid until" approved="yes"> <source>This link is valid until</source> <target state="translated">URL ist gültig bis</target> - <jms:reference-file line="109">templates/web/email-template.html.twig</jms:reference-file> + <jms:reference-file line="115">templates/web/email-template.html.twig</jms:reference-file> </trans-unit> <trans-unit id="58e76d1cc6a26f43783774d888c3a260970f637b" resname="This option disables the selecting of the databases on which a user can register himself, and registration is made on all granted databases." approved="yes"> <source>This option disables the selecting of the databases on which a user can register himself, and registration is made on all granted databases.</source> @@ -6772,7 +6819,7 @@ <trans-unit id="814c3298cccd06ad65ccac8a35e4f2104a4af17e" resname="This user does not participate to the validation but is only viewer." approved="yes"> <source>This user does not participate to the validation but is only viewer.</source> <target state="translated">Dieser Benutzer darf nicht teilnehmen, nur ansehen.</target> - <jms:reference-file line="368">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="398">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="edbc2ef60cebe2e6efe5cb9a2662e710a65615d1" resname="This user has no rights" approved="yes"> <source>This user has no rights</source> @@ -6803,24 +6850,24 @@ <source>Time for feedback (days)</source> <target state="translated">Zeit für Feedback (Tage)</target> <jms:reference-file line="88">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="138">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="139">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="eb97899aedcd5609782b5ccb4ffa390e0e66a3eb" resname="Titre" approved="yes"> <source>Titre</source> <target state="translated">Titel</target> <jms:reference-file line="9">prod/Baskets/Reorder.html.twig</jms:reference-file> - <jms:reference-file line="39">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="24">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> - <jms:reference-file line="13">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="29">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="13">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="24">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="29">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="24">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="29">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="24">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="39">Bridge/Flickr/upload.html.twig</jms:reference-file> + <jms:reference-file line="24">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> <jms:reference-file line="8">prod/Story/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="93">admin/publications/fiche.html.twig</jms:reference-file> <jms:reference-file line="9">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="54">admin/publications/list.html.twig</jms:reference-file> - <jms:reference-file line="93">admin/publications/fiche.html.twig</jms:reference-file> </trans-unit> <trans-unit id="01594f4dad04782844c8175778fdf66deabf580d" resname="Toggle loop"> <source>Toggle loop</source> @@ -6832,6 +6879,11 @@ <target state="translated">Token</target> <jms:reference-file line="109">web/developers/application.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="e894979930445d4b2bd8c947d6e2e6b816fcb0ab" resname="Token not found" approved="yes"> + <source>Token not found</source> + <target state="translated">Token nicht gefunden</target> + <jms:reference-file line="383">Controller/Root/AccountController.php</jms:reference-file> + </trans-unit> <trans-unit id="f97edaa0ce78a61e01095cae4169cada477d52dc" resname="Tool box" approved="yes"> <source>Tool box</source> <target state="translated">Toolbox</target> @@ -6840,18 +6892,18 @@ <trans-unit id="b25928c69902557b0ef0a628490a3a1768d7b82f" resname="Total" approved="yes"> <source>Total</source> <target state="translated">Gesamt</target> - <jms:reference-file line="27">admin/collection/details.html.twig</jms:reference-file> <jms:reference-file line="47">admin/databox/details.html.twig</jms:reference-file> + <jms:reference-file line="27">admin/collection/details.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b97ae3b4f9093f64a85df9e7d4338f6c62772516" resname="Tous" approved="yes"> <source>Tous</source> <target state="translated">Alle</target> - <jms:reference-file line="213">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="228">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6a5df111083f0da274d3b57d9b32183a19d33616" resname="Tout type" approved="yes"> <source>Tout type</source> <target state="translated">Bildschirmtyp</target> - <jms:reference-file line="293">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="318">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="858b4e63ba1db83dde4feb9673b47c725b20a18b" resname="Toutes les publications" approved="yes"> <source>Toutes les publications</source> @@ -6871,24 +6923,18 @@ <trans-unit id="9764c016bb5a296069109116fa95c49815dcba82" resname="Transmited files" approved="yes"> <source>Transmited files</source> <target state="translated">Übermittelte Dateien</target> + <jms:reference-file line="122">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="118">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="119">prod/upload/upload.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="a7e4c9fa228eb48d2c3526022f4fad0106db3d08" resname="Trier" approved="yes"> - <source>Trier</source> - <target state="translated">Ordnen</target> - <jms:reference-file line="49">web/report/generate_tab.html.twig</jms:reference-file> - <jms:reference-file line="50">web/report/generate_tab.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6e764776541fbe428a3566f42ee7956312af98b7" resname="Trier par" approved="yes"> <source>Trier par</source> <target state="translated">Sortieren nach</target> - <jms:reference-file line="344">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="373">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f85e36f3a512d36e7e4bba99d440d389ab84ca9d" resname="Try to extract embedded thumbnails" approved="yes"> <source>Try to extract embedded thumbnails</source> <target state="translated">Versuchen, eingebettete Miniaturansichten zu entnehmen</target> - <jms:reference-file line="61">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="64">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3deb7456519697ecf4eefc455516c969a3681bae" resname="Type" approved="yes"> <source>Type</source> @@ -6908,7 +6954,7 @@ <trans-unit id="a5ab97f65fffae645fe7e88ee89ca7ebc1e033be" resname="Type de documents" approved="yes"> <source>Type de documents</source> <target state="translated">Dokumenttyp</target> - <jms:reference-file line="650">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="741">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0264aa285ccf980bbec0969e06c2eab7e936188c" resname="Type nombre" approved="yes"> <source>Type nombre</source> @@ -6923,8 +6969,8 @@ <trans-unit id="c2739616a133e476dda18386df0d2487d526766a" resname="URL de callback" approved="yes"> <source>URL de callback</source> <target state="translated">Callback URL</target> - <jms:reference-file line="44">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="102">web/developers/application_form.html.twig</jms:reference-file> + <jms:reference-file line="44">web/developers/application.html.twig</jms:reference-file> </trans-unit> <trans-unit id="268f900effee1beb15231a1504d02543e8827bb3" resname="Un document commande" approved="yes"> <source>Un document commande</source> @@ -6939,8 +6985,8 @@ <trans-unit id="d32751443628a0d2c5b31b441c1e2b3001f35dfd" resname="Unable to add file to Phraseanet" approved="yes"> <source>Unable to add file to Phraseanet</source> <target state="translated">Unmöglich, Datei zu Phraseanet hinzuzufügen</target> - <jms:reference-file line="237">Controller/Prod/UploadController.php</jms:reference-file> <jms:reference-file line="195">Controller/Admin/FeedController.php</jms:reference-file> + <jms:reference-file line="294">Controller/Prod/UploadController.php</jms:reference-file> </trans-unit> <trans-unit id="8b233593eb66b5be4da2f44ff527bd641b3a6fc1" resname="Unable to add usr to list" approved="yes"> <source>Unable to add usr to list</source> @@ -6968,12 +7014,12 @@ <trans-unit id="225f62661868b2c3fb3820c94c5727f70b1e7d4c" resname="Unable to create template, the name is already used." approved="yes"> <source>Unable to create template, the name is already used.</source> <target state="translated">Unmöglich, eine Vorlage zu erstellen; die Name wird schon benutzt.</target> - <jms:reference-file line="270">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="271">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="ac9cb56f58dc3e077f9557ed6958e993dae09e71" resname="Unable to create the user." approved="yes"> <source>Unable to create the user.</source> <target state="translated">Unmöglich, den Benutzer zu erstellen.</target> - <jms:reference-file line="272">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="273">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="5660d6aac90c7a8f4df9fcad68513c061bef3298" resname="Unable to delete list" approved="yes"> <source>Unable to delete list</source> @@ -7031,7 +7077,7 @@ <trans-unit id="c091c74374b8ad7b7018e849fd89bf14c1fe3f02" resname="Une question personnelle" approved="yes"> <source>Une question personnelle</source> <target state="translated">eine persönliche Frage</target> - <jms:reference-file line="691">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="782">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="de1052fd7157a697a5ee7741019cc38322fc6128" resname="Une selection" approved="yes"> <source>Une selection</source> @@ -7088,17 +7134,17 @@ </trans-unit> <trans-unit id="8bdf057f91e76ae328b2a21d35f682daa08a0ec0" resname="Upload" approved="yes"> <source>Upload</source> - <target state="translated">upload</target> - <jms:reference-file line="6">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="83">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="16">actions/Bridge/index.html.twig</jms:reference-file> - <jms:reference-file line="5">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="101">Bridge/Youtube/upload.html.twig</jms:reference-file> + <target state="translated">Upload</target> <jms:reference-file line="5">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="89">Bridge/Dailymotion/upload.html.twig</jms:reference-file> - <jms:reference-file line="8">prod/upload/upload-flash.html.twig</jms:reference-file> + <jms:reference-file line="5">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="101">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="16">actions/Bridge/index.html.twig</jms:reference-file> + <jms:reference-file line="6">Bridge/Flickr/upload.html.twig</jms:reference-file> + <jms:reference-file line="83">Bridge/Flickr/upload.html.twig</jms:reference-file> <jms:reference-file line="8">prod/upload/upload.html.twig</jms:reference-file> - <jms:reference-file line="93">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="8">prod/upload/upload-flash.html.twig</jms:reference-file> + <jms:reference-file line="94">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f9ee782a49540357e87b6dc0dde09d8bec6507af" resname="Upload URL is not set, please contact an admin" approved="yes"> <source>Upload URL is not set, please contact an admin</source> @@ -7123,7 +7169,7 @@ <trans-unit id="a8ddbae32452ce671987065bc29d7ae6685a2b17" resname="Uploaded by : %username%" approved="yes"> <source>Uploaded by : %username%</source> <target state="translated">von: %username% hochgeladen</target> - <jms:reference-file line="341">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="438">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ea1fd4c4c366bf2e13d348b67b75e96039d7a1d7" resname="Use Google Chart API" approved="yes"> <source>Use Google Chart API</source> @@ -7143,7 +7189,7 @@ <trans-unit id="d029e308808256c5e3868e24ea33f14866ab2e36" resname="Use latest search settings on Production loading" approved="yes"> <source>Use latest search settings on Production loading</source> <target state="translated">die letzte gestellte Frage in Prod benutzen</target> - <jms:reference-file line="588">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="679">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="74126bf38974fc3d5bf2d0844567be2be473e122" resname="Use my Phraseanet account" approved="yes"> <source>Use my Phraseanet account</source> @@ -7158,16 +7204,16 @@ <trans-unit id="17a74b77867e7b3f4f5e5b2ad90be36cf800dfda" resname="Use the Flash uploader" approved="yes"> <source>Use the Flash uploader</source> <target state="translated">Benutzen Sie den Flash Uploader</target> + <jms:reference-file line="53">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="146">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="132">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="50">prod/upload/upload.html.twig</jms:reference-file> - <jms:reference-file line="143">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b9473cfd4d6d6383f40de2d9be11adcca7b76ab6" resname="Use the HTML5 uploader" approved="yes"> <source>Use the HTML5 uploader</source> <target state="translated">Benutzen Sie den HTML5 Uploader</target> + <jms:reference-file line="145">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="48">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="131">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="142">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1d2b0439bd02b54c622696c45588eab8d051dfb9" resname="Use with mod_token. Attention requires the apache modules and mod_h264_streaming mod_auth_token" approved="yes"> <source>Use with mod_token. Attention requires the apache modules and mod_h264_streaming mod_auth_token</source> @@ -7198,40 +7244,40 @@ <source>User can download HD</source> <target state="translated">Benutzer darf HD herunterladen</target> <jms:reference-file line="103">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="107">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="109">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="213">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="215">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="254">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="256">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="108">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="110">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="214">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="216">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="255">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="257">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ae005b1ce814398e203551a75eeeb5da09f80204" resname="User can see others choices" approved="yes"> <source>User can see others choices</source> <target state="translated">Benutzer darf die andere Auswahlen sehen</target> <jms:reference-file line="105">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="100">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="102">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="101">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="103">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9e982c7ce4a8cb5f48743cd0ca79a82ca30f7dc1" resname="User contribute to the feedback" approved="yes"> <source>User contribute to the feedback</source> <target state="translated">Benutzer darf Feedback geben</target> <jms:reference-file line="104">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="93">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="95">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="94">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="96">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="981305c0c2dad92d70b1afd4757a274596de6ec7" resname="User successfully created" approved="yes"> <source>User successfully created</source> <target state="translated">Benutzer wurde erfolgreich erstellt</target> - <jms:reference-file line="485">Controller/Prod/PushController.php</jms:reference-file> + <jms:reference-file line="490">Controller/Prod/PushController.php</jms:reference-file> </trans-unit> <trans-unit id="57f2b181d0a5e79a147ea1cdf41457f58dbbb3c9" resname="Users" approved="yes"> <source>Users</source> <target state="translated">Benutzer</target> <jms:reference-file line="40">Vocabulary/ControlProvider/UserProvider.php</jms:reference-file> + <jms:reference-file line="107">prod/actions/Push.html.twig</jms:reference-file> <jms:reference-file line="5">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="100">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="29">user/import/view.html.twig</jms:reference-file> <jms:reference-file line="19">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="29">user/import/view.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3482565eef4d4cd1decb5ebfad6ecfc5943d30da" resname="Users must accept Terms of Use for each export" approved="yes"> <source>Users must accept Terms of Use for each export</source> @@ -7241,7 +7287,7 @@ <trans-unit id="28f4718f1cf2cd1f31d49c8bce276341ffe222bd" resname="Users suggestion" approved="yes"> <source>Users suggestion</source> <target state="translated">Benutzer Vorschlag</target> - <jms:reference-file line="142">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="149">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a56fad2f92979e0171b42bbc51ff5657d17ceb91" resname="Utilisation prevue:"> <source>Utilisation prevue:</source> @@ -7262,11 +7308,11 @@ <trans-unit id="dd74d182c641e4c78502d863b44d0aeff1575e54" resname="Validation" approved="yes"> <source>Validation</source> <target state="translated">Bestätigung</target> + <jms:reference-file line="23">eventsmanager/notify/validationdone.php</jms:reference-file> <jms:reference-file line="20">eventsmanager/notify/validationreminder.php</jms:reference-file> <jms:reference-file line="73">eventsmanager/notify/validationreminder.php</jms:reference-file> <jms:reference-file line="20">eventsmanager/notify/validate.php</jms:reference-file> <jms:reference-file line="78">eventsmanager/notify/validate.php</jms:reference-file> - <jms:reference-file line="20">eventsmanager/notify/validationdone.php</jms:reference-file> <jms:reference-file line="86">lightbox/IE6/validate.html.twig</jms:reference-file> </trans-unit> <trans-unit id="83da6b62512e6597a104cf295a8f050cd9799a6d" resname="Validation from %user%" approved="yes"> @@ -7282,11 +7328,11 @@ <trans-unit id="6c259e54dcc7188e7cfe33403eca78cda53017fc" resname="Validations" approved="yes"> <source>Validations</source> <target state="translated">Bestätigung</target> + <jms:reference-file line="46">mobile/lightbox/index.html.twig</jms:reference-file> + <jms:reference-file line="86">mobile/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="24">web/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="119">lightbox/IE6/validate.html.twig</jms:reference-file> <jms:reference-file line="132">web/lightbox/validate.html.twig</jms:reference-file> - <jms:reference-file line="46">mobile/lightbox/index.html.twig</jms:reference-file> - <jms:reference-file line="86">mobile/lightbox/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="264cc8414ca311d9fa99c7ed66a90171dcf22dc6" resname="Validations received" approved="yes"> <source>Validations received</source> @@ -7321,23 +7367,23 @@ <trans-unit id="bc17c1f0179a888f2a7e8389f67d4f2cf5cf4531" resname="Video" approved="yes"> <source>Video</source> <target state="translated">Video</target> - <jms:reference-file line="295">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="320">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="49b431928c1ca1e514c612954a19457fadff2485" resname="Video Codec" approved="yes"> <source>Video Codec</source> <target state="translated">Video Codec</target> <jms:reference-file line="34">Media/Subdef/Video.php</jms:reference-file> </trans-unit> - <trans-unit id="534048d6c768f47f83f67c0498e6d4ecf5cff4bb" resname="Video codec"> + <trans-unit id="534048d6c768f47f83f67c0498e6d4ecf5cff4bb" resname="Video codec" approved="yes"> <source>Video codec</source> - <target state="new">Video codec</target> - <jms:reference-file line="325">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <target state="translated">Video-Codec</target> + <jms:reference-file line="346">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="56b71e89fb1079caaadefd0889e9a22e8b0560e3" resname="Videos" approved="yes"> <source>Videos</source> <target state="translated">Videos</target> - <jms:reference-file line="174">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="159">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="174">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="18af7efc4ef7f30783dbb1ad1bc0b9aed857a19c" resname="View on %title%" approved="yes"> <source>View on %title%</source> @@ -7347,24 +7393,24 @@ <trans-unit id="f5bd306a7ccf0851eeefd7659ac5c01c382df934" resname="Vocabulary not found" approved="yes"> <source>Vocabulary not found</source> <target state="translated">Vokabeln nicht gefunden</target> - <jms:reference-file line="255">Controller/Prod/EditController.php</jms:reference-file> + <jms:reference-file line="258">Controller/Prod/EditController.php</jms:reference-file> </trans-unit> <trans-unit id="a1e3e6d2f9b416cfab10df81ce100f4fc43eb90a" resname="Vocabulary type" approved="yes"> <source>Vocabulary type</source> <target state="translated">Wortschatz Typ</target> - <jms:reference-file line="237">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="252">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="044d95dece43b99febe25cb6bc5fab28bf212ee0" resname="Voici vos paniers" approved="yes"> <source>Voici vos paniers</source> <target state="translated">Ihre Sammelkörbe</target> - <jms:reference-file line="94">web/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="120">mobile/lightbox/index.html.twig</jms:reference-file> + <jms:reference-file line="94">web/lightbox/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c6dacfdd161fc809b7996f80fccf5c7515f82e1c" resname="Voici vos validations en cours" approved="yes"> <source>Voici vos validations en cours</source> <target state="translated">Hier sind Ihre aktuellen Bewertungen</target> - <jms:reference-file line="27">web/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="90">mobile/lightbox/index.html.twig</jms:reference-file> + <jms:reference-file line="27">web/lightbox/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a2fde1d3f411f4fbe13b98748bd7c18fb84e71f9" resname="Votre adresse email" approved="yes"> <source>Votre adresse email</source> @@ -7411,11 +7457,6 @@ <target state="translated">Sie haben einen neuen Sammelkorb erhalten</target> <jms:reference-file line="4">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="4d922dc119f737364189a2807ca9423a19d3fdfc" resname="Vous avez recu une demande de validation de document sur ce panier" approved="yes"> - <source>Vous avez recu une demande de validation de document sur ce panier</source> - <target state="translated">Sie können eine Bewertung der Bilder in diesem Sammelkorb abgeben</target> - <jms:reference-file line="30">prod/WorkZone/Macros.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="48b0edd4b7baadecf72f020e6bc23a8a2118e83f" resname="Vous aviez envoye cette demande a %n% utilisateurs" approved="yes"> <source>Vous aviez envoye cette demande a %n% utilisateurs</source> <target state="translated">Sie hatten diese Anfrage zu %n% Benutzer gesendet</target> @@ -7494,10 +7535,10 @@ <trans-unit id="12ee49ba726f4422d3dcc6bc7b92ab9de279d211" resname="Vous n'avez selectionne aucun element" approved="yes"> <source>Vous n'avez selectionne aucun element</source> <target state="translated">Sie haben kein Element ausgewählt.</target> - <jms:reference-file line="14">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="88">actions/Bridge/index.html.twig</jms:reference-file> - <jms:reference-file line="13">Bridge/Youtube/upload.html.twig</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/upload.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="88">actions/Bridge/index.html.twig</jms:reference-file> + <jms:reference-file line="14">Bridge/Flickr/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5e8fd52d6c7e92e6907f1148d2e458871d17c1ae" resname="Vous ne pouvez pas editer plusieurs elements simultanement" approved="yes"> <source>Vous ne pouvez pas editer plusieurs elements simultanement</source> @@ -7523,7 +7564,7 @@ <trans-unit id="4ac570371902f3ba1babc51f8a4c030e31724b34" resname="Vous pouvez quitter la plupart des fenetres survolantes via la touche echap" approved="yes"> <source>Vous pouvez quitter la plupart des fenetres survolantes via la touche echap</source> <target state="translated">esc : Sie können die meiste Teile der Overlay Fenster schliessen</target> - <jms:reference-file line="559">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="650">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="338f05228fd3d0770eac9a4d37cc93dcc1cd7cdc" resname="Warning !" approved="yes"> <source>Warning !</source> @@ -7569,7 +7610,7 @@ <trans-unit id="58877d4031b60c13f284719a0aecfb1e7962c59a" resname="Welcome to the ListManager !" approved="yes"> <source>Welcome to the ListManager !</source> <target state="translated">Herzlich Willkommen beim Liste Manager !</target> - <jms:reference-file line="288">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="293">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="769bb19e615b7f8e2809e5882e2d05a18f57a531" resname="When" approved="yes"> <source>When</source> @@ -7584,8 +7625,8 @@ <trans-unit id="ceffd5b622d10de1a19822471cb3804cb61cba28" resname="Which playlist you want to put you %number% elements into ?" approved="yes"> <source>Which playlist you want to put you %number% elements into ?</source> <target state="translated">Welche Playlist möchten Sie für Ihre %number% Elemente benutzen?</target> - <jms:reference-file line="13">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6e2507e568a039431c507b30f44aa72cbb1ed929" resname="Whoops, looks like something went wrong." approved="yes"> <source>Whoops, looks like something went wrong.</source> @@ -7615,15 +7656,22 @@ <target state="translated">Meta schreiben</target> <jms:reference-file line="498">web/admin/subdefs.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="d3f8f7b810c4b08f0b4ac4e47fdf8d265a10d869" resname="YYYY-MM-DD" approved="yes"> + <source>YYYY-MM-DD</source> + <target state="translated">JJJJ-MM-TT</target> + <jms:reference-file line="10">web/report/form_date_and_base.html.twig</jms:reference-file> + <jms:reference-file line="20">web/report/form_date_and_base.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="9ebeadaf2d2237a35176827d093952ad6cc88f5e" resname="YYYY/MM/DD" approved="yes"> <source>YYYY/MM/DD</source> <target state="translated">YYYY/MM/DD</target> - <jms:reference-file line="453">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="459">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="485">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="492">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5397e0583f14f6c88de06b1ef28f460a1fb5b0ae" resname="Yes" approved="yes"> <source>Yes</source> <target state="translated">Ja</target> + <jms:reference-file line="291">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="13">user/import/view.html.twig</jms:reference-file> <jms:reference-file line="33">web/developers/applications.html.twig</jms:reference-file> </trans-unit> @@ -7635,22 +7683,22 @@ <trans-unit id="d2a23a2eb3bc334253d0a4cd6541bea3e520e3d9" resname="You are about to ask for feedback for %nb_push_items% records, %nb_not_available% records can not be processed." approved="yes"> <source>You are about to ask for feedback for %nb_push_items% records, %nb_not_available% records can not be processed.</source> <target state="translated">Sie sind dabei, um Rückmeldung für %nb_push_items% Datensätze zu bitten, %nb_not_available% Datensätze können nicht verarbeitet werden</target> - <jms:reference-file line="209">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="215">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4614afcfbdb05da7ae2e2ce6fc7e808cd707f257" resname="You are about to ask for feedback for %nb_push_items% records." approved="yes"> <source>You are about to ask for feedback for %nb_push_items% records.</source> <target state="translated">Sie sind dabei, um Rückmeldung für %nb_push_items% Datensätze zu bitten</target> - <jms:reference-file line="206">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="212">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2292a5ac48e50169c8d013bf51853ccaf69d182b" resname="You are about to push %nb_push_items% records, %nb_not_available% records can not be processed." approved="yes"> <source>You are about to push %nb_push_items% records, %nb_not_available% records can not be processed.</source> <target state="translated">Sie sind dabei, %nb_push_items% Datensätze via Push zu senden, %nb_not_available% Datensätze können nicht verarbeitet werden.</target> - <jms:reference-file line="201">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="207">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="94aec9ece3188cf70534cff6d45bc11b81f7ef4d" resname="You are about to push %nb_push_items% records." approved="yes"> <source>You are about to push %nb_push_items% records.</source> <target state="translated">Sie sind dabei, %nb_push_items% Datensätze via Push zu senden</target> - <jms:reference-file line="198">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="204">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cf393f9867e45930f4d907a0ec4f728ea65d503b" resname="You are attempting to exceed the storage limit on your account and must delete existing entries before inserting new entries" approved="yes"> <source>You are attempting to exceed the storage limit on your account and must delete existing entries before inserting new entries</source> @@ -7717,8 +7765,8 @@ <trans-unit id="4a67615bcd64fcc9443c499676a462d835ad841e" resname="You can not upload files" approved="yes"> <source>You can not upload files</source> <target state="translated">Sie dürfen Dateien nicht hochladen</target> + <jms:reference-file line="150">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="102">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="147">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4faca55769348dcbc9714b19438181057aa2510e" resname="You do not enough rights to update status" approved="yes"> <source>You do not enough rights to update status</source> @@ -7773,7 +7821,7 @@ <trans-unit id="aecece60b34fa1f68f4671b168031bfb1b287d56" resname="You have not access to this basket" approved="yes"> <source>You have not access to this basket</source> <target state="translated">Sie haben keinen Zugriff auf diesen Sammelkorb</target> - <jms:reference-file line="182">Model/Repositories/BasketRepository.php</jms:reference-file> + <jms:reference-file line="200">Model/Repositories/BasketRepository.php</jms:reference-file> </trans-unit> <trans-unit id="7d7596cb5bf503833487b48c95cf263b44f3e05d" resname="You have selected %nbReceivedDocuments% records." approved="yes"> <source>You have selected %nbReceivedDocuments% records.</source> @@ -7813,7 +7861,7 @@ <trans-unit id="d48b3bc5b1daedb76e3dd7aa5240bbc34de7470e" resname="You must give a destination record" approved="yes"> <source>You must give a destination record</source> <target state="translated">Geben Sie bitte einen Zieldatensatz</target> - <jms:reference-file line="188">Controller/Prod/LazaretController.php</jms:reference-file> + <jms:reference-file line="198">Controller/Prod/LazaretController.php</jms:reference-file> </trans-unit> <trans-unit id="6304d7df5d76b28a076c00dd984f87eef3dabeee" resname="You need define a model before importing a list of users" approved="yes"> <source>You need define a model before importing a list of users</source> @@ -7912,10 +7960,15 @@ <target state="translated">Ihre Media und Unterauflösungen (Voransichten, Miniaturansichten..) werden in diese Verzeichnisse gespeichert.</target> <jms:reference-file line="736">web/setup/step2.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="bd5a589e9bed2de0b0180ca950ea0593249f7f69" resname="Your phraseanet account on %urlInstance% has been deleted!" approved="yes"> + <source>Your phraseanet account on %urlInstance% has been deleted!</source> + <target state="translated">Ihr Benutzerkonto auf %urlInstance% wurde gelöscht!</target> + <jms:reference-file line="29">Notification/Mail/MailSuccessAccountDelete.php</jms:reference-file> + </trans-unit> <trans-unit id="257253d658fdcbe73c4f4d02d2a3442ea8e4011d" resname="Your registration requests have been taken into account." approved="yes"> <source>Your registration requests have been taken into account.</source> <target state="translated">Ihre Registrierungsanfragen wurden berücksichtigt</target> - <jms:reference-file line="329">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="426">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="e63b3e4d7c2710f8973d4371433e1a0875a02c12" resname="a propos" approved="yes"> <source>a propos</source> @@ -7926,13 +7979,15 @@ <trans-unit id="93741c74decbac407e8f237c41d0235dd78a8eac" resname="action : ajouter au panier" approved="yes"> <source>action : ajouter au panier</source> <target state="translated">Zum Sammelkorb hinzufügen</target> - <jms:reference-file line="117">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="118">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="119">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="120">prod/results/record.html.twig</jms:reference-file> <jms:reference-file line="4">prod/preview/tools.html.twig</jms:reference-file> </trans-unit> <trans-unit id="162536d0e4aeccdde8b707acd6111800a25d549b" resname="action : bridge" approved="yes"> <source>action : bridge</source> <target state="translated">Bridge</target> - <jms:reference-file line="864">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="955">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3ffc763c6cf92695a7ce387f904bbe6e7a94bdbc" resname="action : collection" approved="yes"> <source>action : collection</source> @@ -7954,10 +8009,12 @@ <target state="translated">Exportieren</target> <jms:reference-file line="7">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="6">prod/WorkZone/Basket.html.twig</jms:reference-file> - <jms:reference-file line="866">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="124">prod/results/record.html.twig</jms:reference-file> <jms:reference-file line="50">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="128">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="129">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="130">prod/results/record.html.twig</jms:reference-file> <jms:reference-file line="25">prod/preview/tools.html.twig</jms:reference-file> + <jms:reference-file line="957">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="121">web/lightbox/feed.html.twig</jms:reference-file> <jms:reference-file line="123">lightbox/IE6/feed.html.twig</jms:reference-file> <jms:reference-file line="155">lightbox/IE6/validate.html.twig</jms:reference-file> @@ -7968,15 +8025,17 @@ <target state="translated">Werkzeuge</target> <jms:reference-file line="70">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="67">prod/WorkZone/Basket.html.twig</jms:reference-file> - <jms:reference-file line="299">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="291">web/prod/toolbar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="71e15cbcf85fd5fe848fe7fa210fa8318a09f842" resname="action : print" approved="yes"> <source>action : print</source> <target state="translated">Drucken</target> <jms:reference-file line="11">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="10">prod/WorkZone/Basket.html.twig</jms:reference-file> - <jms:reference-file line="131">prod/results/record.html.twig</jms:reference-file> <jms:reference-file line="58">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="138">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="139">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="140">prod/results/record.html.twig</jms:reference-file> <jms:reference-file line="20">prod/preview/tools.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d222a71a73f44cb6bdf237790f350f0b1fb9eb1f" resname="action : publier" approved="yes"> @@ -7984,9 +8043,9 @@ <target state="translated">Veröffentlichen</target> <jms:reference-file line="63">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="60">prod/WorkZone/Basket.html.twig</jms:reference-file> - <jms:reference-file line="865">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="157">web/prod/toolbar.html.twig</jms:reference-file> - <jms:reference-file line="223">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="219">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="956">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="17948b21adfde1bf589b2a34a2c8253e2af91913" resname="action : push" approved="yes"> <source>action : push</source> @@ -7994,7 +8053,7 @@ <jms:reference-file line="47">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="44">prod/WorkZone/Basket.html.twig</jms:reference-file> <jms:reference-file line="135">web/prod/toolbar.html.twig</jms:reference-file> - <jms:reference-file line="184">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="182">web/prod/toolbar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f22184cfa5be236b7193d80d5f8407a36b108b79" resname="action : status" approved="yes"> <source>action : status</source> @@ -8006,8 +8065,9 @@ <trans-unit id="24ade348bc49c69cced4d173e31f7369aa466772" resname="action : supprimer" approved="yes"> <source>action : supprimer</source> <target state="translated">Löschen</target> - <jms:reference-file line="175">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="308">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="198">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="199">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="300">web/prod/toolbar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b88ca5fbb2e89cb79b08c981283383361be312bf" resname="action:: nouveau panier" approved="yes"> <source>action:: nouveau panier</source> @@ -8019,38 +8079,44 @@ <trans-unit id="74894db9388e92ba33510dd3881626d42d29bd20" resname="action:: nouveau reportage" approved="yes"> <source>action:: nouveau reportage</source> <target state="translated">Neuer Bericht</target> - <jms:reference-file line="220">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="222">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="223">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="224">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="226">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="227">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9cd95a80cd47133cb87c6b6a55015fa9e3566d60" resname="action::Valider" approved="yes"> <source>action::Valider</source> <target state="translated">Bestätigen</target> <jms:reference-file line="68">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="162">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="170">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="171">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="83db61ed4488bb58e40b315e67f39a6ad40e5707" resname="action::detacher" approved="yes"> <source>action::detacher</source> <target state="translated">entfernen</target> - <jms:reference-file line="242">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="267">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="268">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="896ab2ff86bda5e26adff7fa7d418c4c926c6b0c" resname="action::editer" approved="yes"> <source>action::editer</source> <target state="translated">Bearbeiten</target> - <jms:reference-file line="235">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="258">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="259">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1a99f659649e77e29efa0a391ae879ab8dc8df0e" resname="action::exporter" approved="yes"> <source>action::exporter</source> <target state="translated">Exportieren</target> <jms:reference-file line="48">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="142">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="228">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="144">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="145">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="247">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="248">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4c6537a9f14dd9d59ed9c3dca8f7f04ee33ae8d2" resname="action::renommer" approved="yes"> <source>action::renommer</source> <target state="translated">umbenennen</target> - <jms:reference-file line="152">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="153">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="159">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="160">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="161">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="aa878e20e09ce58233e45272b39764b5dfd4ee49" resname="actual status" approved="yes"> <source>actual status</source> @@ -8240,8 +8306,8 @@ <trans-unit id="1f17890a6f5675a0542b997121fc105bb6bd4466" resname="admin::base:collection: Creer une collection" approved="yes"> <source>admin::base:collection: Creer une collection</source> <target state="translated">eine Kollektion erstellen</target> - <jms:reference-file line="2">admin/collection/create.html.twig</jms:reference-file> <jms:reference-file line="107">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="2">admin/collection/create.html.twig</jms:reference-file> </trans-unit> <trans-unit id="68d7a4cf1ed350b4ede9c867500fe6f0f166adc2" resname="admin::base:collection: Monter une collection" approved="yes"> <source>admin::base:collection: Monter une collection</source> @@ -8257,8 +8323,8 @@ <trans-unit id="d22d5f91dbed4fb514e0d87876206a9a85420abc" resname="admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces" approved="yes"> <source>admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces</source> <target state="translated">Benutzer und Rechte von der Kollektion anwenden :</target> - <jms:reference-file line="28">admin/collection/create.html.twig</jms:reference-file> <jms:reference-file line="159">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="28">admin/collection/create.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3d84e19b243dea8a79762b90a3086d96e5cc2c00" resname="admin::base:collection: activer la collection" approved="yes"> <source>admin::base:collection: activer la collection</source> @@ -8269,10 +8335,10 @@ <trans-unit id="92f3414a98bf0c0d1723281930e272528ab7b6b2" resname="admin::base:collection: aucun fichier (minilogo, watermark ...)" approved="yes"> <source>admin::base:collection: aucun fichier (minilogo, watermark ...)</source> <target state="translated">Keine Datei</target> + <jms:reference-file line="214">admin/databox/databox.html.twig</jms:reference-file> <jms:reference-file line="156">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="181">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="206">admin/collection/collection.html.twig</jms:reference-file> - <jms:reference-file line="214">admin/databox/databox.html.twig</jms:reference-file> </trans-unit> <trans-unit id="82f874797027463bcc1e0fa7222160aecdd35abb" resname="admin::base:collection: descativer la collection" approved="yes"> <source>admin::base:collection: descativer la collection</source> @@ -8333,20 +8399,20 @@ <trans-unit id="a7765634e47a714273ba54690efd1f6c2a08e6de" resname="admin::base:collorder: descendre" approved="yes"> <source>admin::base:collorder: descendre</source> <target state="translated">absteigend</target> - <jms:reference-file line="92">admin/collection/suggested_value.html.twig</jms:reference-file> <jms:reference-file line="25">admin/collection/reorder.html.twig</jms:reference-file> + <jms:reference-file line="92">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> <trans-unit id="adc7e4a654ee4a660a18aa80518192eeaa24cceb" resname="admin::base:collorder: monter" approved="yes"> <source>admin::base:collorder: monter</source> <target state="translated">aufsteigend</target> - <jms:reference-file line="91">admin/collection/suggested_value.html.twig</jms:reference-file> <jms:reference-file line="20">admin/collection/reorder.html.twig</jms:reference-file> + <jms:reference-file line="91">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> <trans-unit id="82356065e1cf79e0ea18809dde087170c41be325" resname="admin::base:collorder: reinitialiser en ordre alphabetique" approved="yes"> <source>admin::base:collorder: reinitialiser en ordre alphabetique</source> <target state="translated">in alphabetischer Reihenfolge sortieren</target> - <jms:reference-file line="94">admin/collection/suggested_value.html.twig</jms:reference-file> <jms:reference-file line="28">admin/collection/reorder.html.twig</jms:reference-file> + <jms:reference-file line="94">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> <trans-unit id="59fb64701fdcfa682495e91bb1e286a9dba77848" resname="admin::colelction::presentation des elements : rien" approved="yes"> <source>admin::colelction::presentation des elements : rien</source> @@ -8401,21 +8467,21 @@ <trans-unit id="df2642eaa7386518762050a368f5d2c49a3fe42a" resname="admin::compte-utilisateur activite" approved="yes"> <source>admin::compte-utilisateur activite</source> <target state="translated">Tätigkeit</target> + <jms:reference-file line="312">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="104">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="311">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="122">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="528">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="221">admin/user/registrations.html.twig</jms:reference-file> - <jms:reference-file line="122">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="10b0a44531159b40162fd9349abbe2bd21946c3e" resname="admin::compte-utilisateur adresse" approved="yes"> <source>admin::compte-utilisateur adresse</source> <target state="translated">Adresse</target> + <jms:reference-file line="304">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="69">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="303">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="87">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="487">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="225">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="363">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="87">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e922f2ca7321d1d1f403e937dbf109db04bac722" resname="admin::compte-utilisateur changer mon mot de passe" approved="yes"> <source>admin::compte-utilisateur changer mon mot de passe</source> @@ -8425,11 +8491,11 @@ <trans-unit id="218d3257842bd2817f0ba7bcd02f3729c60e591d" resname="admin::compte-utilisateur code postal" approved="yes"> <source>admin::compte-utilisateur code postal</source> <target state="translated">PLZ</target> + <jms:reference-file line="306">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="76">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="305">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="94">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="495">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="370">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="94">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="bc2f858e3323d3baa8be27661724b11ce9c0a57b" resname="admin::compte-utilisateur confirmer la nouvelle adresse email" approved="yes"> <source>admin::compte-utilisateur confirmer la nouvelle adresse email</source> @@ -8449,23 +8515,23 @@ <trans-unit id="d79bdc62fa5ecc611e96fe7ab9f5cf4d4debabae" resname="admin::compte-utilisateur email" approved="yes"> <source>admin::compte-utilisateur email</source> <target state="translated">E-Mail</target> + <jms:reference-file line="301">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="111">Event/Subscriber/RegistrationSubscriber.php</jms:reference-file> - <jms:reference-file line="300">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="74">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="479">web/admin/editusers.html.twig</jms:reference-file> - <jms:reference-file line="215">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="109">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="215">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="22">web/admin/connected-users.html.twig</jms:reference-file> <jms:reference-file line="335">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="74">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d194728e348f759c2a443df96338ba1e2c8adfb5" resname="admin::compte-utilisateur fax" approved="yes"> <source>admin::compte-utilisateur fax</source> <target state="translated">Fax</target> + <jms:reference-file line="309">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="118">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="308">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="136">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="545">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="384">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="136">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d6e2b9ddcaf97ba5258571cb54935f1ff6b581a2" resname="admin::compte-utilisateur id utilisateur" approved="yes"> <source>admin::compte-utilisateur id utilisateur</source> @@ -8476,35 +8542,35 @@ <source>admin::compte-utilisateur identifiant</source> <target state="translated">Benutzername</target> <jms:reference-file line="36">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="443">web/admin/editusers.html.twig</jms:reference-file> - <jms:reference-file line="211">admin/user/registrations.html.twig</jms:reference-file> - <jms:reference-file line="94">web/admin/users.html.twig</jms:reference-file> - <jms:reference-file line="19">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="49">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="21">web/account/reset-email.html.twig</jms:reference-file> <jms:reference-file line="35">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="188">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="443">web/admin/editusers.html.twig</jms:reference-file> + <jms:reference-file line="94">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="211">admin/user/registrations.html.twig</jms:reference-file> + <jms:reference-file line="19">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f5fe48877b8b43297cc3c999ab84bbe0bd60f5af" resname="admin::compte-utilisateur mot de passe" approved="yes"> <source>admin::compte-utilisateur mot de passe</source> <target state="translated">Passwort</target> - <jms:reference-file line="562">web/setup/step2.html.twig</jms:reference-file> - <jms:reference-file line="25">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="50">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="562">web/setup/step2.html.twig</jms:reference-file> <jms:reference-file line="27">web/account/reset-email.html.twig</jms:reference-file> <jms:reference-file line="195">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="25">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0e2d7957bf48ebf857d73e4395e78fa73e193b5d" resname="admin::compte-utilisateur nom" approved="yes"> <source>admin::compte-utilisateur nom</source> <target state="translated">Name</target> + <jms:reference-file line="299">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="62">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> <jms:reference-file line="109">Event/Subscriber/RegistrationSubscriber.php</jms:reference-file> - <jms:reference-file line="298">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="60">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="471">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="213">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="13">web/admin/connected-users.html.twig</jms:reference-file> <jms:reference-file line="321">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="60">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1dbac236fd2ee8bcce590e0cdc7c4a418885c52b" resname="admin::compte-utilisateur nouvelle adresse email" approved="yes"> <source>admin::compte-utilisateur nouvelle adresse email</source> @@ -8514,48 +8580,48 @@ <trans-unit id="1b83f90c602146fc09f3e025507c9b11aa10772a" resname="admin::compte-utilisateur pays" approved="yes"> <source>admin::compte-utilisateur pays</source> <target state="translated">Land</target> - <jms:reference-file line="306">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="307">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="114">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="28c517ddecdb662c767290d2e1fa53ef198307fa" resname="admin::compte-utilisateur poste" approved="yes"> <source>admin::compte-utilisateur poste</source> <target state="translated">Beruf</target> + <jms:reference-file line="310">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="90">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="309">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="108">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="512">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="219">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="356">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="108">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="eadb6eaa53204a688e4059a35261b6878fda8b37" resname="admin::compte-utilisateur prenom" approved="yes"> <source>admin::compte-utilisateur prenom</source> <target state="translated">Vorname</target> + <jms:reference-file line="300">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="55">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> <jms:reference-file line="110">Event/Subscriber/RegistrationSubscriber.php</jms:reference-file> - <jms:reference-file line="299">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="67">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="463">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="213">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="328">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="67">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0ee82fdcf687c10dd1e5040a5b84d9a90d079a9a" resname="admin::compte-utilisateur sexe" approved="yes"> <source>admin::compte-utilisateur sexe</source> <target state="translated">Anrede</target> <jms:reference-file line="44">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="451">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="42">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="451">web/admin/editusers.html.twig</jms:reference-file> </trans-unit> <trans-unit id="78b65792aca82024d5f1ff60dec83a501c01e15e" resname="admin::compte-utilisateur societe" approved="yes"> <source>admin::compte-utilisateur societe</source> <target state="translated">Firma</target> + <jms:reference-file line="311">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="97">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="310">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="115">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="520">web/admin/editusers.html.twig</jms:reference-file> - <jms:reference-file line="217">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="104">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="217">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="16">web/admin/connected-users.html.twig</jms:reference-file> <jms:reference-file line="349">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="115">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4d15ba95c86a58884d598415b8f8a400ab636cd9" resname="admin::compte-utilisateur tel" approved="yes"> <source>admin::compte-utilisateur tel</source> @@ -8565,31 +8631,31 @@ <trans-unit id="aa3ffb658796d685813791430da4efdac145b8d9" resname="admin::compte-utilisateur telephone" approved="yes"> <source>admin::compte-utilisateur telephone</source> <target state="translated">Telefon</target> - <jms:reference-file line="307">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="308">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="129">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="537">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="223">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="19">web/admin/connected-users.html.twig</jms:reference-file> <jms:reference-file line="342">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="129">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="29d3952c833272679cb313988c698f11cb6bbb64" resname="admin::compte-utilisateur un email de confirmation vient de vous etre envoye. Veuillez suivre les instructions contenue pour continuer" approved="yes"> <source>admin::compte-utilisateur un email de confirmation vient de vous etre envoye. Veuillez suivre les instructions contenue pour continuer</source> <target state="translated">Wir haben Ihnen eine Email Bestätigung geschickt. Bitte folgen Sie den Anweisungen um fortzusetzen.</target> - <jms:reference-file line="127">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="134">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="00a39eeb4e86af2189a6080e16418d249d98a12b" resname="admin::compte-utilisateur ville" approved="yes"> <source>admin::compte-utilisateur ville</source> <target state="translated">Ort</target> + <jms:reference-file line="305">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="83">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="304">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="101">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="503">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="377">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="101">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2f752312fcd370b6547b296ca173da51487a2c5d" resname="admin::compte-utilisateur: L'email a correctement ete mis a jour" approved="yes"> <source>admin::compte-utilisateur: L'email a correctement ete mis a jour</source> <target state="translated">Die E-Mail wurde aktualisiert</target> - <jms:reference-file line="151">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="158">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="65b62caf0d011a7a87ac02e39fcea79869f0d26a" resname="admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour changer mon adresse email ?" approved="yes"> <source>admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour changer mon adresse email ?</source> @@ -8609,7 +8675,7 @@ <trans-unit id="5bea2ac2d5d9b17df772d715e4a452316e6625f6" resname="admin::compte-utilisateur: erreur lors de la mise a jour" approved="yes"> <source>admin::compte-utilisateur: erreur lors de la mise a jour</source> <target state="translated">Fehler beim Updaten</target> - <jms:reference-file line="142">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="149">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="56d75cba0bcd6dae815548d79af45f8a58c822cf" resname="admin::compte-utilisateur::securite caracteres majuscules" approved="yes"> <source>admin::compte-utilisateur::securite caracteres majuscules</source> @@ -8634,8 +8700,8 @@ <trans-unit id="6d985c39243c51b967903e290ce6c33583b17c8a" resname="admin::compte-utilisateur:ftp: repertoire de destination ftp" approved="yes"> <source>admin::compte-utilisateur:ftp: repertoire de destination ftp</source> <target state="translated">FTP Zielordner</target> - <jms:reference-file line="43">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="202">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="43">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d6084018a101b645f6a3a136be17cb1b8c2a499c" resname="admin::compte-utilisateur:ftp: Activer le compte FTP" approved="yes"> <source>admin::compte-utilisateur:ftp: Activer le compte FTP</source> @@ -8645,19 +8711,19 @@ <trans-unit id="d7ef5ce109bd15843f144dc60ed2e594ddd04d41" resname="admin::compte-utilisateur:ftp: Le mot de passe est errone" approved="yes"> <source>admin::compte-utilisateur:ftp: Le mot de passe est errone</source> <target state="translated">falsches Passwort</target> - <jms:reference-file line="93">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="100">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="9bf7a0391d97674b47027a4021a3fa438db12b2d" resname="admin::compte-utilisateur:ftp: Nombre d'essais max" approved="yes"> <source>admin::compte-utilisateur:ftp: Nombre d'essais max</source> <target state="translated">maximale Anzahl von Versuchen</target> - <jms:reference-file line="37">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="225">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="37">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7353ab4d025765f9e75cf84168059ea043b71166" resname="admin::compte-utilisateur:ftp: Utiliser le mode passif" approved="yes"> <source>admin::compte-utilisateur:ftp: Utiliser le mode passif</source> <target state="translated">Passiv Mode benutzen</target> - <jms:reference-file line="31">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="218">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="31">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="58538c361989dbed251ba82a942de32f4a23b003" resname="admin::compte-utilisateur:ftp: creer un dossier" approved="yes"> <source>admin::compte-utilisateur:ftp: creer un dossier</source> @@ -8678,25 +8744,25 @@ <source>admin::compte-utilisateur:sexe: madame</source> <target state="translated">Frau</target> <jms:reference-file line="50">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> + <jms:reference-file line="50">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="456">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="314">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="50">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7af00728508b30971b5cd3eb769433546ad9abfa" resname="admin::compte-utilisateur:sexe: mademoiselle" approved="yes"> <source>admin::compte-utilisateur:sexe: mademoiselle</source> <target state="translated">Fräulein</target> <jms:reference-file line="49">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> + <jms:reference-file line="47">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="455">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="313">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="47">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="db663dadd7bd9b045a68cafcfe2ca4e0c832e50a" resname="admin::compte-utilisateur:sexe: monsieur" approved="yes"> <source>admin::compte-utilisateur:sexe: monsieur</source> <target state="translated">Herr</target> <jms:reference-file line="51">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> + <jms:reference-file line="53">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="457">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="315">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="53">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cfc904c9a87afe2d3986041a6bdb542298607880" resname="admin::monitor: bases sur lesquelles l'utilisateur est connecte :" approved="yes"> <source>admin::monitor: bases sur lesquelles l'utilisateur est connecte :</source> @@ -8724,10 +8790,10 @@ <trans-unit id="9513f9700541e6a67371a6848330b051c8e9d3c2" resname="admin::monitor: module client" approved="yes"> <source>admin::monitor: module client</source> <target state="translated">Client</target> + <jms:reference-file line="80">lib/classes/phrasea.php</jms:reference-file> <jms:reference-file line="414">classes/record/preview.php</jms:reference-file> <jms:reference-file line="521">classes/record/preview.php</jms:reference-file> <jms:reference-file line="668">classes/record/preview.php</jms:reference-file> - <jms:reference-file line="80">lib/classes/phrasea.php</jms:reference-file> <jms:reference-file line="116">Controller/Admin/ConnectedUsersController.php</jms:reference-file> <jms:reference-file line="53">web/admin/connected-users.html.twig</jms:reference-file> </trans-unit> @@ -8746,10 +8812,10 @@ <trans-unit id="49d0391bab2fa680a4c2830fb4a225d48eefa425" resname="admin::monitor: module production" approved="yes"> <source>admin::monitor: module production</source> <target state="translated">Prod</target> + <jms:reference-file line="79">lib/classes/phrasea.php</jms:reference-file> <jms:reference-file line="410">classes/record/preview.php</jms:reference-file> <jms:reference-file line="518">classes/record/preview.php</jms:reference-file> <jms:reference-file line="666">classes/record/preview.php</jms:reference-file> - <jms:reference-file line="79">lib/classes/phrasea.php</jms:reference-file> <jms:reference-file line="115">Controller/Admin/ConnectedUsersController.php</jms:reference-file> <jms:reference-file line="49">web/admin/connected-users.html.twig</jms:reference-file> </trans-unit> @@ -8774,16 +8840,16 @@ <target state="translated">Upload</target> <jms:reference-file line="86">lib/classes/phrasea.php</jms:reference-file> <jms:reference-file line="122">Controller/Admin/ConnectedUsersController.php</jms:reference-file> - <jms:reference-file line="96">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="97">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="14e4b19f7496c10dbb05e61dee0c436c0792235f" resname="admin::monitor: module validation" approved="yes"> <source>admin::monitor: module validation</source> <target state="translated">Lightbox</target> <jms:reference-file line="85">lib/classes/phrasea.php</jms:reference-file> - <jms:reference-file line="121">Controller/Admin/ConnectedUsersController.php</jms:reference-file> <jms:reference-file line="205">Phrasea/Controller/LightboxController.php</jms:reference-file> <jms:reference-file line="236">Phrasea/Controller/LightboxController.php</jms:reference-file> <jms:reference-file line="313">Phrasea/Controller/LightboxController.php</jms:reference-file> + <jms:reference-file line="121">Controller/Admin/ConnectedUsersController.php</jms:reference-file> <jms:reference-file line="78">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d3110046b5f8b6bbf171a3b97c1d1c4d75ee3b38" resname="admin::monitor: modules" approved="yes"> @@ -8857,11 +8923,36 @@ <target state="translated">Ein Benutzer hat sich angemeldet</target> <jms:reference-file line="29">Notification/Mail/MailInfoSomebodyAutoregistered.php</jms:reference-file> </trans-unit> - <trans-unit id="d515b5152446301602332e06b1d84bf3974ca24d" resname="admin::search-engine: general-aggregation"> + <trans-unit id="d515b5152446301602332e06b1d84bf3974ca24d" resname="admin::search-engine: general-aggregation" approved="yes"> <source>admin::search-engine: general-aggregation</source> - <target state="new">admin::search-engine: general-aggregation</target> + <target state="translated">Aggregateinstellungen</target> <jms:reference-file line="5">admin/search-engine/search-engine-settings.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="08772ff0da8ce970d5fac07a7afb6f855401d235" resname="admin::setup:personalisation_logo: download gabari" approved="yes"> + <source>admin::setup:personalisation_logo: download gabari</source> + <target state="translated">Template herunterladen</target> + <jms:reference-file line="18">web/admin/personalisation_logo.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="a051f8357ca68bd96210d071cdfacfe8a54de2af" resname="admin::setup:personalisation_logo: error text dimension" approved="yes"> + <source>admin::setup:personalisation_logo: error text dimension</source> + <target state="translated">Fehler: Dateigrösse ist falsch, bitte wählen Sie aus: 120 x 41 px in .png</target> + <jms:reference-file line="44">web/admin/personalisation_logo.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="4499d392aa84b8bf806252937b820281034ffd0c" resname="admin::setup:personalisation_logo: error text file type" approved="yes"> + <source>admin::setup:personalisation_logo: error text file type</source> + <target state="translated">Fehler: Das Datei-Format ist falsch, bitte wählen Sie eine Datei in .png</target> + <jms:reference-file line="45">web/admin/personalisation_logo.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="78a276b502761ddad6d621bf315ed17362b12748" resname="admin::setup:personalisation_logo: help text" approved="yes"> + <source>admin::setup:personalisation_logo: help text</source> + <target state="translated">Importieren Sie Ihr Logo: 120 x 41 px max in .png</target> + <jms:reference-file line="16">web/admin/personalisation_logo.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="1ae037eda66d81b87705cdbdc04e4d8c0a953755" resname="admin::setup:personalisation_logo: select file" approved="yes"> + <source>admin::setup:personalisation_logo: select file</source> + <target state="translated">Datei auswählen</target> + <jms:reference-file line="31">web/admin/personalisation_logo.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="8fb48b51ad1962dc1b6a3643964f38fc48853161" resname="admin::status: case A" approved="yes"> <source>admin::status: case A</source> <target state="translated">Off</target> @@ -8975,8 +9066,8 @@ <trans-unit id="8f1dba76b561684930a25a984046b3b4149785ca" resname="alert" approved="yes"> <source>alert</source> <target state="translated">Vorsicht</target> + <jms:reference-file line="177">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="244">actions/Tools/index.html.twig</jms:reference-file> - <jms:reference-file line="164">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="edde11c24ed5e6df4e416143e77248e908567faa" resname="all caches services have been flushed" approved="yes"> <source>all caches services have been flushed</source> @@ -9001,7 +9092,7 @@ <trans-unit id="28a04a7076b48759b6dc6fc06df7676a69e415d0" resname="and %n% more peoples" approved="yes"> <source>and %n% more peoples</source> <target state="translated">und %n% mehr Leute</target> - <jms:reference-file line="125">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="132">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="aacef678d2c5455205b104be7f364575db5d5b95" resname="aout" approved="yes"> <source>aout</source> @@ -9016,9 +9107,9 @@ <trans-unit id="a06a492959ce12b3f0292406ec84177d07ae19b1" resname="audio" approved="yes"> <source>audio</source> <target state="translated">Audio</target> - <jms:reference-file line="278">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> - <jms:reference-file line="25">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="302">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> <jms:reference-file line="371">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="28">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a028c8828218375b107b7b7c48664ed31e10163b" resname="avril" approved="yes"> <source>avril</source> @@ -9060,18 +9151,18 @@ <trans-unit id="1d1dbbac03e2a5e30fe7e568ad75572e469a6301" resname="boutton:: selectionner aucune base" approved="yes"> <source>boutton:: selectionner aucune base</source> <target state="translated">Keine</target> - <jms:reference-file line="320">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="352">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2fb22ccabd1651b5307698b4029b6696042ca6e2" resname="boutton:: selectionner toutes les bases" approved="yes"> <source>boutton:: selectionner toutes les bases</source> <target state="translated">Alle</target> - <jms:reference-file line="317">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="349">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d59bc356bd632596c602560d44e1ed9cb7145699" resname="boutton::ajouter" approved="yes"> <source>boutton::ajouter</source> <target state="translated">hinzufügen</target> - <jms:reference-file line="244">prod/actions/edit_default.html.twig</jms:reference-file> - <jms:reference-file line="349">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="246">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="351">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="111">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8641f76c3f062372dc5509faad531672cf3558a5" resname="boutton::annuler" approved="yes"> @@ -9079,35 +9170,35 @@ <target state="translated">abbrechen</target> <jms:reference-file line="41">Controller/Prod/LanguageController.php</jms:reference-file> <jms:reference-file line="49">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="13">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> - <jms:reference-file line="40">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> - <jms:reference-file line="13">Bridge/Youtube/video_modify.html.twig</jms:reference-file> - <jms:reference-file line="71">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> <jms:reference-file line="71">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> - <jms:reference-file line="245">prod/actions/edit_default.html.twig</jms:reference-file> - <jms:reference-file line="364">prod/actions/edit_default.html.twig</jms:reference-file> - <jms:reference-file line="53">web/thesaurus/new-term.html.twig</jms:reference-file> - <jms:reference-file line="78">web/thesaurus/new-term.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="71">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> + <jms:reference-file line="40">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> + <jms:reference-file line="247">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="366">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="114">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> + <jms:reference-file line="590">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="989">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="1093">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="70">web/thesaurus/import-dialog.html.twig</jms:reference-file> + <jms:reference-file line="74">web/thesaurus/link-field-step2.html.twig</jms:reference-file> <jms:reference-file line="164">web/thesaurus/accept.html.twig</jms:reference-file> <jms:reference-file line="180">web/thesaurus/accept.html.twig</jms:reference-file> <jms:reference-file line="137">web/thesaurus/export-topics-dialog.html.twig</jms:reference-file> - <jms:reference-file line="74">web/thesaurus/link-field-step2.html.twig</jms:reference-file> - <jms:reference-file line="114">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> - <jms:reference-file line="582">web/thesaurus/thesaurus.html.twig</jms:reference-file> - <jms:reference-file line="981">web/thesaurus/thesaurus.html.twig</jms:reference-file> - <jms:reference-file line="1085">web/thesaurus/thesaurus.html.twig</jms:reference-file> - <jms:reference-file line="70">web/thesaurus/import-dialog.html.twig</jms:reference-file> + <jms:reference-file line="53">web/thesaurus/new-term.html.twig</jms:reference-file> + <jms:reference-file line="78">web/thesaurus/new-term.html.twig</jms:reference-file> <jms:reference-file line="61">web/thesaurus/link-field-step1.html.twig</jms:reference-file> - <jms:reference-file line="47">admin/collection/create.html.twig</jms:reference-file> + <jms:reference-file line="49">web/account/reset-email.html.twig</jms:reference-file> <jms:reference-file line="129">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="47">admin/collection/create.html.twig</jms:reference-file> <jms:reference-file line="47">web/admin/index.html.twig</jms:reference-file> <jms:reference-file line="168">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="250">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="404">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="487">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="24">web/report/all_content.html.twig</jms:reference-file> - <jms:reference-file line="49">web/account/reset-email.html.twig</jms:reference-file> + <jms:reference-file line="23">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c6f716e883e5747e4bc8a8afc7a0ec1ccf44e0b5" resname="boutton::appliquer" approved="yes"> <source>boutton::appliquer</source> @@ -9118,8 +9209,8 @@ <source>boutton::chercher</source> <target state="translated">suchen</target> <jms:reference-file line="121">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="588">web/thesaurus/thesaurus.html.twig</jms:reference-file> - <jms:reference-file line="1091">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="596">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="1099">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="58">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4a71090794c12d5b26f62d9f0c68c0d894f7e00e" resname="boutton::choisir" approved="yes"> @@ -9142,14 +9233,14 @@ <trans-unit id="32e5c3419a0a410255ee44e462fd7329f708873f" resname="boutton::demarrer" approved="yes"> <source>boutton::demarrer</source> <target state="translated">Dia Show</target> - <jms:reference-file line="9">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="9">web/lightbox/sc_options_box.html.twig</jms:reference-file> + <jms:reference-file line="9">web/lightbox/feed_options_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d49d2b52ce2f1912f7ada4a3f57ab39fd2e9904e" resname="boutton::editer" approved="yes"> <source>boutton::editer</source> <target state="translated">Bearbeiten</target> - <jms:reference-file line="27">prod/results/entry.html.twig</jms:reference-file> <jms:reference-file line="21">prod/results/feeds_entry.html.twig</jms:reference-file> + <jms:reference-file line="27">prod/results/entry.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6b126c214de4c40550d9dc32b02766809b1cac1a" resname="boutton::enregistrer" approved="yes"> <source>boutton::enregistrer</source> @@ -9176,17 +9267,17 @@ <source>boutton::fermer</source> <target state="translated">schliessen</target> <jms:reference-file line="57">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="383">prod/actions/edit_default.html.twig</jms:reference-file> - <jms:reference-file line="388">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="11">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="385">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="390">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="118">web/thesaurus/properties.html.twig</jms:reference-file> <jms:reference-file line="116">web/thesaurus/accept.html.twig</jms:reference-file> <jms:reference-file line="132">web/thesaurus/accept.html.twig</jms:reference-file> - <jms:reference-file line="45">web/thesaurus/link-field-step3.html.twig</jms:reference-file> <jms:reference-file line="39">web/thesaurus/export-topics.html.twig</jms:reference-file> + <jms:reference-file line="45">web/thesaurus/link-field-step3.html.twig</jms:reference-file> <jms:reference-file line="23">web/lightbox/sc_note.html.twig</jms:reference-file> <jms:reference-file line="96">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="25">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="24">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ce91bb36902944da7788997865b8c482a59e80fe" resname="boutton::generer" approved="yes"> <source>boutton::generer</source> @@ -9201,9 +9292,9 @@ <trans-unit id="1e4c65d295605a0e884818b5c06d32a63fd692d5" resname="boutton::modifier" approved="yes"> <source>boutton::modifier</source> <target state="translated">ändern</target> - <jms:reference-file line="1">Bridge/Flickr/actionelement.html.twig</jms:reference-file> - <jms:reference-file line="1">Bridge/Youtube/actionelement.html.twig</jms:reference-file> <jms:reference-file line="1">Bridge/Dailymotion/actionelement.html.twig</jms:reference-file> + <jms:reference-file line="1">Bridge/Youtube/actionelement.html.twig</jms:reference-file> + <jms:reference-file line="1">Bridge/Flickr/actionelement.html.twig</jms:reference-file> <jms:reference-file line="62">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ef6ccc2669466ac98a3d580bd7bab8f33d0e4bcc" resname="boutton::monter" approved="yes"> @@ -9214,8 +9305,8 @@ <trans-unit id="a6083d9bc73ab5df12f4949b67577186f6e8c240" resname="boutton::pause" approved="yes"> <source>boutton::pause</source> <target state="translated">Pause</target> - <jms:reference-file line="12">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="12">web/lightbox/sc_options_box.html.twig</jms:reference-file> + <jms:reference-file line="12">web/lightbox/feed_options_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="28bb622fa0fe835d89deb626494ce572cbd27072" resname="boutton::precedent" approved="yes"> <source>boutton::precedent</source> @@ -9226,16 +9317,16 @@ <jms:reference-file line="696">web/setup/step2.html.twig</jms:reference-file> <jms:reference-file line="754">web/setup/step2.html.twig</jms:reference-file> <jms:reference-file line="866">web/setup/step2.html.twig</jms:reference-file> - <jms:reference-file line="3">web/lightbox/feed_options_box.html.twig</jms:reference-file> - <jms:reference-file line="6">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="3">web/lightbox/sc_options_box.html.twig</jms:reference-file> <jms:reference-file line="6">web/lightbox/sc_options_box.html.twig</jms:reference-file> + <jms:reference-file line="3">web/lightbox/feed_options_box.html.twig</jms:reference-file> + <jms:reference-file line="6">web/lightbox/feed_options_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5ac4cff651bd34d7b0f295259a0c0907d6af5cd1" resname="boutton::rechercher" approved="yes"> <source>boutton::rechercher</source> <target state="translated">suchen</target> <jms:reference-file line="51">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="277">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="299">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9d39f48fbb3a9887cf97368d39a1de32a71c3dee" resname="boutton::refresh" approved="yes"> <source>boutton::refresh</source> @@ -9250,7 +9341,7 @@ <trans-unit id="7c93f19dc5b7cef99db6fb84975ef795e3e87102" resname="boutton::remplacer" approved="yes"> <source>boutton::remplacer</source> <target state="translated">ersetzen</target> - <jms:reference-file line="243">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="245">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6b9c19dded5ae1d0dbe62a14e2754f2c8cf65302" resname="boutton::renouveller" approved="yes"> <source>boutton::renouveller</source> @@ -9260,26 +9351,26 @@ <trans-unit id="e0af1d0d7872c48928d4faef76c45567426e62f9" resname="boutton::retour" approved="yes"> <source>boutton::retour</source> <target state="translated">Zurück</target> - <jms:reference-file line="20">Bridge/Flickr/photoset_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="28">Bridge/Flickr/photo_moveinto_photoset.html.twig</jms:reference-file> - <jms:reference-file line="54">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="20">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="37">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="28">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> - <jms:reference-file line="20">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="20">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="20">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="25">Bridge/Dailymotion/playlist_createcontainer.html.twig</jms:reference-file> <jms:reference-file line="28">Bridge/Dailymotion/video_moveinto_playlist.html.twig</jms:reference-file> <jms:reference-file line="20">Bridge/Dailymotion/playlist_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="20">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="44">admin/collection/details.html.twig</jms:reference-file> + <jms:reference-file line="20">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="37">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="28">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="20">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="20">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="20">Bridge/Flickr/photoset_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="28">Bridge/Flickr/photo_moveinto_photoset.html.twig</jms:reference-file> + <jms:reference-file line="54">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> <jms:reference-file line="558">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="223">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="64">admin/databox/details.html.twig</jms:reference-file> + <jms:reference-file line="44">admin/collection/details.html.twig</jms:reference-file> <jms:reference-file line="50">user/import/file.html.twig</jms:reference-file> <jms:reference-file line="162">admin/statusbit/edit.html.twig</jms:reference-file> - <jms:reference-file line="64">admin/databox/details.html.twig</jms:reference-file> - <jms:reference-file line="154">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="119">web/developers/application_form.html.twig</jms:reference-file> + <jms:reference-file line="154">web/developers/application.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a7a9651d909792bcf98f2d1e96c43cb1d3a618e4" resname="boutton::retry" approved="yes"> <source>boutton::retry</source> @@ -9295,40 +9386,40 @@ <jms:reference-file line="632">web/setup/step2.html.twig</jms:reference-file> <jms:reference-file line="699">web/setup/step2.html.twig</jms:reference-file> <jms:reference-file line="757">web/setup/step2.html.twig</jms:reference-file> - <jms:reference-file line="15">web/lightbox/feed_options_box.html.twig</jms:reference-file> - <jms:reference-file line="18">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="15">web/lightbox/sc_options_box.html.twig</jms:reference-file> <jms:reference-file line="18">web/lightbox/sc_options_box.html.twig</jms:reference-file> + <jms:reference-file line="15">web/lightbox/feed_options_box.html.twig</jms:reference-file> + <jms:reference-file line="18">web/lightbox/feed_options_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a83f74309cdfc79345f54eb1f4e4e2747316f820" resname="boutton::supprimer" approved="yes"> <source>boutton::supprimer</source> <target state="translated">Löschen</target> <jms:reference-file line="42">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="125">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="30">prod/results/entry.html.twig</jms:reference-file> - <jms:reference-file line="24">prod/results/feeds_entry.html.twig</jms:reference-file> - <jms:reference-file line="21">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="35">Bridge/Flickr/actionelements.html.twig</jms:reference-file> - <jms:reference-file line="21">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="35">Bridge/Youtube/actionelements.html.twig</jms:reference-file> - <jms:reference-file line="21">Bridge/Dailymotion/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="35">Bridge/Dailymotion/actionelements.html.twig</jms:reference-file> <jms:reference-file line="26">actions/Bridge/disconnected.html.twig</jms:reference-file> + <jms:reference-file line="35">Bridge/Dailymotion/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="21">Bridge/Dailymotion/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="35">Bridge/Youtube/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="21">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="35">Bridge/Flickr/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="21">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="24">prod/results/feeds_entry.html.twig</jms:reference-file> + <jms:reference-file line="30">prod/results/entry.html.twig</jms:reference-file> + <jms:reference-file line="125">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="6">web/thesaurus/presets.html.twig</jms:reference-file> - <jms:reference-file line="93">admin/collection/suggested_value.html.twig</jms:reference-file> + <jms:reference-file line="162">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="95">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="136">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="151">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="176">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="201">admin/collection/collection.html.twig</jms:reference-file> + <jms:reference-file line="93">admin/collection/suggested_value.html.twig</jms:reference-file> <jms:reference-file line="410">web/admin/subdefs.html.twig</jms:reference-file> - <jms:reference-file line="95">admin/publications/list.html.twig</jms:reference-file> - <jms:reference-file line="162">admin/publications/fiche.html.twig</jms:reference-file> </trans-unit> <trans-unit id="68b702f13ff62025c57948bf5c4a5b47af10dee9" resname="boutton::telecharger" approved="yes"> <source>boutton::telecharger</source> <target state="translated">download</target> - <jms:reference-file line="21">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="21">web/lightbox/sc_options_box.html.twig</jms:reference-file> + <jms:reference-file line="21">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="167">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4288c5788ee74d7fa3f325987a8e752687b43023" resname="boutton::telecharger tous les documents" approved="yes"> @@ -9349,56 +9440,57 @@ <source>boutton::valider</source> <target state="translated">Bestätigen</target> <jms:reference-file line="48">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="20">prod/Baskets/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="34">mobile/lightbox/note_form.html.twig</jms:reference-file> <jms:reference-file line="7">prod/Baskets/Update.html.twig</jms:reference-file> - <jms:reference-file line="701">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="20">prod/Baskets/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="19">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="24">Bridge/Dailymotion/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="27">Bridge/Dailymotion/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="70">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="19">Bridge/Dailymotion/playlist_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="19">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="36">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="27">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="70">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="19">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="19">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="19">Bridge/Flickr/photoset_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="27">Bridge/Flickr/photo_moveinto_photoset.html.twig</jms:reference-file> - <jms:reference-file line="39">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> <jms:reference-file line="53">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="19">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="36">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="70">Bridge/Youtube/video_modify.html.twig</jms:reference-file> - <jms:reference-file line="27">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> - <jms:reference-file line="19">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="19">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="24">Bridge/Dailymotion/playlist_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="70">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> - <jms:reference-file line="27">Bridge/Dailymotion/video_moveinto_playlist.html.twig</jms:reference-file> - <jms:reference-file line="19">Bridge/Dailymotion/playlist_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="19">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="341">prod/actions/edit_default.html.twig</jms:reference-file> - <jms:reference-file line="363">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="39">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> + <jms:reference-file line="343">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="365">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="20">prod/Story/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="792">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="116">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> + <jms:reference-file line="995">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="72">web/thesaurus/import-dialog.html.twig</jms:reference-file> + <jms:reference-file line="72">web/thesaurus/link-field-step2.html.twig</jms:reference-file> + <jms:reference-file line="162">web/thesaurus/accept.html.twig</jms:reference-file> + <jms:reference-file line="139">web/thesaurus/export-topics-dialog.html.twig</jms:reference-file> + <jms:reference-file line="51">web/thesaurus/index.html.twig</jms:reference-file> <jms:reference-file line="55">web/thesaurus/new-term.html.twig</jms:reference-file> <jms:reference-file line="80">web/thesaurus/new-term.html.twig</jms:reference-file> - <jms:reference-file line="162">web/thesaurus/accept.html.twig</jms:reference-file> - <jms:reference-file line="51">web/thesaurus/index.html.twig</jms:reference-file> - <jms:reference-file line="139">web/thesaurus/export-topics-dialog.html.twig</jms:reference-file> - <jms:reference-file line="72">web/thesaurus/link-field-step2.html.twig</jms:reference-file> - <jms:reference-file line="116">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> - <jms:reference-file line="987">web/thesaurus/thesaurus.html.twig</jms:reference-file> - <jms:reference-file line="72">web/thesaurus/import-dialog.html.twig</jms:reference-file> <jms:reference-file line="59">web/thesaurus/link-field-step1.html.twig</jms:reference-file> - <jms:reference-file line="130">admin/collection/suggested_value.html.twig</jms:reference-file> - <jms:reference-file line="39">admin/collection/reorder.html.twig</jms:reference-file> - <jms:reference-file line="58">admin/collection/collection.html.twig</jms:reference-file> - <jms:reference-file line="46">admin/collection/create.html.twig</jms:reference-file> - <jms:reference-file line="557">web/admin/editusers.html.twig</jms:reference-file> - <jms:reference-file line="403">web/admin/subdefs.html.twig</jms:reference-file> - <jms:reference-file line="45">admin/publications/list.html.twig</jms:reference-file> - <jms:reference-file line="128">admin/publications/fiche.html.twig</jms:reference-file> - <jms:reference-file line="34">web/admin/structure.html.twig</jms:reference-file> - <jms:reference-file line="274">admin/user/registrations.html.twig</jms:reference-file> - <jms:reference-file line="41">user/import/view.html.twig</jms:reference-file> - <jms:reference-file line="159">admin/statusbit/edit.html.twig</jms:reference-file> - <jms:reference-file line="111">web/admin/dashboard.html.twig</jms:reference-file> - <jms:reference-file line="83">web/admin/setup.html.twig</jms:reference-file> - <jms:reference-file line="22">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="75">web/account/access.html.twig</jms:reference-file> <jms:reference-file line="48">web/account/reset-email.html.twig</jms:reference-file> <jms:reference-file line="236">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="111">web/admin/dashboard.html.twig</jms:reference-file> + <jms:reference-file line="557">web/admin/editusers.html.twig</jms:reference-file> + <jms:reference-file line="128">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="45">admin/publications/list.html.twig</jms:reference-file> + <jms:reference-file line="83">web/admin/setup.html.twig</jms:reference-file> + <jms:reference-file line="46">admin/collection/create.html.twig</jms:reference-file> + <jms:reference-file line="39">admin/collection/reorder.html.twig</jms:reference-file> + <jms:reference-file line="58">admin/collection/collection.html.twig</jms:reference-file> + <jms:reference-file line="130">admin/collection/suggested_value.html.twig</jms:reference-file> + <jms:reference-file line="403">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="34">web/admin/structure.html.twig</jms:reference-file> + <jms:reference-file line="41">user/import/view.html.twig</jms:reference-file> + <jms:reference-file line="274">admin/user/registrations.html.twig</jms:reference-file> + <jms:reference-file line="159">admin/statusbit/edit.html.twig</jms:reference-file> <jms:reference-file line="115">web/developers/application_form.html.twig</jms:reference-file> - <jms:reference-file line="34">mobile/lightbox/note_form.html.twig</jms:reference-file> + <jms:reference-file line="21">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b27b98c3e0119082312d402ca0b89dd39f00f5c8" resname="boutton::vue graphique" approved="yes"> <source>boutton::vue graphique</source> @@ -9495,9 +9587,9 @@ <trans-unit id="aa593702faaee1da7f577eb3fbd5964703051696" resname="choisir" approved="yes"> <source>choisir</source> <target state="translated">wählen</target> - <jms:reference-file line="676">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="37">admin/collection/create.html.twig</jms:reference-file> + <jms:reference-file line="767">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="161">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="37">admin/collection/create.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7e7b33d679caaf09ae03ab03c7144e908cbbcc27" resname="classe" approved="yes"> <source>classe</source> @@ -9505,11 +9597,6 @@ <jms:reference-file line="433">web/admin/subdefs.html.twig</jms:reference-file> <jms:reference-file line="437">web/admin/subdefs.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="efa8808d6f8c8597743781236bd79cbe60350bfc" resname="cocher tout" approved="yes"> - <source>cocher tout</source> - <target state="translated">Alles aktivieren</target> - <jms:reference-file line="7">web/report/listColumn.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="6bca60e4b2d44b5623e626f9ff951ba6605e975f" resname="collection.label.unknown" approved="yes"> <source>collection.label.unknown</source> <target state="translated">Unbekannte Kollektion</target> @@ -9526,19 +9613,13 @@ <jms:reference-file line="101">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="296">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="0652e436f42d75f5672a8bd9ae2f398a55115d51" resname="configuration" approved="yes"> - <source>configuration</source> - <target state="translated">Konfiguration</target> - <jms:reference-file line="534">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="682">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> <trans-unit id="a70a59b9120185471e5b45630f8ba24d5516f590" resname="copyClipboardLabel" approved="yes"> <source>copyClipboardLabel</source> <target state="translated">in der Zwischenablage kopieren</target> - <jms:reference-file line="16">prod/results/infos.html.twig</jms:reference-file> - <jms:reference-file line="46">prod/Share/record.html.twig</jms:reference-file> - <jms:reference-file line="56">prod/Share/record.html.twig</jms:reference-file> - <jms:reference-file line="72">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="18">prod/results/infos.html.twig</jms:reference-file> + <jms:reference-file line="52">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="62">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="78">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="751a7df4249ede5126600fd5e11560b3300c8dd5" resname="create_subdef_button_label"> <source>create_subdef_button_label</source> @@ -9585,6 +9666,11 @@ <target state="new">create_subdef_modal_subdefinition_name</target> <jms:reference-file line="354">web/admin/subdefs.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="670f6628c7b72287a36ecd01262005e81428451c" resname="created_on" approved="yes"> + <source>created_on</source> + <target state="translated">erstellt am</target> + <jms:reference-file line="476">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="fc97186645dc71dae8e3221c8ce53c56e6d611bf" resname="dans %category%" approved="yes"> <source>dans %category%</source> <target state="translated">in %category%</target> @@ -9593,8 +9679,8 @@ <trans-unit id="dbfe8cf37a8d7b4941dd9f89e79302038b2bedef" resname="dans %feed_name%" approved="yes"> <source>dans %feed_name%</source> <target state="translated">in %feed_name%</target> - <jms:reference-file line="52">prod/results/entry.html.twig</jms:reference-file> <jms:reference-file line="46">prod/results/feeds_entry.html.twig</jms:reference-file> + <jms:reference-file line="52">prod/results/entry.html.twig</jms:reference-file> </trans-unit> <trans-unit id="aab7fdd9c18941cbc8d78fa0c690361ffd8c50bf" resname="date dajout" approved="yes"> <source>date dajout</source> @@ -9614,7 +9700,7 @@ <trans-unit id="9485989ff514b5106b7738850fd73c23e8c1e3f7" resname="delete" approved="yes"> <source>delete</source> <target state="translated">Löschen</target> - <jms:reference-file line="316">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="343">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1051f820052d19c0fff9afec561c3d02607fc90d" resname="descendant" approved="yes"> <source>descendant</source> @@ -9629,10 +9715,10 @@ <trans-unit id="4f8278c89ad16da05fec4fdfc61fe44798b92720" resname="document" approved="yes"> <source>document</source> <target state="translated">Dokument</target> - <jms:reference-file line="270">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> - <jms:reference-file line="28">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="294">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> <jms:reference-file line="372">web/admin/subdefs.html.twig</jms:reference-file> <jms:reference-file line="439">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="31">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="956c99f946a95f60d02e45468e0ed1f6fdf7fc08" resname="document original" approved="yes"> <source>document original</source> @@ -9686,7 +9772,7 @@ <trans-unit id="8abba1c9ff44c3fcc4d30726337bc02847d67235" resname="edit::preset:: titre" approved="yes"> <source>edit::preset:: titre</source> <target state="translated">Titel</target> - <jms:reference-file line="394">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="396">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="869b2f5267c5abc112d0f6281b4201a228054f92" resname="effacer (OK) ou quitter (Annuler) ?" approved="yes"> <source>effacer (OK) ou quitter (Annuler) ?</source> @@ -9696,7 +9782,7 @@ <trans-unit id="0536206a542dfc2d630996e79398079eb6976247" resname="element(s)" approved="yes"> <source>element(s)</source> <target state="translated">Element(e)</target> - <jms:reference-file line="54">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="55">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a04a3246075e5b6ac9d63ad46d807a1221e71321" resname="email is not valid" approved="yes"> <source>email is not valid</source> @@ -9731,15 +9817,15 @@ <jms:reference-file line="103">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="116">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="fcf5093722566a47fe3e773296cc63fac7190dac" resname="export::export-email: email-invalid"> + <trans-unit id="fcf5093722566a47fe3e773296cc63fac7190dac" resname="export::export-email: email-invalid" approved="yes"> <source>export::export-email: email-invalid</source> - <target state="new">export::export-email: email-invalid</target> + <target state="translated">Das Format der Email Adresse scheint falsch zu sein</target> <jms:reference-file line="510">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="40a92233bac9303de825031d1954e6b109088b38" resname="export::ftp: reglages manuels" approved="yes"> <source>export::ftp: reglages manuels</source> <target state="translated">manuelle Einstellungen</target> - <jms:reference-file line="274">classes/set/export.php</jms:reference-file> + <jms:reference-file line="279">classes/set/export.php</jms:reference-file> </trans-unit> <trans-unit id="076c427ffe1fe647c7c158681b1bbd17cb5e2ad3" resname="export::mail: contenu du mail" approved="yes"> <source>export::mail: contenu du mail</source> @@ -9785,20 +9871,12 @@ <jms:reference-file line="236">Controller/Prod/ToolsController.php</jms:reference-file> <jms:reference-file line="265">Controller/Prod/ToolsController.php</jms:reference-file> </trans-unit> - <trans-unit id="f8969980f2b8fd935f45cdd92a39dca6a4010d04" resname="filtrer les resultats sur la colonne %colonne%" approved="yes"> - <source>filtrer les resultats sur la colonne %colonne%</source> - <target state="translated">die Ergebnisse auf die Spalte %colonne% filtern</target> - <jms:reference-file line="561">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="132">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="385">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="709">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> <trans-unit id="6117e45ab57f8660d866a21ca5e9d2c31dbc1945" resname="flash" approved="yes"> <source>flash</source> <target state="translated">Flash</target> - <jms:reference-file line="282">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> - <jms:reference-file line="31">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="306">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> <jms:reference-file line="373">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="34">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="530e5ec7cd0bf5af44dc8c30cf7b7a86d3c454c6" resname="for the following reasons : %reasons%" approved="yes"> <source>for the following reasons : %reasons%</source> @@ -9814,7 +9892,7 @@ <trans-unit id="e6ae91533b29ee255483b85273eaeb74f9c1ac60" resname="forms::l'email semble invalide" approved="yes"> <source>forms::l'email semble invalide</source> <target state="translated">E-Mail scheint ungültig</target> - <jms:reference-file line="99">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="106">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="3edc07eb02649e91baa490fbf402ebbedb10d2cf" resname="forms::la valeur donnee est trop courte" approved="yes"> <source>forms::la valeur donnee est trop courte</source> @@ -9845,7 +9923,7 @@ <trans-unit id="61cc4acf7d6a30e2177360defda8d8b94eb01d53" resname="forms::les emails ne correspondent pas" approved="yes"> <source>forms::les emails ne correspondent pas</source> <target state="translated">Die E-Mail sind nicht gleich</target> - <jms:reference-file line="105">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="112">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="39adae60eaec2c7664f31f59c482634f90eea3c1" resname="forms::les mots de passe ne correspondent pas" approved="yes"> <source>forms::les mots de passe ne correspondent pas</source> @@ -9862,73 +9940,67 @@ <target state="translated">Änderungen wurden hergestellt</target> <jms:reference-file line="14">admin/databox/databox.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="0b1e95cfd9775191a7224d0a218ae79187e80c1d" resname="from" approved="yes"> - <source>from</source> - <target state="translated">von</target> - <jms:reference-file line="10">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="13">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="45b162f3c09db4eb9ecea5e048393a7ccaab4f7d" resname="help::help-section-bullet: check-spelling"> + <trans-unit id="45b162f3c09db4eb9ecea5e048393a7ccaab4f7d" resname="help::help-section-bullet: check-spelling" approved="yes"> <source>help::help-section-bullet: check-spelling</source> - <target state="new">help::help-section-bullet: check-spelling</target> + <target state="translated">Vergewissern Sie sich, dass kein Schreibfehler oder Tippfehler vorliegt</target> <jms:reference-file line="17">prod/results/help.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="9be1244ce3eb4b1de4abe01d696f2ab14effa5ca" resname="help::help-section-bullet: default-operator-between-terms"> + <trans-unit id="9be1244ce3eb4b1de4abe01d696f2ab14effa5ca" resname="help::help-section-bullet: default-operator-between-terms" approved="yes"> <source>help::help-section-bullet: default-operator-between-terms</source> - <target state="new">help::help-section-bullet: default-operator-between-terms</target> + <target state="translated">Der Standardoperator zwischen den Suchbegriffen ist AND</target> <jms:reference-file line="26">prod/results/help.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="a939bc9799c52952fd10a0a4c27520ffb080abf8" resname="help::help-section-bullet: expand search"> + <trans-unit id="a939bc9799c52952fd10a0a4c27520ffb080abf8" resname="help::help-section-bullet: expand search" approved="yes"> <source>help::help-section-bullet: expand search</source> - <target state="new">help::help-section-bullet: expand search</target> + <target state="translated">Erweitern Sie die Suche mit weniger Schlüsselwörtern</target> <jms:reference-file line="20">prod/results/help.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="a1635ba73964dd21d9d5907401d77a11cd474611" resname="help::help-section-bullet: quotation-marks-allow"> + <trans-unit id="a1635ba73964dd21d9d5907401d77a11cd474611" resname="help::help-section-bullet: quotation-marks-allow" approved="yes"> <source>help::help-section-bullet: quotation-marks-allow</source> - <target state="new">help::help-section-bullet: quotation-marks-allow</target> + <target state="translated">Anführungszeichen ermöglichen die Suche nach zusammenhängenden Begriffen oder Ausdrücken in der Medienbeschreibung</target> <jms:reference-file line="29">prod/results/help.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="2c7c99c6e44d0f6117f812b18739f8990ebb8052" resname="help::help-section-bullet: remove-advance-search"> + <trans-unit id="2c7c99c6e44d0f6117f812b18739f8990ebb8052" resname="help::help-section-bullet: remove-advance-search" approved="yes"> <source>help::help-section-bullet: remove-advance-search</source> - <target state="new">help::help-section-bullet: remove-advance-search</target> + <target state="translated">Erweiterte Suchfilter entfernen</target> <jms:reference-file line="19">prod/results/help.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="76544223abc0670157f5a270138a638283071678" resname="help::help-section-bullet: search-in-a-specific-field"> + <trans-unit id="76544223abc0670157f5a270138a638283071678" resname="help::help-section-bullet: search-in-a-specific-field" approved="yes"> <source>help::help-section-bullet: search-in-a-specific-field</source> - <target state="new">help::help-section-bullet: search-in-a-specific-field</target> + <target state="translated">Verwenden Sie die erweiterte Suche, um in einem bestimmten Feld zu suchen</target> <jms:reference-file line="30">prod/results/help.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="ac8d5acf555e427edbdcb05033256148d4bf9204" resname="help::help-section-bullet: search-in-document"> + <trans-unit id="ac8d5acf555e427edbdcb05033256148d4bf9204" resname="help::help-section-bullet: search-in-document" approved="yes"> <source>help::help-section-bullet: search-in-document</source> - <target state="new">help::help-section-bullet: search-in-document</target> + <target state="translated">Nach Dokumente oder nach Berichte suchen</target> <jms:reference-file line="18">prod/results/help.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="d37e6d50ca4af373ad217e5c6aa905f0deb49791" resname="help::help-section-bullet: use-EXCEPT-operator"> + <trans-unit id="d37e6d50ca4af373ad217e5c6aa905f0deb49791" resname="help::help-section-bullet: use-EXCEPT-operator" approved="yes"> <source>help::help-section-bullet: use-EXCEPT-operator</source> - <target state="new">help::help-section-bullet: use-EXCEPT-operator</target> + <target state="translated">Der Operator EXCEPT erlaubt, ein Begriff von der Suche auszuschliessen</target> <jms:reference-file line="28">prod/results/help.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="f1705105cd12c7037b4a27b97b9453602ac45ebd" resname="help::help-section-bullet: use-OR-between-terms"> + <trans-unit id="f1705105cd12c7037b4a27b97b9453602ac45ebd" resname="help::help-section-bullet: use-OR-between-terms" approved="yes"> <source>help::help-section-bullet: use-OR-between-terms</source> - <target state="new">help::help-section-bullet: use-OR-between-terms</target> + <target state="translated">Der Operator OR erlaubt, mehrere Begriffe der Medien Beschreibung zu suchen</target> <jms:reference-file line="27">prod/results/help.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="c012913adefe76f9285c687ed30146a950f95c2c" resname="help::help-section-title: search-tips"> + <trans-unit id="c012913adefe76f9285c687ed30146a950f95c2c" resname="help::help-section-title: search-tips" approved="yes"> <source>help::help-section-title: search-tips</source> - <target state="new">help::help-section-title: search-tips</target> + <target state="translated">Einige Suchtipps:</target> <jms:reference-file line="24">prod/results/help.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="d432c25580313c9fdcd73ee53506d69d852cd2cd" resname="help::help-section-title: sorry-no-result"> + <trans-unit id="d432c25580313c9fdcd73ee53506d69d852cd2cd" resname="help::help-section-title: sorry-no-result" approved="yes"> <source>help::help-section-title: sorry-no-result</source> - <target state="new">help::help-section-title: sorry-no-result</target> + <target state="translated">Sorry, Ihre Suche liefert keine Ergebnisse</target> <jms:reference-file line="15">prod/results/help.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0e76292794888d4f1fa75fb3aff4ca27c58f56a6" resname="image" approved="yes"> <source>image</source> <target state="translated">Bild</target> - <jms:reference-file line="266">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> - <jms:reference-file line="19">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="290">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> <jms:reference-file line="369">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="22">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="994bebec7c4690d1953f5e2b8832a853238efd5e" resname="image rotation" approved="yes"> <source>image rotation</source> @@ -9943,42 +10015,42 @@ <trans-unit id="0d25ab4ea387d19f49a120acb928c7f9500b0cf3" resname="index::advance_search: disable-facet"> <source>index::advance_search: disable-facet</source> <target state="new">index::advance_search: disable-facet</target> - <jms:reference-file line="750">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="841">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="16b1c68bd21754876991dfc8df38b024383fbca4" resname="index::advance_search: facet"> <source>index::advance_search: facet</source> <target state="new">index::advance_search: facet</target> - <jms:reference-file line="722">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="813">web/prod/index.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="2f830d57f4cedb2a49c7b109f9b91b0f8ba83e8b" resname="index::advance_search: facet-order"> + <trans-unit id="2f830d57f4cedb2a49c7b109f9b91b0f8ba83e8b" resname="index::advance_search: facet-order" approved="yes"> <source>index::advance_search: facet-order</source> - <target state="new">index::advance_search: facet-order</target> - <jms:reference-file line="723">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Reihenfolge der Facettenanzeige</target> + <jms:reference-file line="814">web/prod/index.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="5a25478cdd7fe21258071c4f3a5d9920225f9356" resname="index::advance_search: facet-tech-order"> + <trans-unit id="5a25478cdd7fe21258071c4f3a5d9920225f9356" resname="index::advance_search: facet-tech-order" approved="yes"> <source>index::advance_search: facet-tech-order</source> - <target state="new">index::advance_search: facet-tech-order</target> - <jms:reference-file line="729">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Standard Reihenfolge</target> + <jms:reference-file line="820">web/prod/index.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="6b9516a3c46d7ad246a9fbb3df693ba6c783c986" resname="index::advance_search: facet-values-order"> + <trans-unit id="6b9516a3c46d7ad246a9fbb3df693ba6c783c986" resname="index::advance_search: facet-values-order" approved="yes"> <source>index::advance_search: facet-values-order</source> - <target state="new">index::advance_search: facet-values-order</target> - <jms:reference-file line="735">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Reihenfolge der Facettenwerte</target> + <jms:reference-file line="826">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dfb02fcdeb804315cd6ad8388efcfb4ccc4abf38" resname="index::advance_search: hidden-facet-values-order"> <source>index::advance_search: hidden-facet-values-order</source> <target state="new">index::advance_search: hidden-facet-values-order</target> - <jms:reference-file line="752">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="843">web/prod/index.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="4a35cc75d1072f7dad99c8e91596298f55f20a54" resname="index::advance_search: order-by-hits"> + <trans-unit id="4a35cc75d1072f7dad99c8e91596298f55f20a54" resname="index::advance_search: order-by-hits" approved="yes"> <source>index::advance_search: order-by-hits</source> - <target state="new">index::advance_search: order-by-hits</target> - <jms:reference-file line="741">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Nach Hits sortieren</target> + <jms:reference-file line="832">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1039a002699408da4c4fe74638a6b44f60499069" resname="index:advanced-preferences:: use truncation"> <source>index:advanced-preferences:: use truncation</source> <target state="new">index:advanced-preferences:: use truncation</target> - <jms:reference-file line="312">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="341">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="830af6e37576114c7943a0e190f35ad2f0302b4d" resname="invite:: Redirection vers la zone d'authentification, cliquez sur OK pour continuer ou annulez" approved="yes"> <source>invite:: Redirection vers la zone d'authentification, cliquez sur OK pour continuer ou annulez</source> @@ -10034,9 +10106,9 @@ <trans-unit id="c372f7e2737372f0ec380396e5755850485ee3e9" resname="login:: Mon compte" approved="yes"> <source>login:: Mon compte</source> <target state="translated">Mein Benutzerkonto</target> - <jms:reference-file line="168">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="249">web/common/menubar.html.twig</jms:reference-file> <jms:reference-file line="22">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="152">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="226">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="51813acc1a667a12d4be8e86f3f2300e369a68cf" resname="login:: Visitez le lien suivant et suivez les instructions pour continuer, sinon ignorez cet email et il ne se passera rien" approved="yes"> <source>login:: Visitez le lien suivant et suivez les instructions pour continuer, sinon ignorez cet email et il ne se passera rien</source> @@ -10067,13 +10139,13 @@ <trans-unit id="5cdbff50d2a3ae92720c5af32d4cd560d1351a91" resname="login::notification: Changements enregistres" approved="yes"> <source>login::notification: Changements enregistres</source> <target state="translated">Veränderungen wurden bestätigt</target> - <jms:reference-file line="393">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="490">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="46f7a3bb71222626147c7e64c6a59a3f4c3d8e42" resname="login::notification: Mise a jour du mot de passe avec succes" approved="yes"> <source>login::notification: Mise a jour du mot de passe avec succes</source> <target state="translated">erfolgreiche Passwort Aktualisierung</target> <jms:reference-file line="396">Controller/Root/LoginController.php</jms:reference-file> - <jms:reference-file line="60">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="67">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="28dd2416483329c548279196d0c60f722578632f" resname="login::notification: demande de confirmation par mail envoyee" approved="yes"> <source>login::notification: demande de confirmation par mail envoyee</source> @@ -10081,16 +10153,6 @@ <jms:reference-file line="240">Controller/Root/LoginController.php</jms:reference-file> <jms:reference-file line="310">Controller/Root/LoginController.php</jms:reference-file> </trans-unit> - <trans-unit id="71604a1b149b2101d8500cdd929c4d4689961cf1" resname="login::register: Faire une demande d'acces" approved="yes"> - <source>login::register: Faire une demande d'acces</source> - <target state="translated">Eine Zugriffanfrage machen</target> - <jms:reference-file line="206">web/account/access.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="26697ed6ba3b6aa626a51d008244c09f734c5a3f" resname="login::register: L'acces aux bases ci-dessous implique l'acceptation des Conditions Generales d'Utilisation (CGU) suivantes" approved="yes"> - <source>login::register: L'acces aux bases ci-dessous implique l'acceptation des Conditions Generales d'Utilisation (CGU) suivantes</source> - <target state="translated">Der Zugriff auf die folgenden Datenbanken erfolgt nur mit der Bestätigung der folgenden Allgemeinen Nutzenbedingungen</target> - <jms:reference-file line="195">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="fd24fc482ff7c390471bcff193f8ed218a520ccc" resname="login::register: email confirmation email Pour valider votre inscription a la base de donnees, merci de confirmer votre e-mail en suivant le lien ci-dessous." approved="yes"> <source>login::register: email confirmation email Pour valider votre inscription a la base de donnees, merci de confirmer votre e-mail en suivant le lien ci-dessous.</source> <target state="translated">Um Ihre Anmeldung auf die Datenbank abschließen zu können, bestätigen Sie Ihre E-Mail Adresse unter dem folgenden link:</target> @@ -10099,24 +10161,14 @@ <trans-unit id="e0521fa8816ba827070adffaa4656fe554eec05d" resname="login::register: merci d'avoir confirme votre adresse email" approved="yes"> <source>login::register: merci d'avoir confirme votre adresse email</source> <target state="translated">Wir danken Ihnen für die Bestätigung Ihrer E-Mail Adresse</target> - <jms:reference-file line="29">Notification/Mail/MailSuccessEmailConfirmationUnregistered.php</jms:reference-file> <jms:reference-file line="29">Notification/Mail/MailSuccessEmailConfirmationRegistered.php</jms:reference-file> + <jms:reference-file line="29">Notification/Mail/MailSuccessEmailConfirmationUnregistered.php</jms:reference-file> </trans-unit> <trans-unit id="2c92f505fbd419ecba46a9c61daf8e304fc0cd61" resname="login::register: sujet email : confirmation de votre adresse email" approved="yes"> <source>login::register: sujet email : confirmation de votre adresse email</source> <target state="translated">E-Mail Adressen Bestätigung</target> - <jms:reference-file line="21">Notification/Mail/MailRequestEmailConfirmation.php</jms:reference-file> <jms:reference-file line="21">Notification/Mail/MailRequestEmailUpdate.php</jms:reference-file> - </trans-unit> - <trans-unit id="90c4688a719d4a3f762b4d9ec0e17e5389fdf515" resname="login::register::CGU: lire les CGU" approved="yes"> - <source>login::register::CGU: lire les CGU</source> - <target state="translated">die ANB lesen</target> - <jms:reference-file line="40">web/account/access.html.twig</jms:reference-file> - <jms:reference-file line="66">web/account/access.html.twig</jms:reference-file> - <jms:reference-file line="92">web/account/access.html.twig</jms:reference-file> - <jms:reference-file line="117">web/account/access.html.twig</jms:reference-file> - <jms:reference-file line="142">web/account/access.html.twig</jms:reference-file> - <jms:reference-file line="167">web/account/access.html.twig</jms:reference-file> + <jms:reference-file line="21">Notification/Mail/MailRequestEmailConfirmation.php</jms:reference-file> </trans-unit> <trans-unit id="ef4716e235916afcf4b9458248245b4c43f42636" resname="login::register:email: Voici un compte rendu du traitement de vos demandes d'acces :" approved="yes"> <source>login::register:email: Voici un compte rendu du traitement de vos demandes d'acces :</source> @@ -10131,12 +10183,12 @@ <trans-unit id="ace8a8481cf18b9b69c30aa34a65135ed2d75277" resname="login::register:email: Vous avez ete accepte sur les collections suivantes : " approved="yes"> <source>login::register:email: Vous avez ete accepte sur les collections suivantes : </source> <target state="translated">Ihr Zugriff wurde für die folgende Kollektionen genehmigt :</target> - <jms:reference-file line="524">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="525">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="20fc11d974588d0abed50d717ed3174eff70ac83" resname="login::register:email: Vous avez ete refuse sur les collections suivantes : " approved="yes"> <source>login::register:email: Vous avez ete refuse sur les collections suivantes : </source> <target state="translated">Ihr Zugriff wurde für die folgende Kollektionen abgelehnt :</target> - <jms:reference-file line="527">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="528">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="ea4440bd94714e4e85334618405679ae2e36f4f1" resname="mai" approved="yes"> <source>mai</source> @@ -10151,8 +10203,8 @@ <trans-unit id="520593b5cc1a6e328e74717650c586fb1dbfa265" resname="maximum : %maxFileSizeReadable%" approved="yes"> <source>maximum : %maxFileSizeReadable%</source> <target state="translated">Maximum : %maxFileSizeReadable%</target> + <jms:reference-file line="39">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="33">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="36">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="024b6bde2b38cc102db445880d243021b5ed8509" resname="mediatype" approved="yes"> <source>mediatype</source> @@ -10182,16 +10234,16 @@ <trans-unit id="fd1286353570c5703799ba76999323b7c7447b06" resname="no" approved="yes"> <source>no</source> <target state="translated">Nein</target> + <jms:reference-file line="75">web/account/sessions.html.twig</jms:reference-file> <jms:reference-file line="582">web/admin/subdefs.html.twig</jms:reference-file> <jms:reference-file line="14">user/import/view.html.twig</jms:reference-file> <jms:reference-file line="91">web/common/technical_datas.html.twig</jms:reference-file> - <jms:reference-file line="75">web/account/sessions.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6c632badea2664bc707979fac5e58072b6a2feba" resname="no image selected" approved="yes"> <source>no image selected</source> <target state="translated">Kein Bild wurde ausgewählt</target> + <jms:reference-file line="178">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="245">actions/Tools/index.html.twig</jms:reference-file> - <jms:reference-file line="165">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="37031f99ac78580c9f82e04fa237d295ea10ca41" resname="non" approved="yes"> <source>non</source> @@ -10224,7 +10276,7 @@ </trans-unit> <trans-unit id="1758356db21759f7c5a0da9b4dd1db8fd6feab3f" resname="or" approved="yes"> <source>or</source> - <target state="translated">oder</target> + <target state="translated">Or</target> <jms:reference-file line="136">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> <trans-unit id="c63be34306e4a9f792a8ee15b97659affe4ad97e" resname="order-manager::mail: your-order-of"> @@ -10473,9 +10525,9 @@ <jms:reference-file line="117">prod/orders/order_box.html.twig</jms:reference-file> <jms:reference-file line="168">prod/orders/order_box.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="0259e4e17a1f2697d4f4f0108080276a5d7573de" resname="original logo"> + <trans-unit id="0259e4e17a1f2697d4f4f0108080276a5d7573de" resname="original logo" approved="yes"> <source>original logo</source> - <target state="new">original logo</target> + <target state="translated">Originales logo</target> <jms:reference-file line="23">Form/Configuration/PersonalisationLogoFormType.php</jms:reference-file> </trans-unit> <trans-unit id="5898fc860300e228dcd54c0b1045b5fa0dcda502" resname="oui" approved="yes"> @@ -10508,17 +10560,17 @@ <trans-unit id="b634852764694ba6d2738c84f6696db177426f69" resname="panier:: ordre Validation ascendante" approved="yes"> <source>panier:: ordre Validation ascendante</source> <target state="translated">gut bewertet</target> - <jms:reference-file line="339">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="366">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dfd32efef3d8fa4ede00019a8337b38819a0d4de" resname="panier:: ordre Validation descendante" approved="yes"> <source>panier:: ordre Validation descendante</source> <target state="translated">weniger gut bewertet</target> - <jms:reference-file line="340">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="367">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ab89cfcdd590c720551475cb654efb414b3f3850" resname="panier:: ordre du panier" approved="yes"> <source>panier:: ordre du panier</source> <target state="translated">Sammelkorb Reihenfolge</target> - <jms:reference-file line="338">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="365">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="255b0c1fa53afa654ef27c6cfed00c535b904679" resname="panier:: renommer le panier" approved="yes"> <source>panier:: renommer le panier</source> @@ -10601,6 +10653,11 @@ <target state="translated">Datenbank von entferntem Host erstellen</target> <jms:reference-file line="103">web/admin/databases.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="6cb5c0796bbc3bf1d892ba5be804a7e53595ea1d" resname="phraseanet:: Preferences" approved="yes"> + <source>phraseanet:: Preferences</source> + <target state="translated">Einstellungen</target> + <jms:reference-file line="255">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="2751058550fb9a63ba3ffa07152ec68f594dec2a" resname="phraseanet:: Un email vient de vous etre envoye" approved="yes"> <source>phraseanet:: Un email vient de vous etre envoye</source> <target state="translated">Wir haben Ihnen ein E-Mail gesendet</target> @@ -10609,23 +10666,28 @@ <trans-unit id="eb699a47b1a213ea730879af2fd492110b3c1f4e" resname="phraseanet:: a propos" approved="yes"> <source>phraseanet:: a propos</source> <target state="translated">Über</target> - <jms:reference-file line="198">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="293">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="190">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="255">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8039b17c124d6907eb83dc8b705888769f45d82d" resname="phraseanet:: adresse" approved="yes"> <source>phraseanet:: adresse</source> <target state="translated">Adresse</target> <jms:reference-file line="554">web/setup/step2.html.twig</jms:reference-file> + <jms:reference-file line="181">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="31">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="89">web/admin/connected-users.html.twig</jms:reference-file> <jms:reference-file line="7">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="181">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a934108e5aa19f91fafd6eb9ee20b00bc248bab9" resname="phraseanet:: aide" approved="yes"> <source>phraseanet:: aide</source> <target state="translated">Hilfe</target> - <jms:reference-file line="179">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="273">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="170">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="237">web/common/menubar.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="20f45a77e291b513c2fb6c389574ccca61cfb141" resname="phraseanet:: baskets"> + <source>phraseanet:: baskets</source> + <target state="new">phraseanet:: baskets</target> + <jms:reference-file line="21">web/prod/tab_headers.html.twig</jms:reference-file> </trans-unit> <trans-unit id="82f1c4ecdd310877886e675b4a6ccf848f77e34d" resname="phraseanet:: choisir" approved="yes"> <source>phraseanet:: choisir</source> @@ -10647,14 +10709,14 @@ <source>phraseanet:: deconnection</source> <target state="translated">Abmeldung</target> <jms:reference-file line="31">actions/Bridge/wrapper.html.twig</jms:reference-file> - <jms:reference-file line="210">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="264">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="162">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="267">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6a27e232d8975a8ea80916b303f6d1f873186429" resname="phraseanet:: details" approved="yes"> <source>phraseanet:: details</source> <target state="translated">Einzelheiten</target> - <jms:reference-file line="35">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="50">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="35">admin/collection/collection.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8e0c935881fe96023527a3196737821738f5fb44" resname="phraseanet:: hostname" approved="yes"> <source>phraseanet:: hostname</source> @@ -10676,7 +10738,7 @@ <trans-unit id="300f5de4c2878a60aa1332e6a00574106d2bb022" resname="phraseanet:: plugin.workzone" approved="yes"> <source>phraseanet:: plugin.workzone</source> <target state="translated">Plugin WorkZone</target> - <jms:reference-file line="27">web/prod/tab_headers.html.twig</jms:reference-file> + <jms:reference-file line="28">web/prod/tab_headers.html.twig</jms:reference-file> </trans-unit> <trans-unit id="96eedbcdec855436500199e6bb6fe9ab40858b4c" resname="phraseanet:: port" approved="yes"> <source>phraseanet:: port</source> @@ -10693,13 +10755,13 @@ <trans-unit id="02e53272b6740f58947e81b6fd23e62e2ca5c301" resname="phraseanet:: presse-papier" approved="yes"> <source>phraseanet:: presse-papier</source> <target state="translated">Zwischenablage</target> - <jms:reference-file line="260">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="262">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="da1f4cb9f98aef274dbb8f5992dedaf20e91ea71" resname="phraseanet:: preview" approved="yes"> <source>phraseanet:: preview</source> <target state="translated">Voransicht</target> + <jms:reference-file line="259">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="7">prod/actions/printer_default.html.twig</jms:reference-file> - <jms:reference-file line="257">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2baca947f8536e2ff6bab1c45c1876c04706a6a0" resname="phraseanet:: propositions" approved="yes"> <source>phraseanet:: propositions</source> @@ -10710,26 +10772,25 @@ <trans-unit id="51d3e2ae2daff6825c733d3d8e2cc572fca0e0ec" resname="phraseanet:: raccourcis clavier" approved="yes"> <source>phraseanet:: raccourcis clavier</source> <target state="translated">Abkürzungen</target> - <jms:reference-file line="192">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="284">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="181">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="249">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="99a70ecaddc20d59056e5d479c6fa9d0bc113a0e" resname="phraseanet:: sous definition" approved="yes"> <source>phraseanet:: sous definition</source> <target state="translated">Unterauflösung</target> - <jms:reference-file line="93">module/report/filter.php</jms:reference-file> <jms:reference-file line="685">classes/module/report.php</jms:reference-file> - <jms:reference-file line="352">Controller/Report/RootController.php</jms:reference-file> + <jms:reference-file line="93">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="c33ce7e20779d5b34c1c812406e2f22b779a45d0" resname="phraseanet:: thesaurus" approved="yes"> <source>phraseanet:: thesaurus</source> <target state="translated">Thesaurus</target> - <jms:reference-file line="255">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="257">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="15">web/prod/tab_headers.html.twig</jms:reference-file> - <jms:reference-file line="5">web/thesaurus/index.html.twig</jms:reference-file> <jms:reference-file line="5">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="216">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="11">web/thesaurus/load-thesaurus.html.twig</jms:reference-file> <jms:reference-file line="12">web/thesaurus/load-thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="5">web/thesaurus/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b6022bf4291f5e9d7d7051fe6c3d6a6abbd92c1a" resname="phraseanet:: tri" approved="yes"> <source>phraseanet:: tri</source> @@ -10739,17 +10800,17 @@ <trans-unit id="771634fc3ec89c0a08c7666e776fc5db3072f318" resname="phraseanet:: tri par date" approved="yes"> <source>phraseanet:: tri par date</source> <target state="translated">nach Datum sortieren</target> - <jms:reference-file line="231">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="233">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="234">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="235">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="237">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="238">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="89">web/thesaurus/export-topics-dialog.html.twig</jms:reference-file> </trans-unit> <trans-unit id="db34986ff3eb1fd0e90f897a97eaf52ea6708600" resname="phraseanet:: tri par nom" approved="yes"> <source>phraseanet:: tri par nom</source> <target state="translated">alphabetische Sortierung</target> - <jms:reference-file line="240">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="242">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="243">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="244">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="246">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="247">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d775557b6bf79c672ee2efea64f5e282124055a8" resname="phraseanet:: user" approved="yes"> <source>phraseanet:: user</source> @@ -10767,11 +10828,56 @@ <target state="translated">Diese Meldung nicht mehr anzeigen</target> <jms:reference-file line="38">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> + <trans-unit id="245fd09d0518644a6580518f710add762804ca9a" resname="phraseanet::account The account has been deleted" approved="yes"> + <source>phraseanet::account The account has been deleted</source> + <target state="translated">Ihr Benutzerkonto wurde gelöscht</target> + <jms:reference-file line="552">Controller/Root/AccountController.php</jms:reference-file> + </trans-unit> + <trans-unit id="bf7028b694aea3fc9ede5014a9f8b5d617b83b6f" resname="phraseanet::account: << your account can be deleted via admin interface >> " approved="yes"> + <source><![CDATA[phraseanet::account: << your account can be deleted via admin interface >> ]]></source> + <target state="translated">Ihr Benutzerkonto kann nur durch die Administration Anwendung gelöscht werden.</target> + <jms:reference-file line="296">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="047b7994f5960aae108105ad5deadb5bbd72c8fc" resname="phraseanet::account: A confirmation e-mail has been sent. Please follow the instructions contained to continue account deletion" approved="yes"> + <source>phraseanet::account: A confirmation e-mail has been sent. Please follow the instructions contained to continue account deletion</source> + <target state="translated">Eine Bestätigungs-E-Mail wurde gesendet. Bitte folgen Sie den Anweisungen der fortlaufenden Kontolöschung</target> + <jms:reference-file line="360">Controller/Root/AccountController.php</jms:reference-file> + </trans-unit> + <trans-unit id="d0ee9e2c90a05b113b00bf7accd590557bd78528" resname="phraseanet::account: Are you sure you want to delete your account?" approved="yes"> + <source>phraseanet::account: Are you sure you want to delete your account?</source> + <target state="translated">Möchten Sie Ihr Konto wirklich löschen?</target> + <jms:reference-file line="253">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="b98be91d0f8cadb22e52e6217584b7a11370fbb6" resname="phraseanet::account: Delete my account" approved="yes"> + <source>phraseanet::account: Delete my account</source> + <target state="translated">Mein Benutzerkonto löschen</target> + <jms:reference-file line="244">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="b7993903466c49139bfae4c34c63446ff24b1474" resname="phraseanet::account: I am agree to delete my account" approved="yes"> + <source>phraseanet::account: I am agree to delete my account</source> + <target state="translated">Ich bin damit einverstanden, mein Konto zu löschen</target> + <jms:reference-file line="285">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="1b836fda2a5c65abfd05c215d4c4dd66361e4f0f" resname="phraseanet::account: I am agree to delete my account, need confirmation on mail" approved="yes"> + <source>phraseanet::account: I am agree to delete my account, need confirmation on mail</source> + <target state="translated">Ich bin damit einverstanden, mein Konto zu löschen, und ich möchte eine E-Mail Bestätigung</target> + <jms:reference-file line="283">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="121aa945bfcb3565989acc06a1ccda5b36be6bf0" resname="phraseanet::account: List of data to be deleted" approved="yes"> + <source>phraseanet::account: List of data to be deleted</source> + <target state="translated">Liste der zu löschenden Daten</target> + <jms:reference-file line="254">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="8d168955d9cfb26df27fbdcb4f83bbfe78654703" resname="phraseanet::account: My phraseanet account" approved="yes"> + <source>phraseanet::account: My phraseanet account</source> + <target state="translated">Mein Phraseanet Benutzerkonto</target> + <jms:reference-file line="274">web/account/account.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="9628f29074afd5c9bb42bb0b4c896f8bc32c192e" resname="phraseanet::chargement" approved="yes"> <source>phraseanet::chargement</source> <target state="translated">Bitte warten...</target> <jms:reference-file line="47">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="268">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="270">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="77">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="34">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> @@ -10797,7 +10903,14 @@ <trans-unit id="754677fa0aa06c7f10237a728e6f33eaea06d42b" resname="phraseanet::erreur: echec du serveur de mail" approved="yes"> <source>phraseanet::erreur: echec du serveur de mail</source> <target state="translated">Mailserver-Ausfall</target> - <jms:reference-file line="116">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="123">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="344">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="541">Controller/Root/AccountController.php</jms:reference-file> + </trans-unit> + <trans-unit id="60ae97c7ab0fb3923682a785ff0348958e308d4a" resname="phraseanet::error: failed to revoke some user access"> + <source>phraseanet::error: failed to revoke some user access</source> + <target state="new">phraseanet::error: failed to revoke some user access</target> + <jms:reference-file line="530">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="2a5db6bf8928d23c54b13277fa7d5289a1f52744" resname="phraseanet::jours:: dimanche" approved="yes"> <source>phraseanet::jours:: dimanche</source> @@ -10882,12 +10995,12 @@ <trans-unit id="9b218d667572510f2b87bc933b23fe2e1049da91" resname="phraseanet::time:: a" approved="yes"> <source>phraseanet::time:: a</source> <target state="translated">zu</target> - <jms:reference-file line="455">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="487">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="17294973074fcca7917d08a31570996d882ae840" resname="phraseanet::time:: de" approved="yes"> <source>phraseanet::time:: de</source> <target state="translated">von</target> - <jms:reference-file line="449">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="480">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="10188a0f6e181f9c9159f315f47e1349efb5659a" resname="phraseanet::type:: audios" approved="yes"> <source>phraseanet::type:: audios</source> @@ -10897,8 +11010,8 @@ <trans-unit id="255c1bcd520c4025c47b940d1820d1355d0b35e0" resname="phraseanet::type:: documents" approved="yes"> <source>phraseanet::type:: documents</source> <target state="translated">Dokumente</target> - <jms:reference-file line="283">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="28">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="306">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0846fc377cde824859cb98aacb8a3b258bae7c7c" resname="phraseanet::type:: images" approved="yes"> <source>phraseanet::type:: images</source> @@ -10908,7 +11021,7 @@ <trans-unit id="a2dfbbcaf441131e47dcd23530fa98f1155999ff" resname="phraseanet::type:: reportages" approved="yes"> <source>phraseanet::type:: reportages</source> <target state="translated">Berichte</target> - <jms:reference-file line="287">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="311">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="866330f63ad6553c27c7c4a60fd6354d4291e2b3" resname="phraseanet::type:: videos" approved="yes"> <source>phraseanet::type:: videos</source> @@ -10924,16 +11037,6 @@ <source>phraseanet::utilisateurs</source> <target state="translated">Benutzer</target> <jms:reference-file line="66">module/report/filter.php</jms:reference-file> - <jms:reference-file line="152">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="7cf383c0af92a038f4aa629bfc8292876459b08d" resname="phrseanet:: sous definition" approved="yes"> - <source>phrseanet:: sous definition</source> - <target state="translated">Dokumenttyp</target> - <jms:reference-file line="282">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="34">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="52">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="273">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="281">Controller/Report/InformationController.php</jms:reference-file> </trans-unit> <trans-unit id="1aa787fe0cfb373575fc2c0f6f826e7c6dc9fd41" resname="preview" approved="yes"> <source>preview</source> @@ -10943,49 +11046,49 @@ <trans-unit id="fdb5ea435d0e0d2d8e9dc7e2dc925c031406385c" resname="preview:: Description" approved="yes"> <source>preview:: Description</source> <target state="translated">Beschreibung</target> - <jms:reference-file line="793">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="884">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="424597224c5d2322b6e8db99037234f7b2641de0" resname="preview:: Historique" approved="yes"> <source>preview:: Historique</source> <target state="translated">Historie</target> - <jms:reference-file line="794">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="885">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="74e09022ffbf0d295142654902e9d7a007f209a5" resname="preview:: Popularite" approved="yes"> <source>preview:: Popularite</source> <target state="translated">Beliebtheit</target> - <jms:reference-file line="796">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="887">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f9c61385964471a1171066ba2ba3622a98ffb84b" resname="preview:: arreter le diaporama" approved="yes"> <source>preview:: arreter le diaporama</source> <target state="translated">stoppen</target> <jms:reference-file line="62">prod/preview/basket_train.html.twig</jms:reference-file> - <jms:reference-file line="10">prod/preview/result_train_options.html.twig</jms:reference-file> - <jms:reference-file line="96">prod/preview/reg_train.html.twig</jms:reference-file> - <jms:reference-file line="60">prod/preview/feed_train.html.twig</jms:reference-file> <jms:reference-file line="56">prod/preview/result_train.html.twig</jms:reference-file> + <jms:reference-file line="96">prod/preview/reg_train.html.twig</jms:reference-file> + <jms:reference-file line="10">prod/preview/result_train_options.html.twig</jms:reference-file> + <jms:reference-file line="60">prod/preview/feed_train.html.twig</jms:reference-file> </trans-unit> <trans-unit id="77a36033b8fdccc947d744ae8e3120c7d8dafa46" resname="preview:: demarrer le diaporama" approved="yes"> <source>preview:: demarrer le diaporama</source> <target state="translated">Dia-Schau</target> <jms:reference-file line="60">prod/preview/basket_train.html.twig</jms:reference-file> - <jms:reference-file line="8">prod/preview/result_train_options.html.twig</jms:reference-file> - <jms:reference-file line="94">prod/preview/reg_train.html.twig</jms:reference-file> - <jms:reference-file line="58">prod/preview/feed_train.html.twig</jms:reference-file> <jms:reference-file line="54">prod/preview/result_train.html.twig</jms:reference-file> + <jms:reference-file line="94">prod/preview/reg_train.html.twig</jms:reference-file> + <jms:reference-file line="8">prod/preview/result_train_options.html.twig</jms:reference-file> + <jms:reference-file line="58">prod/preview/feed_train.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a5cc2b2cd9b0421d131185277e9005d8e616582c" resname="preview::date"> <source>preview::date</source> <target state="new">preview::date</target> - <jms:reference-file line="74">prod/preview/popularity.html.twig</jms:reference-file> - <jms:reference-file line="88">prod/preview/popularity.html.twig</jms:reference-file> - <jms:reference-file line="124">prod/preview/popularity.html.twig</jms:reference-file> - <jms:reference-file line="138">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="83">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="98">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="134">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="148">prod/preview/popularity.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0cbda44654b686e66bae8ec061748385d8b13de0" resname="preview::downloads"> <source>preview::downloads</source> <target state="new">preview::downloads</target> - <jms:reference-file line="125">prod/preview/popularity.html.twig</jms:reference-file> - <jms:reference-file line="151">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="135">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="161">prod/preview/popularity.html.twig</jms:reference-file> </trans-unit> <trans-unit id="688566b835a97bcfbbdb83fb85b59c7c2aa5893d" resname="preview::statistiques de telechargement" approved="yes"> <source>preview::statistiques de telechargement</source> @@ -11000,15 +11103,15 @@ <trans-unit id="b130a62ee72757a562af1398e01cd0fc5aad3d30" resname="preview::visualisation"> <source>preview::visualisation</source> <target state="new">preview::visualisation</target> - <jms:reference-file line="75">prod/preview/popularity.html.twig</jms:reference-file> - <jms:reference-file line="101">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="84">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="111">prod/preview/popularity.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7ac5447a13806c0a2e2602b51644729fe8464e0e" resname="previewLinkLabel" approved="yes"> <source>previewLinkLabel</source> <target state="translated">ansichten</target> - <jms:reference-file line="45">prod/Share/record.html.twig</jms:reference-file> - <jms:reference-file line="55">prod/Share/record.html.twig</jms:reference-file> - <jms:reference-file line="71">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="51">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="61">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="77">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d369ca0ef132e64f45e4cef5bfa2aaff9104a276" resname="print:: description"> <source>print:: description</source> @@ -11048,20 +11151,20 @@ <trans-unit id="98ab0e2a8cf4a7c9f6952361e6c750a8009b70a5" resname="prive" approved="yes"> <source>prive</source> <target state="translated">privat</target> - <jms:reference-file line="91">Bridge/Youtube/upload.html.twig</jms:reference-file> <jms:reference-file line="79">Bridge/Dailymotion/upload.html.twig</jms:reference-file> + <jms:reference-file line="91">Bridge/Youtube/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="039db3240f9c47314f5b8f05835c54795f45324e" resname="privé" approved="yes"> <source>privé</source> <target state="translated">privat</target> - <jms:reference-file line="60">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="60">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="60">Bridge/Youtube/video_modify.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6dd8429cc900b9460f1e9d4be6155a6ee1b6de42" resname="processing" approved="yes"> <source>processing</source> <target state="translated">verarbeitend</target> + <jms:reference-file line="179">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="246">actions/Tools/index.html.twig</jms:reference-file> - <jms:reference-file line="166">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f63658cad863dee4a5876278e836472380183ade" resname="prod::Les enregistrements ne provienent pas tous de la meme base et ne peuvent donc etre traites ensemble" approved="yes"> <source>prod::Les enregistrements ne provienent pas tous de la meme base et ne peuvent donc etre traites ensemble</source> @@ -11074,6 +11177,16 @@ <target state="translated">Sie haben keine Berechtigung, diesen Vorgang auf diese Dokumente durchzuführen</target> <jms:reference-file line="35">Controller/Prod/MoveCollectionController.php</jms:reference-file> </trans-unit> + <trans-unit id="ef27ad74061e0e15683e84dec7f5559f7797637f" resname="prod::advancesearch:tooltips:datefield_restriction_explanation" approved="yes"> + <source>prod::advancesearch:tooltips:datefield_restriction_explanation</source> + <target state="translated">Suchergebnisse auf Datum beschränken</target> + <jms:reference-file line="463">web/prod/index.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="fa55093d5fb1dfe235a46f8b4fecad5d36d3f250" resname="prod::advancesearch:tooltips:field_restriction_explanation"> + <source>prod::advancesearch:tooltips:field_restriction_explanation</source> + <target state="new">prod::advancesearch:tooltips:field_restriction_explanation</target> + <jms:reference-file line="408">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="8b8698f202f815bbde691f54c7d51b691bef0263" resname="prod::collection deplacer egalement les documents rattaches a ce(s) regroupement(s)" approved="yes"> <source>prod::collection deplacer egalement les documents rattaches a ce(s) regroupement(s)</source> <target state="translated">Möchten Sie auch die Dokumente, die mit diesen Berichten verknüpft sind, verschieben?</target> @@ -11082,7 +11195,7 @@ <trans-unit id="063431f63e0c593c52fffb55f390d1d9c216ee4a" resname="prod::edit: Impossible d'editer simultanement des documents provenant de bases differentes" approved="yes"> <source>prod::edit: Impossible d'editer simultanement des documents provenant de bases differentes</source> <target state="translated">Es ist nicht möglich, Dokumente die aus verschiedenen Bilddatenbanken stammen gleichzeitig zu bearbeiten</target> - <jms:reference-file line="404">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="406">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c1978319cea9a232bb3076453e217df0781ef7a6" resname="prod::editing valeurs heterogenes, choisir 'remplacer', 'ajouter' ou 'annuler'" approved="yes"> <source>prod::editing valeurs heterogenes, choisir 'remplacer', 'ajouter' ou 'annuler'</source> @@ -11092,32 +11205,32 @@ <trans-unit id="b4647a860e97f9b173747e8736ae36630631fbb4" resname="prod::editing: %not_actionable% documents ne peuvent etre edites car vos droits sont induffisants" approved="yes"> <source>prod::editing: %not_actionable% documents ne peuvent etre edites car vos droits sont induffisants</source> <target state="translated">%not_actionable% Dokumente können nicht bearbeitet werden, da Sie keine Rechte darauf haben</target> - <jms:reference-file line="414">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="416">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e58fe53260dcb47548d687b0aac89a231f8fd349" resname="prod::editing: 1 document ne peut etre edite car vos droits sont induffisants" approved="yes"> <source>prod::editing: 1 document ne peut etre edite car vos droits sont induffisants</source> <target state="translated">Keine Bearbeitung möglich. Sie haben keinen Zugriff auf die Dokumente</target> - <jms:reference-file line="416">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="418">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d06429358cfa7814d995cffec515505b4babbdf3" resname="prod::editing: aucun documents ne peuvent etre edites car vos droits sont induffisants" approved="yes"> <source>prod::editing: aucun documents ne peuvent etre edites car vos droits sont induffisants</source> <target state="translated">Es können keine Dokumente bearbeitet werden, da Sie keine Berechtigung für das Bearbeiten haben</target> - <jms:reference-file line="406">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="408">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="93a5e45cf78591b66011a369a41a9faae6439da0" resname="prod::editing: modeles de fiches" approved="yes"> <source>prod::editing: modeles de fiches</source> <target state="translated">Vorlage</target> - <jms:reference-file line="259">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="261">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="43cef7ae638274317ae80eeb9d2207fbd8c60889" resname="prod::editing: rechercher-remplacer" approved="yes"> <source>prod::editing: rechercher-remplacer</source> <target state="translated">suchen / ersetzen</target> - <jms:reference-file line="258">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="260">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1a368232d8ba90d4b168be2a328b32b2889a909c" resname="prod::editing: valider ou annuler les modifications" approved="yes"> <source>prod::editing: valider ou annuler les modifications</source> <target state="translated">Änderungen bestätigen oder abbrechen</target> - <jms:reference-file line="389">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="391">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f5b80c50fa70208435fd889b73915ca753efabd3" resname="prod::editing::annulation: abandonner les modification ?" approved="yes"> <source>prod::editing::annulation: abandonner les modification ?</source> @@ -11132,108 +11245,83 @@ <trans-unit id="be0abffee86e7b309d3ff31af3ab46a7e3927914" resname="prod::editing::replace: remplacer dans le champ" approved="yes"> <source>prod::editing::replace: remplacer dans le champ</source> <target state="translated">In dem Feld ersetzen</target> - <jms:reference-file line="279">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="281">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5abac240c44453bcb822102437d5b2e95115dbe2" resname="prod::editing::replace: remplacer dans tous les champs" approved="yes"> <source>prod::editing::replace: remplacer dans tous les champs</source> <target state="translated">In allen Feldern ersetzen</target> - <jms:reference-file line="282">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="284">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7ba84a24ce43f7192d766a7afcda8d7de22ba760" resname="prod::editing:indexation en cours" approved="yes"> <source>prod::editing:indexation en cours</source> <target state="translated">Indexierung in Vorbereitung</target> - <jms:reference-file line="376">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="378">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f2dbeebb5642463cc9d946ac5fef8b54e3ef9c8d" resname="prod::editing:remplace: chaine remplacante" approved="yes"> <source>prod::editing:remplace: chaine remplacante</source> <target state="translated">ersetzen durch</target> - <jms:reference-file line="296">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="298">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2d8fd9918eb060abef1aff6634ede1135c2f898a" resname="prod::editing:remplace: options de remplacement" approved="yes"> <source>prod::editing:remplace: options de remplacement</source> <target state="translated">Optionen</target> - <jms:reference-file line="302">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="304">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9b33f1b01e6908366fc4b3f960d1869ccf1ea6a2" resname="prod::editing:remplace::option : utiliser une expression reguliere" approved="yes"> <source>prod::editing:remplace::option : utiliser une expression reguliere</source> <target state="translated">regulärer Ausdruck</target> - <jms:reference-file line="305">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="307">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5649e43cc87b1330e3a5ad75b54c6096561e00cd" resname="prod::editing:remplace::option la valeur du cahmp doit etre exacte" approved="yes"> <source>prod::editing:remplace::option la valeur du cahmp doit etre exacte</source> <target state="translated">vollständiges Feld</target> - <jms:reference-file line="328">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="330">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cb4a27dc95b4aaf582361724327b0937991b6884" resname="prod::editing:remplace::option la valeur est comprise dans le champ" approved="yes"> <source>prod::editing:remplace::option la valeur est comprise dans le champ</source> <target state="translated">im Feld gehalten</target> - <jms:reference-file line="331">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="333">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5f18e2b78a5091db78a4adbd14e912959070ebd5" resname="prod::editing:remplace::option respecter la casse" approved="yes"> <source>prod::editing:remplace::option respecter la casse</source> <target state="translated">Gross- und Kleinschreibung unterschieden</target> - <jms:reference-file line="334">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="336">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="27a3b22c9b8b1abb910147d1d3a556d038f0ab50" resname="prod::editing:remplace::option: remplacer toutes les occurences" approved="yes"> <source>prod::editing:remplace::option: remplacer toutes les occurences</source> <target state="translated">alles ersetzen</target> - <jms:reference-file line="321">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="323">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a77e26d6710709aca37c36887252c53bc238ec43" resname="prod::editing:remplace::option: rester insensible a la casse" approved="yes"> <source>prod::editing:remplace::option: rester insensible a la casse</source> <target state="translated">Gross- und Kleinschreibung nicht unterschieden</target> - <jms:reference-file line="324">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="326">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dd5e4eca9dfa743d305cd038b0c53b0470c71c61" resname="prod::editing:replace: chaine a rechercher" approved="yes"> <source>prod::editing:replace: chaine a rechercher</source> <target state="translated">Suchen</target> - <jms:reference-file line="290">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="292">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cb08c63b1c016e31a255a38795c8e4cb66b0e66e" resname="prod::facet:base_label" approved="yes"> <source>prod::facet:base_label</source> <target state="translated">Datenbanken</target> - <jms:reference-file line="259">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="260">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="36fa870bac03b1a7c83f2b7030bf93ed4718e0a7" resname="prod::facet:collection_label" approved="yes"> <source>prod::facet:collection_label</source> <target state="translated">Kollektionen</target> - <jms:reference-file line="264">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="267">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="12988153991e94fd6fc58934903504b0bf03c30a" resname="prod::facet:doctype_label" approved="yes"> <source>prod::facet:doctype_label</source> <target state="translated">Dokumenttyp</target> - <jms:reference-file line="269">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="274">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="2a4d65f9a1aaeec92617d3d5dc3ef0167a019e82" resname="prod::recherche: Attention : la liste des bases selectionnees pour la recherche a ete changee." approved="yes"> <source>prod::recherche: Attention : la liste des bases selectionnees pour la recherche a ete changee.</source> <target state="translated">Achtung : Die ausgewählte Datenbanken Liste für die Suche wurde verändert</target> <jms:reference-file line="33">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> - <trans-unit id="93e6180a1f0f64a4dfc76fd640c4dc0049be00fc" resname="prod::setup: download gabari"> - <source>prod::setup: download gabari</source> - <target state="new">prod::setup: download gabari</target> - <jms:reference-file line="10">web/admin/personalisation_logo.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="7751e538494c3f8ed3f5518422715b60b28d306a" resname="prod::setup: error text dimension"> - <source>prod::setup: error text dimension</source> - <target state="new">prod::setup: error text dimension</target> - <jms:reference-file line="41">web/admin/personalisation_logo.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="a9f8a6a629117e38936d41b34cbb3dbcc13353fa" resname="prod::setup: error text file type"> - <source>prod::setup: error text file type</source> - <target state="new">prod::setup: error text file type</target> - <jms:reference-file line="42">web/admin/personalisation_logo.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="7950ac5291b8ffafd5cfa55c429cada508a2fdd1" resname="prod::setup: help text"> - <source>prod::setup: help text</source> - <target state="new">prod::setup: help text</target> - <jms:reference-file line="16">web/admin/personalisation_logo.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="acd399272f9331ebe8c669752339051f920a4084" resname="prod::setup: select file"> - <source>prod::setup: select file</source> - <target state="new">prod::setup: select file</target> - <jms:reference-file line="29">web/admin/personalisation_logo.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="df147d680e0fab108bc7a6a1c878c55428ecd3ea" resname="prod::thesaurusTab:candidats" approved="yes"> <source>prod::thesaurusTab:candidats</source> <target state="translated">mögliche Begriffe</target> @@ -11360,24 +11448,24 @@ <jms:reference-file line="70">Controller/Prod/ToolsController.php</jms:reference-file> <jms:reference-file line="41">Controller/Prod/ShareController.php</jms:reference-file> </trans-unit> - <trans-unit id="501adfe6ea4c900a76df9f3c1d55834e6db5b9a9" resname="prod:app trash: also-move-record"> + <trans-unit id="501adfe6ea4c900a76df9f3c1d55834e6db5b9a9" resname="prod:app trash: also-move-record" approved="yes"> <source>prod:app trash: also-move-record</source> - <target state="new">prod:app trash: also-move-record</target> + <target state="translated">Datensätze auch in den Papierkorb verschieben, die mit Berichten verknüpft sind</target> <jms:reference-file line="28">prod/actions/delete_records_confirm.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="9dd9daa2dc851f005bbcb2ce0ea0c8de6b86ad52" resname="prod:app trash: record-delete"> + <trans-unit id="9dd9daa2dc851f005bbcb2ce0ea0c8de6b86ad52" resname="prod:app trash: record-delete" approved="yes"> <source>prod:app trash: record-delete</source> - <target state="new">prod:app trash: record-delete</target> + <target state="translated">Datensatz (¨e) dauerhaft gelöscht!</target> <jms:reference-file line="40">prod/actions/delete_records_confirm.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="9dcc690970b62ae5d2f6e2bf25213650f69d44ea" resname="prod:app trash: record-move-to-trash"> + <trans-unit id="9dcc690970b62ae5d2f6e2bf25213650f69d44ea" resname="prod:app trash: record-move-to-trash" approved="yes"> <source>prod:app trash: record-move-to-trash</source> - <target state="new">prod:app trash: record-move-to-trash</target> + <target state="translated">Datensatz (¨e) in den Papierkorb verschoben</target> <jms:reference-file line="23">prod/actions/delete_records_confirm.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="054aec17d6db5d5ab74b6bf4440acfd5a9fdc09d" resname="prod:app trash: title-trash"> + <trans-unit id="054aec17d6db5d5ab74b6bf4440acfd5a9fdc09d" resname="prod:app trash: title-trash" approved="yes"> <source>prod:app trash: title-trash</source> - <target state="new">prod:app trash: title-trash</target> + <target state="translated">Datensatz (¨e) In den Papierkorb verschieben</target> <jms:reference-file line="44">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> <trans-unit id="d75ccc6722ace63fbdb430baa7a12dc93d13ff74" resname="prod:edit: chapters"> @@ -11428,20 +11516,15 @@ <trans-unit id="a938566e7b60b6fc2e197259cf2f2b2f42656d17" resname="prod:push: delete selection"> <source>prod:push: delete selection</source> <target state="new">prod:push: delete selection</target> - <jms:reference-file line="217">prod/actions/Push.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="2b9af3311e90dc6acc56f5dbb15c859f525a4d0e" resname="prod:push:save list"> - <source>prod:push:save list</source> - <target state="new">prod:push:save list</target> - <jms:reference-file line="249">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="223">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="61c9b2b17db77a27841bbeeabff923448b0f6388" resname="public" approved="yes"> <source>public</source> <target state="translated">öffentlich</target> - <jms:reference-file line="95">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="64">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="83">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="64">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="95">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="64">Bridge/Youtube/video_modify.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9647ab4603346566d2218fda731606baafcbe408" resname="publication : autheur" approved="yes"> <source>publication : autheur</source> @@ -11509,37 +11592,67 @@ <trans-unit id="80d5c6fb17d995644a96db043efbec28278893eb" resname="raccourci :: a propos des raccourcis claviers" approved="yes"> <source>raccourci :: a propos des raccourcis claviers</source> <target state="translated">Über Abkürzungen</target> - <jms:reference-file line="522">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="613">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a7b6e3e14f736db30984625d4a84be582f2f16ac" resname="raccourcis :: ne plus montrer cette aide" approved="yes"> <source>raccourcis :: ne plus montrer cette aide</source> <target state="translated">diese Hilfe nicht mehr anzeigen</target> - <jms:reference-file line="567">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="658">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1d740fd7fe206b5e6e57bef828e876a1bc484dd5" resname="rafraichir" approved="yes"> <source>rafraichir</source> <target state="translated">aktualisieren</target> <jms:reference-file line="89">prod/WorkZone/Story.html.twig</jms:reference-file> - <jms:reference-file line="94">prod/WorkZone/Basket.html.twig</jms:reference-file> <jms:reference-file line="3">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="94">prod/WorkZone/Basket.html.twig</jms:reference-file> <jms:reference-file line="17">prod/results/feeds.html.twig</jms:reference-file> <jms:reference-file line="22">prod/results/feeds.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="aa9ad912bb5495802feb4738958c197a8e2de1dc" resname="rechercher dans tous les champs" approved="yes"> - <source>rechercher dans tous les champs</source> - <target state="translated">Alle Felder</target> - <jms:reference-file line="377">web/prod/index.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="0dea865dcd106d77e52ea8bffe6f87e2add0ac53" resname="recordtype" approved="yes"> <source>recordtype</source> <target state="translated">Datensatz Typ</target> - <jms:reference-file line="16">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="19">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="df1f4db3d6016bf2b31805b0a3038df4498fc2ee" resname="regeneration of sub-definitions" approved="yes"> <source>regeneration of sub-definitions</source> <target state="translated">Neuerstellung von Unterauflösungen</target> <jms:reference-file line="29">actions/Tools/index.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="c8c491587b0dfb9bab18afb7694a0bb14665e7de" resname="registration:collection.accepted"> + <source>registration:collection.accepted</source> + <target state="new">registration:collection.accepted</target> + <jms:reference-file line="64">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="8feaff2c61f3573c1aaaaa16de3df1ef8758f28f" resname="registration:collection.active"> + <source>registration:collection.active</source> + <target state="new">registration:collection.active</target> + <jms:reference-file line="52">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="9a5d8160431e85e0ecbe21dfcb2017543a8f7268" resname="registration:collection.in-time"> + <source>registration:collection.in-time</source> + <target state="new">registration:collection.in-time</target> + <jms:reference-file line="56">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="8e154460c434c2beb7dc268aac77c5b8b52c4abb" resname="registration:collection.out-dated"> + <source>registration:collection.out-dated</source> + <target state="new">registration:collection.out-dated</target> + <jms:reference-file line="58">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="ec1982774689f302e8d8549a12d99a3e41525648" resname="registration:collection.pending"> + <source>registration:collection.pending</source> + <target state="new">registration:collection.pending</target> + <jms:reference-file line="60">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="fcaffe2361d5da4c38aaf4c02d2b944c29db7da1" resname="registration:collection.registrable"> + <source>registration:collection.registrable</source> + <target state="new">registration:collection.registrable</target> + <jms:reference-file line="54">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="7abb365333a7902838022d4bfc560f41323abb7c" resname="registration:collection.rejected"> + <source>registration:collection.rejected</source> + <target state="new">registration:collection.rejected</target> + <jms:reference-file line="62">web/account/access.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="796a49ee2759063c6ffcb69cb54bc55b92020af5" resname="reponses:: %total% Resultats" approved="yes"> <source>reponses:: %total% Resultats</source> <target state="translated">%total% Ergebnisse</target> @@ -11553,22 +11666,24 @@ <trans-unit id="04e3a887b050c987ecd5ed86b775e09a92ccddd6" resname="reponses:: images par pages :" approved="yes"> <source>reponses:: images par pages :</source> <target state="translated">Suchergebnisse nach Seite</target> - <jms:reference-file line="659">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="750">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5aeb7a518f4ac89f3db531fc3e4efb7dd5e11182" resname="reponses:: mode liste" approved="yes"> <source>reponses:: mode liste</source> <target state="translated">Liste</target> - <jms:reference-file line="612">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="703">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f3f71ef37b35e713c5dcea151d066ec447e95579" resname="reponses:: mode vignettes" approved="yes"> <source>reponses:: mode vignettes</source> <target state="translated">Miniaturansichten</target> - <jms:reference-file line="608">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="699">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cf0636b6d894370de0b8a9d6f2dceb07ad46f800" resname="reponses:: partager" approved="yes"> <source>reponses:: partager</source> <target state="translated">Teilen</target> - <jms:reference-file line="140">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="150">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="151">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="152">prod/results/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4e25e3a99801b881f73fe940cac50b0fc636d6cf" resname="reponses:: selectionner rien" approved="yes"> <source>reponses:: selectionner rien</source> @@ -11583,115 +11698,55 @@ <trans-unit id="d3b5a64da3a08e4a63a641fb4164844ecdb67a2f" resname="reponses:: taille des images :" approved="yes"> <source>reponses:: taille des images :</source> <target state="translated">Miniaturansichtengrösse</target> - <jms:reference-file line="666">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="757">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e32952b1a087c6ba28e13097e0ebb5395c2f2105" resname="reponses::document sans titre" approved="yes"> <source>reponses::document sans titre</source> <target state="translated">ohne Titel</target> - <jms:reference-file line="934">classes/record/adapter.php</jms:reference-file> + <jms:reference-file line="938">classes/record/adapter.php</jms:reference-file> </trans-unit> - <trans-unit id="e1fd199951b7475ef26b375b42056b7619abdfb9" resname="report :: aucun resultat trouve" approved="yes"> - <source>report :: aucun resultat trouve</source> - <target state="translated">keine Filter</target> - <jms:reference-file line="115">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="dde6a50f70eb651f8e8b72e4d19c826ed474f62f" resname="report :: configurer le tableau" approved="yes"> - <source>report :: configurer le tableau</source> - <target state="translated">Tabelle konfigurieren</target> - <jms:reference-file line="15">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="4b5e07be61a6dbe3f4b635225bed3513f93472a5" resname="report :: filtrer" approved="yes"> - <source>report :: filtrer</source> - <target state="translated">filter</target> - <jms:reference-file line="62">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="f9891f9435be957f4dd0901856d8cb2e49e48f9f" resname="report :: grouper" approved="yes"> - <source>report :: grouper</source> - <target state="translated">Gruppe</target> - <jms:reference-file line="66">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="089ca06ac338646a81d97f218405812b04d88182" resname="report :: imprimer le tableau" approved="yes"> - <source>report :: imprimer le tableau</source> - <target state="translated">Tabelle drucken</target> - <jms:reference-file line="18">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="1c2a928659706b02208f44cfe76294f5a3c3e788" resname="report:: (connexions) Globales" approved="yes"> - <source>report:: (connexions) Globales</source> - <target state="translated">Allgemeine</target> - <jms:reference-file line="87">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="daaac8fc71cfa4f27496b88c286789c66aeb104a" resname="report:: (connexions) OS et navigateurs" approved="yes"> - <source>report:: (connexions) OS et navigateurs</source> - <target state="translated">pro Plattform und Webbrowser</target> - <jms:reference-file line="91">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="8a190fa937cca670cc7ae51eb822dd4e7adffc03" resname="report:: (connexions) Par utilisateurs" approved="yes"> - <source>report:: (connexions) Par utilisateurs</source> - <target state="translated">pro Benutzer</target> - <jms:reference-file line="71">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="68ed1e7f53fb514c611feeb9849a396352d28fd2" resname="report:: (telechargement) Global" approved="yes"> - <source>report:: (telechargement) Global</source> - <target state="translated">Allgemeine</target> - <jms:reference-file line="135">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="9f849cd5fb7a65d33e1ec022c8f0e28cd25c63d3" resname="report:: (telechargement) Par documents sur la base" approved="yes"> - <source>report:: (telechargement) Par documents sur la base</source> - <target state="translated">pro Dokument, auf der Datenbank</target> - <jms:reference-file line="143">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="de74bbae455a47c9404da8d0883534456eddd1e5" resname="report:: (telechargement) Par jours base par base" approved="yes"> - <source>report:: (telechargement) Par jours base par base</source> - <target state="translated">täglich</target> - <jms:reference-file line="139">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="0e0b1a1001cc76b95ef11cd1c208c87a03743b4b" resname="report:: 1 - Periode" approved="yes"> + <trans-unit id="0e0b1a1001cc76b95ef11cd1c208c87a03743b4b" resname="report:: 1 - Periode"> <source>report:: 1 - Periode</source> - <target state="translated">1 - Zeit</target> - <jms:reference-file line="4">web/report/form_date_and_base.html.twig</jms:reference-file> + <target state="needs-translation">Zeit</target> + <jms:reference-file line="3">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="dff8c22d33c5488a01a5834535dff916fe5d6487" resname="report:: 2 - Bases" approved="yes"> - <source>report:: 2 - Bases</source> - <target state="translated">2 - Datenbanken</target> - <jms:reference-file line="19">web/report/form_date_and_base.html.twig</jms:reference-file> + <trans-unit id="87cb22fb5598f714cf44b13ef0d2fcfa0fe1e01a" resname="report:: 2 - Base" approved="yes"> + <source>report:: 2 - Base</source> + <target state="translated">Datenbank</target> + <jms:reference-file line="26">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="a807c0ef7e32813081616c65bbc134acdf30666b" resname="report:: 3 - Type de report" approved="yes"> + <trans-unit id="49e279e2253aaf0d8aebad389584f5c7c77e5a78" resname="report:: 3 - Collections" approved="yes"> + <source>report:: 3 - Collections</source> + <target state="translated">Kollektionen</target> + <jms:reference-file line="39">web/report/form_date_and_base.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="a807c0ef7e32813081616c65bbc134acdf30666b" resname="report:: 3 - Type de report"> <source>report:: 3 - Type de report</source> - <target state="translated">3 - Bericht Typ</target> - <jms:reference-file line="67">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="115">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="171">web/report/report_layout_child.html.twig</jms:reference-file> + <target state="needs-translation">Bericht Typ</target> + <jms:reference-file line="11">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="36">web/report/report_layout_child.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="bbf54f30e0791db4dc06243d939468640ddb6cc5" resname="report:: 4 - Fields" approved="yes"> + <source>report:: 4 - Fields</source> + <target state="translated">Felder</target> + <jms:reference-file line="62">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="67272ff4fb66e47f6a5e55c7171e994c69b6f162" resname="report:: Au (date)" approved="yes"> <source>report:: Au (date)</source> <target state="translated">bis</target> - <jms:reference-file line="12">web/report/form_date_and_base.html.twig</jms:reference-file> - <jms:reference-file line="9">web/report/ajax_report_dashboard.html.twig</jms:reference-file> + <jms:reference-file line="15">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> <trans-unit id="10f8b6e84219c04ef9961e1710b17e0904746fab" resname="report:: Connexion" approved="yes"> <source>report:: Connexion</source> <target state="translated">Verbindungen</target> <jms:reference-file line="666">classes/module/report.php</jms:reference-file> - <jms:reference-file line="8">web/report/report_layout.html.twig</jms:reference-file> - <jms:reference-file line="59">web/report/ajax_data_content.html.twig</jms:reference-file> - <jms:reference-file line="108">web/report/ajax_data_content.html.twig</jms:reference-file> - <jms:reference-file line="26">web/report/all_content.html.twig</jms:reference-file> - <jms:reference-file line="8">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="13">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="17">web/report/chart.html.twig</jms:reference-file> - <jms:reference-file line="43">web/report/chart.html.twig</jms:reference-file> + <jms:reference-file line="9">web/report/report_layout.html.twig</jms:reference-file> + <jms:reference-file line="25">web/report/all_content.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="70a2e2ecaac5729f9c103110e2f37f915c722526" resname="report:: Cumul telechargements & connexions" approved="yes"> - <source><![CDATA[report:: Cumul telechargements & connexions]]></source> - <target state="translated"><![CDATA[Downloads & Verbindungen]]></target> - <jms:reference-file line="25">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="6543d1226df7dd63e1df3071abb9e42be332413a" resname="report:: Dashboard" approved="yes"> - <source>report:: Dashboard</source> - <target state="translated">Dashboard</target> - <jms:reference-file line="7">web/report/report_layout.html.twig</jms:reference-file> - <jms:reference-file line="2">web/report/ajax_dashboard_content.html.twig</jms:reference-file> - <jms:reference-file line="21">web/report/ajax_report_dashboard.html.twig</jms:reference-file> + <trans-unit id="afa9685c95f7dff29cb2ad048da368c6e3dbadbc" resname="report:: Databox content" approved="yes"> + <source>report:: Databox content</source> + <target state="translated">Databox Inhalt</target> + <jms:reference-file line="11">web/report/report_layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="afa00f7f0e9cf982c242e1a53235360b4aac707d" resname="report:: Detail des connexions" approved="yes"> <source>report:: Detail des connexions</source> @@ -11706,30 +11761,17 @@ <trans-unit id="b00438fba3b211fc47deec5e6ccae27ef9d7c216" resname="report:: Du (date)" approved="yes"> <source>report:: Du (date)</source> <target state="translated">von</target> - <jms:reference-file line="6">web/report/form_date_and_base.html.twig</jms:reference-file> - <jms:reference-file line="5">web/report/ajax_report_dashboard.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="de563e5406946f25c4f6cb63311dbea280ef5cc5" resname="report:: Enlever le filtre" approved="yes"> - <source>report:: Enlever le filtre</source> - <target state="translated">Titel</target> - <jms:reference-file line="5">web/report/colFilter.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="7d66db3bd34ddc505fd6721d4ffabfa19c4f005f" resname="report:: Grouper par" approved="yes"> - <source>report:: Grouper par</source> - <target state="translated">von</target> - <jms:reference-file line="76">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="119">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="5">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7f326bdbbc7dec4c7f61a0e4b22465d0479c0d64" resname="report:: Heures" approved="yes"> <source>report:: Heures</source> <target state="translated">Stunden</target> - <jms:reference-file line="33">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="32">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5ae2efd275a14a59f28c95f331168286f11197cf" resname="report:: IP" approved="yes"> <source>report:: IP</source> <target state="translated">IP</target> <jms:reference-file line="72">module/report/filter.php</jms:reference-file> - <jms:reference-file line="154">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="6b4276e87d8e054cabe49ed3b9bf7ee9f6599cba" resname="report:: Information sur l'enregistrement numero %number%" approved="yes"> <source>report:: Information sur l'enregistrement numero %number%</source> @@ -11751,97 +11793,37 @@ <target state="translated">Information über die Benutzer entsprechend %critere%</target> <jms:reference-file line="415">module/report/nav.php</jms:reference-file> </trans-unit> - <trans-unit id="449ab664cb3a86585e7942d12693cfe75ca80e9b" resname="report:: Les questions les plus posees" approved="yes"> - <source>report:: Les questions les plus posees</source> - <target state="translated">Meist gestellten Fragen</target> - <jms:reference-file line="181">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="67">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> + <trans-unit id="d61b0b1a419a5b37db8576e1072307a5503dba79" resname="report:: Phraseanet report" approved="yes"> + <source>report:: Phraseanet report</source> + <target state="translated">Phraseanet Report</target> + <jms:reference-file line="6">web/report/report_layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a5c2d01ec9cd2716cb44a02ba1851d82de40aa8a" resname="report:: Plateforme" approved="yes"> <source>report:: Plateforme</source> <target state="translated">Plattform</target> <jms:reference-file line="160">module/report/nav.php</jms:reference-file> </trans-unit> - <trans-unit id="7745037fc8189172f2a349bed3b123b9ac4222df" resname="report:: Utilisateurs les plus actifs" approved="yes"> - <source>report:: Utilisateurs les plus actifs</source> - <target state="translated">Aktivsten Benutzer</target> - <jms:reference-file line="31">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="37">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="43">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="49">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="89e1f53ec411b155207ca8489388aafffe430392" resname="report:: Volumetrie des questions posees sur %home_title%" approved="yes"> - <source>report:: Volumetrie des questions posees sur %home_title%</source> - <target state="translated">Meist Suchabfragen in %home_title%</target> - <jms:reference-file line="41">web/report/dashboard_macro.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="0deee30b968da91f95a0daf3b988fb8613bcf4f5" resname="report:: activite" approved="yes"> <source>report:: activite</source> <target state="translated">Aktivität</target> <jms:reference-file line="672">classes/module/report.php</jms:reference-file> - <jms:reference-file line="217">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="286">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="285">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="80">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="123">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="b6c3ea1902c9399e1093a448712995eae208adab" resname="report:: activite document ajoute" approved="yes"> - <source>report:: activite document ajoute</source> - <target state="translated">Hinzugefügte Dokumente</target> - <jms:reference-file line="17">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="0d7f08a0cf0531e4e366cc80a773e2f9ad1b5e22" resname="report:: activite document edite" approved="yes"> - <source>report:: activite document edite</source> - <target state="translated">Bearbeitete Dokumente</target> - <jms:reference-file line="21">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="ca241fec577d1f3f2ea4f18ba45d9c0e3fba73a4" resname="report:: activite du site" approved="yes"> - <source>report:: activite du site</source> - <target state="translated">Tätigkeit der Webseite</target> - <jms:reference-file line="189">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="10">web/report/report_layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a4bdfeb6e1b025de825e5a05e564a3c58622ffe5" resname="report:: activite par heure" approved="yes"> <source>report:: activite par heure</source> <target state="translated">Aktivität pro Stunde</target> <jms:reference-file line="96">module/report/activity.php</jms:reference-file> - <jms:reference-file line="7">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="ea76b4d0267c77fa551c829102db6366204f4b52" resname="report:: activite par jour" approved="yes"> - <source>report:: activite par jour</source> - <target state="translated">Aktivität pro Tag</target> - <jms:reference-file line="12">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="6">web/report/chart.html.twig</jms:reference-file> - <jms:reference-file line="30">web/report/chart.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="395a5695445d90bc2b53cd146a4aeb877a473155" resname="report:: adresse" approved="yes"> - <source>report:: adresse</source> - <target state="translated">Addresse</target> - <jms:reference-file line="42">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="432">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="82c2454cb127671a7f8bfb0dd6b8140affa1d868" resname="report:: ajoute" approved="yes"> - <source>report:: ajoute</source> - <target state="translated">hinzugefügt</target> - <jms:reference-file line="196">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="48808e405192603e079ef1ccbbc1a1df98e317bd" resname="report:: collections" approved="yes"> <source>report:: collections</source> <target state="translated">Kollektionen</target> - <jms:reference-file line="96">module/report/filter.php</jms:reference-file> <jms:reference-file line="665">classes/module/report.php</jms:reference-file> - <jms:reference-file line="283">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="53">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="282">Controller/Report/InformationController.php</jms:reference-file> + <jms:reference-file line="96">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="6a1193a920be0725a4560344ca10db36147ffd34" resname="report:: commentaire" approved="yes"> <source>report:: commentaire</source> <target state="translated">Kommentar</target> - <jms:reference-file line="99">module/report/filter.php</jms:reference-file> <jms:reference-file line="667">classes/module/report.php</jms:reference-file> - <jms:reference-file line="284">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="54">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="283">Controller/Report/InformationController.php</jms:reference-file> + <jms:reference-file line="99">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="51f822380b654c4fc5adb28eb0643f37aac0d89b" resname="report:: copyright" approved="yes"> <source>report:: copyright</source> @@ -11851,184 +11833,74 @@ <trans-unit id="cf3a5321aa85f0706b89021206bd8cd1ad57da54" resname="report:: date" approved="yes"> <source>report:: date</source> <target state="translated">Datum</target> - <jms:reference-file line="69">module/report/filter.php</jms:reference-file> <jms:reference-file line="669">classes/module/report.php</jms:reference-file> <jms:reference-file line="670">classes/module/report.php</jms:reference-file> - <jms:reference-file line="153">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="215">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="280">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="33">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="46">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="50">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="58">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="272">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="279">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="0fa74ac37777e4846a6b7521f508fe82f30fbc28" resname="report:: document" approved="yes"> - <source>report:: document</source> - <target state="translated">Dokument</target> - <jms:reference-file line="31">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="270">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="292">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="193">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="56">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> + <jms:reference-file line="69">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="e125eaf6fca2110f86b6ebba60371a4875c87e03" resname="report:: document ajoute" approved="yes"> <source>report:: document ajoute</source> <target state="translated">hinzugefügte Dokumente</target> <jms:reference-file line="46">module/report/add.php</jms:reference-file> </trans-unit> - <trans-unit id="3b1da6e09ede169472dc0f7c993a2244b370f5f0" resname="report:: documents les plus telecharges" approved="yes"> - <source>report:: documents les plus telecharges</source> - <target state="translated">Meist heruntergeladene Dokumente</target> - <jms:reference-file line="55">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="562beb1d0fc9d02c136608897f50040ba8227991" resname="report:: edite" approved="yes"> - <source>report:: edite</source> - <target state="translated">bearbeitet</target> - <jms:reference-file line="197">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="3d92b0d797813422ee66dbddda64e6f1f084b371" resname="report:: edited documents" approved="yes"> <source>report:: edited documents</source> <target state="translated">Bearbeitete Dokumente</target> <jms:reference-file line="46">module/report/edit.php</jms:reference-file> </trans-unit> - <trans-unit id="98d23f79f60fb1e256100832301d040710dea789" resname="report:: email" approved="yes"> - <source>report:: email</source> - <target state="translated">E Mail</target> - <jms:reference-file line="41">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="431">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> <trans-unit id="fd08db9190c0edd6acd0ad385708b302e8c972ea" resname="report:: fichier" approved="yes"> <source>report:: fichier</source> <target state="translated">Datei</target> <jms:reference-file line="681">classes/module/report.php</jms:reference-file> - <jms:reference-file line="353">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="b64c2533c7b357659df3ea9dfb02aec00e95283f" resname="report:: fonction" approved="yes"> <source>report:: fonction</source> <target state="translated">Beruf</target> <jms:reference-file line="671">classes/module/report.php</jms:reference-file> - <jms:reference-file line="216">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="285">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="284">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="78">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="121">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="7371da035f95b6a29593e199feaae2e2882ef328" resname="report:: historique des connexions" approved="yes"> - <source>report:: historique des connexions</source> - <target state="translated">Historie von Verbindungen</target> - <jms:reference-file line="88">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="ec7fa3164a52b7983e9ca8ac683dbcf279b1ca4a" resname="report:: historique des questions" approved="yes"> - <source>report:: historique des questions</source> - <target state="translated">Suchabfragen Historie</target> - <jms:reference-file line="108">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="bb8aaa1753d6ae6e697f9ecbe83939c4c1e274f9" resname="report:: historique des telechargements" approved="yes"> - <source>report:: historique des telechargements</source> - <target state="translated">Historie der downloads</target> - <jms:reference-file line="98">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="400">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="8ebc8d8e0aeeb34323009f7ac75fdd9f42763ba4" resname="report:: identifiant" approved="yes"> - <source>report:: identifiant</source> - <target state="translated">Benutzer Id</target> - <jms:reference-file line="39">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="429">Controller/Report/InformationController.php</jms:reference-file> </trans-unit> <trans-unit id="48b9186d83e31f25e35119e7be71d4e2210c1954" resname="report:: jour" approved="yes"> <source>report:: jour</source> <target state="translated">Tag</target> - <jms:reference-file line="289">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="32">web/report/all_content.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="dc0c59066058c42d9fafce659f68c2219c40953f" resname="report:: module" approved="yes"> - <source>report:: module</source> - <target state="translated">Module</target> - <jms:reference-file line="432">Controller/Report/RootController.php</jms:reference-file> + <jms:reference-file line="31">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3aa60d109af43ca18e495aec94997a7885ce9029" resname="report:: modules" approved="yes"> <source>report:: modules</source> <target state="translated">Module</target> <jms:reference-file line="339">module/report/nav.php</jms:reference-file> <jms:reference-file line="75">module/report/filter.php</jms:reference-file> - <jms:reference-file line="155">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="47">Controller/Report/InformationController.php</jms:reference-file> </trans-unit> <trans-unit id="639e7baf3ce4f23e399e47a2f29958adaa26f8ba" resname="report:: navigateur" approved="yes"> <source>report:: navigateur</source> <target state="translated">Webbrowser</target> <jms:reference-file line="103">module/report/nav.php</jms:reference-file> - <jms:reference-file line="411">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="4f5626f82ffbe13488f3fc8a706c90e52d7845fb" resname="report:: navigateurs et plateforme" approved="yes"> <source>report:: navigateurs et plateforme</source> <target state="translated">Webbrowser und Plattformen</target> <jms:reference-file line="277">module/report/nav.php</jms:reference-file> - <jms:reference-file line="417">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="58caf40106dec978fc4988c3bd7893b38ede9d83" resname="report:: nom" approved="yes"> - <source>report:: nom</source> - <target state="translated">Name</target> - <jms:reference-file line="40">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="430">Controller/Report/InformationController.php</jms:reference-file> </trans-unit> <trans-unit id="da20260fb0ffb7f91e8659e3ccf8feb8ee778993" resname="report:: nombre" approved="yes"> <source>report:: nombre</source> <target state="translated">Anzahl</target> <jms:reference-file line="675">classes/module/report.php</jms:reference-file> - <jms:reference-file line="412">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="418">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="423">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="428">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="433">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="75">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="227">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="138">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="189">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="99117f398785adcf45e8499ad8d1443c621ca4e8" resname="report:: nombre de documents" approved="yes"> - <source>report:: nombre de documents</source> - <target state="translated">Anzahl von Dokumenten</target> - <jms:reference-file line="83">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="e29ea3e14febc313f90283459d28f04a05ec19a7" resname="report:: nombre de preview" approved="yes"> - <source>report:: nombre de preview</source> - <target state="translated">Anzahl von Miniaturansichten</target> - <jms:reference-file line="84">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="52a2c7c51c95719594e526c51995fec2cff55c9a" resname="report:: nombre de reponses" approved="yes"> - <source>report:: nombre de reponses</source> - <target state="translated">Durchschnittszahl der Ergebnisse</target> - <jms:reference-file line="139">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="190">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="93456bfa01cd90120e67a0eca305d3f7a94a3842" resname="report:: nombre de vue" approved="yes"> - <source>report:: nombre de vue</source> - <target state="translated">Anzahl von Ansichten</target> - <jms:reference-file line="80">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="26d00286d5aecf7cfda0e1395c4208440409b8c0" resname="report:: non-renseigne" approved="yes"> <source>report:: non-renseigne</source> <target state="translated">nicht ausgefüllt</target> <jms:reference-file line="110">module/report/add.php</jms:reference-file> - <jms:reference-file line="161">module/report/download.php</jms:reference-file> - <jms:reference-file line="464">module/report/nav.php</jms:reference-file> - <jms:reference-file line="110">module/report/connexion.php</jms:reference-file> - <jms:reference-file line="118">module/report/connexion.php</jms:reference-file> - <jms:reference-file line="123">module/report/connexion.php</jms:reference-file> <jms:reference-file line="99">module/report/question.php</jms:reference-file> + <jms:reference-file line="161">module/report/download.php</jms:reference-file> <jms:reference-file line="411">module/report/activity.php</jms:reference-file> <jms:reference-file line="508">module/report/activity.php</jms:reference-file> <jms:reference-file line="520">module/report/activity.php</jms:reference-file> - <jms:reference-file line="60">module/report/filter.php</jms:reference-file> + <jms:reference-file line="110">module/report/connexion.php</jms:reference-file> + <jms:reference-file line="118">module/report/connexion.php</jms:reference-file> + <jms:reference-file line="123">module/report/connexion.php</jms:reference-file> <jms:reference-file line="117">module/report/push.php</jms:reference-file> - <jms:reference-file line="117">module/report/validate.php</jms:reference-file> - <jms:reference-file line="114">module/report/edit.php</jms:reference-file> <jms:reference-file line="117">module/report/sent.php</jms:reference-file> - <jms:reference-file line="9">web/report/colFilter.html.twig</jms:reference-file> - <jms:reference-file line="15">web/report/colFilter.html.twig</jms:reference-file> + <jms:reference-file line="117">module/report/validate.php</jms:reference-file> + <jms:reference-file line="464">module/report/nav.php</jms:reference-file> + <jms:reference-file line="114">module/report/edit.php</jms:reference-file> + <jms:reference-file line="60">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="07c06c0cac8bd3e3507a72d6cb7fa1ee23a6bf13" resname="report:: page d'accueil" approved="yes"> <source>report:: page d'accueil</source> @@ -12042,68 +11914,15 @@ <target state="translated">von %user_infos%</target> <jms:reference-file line="61">prod/preview/short_history.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="a3817f71ee24b8f9847baa3f3d2088e43114faff" resname="report:: par utilisateurs" approved="yes"> - <source>report:: par utilisateurs</source> - <target state="translated">Allgemein</target> - <jms:reference-file line="130">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="45882e1904416b4c1e53b2d47a6f192e4c0e1c14" resname="report:: pays" approved="yes"> <source>report:: pays</source> <target state="translated">Staat</target> <jms:reference-file line="673">classes/module/report.php</jms:reference-file> - <jms:reference-file line="218">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="287">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="286">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="81">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="124">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="eda7d4be8f5577170dd7f9c72b3f82d265b93637" resname="report:: plateforme" approved="yes"> - <source>report:: plateforme</source> - <target state="translated">Plattform</target> - <jms:reference-file line="422">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="0e1edcbd4dbff06db1c2530bb1b8ea321fa6c86d" resname="report:: poids" approved="yes"> - <source>report:: poids</source> - <target state="translated">Größe</target> - <jms:reference-file line="36">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="275">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="bed7cfb242a47b51f45d31d6f7534f53e4343f66" resname="report:: poids document" approved="yes"> - <source>report:: poids document</source> - <target state="translated">Gewicht von heruntergeladenen Dokumenten</target> - <jms:reference-file line="45">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="cc3a07e0f69d3e9fc7067b6053727ae59f701f76" resname="report:: poids preview" approved="yes"> - <source>report:: poids preview</source> - <target state="translated">Gewicht von heruntergeladenen Unterauflösungen</target> - <jms:reference-file line="51">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="74">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="eb41f1fd9d2f3c6bb5ab0cb3c13b59eff29a2d99" resname="report:: pourcentage" approved="yes"> <source>report:: pourcentage</source> <target state="translated">%</target> <jms:reference-file line="676">classes/module/report.php</jms:reference-file> - <jms:reference-file line="413">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="419">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="424">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="429">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="434">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="e8f9a2fcac1f24e878349bd855fd00cd2014dd1d" resname="report:: preview" approved="yes"> - <source>report:: preview</source> - <target state="translated">Unterauflösungen</target> - <jms:reference-file line="291">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="62">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="14ea0ad72add93f38be10e87f3b4b08c58e31936" resname="report:: preview les plus telecharges" approved="yes"> - <source>report:: preview les plus telecharges</source> - <target state="translated">Meist heruntergeladene Ansichten</target> - <jms:reference-file line="61">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="59bf65358205d118e78e021aa3a14a066612beb3" resname="report:: pushe" approved="yes"> - <source>report:: pushe</source> - <target state="translated">Pushed</target> - <jms:reference-file line="195">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2fa04c59764b5ce330158195b45e3f0f71c430b1" resname="report:: pushed documents" approved="yes"> <source>report:: pushed documents</source> @@ -12113,15 +11932,9 @@ <trans-unit id="8df95f5dffb705018ebae64a4850f1f93bafc098" resname="report:: question" approved="yes"> <source>report:: question</source> <target state="translated">Anfrage</target> + <jms:reference-file line="668">classes/module/report.php</jms:reference-file> <jms:reference-file line="43">module/report/question.php</jms:reference-file> <jms:reference-file line="102">module/report/filter.php</jms:reference-file> - <jms:reference-file line="668">classes/module/report.php</jms:reference-file> - <jms:reference-file line="214">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="57">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="137">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="188">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="69">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="73">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b9ef4ecd16724b3218cf46f9956b8b157498c3a1" resname="report:: questions" approved="yes"> <source>report:: questions</source> @@ -12137,55 +11950,27 @@ <source>report:: questions sans reponses</source> <target state="translated">Anfragen ohne Ergebnis</target> <jms:reference-file line="212">module/report/activity.php</jms:reference-file> - <jms:reference-file line="185">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8fb18670b89f5cefede425401428a70189f654ea" resname="report:: record id" approved="yes"> <source>report:: record id</source> <target state="translated">record id</target> - <jms:reference-file line="90">module/report/filter.php</jms:reference-file> <jms:reference-file line="678">classes/module/report.php</jms:reference-file> - <jms:reference-file line="281">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="351">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="32">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="51">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="271">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="dafda7f4df37c3e876cc478aa3b5733e1ee72bba" resname="report:: recordid" approved="yes"> - <source>report:: recordid</source> - <target state="translated">recordid</target> - <jms:reference-file line="147">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="90">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="a11e1e1373aae28668cdf7a08486e767283bbaa2" resname="report:: resolution" approved="yes"> <source>report:: resolution</source> <target state="translated">Bildschirmauflösung</target> <jms:reference-file line="217">module/report/nav.php</jms:reference-file> - <jms:reference-file line="427">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="c137593838c7cdfab2c2e386539151b90b4e45ed" resname="report:: site" approved="yes"> - <source>report:: site</source> - <target state="translated">Website</target> - <jms:reference-file line="79">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="4b47102c55ce755def67c13bd17568180f253c83" resname="report:: site d'ou les photo sont les plus consultees" approved="yes"> - <source>report:: site d'ou les photo sont les plus consultees</source> - <target state="translated">Website, wo die Dokumente am häufigsten angesehen sind (Referer)</target> - <jms:reference-file line="78">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="44139fc886784bf1efa8198f67265ce6e84a286d" resname="report:: societe" approved="yes"> <source>report:: societe</source> <target state="translated">Unternehmen</target> <jms:reference-file line="674">classes/module/report.php</jms:reference-file> - <jms:reference-file line="219">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="288">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="287">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="79">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="122">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a36015011c70e326dcef4351b2aa63355e68ee38" resname="report:: taille" approved="yes"> <source>report:: taille</source> <target state="translated">Gesamtzahl</target> <jms:reference-file line="683">classes/module/report.php</jms:reference-file> - <jms:reference-file line="355">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="c2382e7d59ab82111739acaea80c65d01aa5f248" resname="report:: telechargement" approved="yes"> <source>report:: telechargement</source> @@ -12196,54 +11981,17 @@ <source>report:: telechargements</source> <target state="translated">Download</target> <jms:reference-file line="44">module/report/download.php</jms:reference-file> - <jms:reference-file line="350">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="9">web/report/report_layout.html.twig</jms:reference-file> - <jms:reference-file line="26">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="57">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="63">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="26297a76b38e5df1ac25352f5f3063349e94992b" resname="report:: telechargements document" approved="yes"> - <source>report:: telechargements document</source> - <target state="translated">Heruntergeladene Dokumente</target> - <jms:reference-file line="33">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> + <jms:reference-file line="10">web/report/report_layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="338e3b26caf39e2f5a23b29047a353b99655817d" resname="report:: telechargements par jour" approved="yes"> <source>report:: telechargements par jour</source> <target state="translated">Download pro Tag</target> <jms:reference-file line="269">module/report/activity.php</jms:reference-file> </trans-unit> - <trans-unit id="46b1963bc2dee84ba3e8dbe3aa1beb05e5f1bc8c" resname="report:: telechargements preview" approved="yes"> - <source>report:: telechargements preview</source> - <target state="translated">Heruntergeladene Unterauflösungen</target> - <jms:reference-file line="39">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="fdf87efee0312793d6f07abe5dfd8017a8d2cdab" resname="report:: telephone" approved="yes"> - <source>report:: telephone</source> - <target state="translated">Telefon</target> - <jms:reference-file line="43">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="433">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="94c22d8bf4371687e036c83c828703cf00887ce8" resname="report:: titre" approved="yes"> - <source>report:: titre</source> - <target state="translated">Titel</target> - <jms:reference-file line="35">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="274">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="1d4c2c8fdf71cb515e7cff4e311e6b253e85bd64" resname="report:: total des telechargements" approved="yes"> - <source>report:: total des telechargements</source> - <target state="translated">Allgemeine downloads</target> - <jms:reference-file line="290">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="f82c48bb319dc1043607f84df4058022eb8efe09" resname="report:: toutes les questions" approved="yes"> - <source>report:: toutes les questions</source> - <target state="translated">häufigsten Suchabfragen</target> - <jms:reference-file line="177">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="83a8ccb59af870b7f987c86298c4202245b45065" resname="report:: type" approved="yes"> <source>report:: type</source> <target state="translated">Bildschirmtyp</target> <jms:reference-file line="682">classes/module/report.php</jms:reference-file> - <jms:reference-file line="354">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="96383afe0eb9f0bfa7c5675c43cf4c91ba574d01" resname="report:: type d'action" approved="yes"> <source>report:: type d'action</source> @@ -12254,31 +12002,12 @@ <source>report:: utilisateur</source> <target state="translated">Benutzer</target> <jms:reference-file line="664">classes/module/report.php</jms:reference-file> - <jms:reference-file line="213">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="446">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="82">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="91205c26aeb3508157493bd6061deaa0f88472c1" resname="report:: utilisateurs" approved="yes"> - <source>report:: utilisateurs</source> - <target state="translated">Benutzer</target> - <jms:reference-file line="279">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="280">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="32">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="38">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="44">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="50">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="68">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="891b8069620627c198fe372a8b49534f99eea2c3" resname="report:: validated documents" approved="yes"> <source>report:: validated documents</source> <target state="translated">Bestätigte Dokumente</target> <jms:reference-file line="46">module/report/validate.php</jms:reference-file> </trans-unit> - <trans-unit id="9eb84fccd4c8c325b4e18275f2657b48a8734355" resname="report:: valide" approved="yes"> - <source>report:: valide</source> - <target state="translated">Bestätigt</target> - <jms:reference-file line="198">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="1d900ae5b08909338f17350122691995bf9174b9" resname="report:: visualiseur cooliris" approved="yes"> <source>report:: visualiseur cooliris</source> <target state="translated">Cooliris Viewer</target> @@ -12291,11 +12020,6 @@ <target state="translated">Kollektion Verschiebung zu : %coll_name%</target> <jms:reference-file line="27">prod/preview/short_history.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="19b4d8a8be30b7ffef27c51a9821d3d6415e9f2d" resname="report::Connexion" approved="yes"> - <source>report::Connexion</source> - <target state="translated">Verbindungen</target> - <jms:reference-file line="27">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="419829b982162d12659c70a94a0aa6aafaa8df13" resname="report::Connexions" approved="yes"> <source>report::Connexions</source> <target state="translated">Verbindungen</target> @@ -12319,8 +12043,7 @@ <trans-unit id="339f9743dbb91b02034bec976942c35a8323a473" resname="report::Heures" approved="yes"> <source>report::Heures</source> <target state="translated">Module</target> - <jms:reference-file line="58">web/report/ajax_data_content.html.twig</jms:reference-file> - <jms:reference-file line="27">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="26">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0f6f1e90647a3d5f5d7e170268881acc65f33f59" resname="report::Impression des formats : %format%" approved="yes"> <source>report::Impression des formats : %format%</source> @@ -12335,17 +12058,17 @@ <trans-unit id="04141c12be7f11b46805e97c0f399934ed84d614" resname="report::Nombre de connexions" approved="yes"> <source>report::Nombre de connexions</source> <target state="translated">Verbindungen</target> - <jms:reference-file line="31">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="30">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="605f8acc726fd40f1d7112e794cae6f51970b6ad" resname="report::Nombre de document ajoute" approved="yes"> <source>report::Nombre de document ajoute</source> <target state="translated">Anzahl von hinzugefügten Dokumenten</target> - <jms:reference-file line="34">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="33">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8a138bd895ef7905fd7f338cf0854b0cbe0c8f03" resname="report::Nombre de document edite" approved="yes"> <source>report::Nombre de document edite</source> <target state="translated">Anzahl von bearbeiteten Dokumenten</target> - <jms:reference-file line="35">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="34">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="acce57a36feb4a2af81035dcb6c878555dc131bd" resname="report::Publication de %dest%" approved="yes"> <source>report::Publication de %dest%</source> @@ -12382,56 +12105,37 @@ <source>report::activite</source> <target state="translated">Aktivität</target> <jms:reference-file line="81">module/report/filter.php</jms:reference-file> - <jms:reference-file line="157">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="002c70f6ab109c3160dc534f93c03d56b342cf10" resname="report::ajout du documentt" approved="yes"> <source>report::ajout du documentt</source> <target state="translated">Dokument hinzugefügt</target> <jms:reference-file line="53">prod/preview/short_history.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="4d3fc1f99d957aa50573f067f78ad75cd7ef9842" resname="report::aucune precision" approved="yes"> - <source>report::aucune precision</source> - <target state="translated">keine Filter</target> - <jms:reference-file line="145">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="de28bcec9376030978303c519bd3d5ef776ea7bd" resname="report::fonction" approved="yes"> <source>report::fonction</source> <target state="translated">Funktion</target> <jms:reference-file line="78">module/report/filter.php</jms:reference-file> - <jms:reference-file line="156">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="b04965bc5402acc4541bf683229cbd0af38dce6e" resname="report::la description contient" approved="yes"> - <source>report::la description contient</source> - <target state="translated">Die Beschreibung beinhaltet</target> - <jms:reference-file line="146">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="20f07835433875d2e66adcb6a4203981359500b7" resname="report::pays" approved="yes"> <source>report::pays</source> <target state="translated">Land</target> <jms:reference-file line="84">module/report/filter.php</jms:reference-file> - <jms:reference-file line="158">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="afacc25a02d9dee7b2e85d3d86835ff4dba28822" resname="report::societe" approved="yes"> <source>report::societe</source> <target state="translated">Unternehmen</target> <jms:reference-file line="87">module/report/filter.php</jms:reference-file> - <jms:reference-file line="159">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="3fc0f2a0d459b0ae67244939abeda1868f5b1a51" resname="report::supression du document" approved="yes"> <source>report::supression du document</source> <target state="translated">Dokument löschen</target> <jms:reference-file line="51">prod/preview/short_history.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="f80375b1b5a6632f3a2db88b757e1734865ad753" resname="report::version" approved="yes"> - <source>report::version</source> - <target state="translated">Version</target> - <jms:reference-file line="226">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> <trans-unit id="386c42eb4d167d87be7f7f68faf1aafce1be237e" resname="reportage" approved="yes"> <source>reportage</source> <target state="translated">Bericht</target> - <jms:reference-file line="258">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> - <jms:reference-file line="274">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> + <jms:reference-file line="282">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> + <jms:reference-file line="298">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> </trans-unit> <trans-unit id="55655edb5e7b23c00fe3fe0509be09e674138da6" resname="resultat numero %number%" approved="yes"> <source>resultat numero %number%</source> @@ -12471,7 +12175,7 @@ <trans-unit id="584d9f9b8a0c51aa1805a1c0ed427c366d11ea5e" resname="screenshot video" approved="yes"> <source>screenshot video</source> <target state="translated">Video Screenshot</target> - <jms:reference-file line="99">actions/Tools/videoEditor.html.twig</jms:reference-file> + <jms:reference-file line="112">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="fe29f1a35e814c87a21282378424df4866529d1e" resname="select at least one user" approved="yes"> <source>select at least one user</source> @@ -12528,75 +12232,75 @@ <target state="translated">Test E-Mail Überprüfungen</target> <jms:reference-file line="127">web/admin/dashboard.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="cf75de5e3a89d03d1888b4caccfafc65f6456fc3" resname="setup::custom-link:add-link"> + <trans-unit id="cf75de5e3a89d03d1888b4caccfafc65f6456fc3" resname="setup::custom-link:add-link" approved="yes"> <source>setup::custom-link:add-link</source> - <target state="new">setup::custom-link:add-link</target> + <target state="translated">Link hinzufügen</target> <jms:reference-file line="78">web/admin/setup.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="44a5de1cdcf30547c937f197cd3d58e143de62a6" resname="setup::custom-link:help-menu"> + <trans-unit id="44a5de1cdcf30547c937f197cd3d58e143de62a6" resname="setup::custom-link:help-menu" approved="yes"> <source>setup::custom-link:help-menu</source> - <target state="new">setup::custom-link:help-menu</target> + <target state="translated">Hilfemenü</target> <jms:reference-file line="58">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="0286ea45f1074802cfe8fbf84b7c439fb287d0de" resname="setup::custom-link:language-link"> + <trans-unit id="0286ea45f1074802cfe8fbf84b7c439fb287d0de" resname="setup::custom-link:language-link" approved="yes"> <source>setup::custom-link:language-link</source> - <target state="new">setup::custom-link:language-link</target> + <target state="translated">Sprache:</target> <jms:reference-file line="98">web/admin/setup.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="51269c7ad5acb4ebf70560266a8739d608285ac4" resname="setup::custom-link:link-url"> + <trans-unit id="51269c7ad5acb4ebf70560266a8739d608285ac4" resname="setup::custom-link:link-url" approved="yes"> <source>setup::custom-link:link-url</source> - <target state="new">setup::custom-link:link-url</target> + <target state="translated">Ziel-URL</target> <jms:reference-file line="99">web/admin/setup.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="2de3bc78c6fb26b56dd934a81dc76afdba8c79ab" resname="setup::custom-link:location"> + <trans-unit id="2de3bc78c6fb26b56dd934a81dc76afdba8c79ab" resname="setup::custom-link:location" approved="yes"> <source>setup::custom-link:location</source> - <target state="new">setup::custom-link:location</target> + <target state="translated">Ort auswählen</target> <jms:reference-file line="57">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="f4db79dfecabb4b9acb44a4b49e9b6b433b28d04" resname="setup::custom-link:location-link"> + <trans-unit id="f4db79dfecabb4b9acb44a4b49e9b6b433b28d04" resname="setup::custom-link:location-link" approved="yes"> <source>setup::custom-link:location-link</source> - <target state="new">setup::custom-link:location-link</target> + <target state="translated">Ort des Links</target> <jms:reference-file line="100">web/admin/setup.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="ccfe45428ee9769a865d3d90c0e4dc50a6b68e9c" resname="setup::custom-link:name-link"> + <trans-unit id="ccfe45428ee9769a865d3d90c0e4dc50a6b68e9c" resname="setup::custom-link:name-link" approved="yes"> <source>setup::custom-link:name-link</source> - <target state="new">setup::custom-link:name-link</target> + <target state="translated">Links Name</target> <jms:reference-file line="23">Form/Configuration/CustomLinkFormType.php</jms:reference-file> <jms:reference-file line="97">web/admin/setup.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="fdecb6454c7adeaeb05bac7f574ee70884900ca2" resname="setup::custom-link:navigation-bar"> + <trans-unit id="fdecb6454c7adeaeb05bac7f574ee70884900ca2" resname="setup::custom-link:navigation-bar" approved="yes"> <source>setup::custom-link:navigation-bar</source> - <target state="new">setup::custom-link:navigation-bar</target> + <target state="translated">Navigationsleiste</target> <jms:reference-file line="59">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="4696021003b181f9acc9261382e07364c6b83036" resname="setup::custom-link:order-link"> + <trans-unit id="4696021003b181f9acc9261382e07364c6b83036" resname="setup::custom-link:order-link" approved="yes"> <source>setup::custom-link:order-link</source> - <target state="new">setup::custom-link:order-link</target> + <target state="translated">Anzeigereihenfolge</target> <jms:reference-file line="101">web/admin/setup.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="1b09a3a0a8b0205f23b3fe59074f8dfd72d0b0ae" resname="setup::custom-link:placeholder-link-url"> + <trans-unit id="1b09a3a0a8b0205f23b3fe59074f8dfd72d0b0ae" resname="setup::custom-link:placeholder-link-url" approved="yes"> <source>setup::custom-link:placeholder-link-url</source> - <target state="new">setup::custom-link:placeholder-link-url</target> + <target state="translated">zB: https://docs.phraseanet.com</target> <jms:reference-file line="47">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="a1380c70f5190d6c0c38214fe24ac99272ef7bd2" resname="setup::custom-link:select-language"> + <trans-unit id="a1380c70f5190d6c0c38214fe24ac99272ef7bd2" resname="setup::custom-link:select-language" approved="yes"> <source>setup::custom-link:select-language</source> - <target state="new">setup::custom-link:select-language</target> + <target state="translated">Sprache auswählen</target> <jms:reference-file line="34">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="67572283912404fe90681e8566d880e1fd10d58e" resname="setup::custom-link:title-custom-link"> + <trans-unit id="67572283912404fe90681e8566d880e1fd10d58e" resname="setup::custom-link:title-custom-link" approved="yes"> <source>setup::custom-link:title-custom-link</source> - <target state="new">setup::custom-link:title-custom-link</target> + <target state="translated">Custom Link</target> <jms:reference-file line="69">web/admin/setup.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="5107f9819cd4c0812c1d78cc07d24aff304c58fa" resname="share::share-record: advance"> + <trans-unit id="5107f9819cd4c0812c1d78cc07d24aff304c58fa" resname="share::share-record: advance" approved="yes"> <source>share::share-record: advance</source> - <target state="new">share::share-record: advance</target> + <target state="translated">Erweiterte Einstellung</target> <jms:reference-file line="9">prod/Share/record.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="f51d8ca24dc67572beccf115c79671ba1c3f545a" resname="share::share-record: select-shared-def"> + <trans-unit id="f51d8ca24dc67572beccf115c79671ba1c3f545a" resname="share::share-record: select-shared-def" approved="yes"> <source>share::share-record: select-shared-def</source> - <target state="new">share::share-record: select-shared-def</target> + <target state="translated">Wählen Sie die Unterauflösung zum Teilen aus</target> <jms:reference-file line="11">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="98693e37d002821e032bfc91ffc5091c3b6d76da" resname="status:: Affichable pour tous" approved="yes"> @@ -12663,12 +12367,12 @@ <trans-unit id="5e97a32a49cefaf5c4eb26080caf50d7ac7ea102" resname="task::archive:Archivage" approved="yes"> <source>task::archive:Archivage</source> <target state="translated">Archivierung auf Kollektion</target> - <jms:reference-file line="39">TaskManager/Job/ArchiveJob.php</jms:reference-file> + <jms:reference-file line="40">TaskManager/Job/ArchiveJob.php</jms:reference-file> </trans-unit> <trans-unit id="b94199880758a342c5de52be020699d9b789a7a2" resname="task::archive:Archiving files found into a 'hotfolder'" approved="yes"> <source>task::archive:Archiving files found into a 'hotfolder'</source> <target state="translated">gefundenen Dateien nach einem Hotfolder archivieren</target> - <jms:reference-file line="55">TaskManager/Job/ArchiveJob.php</jms:reference-file> + <jms:reference-file line="56">TaskManager/Job/ArchiveJob.php</jms:reference-file> </trans-unit> <trans-unit id="af67e20e5e01d46ece2e0eb262b1b0bb9df679d4" resname="task::archive:archivage sur base/collection/" approved="yes"> <source>task::archive:archivage sur base/collection/</source> @@ -12734,8 +12438,8 @@ <trans-unit id="b8af196a1703cd1c3079eebef88a1b540ede06ea" resname="task::ftp:Status about your FTP transfert from %application% to %server%" approved="yes"> <source>task::ftp:Status about your FTP transfert from %application% to %server%</source> <target state="translated">Zustand von FTP Übertragung von %application% zum Server %server%</target> - <jms:reference-file line="40">Notification/Mail/MailSuccessFTPReceiver.php</jms:reference-file> <jms:reference-file line="40">Notification/Mail/MailSuccessFTPSender.php</jms:reference-file> + <jms:reference-file line="40">Notification/Mail/MailSuccessFTPReceiver.php</jms:reference-file> </trans-unit> <trans-unit id="3442bca4992e5cd06a67f05beebf5721383d1653" resname="task::ftp:TENTATIVE no %number%, %date%" approved="yes"> <source>task::ftp:TENTATIVE no %number%, %date%</source> @@ -12780,8 +12484,8 @@ <trans-unit id="c8eadb101df19fb4960c791cf1afaa49d3516feb" resname="task::ftp:proxy" approved="yes"> <source>task::ftp:proxy</source> <target state="translated">Proxy</target> - <jms:reference-file line="5">task-manager/task-editor/ftp-pull.html.twig</jms:reference-file> <jms:reference-file line="5">task-manager/task-editor/ftp.html.twig</jms:reference-file> + <jms:reference-file line="5">task-manager/task-editor/ftp-pull.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d50701eb37a2e5b7dfe3358ba91ff9a1cc6f10ef" resname="task::ftp:proxy password" approved="yes"> <source>task::ftp:proxy password</source> @@ -12791,8 +12495,8 @@ <trans-unit id="a7e5c84ff2404f76423afe64d0f5b8fbea07c024" resname="task::ftp:proxy port" approved="yes"> <source>task::ftp:proxy port</source> <target state="translated">Proxy Port</target> - <jms:reference-file line="11">task-manager/task-editor/ftp-pull.html.twig</jms:reference-file> <jms:reference-file line="11">task-manager/task-editor/ftp.html.twig</jms:reference-file> + <jms:reference-file line="11">task-manager/task-editor/ftp-pull.html.twig</jms:reference-file> </trans-unit> <trans-unit id="17d927a070b462263321072111c64cc0505c9d14" resname="task::ftp:proxy user" approved="yes"> <source>task::ftp:proxy user</source> @@ -12887,8 +12591,8 @@ <trans-unit id="9d5da9a8f62b8053385235889e7d7994ebfc1559" resname="thesaurus:: Lier la branche de thesaurus" approved="yes"> <source>thesaurus:: Lier la branche de thesaurus</source> <target state="translated">die Verzweigung verbinden?</target> - <jms:reference-file line="5">web/thesaurus/link-field-step3.html.twig</jms:reference-file> <jms:reference-file line="5">web/thesaurus/link-field-step2.html.twig</jms:reference-file> + <jms:reference-file line="5">web/thesaurus/link-field-step3.html.twig</jms:reference-file> </trans-unit> <trans-unit id="416134a1966f12f8d23f9f54f3cc32ea43ef3e46" resname="thesaurus:: Lier la branche de thesaurus au champ" approved="yes"> <source>thesaurus:: Lier la branche de thesaurus au champ</source> @@ -12903,13 +12607,13 @@ <trans-unit id="227338ab622537da92490cedc6709de0b9122e56" resname="thesaurus:: Nouveau synonyme" approved="yes"> <source>thesaurus:: Nouveau synonyme</source> <target state="translated">Neuer Synonym</target> + <jms:reference-file line="985">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="5">web/thesaurus/new-term.html.twig</jms:reference-file> - <jms:reference-file line="977">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d6bec8860c3453260869cea4fb043fac543cf724" resname="thesaurus:: Nouveau terme" approved="yes"> <source>thesaurus:: Nouveau terme</source> <target state="translated">Neuer Begriff</target> - <jms:reference-file line="977">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="985">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ef0a054e6da228e6ad009d469c4bdf31b1de7999" resname="thesaurus:: Nouveau terme specifique" approved="yes"> <source>thesaurus:: Nouveau terme specifique</source> @@ -12924,7 +12628,7 @@ <trans-unit id="33df70d7fa528a31071e11d1b987b49dc947ce16" resname="thesaurus:: Supprimer cette branche ?&#10;(les termes concernes remonteront en candidats a la prochaine indexation)" approved="yes"> <source><![CDATA[thesaurus:: Supprimer cette branche ? (les termes concernes remonteront en candidats a la prochaine indexation)]]></source> <target state="translated"><![CDATA[diese Verzweigung löschen? (die betroffenende Begriffe werden als mögliche Begriffe beim nächsten Indexierung erscheinen)]]></target> - <jms:reference-file line="474">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="482">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="660310a4372167fced06ac64d118d8019c456c02" resname="thesaurus:: Vous n'avez acces a aucune base" approved="yes"> <source>thesaurus:: Vous n'avez acces a aucune base</source> @@ -12980,14 +12684,14 @@ <trans-unit id="ac2f261b9d9226594280e898802a6fdac51360d3" resname="thesaurus:: corbeille" approved="yes"> <source>thesaurus:: corbeille</source> <target state="translated">Stock</target> - <jms:reference-file line="1667">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> - <jms:reference-file line="1813">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> - <jms:reference-file line="2906">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> + <jms:reference-file line="1677">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> + <jms:reference-file line="1823">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> + <jms:reference-file line="2916">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> </trans-unit> <trans-unit id="69ec558773af262994d835080fd77f22b284b64f" resname="thesaurus:: deplacer le terme dans la corbeille ?" approved="yes"> <source>thesaurus:: deplacer le terme dans la corbeille ?</source> <target state="translated">Begriffe zum Stock verschieben</target> - <jms:reference-file line="1037">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="1045">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="33c36f4c7ae4c9ec55d1e58c0939946c8d894958" resname="thesaurus:: enregistrement de la liste modifiee des mots candidats." approved="yes"> <source>thesaurus:: enregistrement de la liste modifiee des mots candidats.</source> @@ -13042,9 +12746,9 @@ <trans-unit id="5fbcdef1a0e5fb7cf0b19a61ff3a18ebe2a5bdbe" resname="thesaurus:: export au format texte" approved="yes"> <source>thesaurus:: export au format texte</source> <target state="translated">Text</target> - <jms:reference-file line="5">web/thesaurus/export-text.html.twig</jms:reference-file> <jms:reference-file line="5">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> <jms:reference-file line="81">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> + <jms:reference-file line="5">web/thesaurus/export-text.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c8ec3584a75e01816472150b1c24268c9612dd51" resname="thesaurus:: export en topics" approved="yes"> <source>thesaurus:: export en topics</source> @@ -13252,7 +12956,7 @@ <trans-unit id="1744e93c8cf4d32cb0c0418ae320f5d8438f6f76" resname="thesaurus:: synonyme" approved="yes"> <source>thesaurus:: synonyme</source> <target state="translated">Synonym</target> - <jms:reference-file line="975">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="983">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b6cbc7152d76db92327425399da711a905e1d7b6" resname="thesaurus:: synonymes" approved="yes"> <source>thesaurus:: synonymes</source> @@ -13262,7 +12966,7 @@ <trans-unit id="8658e2ff0b9ff5e3492109790a09066c1467804f" resname="thesaurus:: terme" approved="yes"> <source>thesaurus:: terme</source> <target state="translated">Begriff</target> - <jms:reference-file line="975">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="983">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2369cc70d9c4cca830a6fdd9f652c1703a2a0d3b" resname="thesaurus:: tout deployer - refermable" approved="yes"> <source>thesaurus:: tout deployer - refermable</source> @@ -13342,19 +13046,8 @@ <trans-unit id="1118f7e206d8ec4d92392f3e8c2804b156b3a082" resname="thumbnail validation" approved="yes"> <source>thumbnail validation</source> <target state="translated">Miniaturansicht Bestätigung</target> + <jms:reference-file line="180">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="247">actions/Tools/index.html.twig</jms:reference-file> - <jms:reference-file line="167">actions/Tools/videoEditor.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="4374aaee247fb237ce6c97d5c8d64bbe474d16de" resname="to" approved="yes"> - <source>to</source> - <target state="translated">to</target> - <jms:reference-file line="15">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="19">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="14a21e497a8468e9df7f078d92c8c97420f0bf60" resname="tout decocher" approved="yes"> - <source>tout decocher</source> - <target state="translated">Alles deaktivieren</target> - <jms:reference-file line="11">web/report/listColumn.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7e96ed809b61066d6ea96ba9afc8747a042b361a" resname="tout le monde" approved="yes"> <source>tout le monde</source> @@ -13369,7 +13062,7 @@ <trans-unit id="50d8b4a941c26b89482c94ab324b5a274f9ced66" resname="unknown" approved="yes"> <source>unknown</source> <target state="translated">unbekannt</target> - <jms:reference-file line="34">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="37">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9f273e321a1d1ea40251ab0a45f8ca8cbdd135da" resname="untitled" approved="yes"> <source>untitled</source> @@ -13386,17 +13079,23 @@ <target state="translated">Ihre Version ist aktuell</target> <jms:reference-file line="53">web/admin/databases.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="cde2aa1e33b0a816e8539ae4669b9575a8c83762" resname="updated_on"> + <source>updated_on</source> + <target state="new">updated_on</target> + <jms:reference-file line="475">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="bc34ae0ecd7020a2f3f57afaf84d3fea6c3e9c0f" resname="upload:: Destination (collection) :" approved="yes"> <source>upload:: Destination (collection) :</source> <target state="translated">Kollektion</target> + <jms:reference-file line="60">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="55">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="57">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="39e4890a2d75f483b1cb2131b2d19f8cf96a502b" resname="upload:: Status :" approved="yes"> <source>upload:: Status :</source> <target state="translated">Status</target> + <jms:reference-file line="80">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="75">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="77">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="457">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4fea0574cc81b5fd40ab0537b0905cc4c3806039" resname="users rights have been reseted" approved="yes"> <source>users rights have been reseted</source> @@ -13406,23 +13105,23 @@ <trans-unit id="e204d28a2874f6123747650d3e4003d4357d75eb" resname="validate" approved="yes"> <source>validate</source> <target state="translated">bestätigen</target> + <jms:reference-file line="143">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="88">actions/Tools/index.html.twig</jms:reference-file> <jms:reference-file line="116">actions/Tools/index.html.twig</jms:reference-file> <jms:reference-file line="156">actions/Tools/index.html.twig</jms:reference-file> <jms:reference-file line="182">actions/Tools/index.html.twig</jms:reference-file> - <jms:reference-file line="130">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c02a2db6d6cdf30d37962e221624cc7661f4b892" resname="validation:: NON" approved="yes"> <source>validation:: NON</source> <target state="translated">Nein</target> - <jms:reference-file line="45">web/lightbox/agreement_box.html.twig</jms:reference-file> <jms:reference-file line="75">mobile/lightbox/basket_element.html.twig</jms:reference-file> + <jms:reference-file line="45">web/lightbox/agreement_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="07a1dc6df9fd47db2dc80e671f68bbd2525a789b" resname="validation:: OUI" approved="yes"> <source>validation:: OUI</source> <target state="translated">Ja</target> - <jms:reference-file line="40">web/lightbox/agreement_box.html.twig</jms:reference-file> <jms:reference-file line="72">mobile/lightbox/basket_element.html.twig</jms:reference-file> + <jms:reference-file line="40">web/lightbox/agreement_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="724c4836afe058eefd1dbc9c19d0f813f9ad0d31" resname="validation:: editer ma note" approved="yes"> <source>validation:: editer ma note</source> @@ -13442,10 +13141,10 @@ <trans-unit id="276c62d9460692fb7b96721bea12a028339dd99c" resname="validation::envoyer mon rapport" approved="yes"> <source>validation::envoyer mon rapport</source> <target state="translated">Meinen Bericht senden</target> - <jms:reference-file line="2">web/lightbox/basket_options.html.twig</jms:reference-file> - <jms:reference-file line="4">web/lightbox/basket_options.html.twig</jms:reference-file> <jms:reference-file line="58">mobile/lightbox/validate.html.twig</jms:reference-file> <jms:reference-file line="59">mobile/lightbox/validate.html.twig</jms:reference-file> + <jms:reference-file line="2">web/lightbox/basket_options.html.twig</jms:reference-file> + <jms:reference-file line="4">web/lightbox/basket_options.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c692273deb2772da307ffe37041fef77bf4baa97" resname="version" approved="yes"> <source>version</source> @@ -13455,13 +13154,13 @@ <trans-unit id="8cef9b3ae10c5c43c4b77c568586122212a052e3" resname="veuillez choisir au minimum une collection" approved="yes"> <source>veuillez choisir au minimum une collection</source> <target state="translated">Mindestens eine Kollektion muss ausgewählt werden</target> - <jms:reference-file line="23">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="22">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ffbaf58f1231628f9ac2a583f038b51719006ec6" resname="video" approved="yes"> <source>video</source> <target state="translated">Video</target> - <jms:reference-file line="22">task-manager/task-editor/subdefs.html.twig</jms:reference-file> <jms:reference-file line="370">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="25">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="51ca3cfa60e4d9ce2c7cd07b0b96fc84c4adb59f" resname="video range extractor"> <source>video range extractor</source> @@ -13476,9 +13175,9 @@ <trans-unit id="fb360f9c09ac8c5edb2f18be5de4e80ea4c430d0" resname="yes" approved="yes"> <source>yes</source> <target state="translated">Ja</target> + <jms:reference-file line="76">web/account/sessions.html.twig</jms:reference-file> <jms:reference-file line="580">web/admin/subdefs.html.twig</jms:reference-file> <jms:reference-file line="89">web/common/technical_datas.html.twig</jms:reference-file> - <jms:reference-file line="76">web/account/sessions.html.twig</jms:reference-file> </trans-unit> <trans-unit id="646b0ebbe9829e44e9e99e9ab991a526f758001d" resname="you are about to change the representation thumbnail of your video" approved="yes"> <source>you are about to change the representation thumbnail of your video</source> diff --git a/resources/locales/messages.en.xlf b/resources/locales/messages.en.xlf index d7f15eb546..4392499d5e 100644 --- a/resources/locales/messages.en.xlf +++ b/resources/locales/messages.en.xlf @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2"> - <file date="2018-09-17T13:15:25Z" source-language="en" target-language="en" datatype="plaintext" original="not.available"> + <file date="2019-11-15T08:02:57Z" source-language="en" target-language="en" datatype="plaintext" original="not.available"> <header> <tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/> <note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note> @@ -9,8 +9,8 @@ <trans-unit id="da39a3ee5e6b4b0d3255bfef95601890afd80709" resname=""> <source></source> <target state="new"></target> - <jms:reference-file line="47">Form/Configuration/EmailFormType.php</jms:reference-file> <jms:reference-file line="60">Form/Login/PhraseaAuthenticationForm.php</jms:reference-file> + <jms:reference-file line="47">Form/Configuration/EmailFormType.php</jms:reference-file> </trans-unit> <trans-unit id="c03e9a1b443b7d9ac9a84e4d2cf55ebc016a9c5b" resname=" Add" approved="yes"> <source> Add</source> @@ -24,7 +24,14 @@ url through a forwarded mail for example. </source> <target state="translated">Check the force authentication checkbox to constrain users to authenticate to access content of Push and Feedbacks. This feature can avoid divulging connection parameters contained in given links in e-mails notifications.</target> - <jms:reference-file line="174">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="175">prod/templates/push.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="2dda59c67dea4da116191fe9603dcf80cb3c8c3d" resname=" {0} No results|{1} Result|]1,Inf[ Results "> + <source> {0} No results|{1} Result|]1,Inf[ Results + </source> + <target state="new"> {0} No results|{1} Result|]1,Inf[ Results + </target> + <jms:reference-file line="7">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="17b36ba11b9598e1ca72638a17637c71db031f8b" resname="#3567c6" approved="yes"> <source>#3567c6</source> @@ -105,15 +112,14 @@ <trans-unit id="5c0c6d2fb4202111af321f54b5a3942bda803eb8" resname="%Total% results" approved="yes"> <source>%Total% results</source> <target state="translated">%Total% results</target> - <jms:reference-file line="12">WorkZone/Browser/Results.html.twig</jms:reference-file> - <jms:reference-file line="115">WorkZone/Browser/Results.html.twig</jms:reference-file> + <jms:reference-file line="91">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="21a4ac34dfdf249b5e2e3b3fde7061b354080f4b" resname="%basket_length% documents" approved="yes"> <source>%basket_length% documents</source> <target state="translated">%basket_length% document(s)</target> + <jms:reference-file line="39">mobile/lightbox/validate.html.twig</jms:reference-file> <jms:reference-file line="65">web/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="123">web/lightbox/index.html.twig</jms:reference-file> - <jms:reference-file line="39">mobile/lightbox/validate.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b444b30c762b94c468daf384f731e5ffc3ae998d" resname="%countable% documents can not be modified." approved="yes"> <source>%countable% documents can not be modified.</source> @@ -154,7 +160,7 @@ <source>%length% peoples</source> <target state="translated">%length% people</target> <jms:reference-file line="42">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="107">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="103">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="65779fe6ac99437fb7d81ba645a989e7745e6a29" resname="%n_elements% elements ne peuvent etre uploades" approved="yes"> <source>%n_elements% elements ne peuvent etre uploades</source> @@ -192,21 +198,21 @@ <trans-unit id="e39dc3a90b0674916ef22f19912638564f33e518" resname="%nb_view% vue" approved="yes"> <source>%nb_view% vue</source> <target state="translated">%nb_view% view</target> - <jms:reference-file line="5">Bridge/Flickr/element_informations.html.twig</jms:reference-file> - <jms:reference-file line="5">Bridge/Youtube/element_informations.html.twig</jms:reference-file> <jms:reference-file line="5">Bridge/Dailymotion/element_informations.html.twig</jms:reference-file> + <jms:reference-file line="5">Bridge/Youtube/element_informations.html.twig</jms:reference-file> + <jms:reference-file line="5">Bridge/Flickr/element_informations.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ae7480d89dfd1ca0d1732014aee13f9958836bf8" resname="%nb_view% vues" approved="yes"> <source>%nb_view% vues</source> <target state="translated">%nb_view% views</target> - <jms:reference-file line="7">Bridge/Flickr/element_informations.html.twig</jms:reference-file> - <jms:reference-file line="7">Bridge/Youtube/element_informations.html.twig</jms:reference-file> <jms:reference-file line="7">Bridge/Dailymotion/element_informations.html.twig</jms:reference-file> + <jms:reference-file line="7">Bridge/Youtube/element_informations.html.twig</jms:reference-file> + <jms:reference-file line="7">Bridge/Flickr/element_informations.html.twig</jms:reference-file> </trans-unit> <trans-unit id="de0804eb70c10b14d71df74292e45c6daa13d672" resname="%number% documents<br/>selectionnes" approved="yes"> <source><![CDATA[%number% documents<br/>selectionnes]]></source> <target state="translated"><![CDATA[%number% documents<br/>selected]]></target> - <jms:reference-file line="246">Controller/Prod/QueryController.php</jms:reference-file> + <jms:reference-file line="271">Controller/Prod/QueryController.php</jms:reference-file> </trans-unit> <trans-unit id="ac5c6fe2979cfa2496c95dcb218f135fd916040d" resname="%quantity% Stories attached to the WorkZone" approved="yes"> <source>%quantity% Stories attached to the WorkZone</source> @@ -257,7 +263,7 @@ <trans-unit id="d7c38bf41291d1f920c6e0b56a1c4a1cfc0b6743" resname="%quantity% selected files" approved="yes"> <source>%quantity% selected files</source> <target state="translated">%quantity% selected files</target> - <jms:reference-file line="108">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="111">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="eae910e840fe7df8ef8211d587e72af74ab69463" resname="%quantity_records% records have been sent for validation to %quantity_users% users" approved="yes"> <source>%quantity_records% records have been sent for validation to %quantity_users% users</source> @@ -272,7 +278,7 @@ <trans-unit id="4d90df6ce9691d4bc172b9129250a5af4bef4b7f" resname="%record_count% records match the unique identifier :" approved="yes"> <source>%record_count% records match the unique identifier :</source> <target state="translated">%record_count% records match the unique identifier:</target> - <jms:reference-file line="379">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="585">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1d847e60f4e92e438c94f0eb3176ce96113c63e5" resname="%s field has been created with success." approved="yes"> <source>%s field has been created with success.</source> @@ -287,17 +293,12 @@ <trans-unit id="f9b19aa0c7cf7aab245692450b473acff6a077e4" resname="%total% reponses" approved="yes"> <source>%total% reponses</source> <target state="translated">%total% responses</target> - <jms:reference-file line="294">Controller/Prod/QueryController.php</jms:reference-file> - </trans-unit> - <trans-unit id="3d850bddc9385d23589a2204c4583dcc0d62ffe5" resname="%total_count% results" approved="yes"> - <source>%total_count% results</source> - <target state="translated">%total_count% results</target> - <jms:reference-file line="35">web/report/generate_tab.html.twig</jms:reference-file> + <jms:reference-file line="319">Controller/Prod/QueryController.php</jms:reference-file> </trans-unit> <trans-unit id="99d2e1a7e8d0ba4a7132282b53b15e503b91c2cb" resname="%user% a envoye son rapport de validation de %title%" approved="yes"> <source>%user% a envoye son rapport de validation de %title%</source> <target state="translated">%user% has sent his feedback report for %title%</target> - <jms:reference-file line="58">eventsmanager/notify/validationdone.php</jms:reference-file> + <jms:reference-file line="65">eventsmanager/notify/validationdone.php</jms:reference-file> </trans-unit> <trans-unit id="762e4f2823b111e8a3c45176a1376312afeb014e" resname="%user% a passe une %opening_link% commande %end_link%" approved="yes"> <source>%user% a passe une %opening_link% commande %end_link%</source> @@ -347,7 +348,7 @@ <trans-unit id="578411bc3eda63423c62f54431d62591422c6e5f" resname="%user% vous a delivre %quantity% document(s) pour votre commande %title%" approved="yes"> <source>%user% vous a delivre %quantity% document(s) pour votre commande %title%</source> <target state="translated">%user% has delivered %quantity% document(s) from your order %title%</target> - <jms:reference-file line="58">eventsmanager/notify/orderdeliver.php</jms:reference-file> + <jms:reference-file line="66">eventsmanager/notify/orderdeliver.php</jms:reference-file> </trans-unit> <trans-unit id="991c3d22c945eab4d10ee5974ff3d12e0c165185" resname="%user% vous a delivre votre commande, consultez la en ligne a l'adresse suivante" approved="yes"> <source>%user% vous a delivre votre commande, consultez la en ligne a l'adresse suivante</source> @@ -407,9 +408,7 @@ <trans-unit id="4e633811d5f61e7ef626265d09c454908f56df17" resname="1 result" approved="yes"> <source>1 result</source> <target state="translated">1 result</target> - <jms:reference-file line="10">WorkZone/Browser/Results.html.twig</jms:reference-file> - <jms:reference-file line="113">WorkZone/Browser/Results.html.twig</jms:reference-file> - <jms:reference-file line="33">web/report/generate_tab.html.twig</jms:reference-file> + <jms:reference-file line="89">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="fbe42fc27804535bb12503b7990343d52141318c" resname="10 tags maximum" approved="yes"> <source>10 tags maximum</source> @@ -490,7 +489,7 @@ <trans-unit id="e6558cad562de9eeae699e5f7fc7c8ae076d38c8" resname="A record matches the unique identifier :" approved="yes"> <source>A record matches the unique identifier :</source> <target state="translated">A record matches the unique identifier:</target> - <jms:reference-file line="377">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="583">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b73e8cb42d796f56db9989972e41942d9135c2cc" resname="A required field is missing or has an empty value" approved="yes"> <source>A required field is missing or has an empty value</source> @@ -505,7 +504,7 @@ <trans-unit id="2966d9d14e339b1aa59cd4591bbb616f2af1f070" resname="A task has been creted, please run it to complete empty collection" approved="yes"> <source>A task has been creted, please run it to complete empty collection</source> <target state="translated">A task has been created, please run it to empty collection</target> - <jms:reference-file line="134">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="135">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="1745c0ee532c1592e3751ef7ef48c382df74c457" resname="A third-party application is a product developed apart from Phraseanet and that would access Phraseanet data." approved="yes"> <source>A third-party application is a product developed apart from Phraseanet and that would access Phraseanet data.</source> @@ -530,7 +529,7 @@ <trans-unit id="123328affd9ccbf569617c058422eb0104017f47" resname="API Webhook" approved="yes"> <source>API Webhook</source> <target state="translated">API Webhook</target> - <jms:reference-file line="45">TaskManager/Job/WebhookJob.php</jms:reference-file> + <jms:reference-file line="58">TaskManager/Job/WebhookJob.php</jms:reference-file> </trans-unit> <trans-unit id="62a3ad0fef668c4e2a220f6982de94942fbf1d1e" resname="AR" approved="yes"> <source>AR</source> @@ -586,7 +585,7 @@ <trans-unit id="322d1ea01506ec9e0344d8cd25dd10808d427343" resname="Access to the above bases constitutes acceptance of the following Terms of Use (TOU)." approved="yes"> <source>Access to the above bases constitutes acceptance of the following Terms of Use (TOU).</source> <target state="translated">Accessing to the bases below means acceptance of the following Terms of Use.</target> - <jms:reference-file line="185">web/account/access.html.twig</jms:reference-file> + <jms:reference-file line="19">web/account/access.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9db7fb32c517586a4123d511613b492d910aecaa" resname="Access user have readonly access" approved="yes"> <source>Access user have readonly access</source> @@ -618,7 +617,7 @@ <source>Accuse de reception</source> <target state="translated">Acknowledge receipt</target> <jms:reference-file line="91">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="160">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="161">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="589db073670b88b4b42b9f60b53d87e049fa5e3f" resname="Accuse de reception indisponible, vous n'avez pas declare d'adresse email" approved="yes"> <source>Accuse de reception indisponible, vous n'avez pas declare d'adresse email</source> @@ -633,12 +632,12 @@ <trans-unit id="c3cd636a585b20c40ac2df5ffb403e83cb2eef51" resname="Actions" approved="yes"> <source>Actions</source> <target state="translated">Actions</target> - <jms:reference-file line="12">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="26">Bridge/Flickr/actionelements.html.twig</jms:reference-file> - <jms:reference-file line="12">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="26">Bridge/Youtube/actionelements.html.twig</jms:reference-file> - <jms:reference-file line="12">Bridge/Dailymotion/actioncontainers.html.twig</jms:reference-file> <jms:reference-file line="26">Bridge/Dailymotion/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="12">Bridge/Dailymotion/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="26">Bridge/Youtube/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="12">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="26">Bridge/Flickr/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="12">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c4a4f00323184bd750ee72b5c05e6e17d1584bfd" resname="Activate highlight" approved="yes"> <source>Activate highlight</source> @@ -654,9 +653,9 @@ <trans-unit id="b96fa78d63e470aece8873de8f36bc6d07d0ce1e" resname="Activer" approved="yes"> <source>Activer</source> <target state="translated">Activate</target> + <jms:reference-file line="192">admin/databox/databox.html.twig</jms:reference-file> <jms:reference-file line="19">web/admin/editusers_timelimit.html.twig</jms:reference-file> <jms:reference-file line="15">web/admin/editusers_timelimit_sbas.html.twig</jms:reference-file> - <jms:reference-file line="192">admin/databox/databox.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2ad25a56545b3378229ca9165351fb4cb528c722" resname="Activer le grant_type de type password pour votre application" approved="yes"> <source>Activer le grant_type de type password pour votre application</source> @@ -668,18 +667,18 @@ <target state="translated">Activate a collection</target> <jms:reference-file line="184">admin/databox/databox.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="81c0d915fa6d82fd30661c5e66e204cea52bb2b5" resname="Activity"> + <trans-unit id="81c0d915fa6d82fd30661c5e66e204cea52bb2b5" resname="Activity" approved="yes"> <source>Activity</source> - <target state="new">Activity</target> - <jms:reference-file line="174">actions/Feedback/list.html.twig</jms:reference-file> + <target state="translated">Activity</target> + <jms:reference-file line="170">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="61cc55aa0453184734c3fa0b621eda6fa874bd83" resname="Add" approved="yes"> <source>Add</source> <target state="translated">Add</target> + <jms:reference-file line="161">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="509">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="510">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="39">prod/User/Add.html.twig</jms:reference-file> - <jms:reference-file line="154">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="352">prod/upload/lazaret.html.twig</jms:reference-file> - <jms:reference-file line="353">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="983c5aed52d2f74bf36e97dc34dbce97fdd43f5b" resname="Add a new field" approved="yes"> <source>Add a @@ -688,9 +687,9 @@ new field</target> <jms:reference-file line="43">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="c4e29ed18c13ce03d9ae30560dfc80bf47c0c86c" resname="Add a list"> + <trans-unit id="c4e29ed18c13ce03d9ae30560dfc80bf47c0c86c" resname="Add a list" approved="yes"> <source>Add a list</source> - <target state="new">Add a list</target> + <target state="translated">Add a list</target> <jms:reference-file line="8">actions/Feedback/lists-all.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5bc397abf190599d339e7a0543f2ba2a6dbc8e38" resname="Add a new field" approved="yes"> @@ -723,11 +722,16 @@ <target state="translated">Add new chapter</target> <jms:reference-file line="138">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> + <trans-unit id="1b27740ce4d6bea2dd21cee1c12fa73206c1444a" resname="Add this url" approved="yes"> + <source>Add this url</source> + <target state="translated">Add this url</target> + <jms:reference-file line="36">prod/upload/upload.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="f347a8ddd22508ed0310a2f9d8cf43dd96be34b1" resname="Add user" approved="yes"> <source>Add user</source> <target state="translated">Add user</target> - <jms:reference-file line="167">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="172">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="174">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="179">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="001c0aa88aab8441b8835c947c94c7290eadf779" resname="Additionnal modules" approved="yes"> <source>Additionnal modules</source> @@ -757,12 +761,13 @@ <trans-unit id="f38d53519197909c91536558af4b561b0b38c32f" resname="Advanced Search" approved="yes"> <source>Advanced Search</source> <target state="translated">Advanced search</target> - <jms:reference-file line="270">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="281">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="292">web/prod/index.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="36ee3c1fd529ba9fd031d157e04c6fecb356591c" resname="Advanced mode"> + <trans-unit id="36ee3c1fd529ba9fd031d157e04c6fecb356591c" resname="Advanced mode" approved="yes"> <source>Advanced mode</source> - <target state="new">Advanced mode</target> - <jms:reference-file line="53">actions/Feedback/list.html.twig</jms:reference-file> + <target state="translated">Advanced mode</target> + <jms:reference-file line="49">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2e8bbf396d28ec55f8a6987f31422f44b693a08c" resname="Advanced settings" approved="yes"> <source>Advanced settings</source> @@ -772,66 +777,66 @@ <trans-unit id="bc8f3ed663adc3f670da96cfd59f14ca2d063439" resname="Affichage" approved="yes"> <source>Affichage</source> <target state="translated">Display</target> - <jms:reference-file line="579">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="670">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1f9a8a4181e8f3f461180be54e1a63f70d9bce77" resname="Affichage au demarrage" approved="yes"> <source>Affichage au demarrage</source> <target state="translated">Display On startup</target> - <jms:reference-file line="683">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="774">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a810fdb68ba89818cce5c607021256e40cf14170" resname="Afficher la fiche descriptive" approved="yes"> <source>Afficher la fiche descriptive</source> <target state="translated">Show Caption</target> - <jms:reference-file line="849">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="940">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="946bf37a064ede9145bd8e3c7ce50e8608885518" resname="Afficher le titre" approved="yes"> <source>Afficher le titre</source> <target state="translated">Show Title</target> - <jms:reference-file line="858">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="949">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7627cf7574df870b584ab3bd8a67d62d7ab4a18b" resname="Afficher les status" approved="yes"> <source>Afficher les status</source> <target state="translated">Show Status</target> - <jms:reference-file line="840">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="931">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="47743dc906e82db1978c23daf01e4d5e727702bd" resname="Afficher une icone" approved="yes"> <source>Afficher une icone</source> <target state="translated">Display an Icon</target> - <jms:reference-file line="653">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="744">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="53c62ab422733fc26fc4d0b64a7da7548588ae8b" resname="After metadata" approved="yes"> <source>After metadata</source> <target state="translated">After captions</target> - <jms:reference-file line="641">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="732">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b9ba037c0e4c06d192c83e08070b15787f07daaa" resname="Aggregation" approved="yes"> <source>Aggregation</source> <target state="translated">Aggregation</target> - <jms:reference-file line="223">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="238">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="40a1dd8272b48953d037ba565c6189e9ef5cd06b" resname="Aide" approved="yes"> <source>Aide</source> <target state="translated">Help</target> - <jms:reference-file line="697">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="788">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c26a1a41764983bc03456d418ee43e732e5f513e" resname="Aide sur les expressions regulieres" approved="yes"> <source>Aide sur les expressions regulieres</source> <target state="translated">Help about Regular expressions</target> - <jms:reference-file line="315">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="317">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5e8a35671080dba23a7f84416dcf97fd975a33e6" resname="Ajouter a" approved="yes"> <source>Ajouter a</source> <target state="translated">Add to</target> - <jms:reference-file line="5">Bridge/Flickr/actionelements.html.twig</jms:reference-file> - <jms:reference-file line="5">Bridge/Youtube/actionelements.html.twig</jms:reference-file> <jms:reference-file line="5">Bridge/Dailymotion/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="5">Bridge/Youtube/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="5">Bridge/Flickr/actionelements.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6be348e8c91127640dc04e94dca7d5503ddb6c7d" resname="Ajouter ma selection courrante" approved="yes"> <source>Ajouter ma selection courrante</source> <target state="translated">Add my current selection</target> <jms:reference-file line="10">prod/Baskets/Create.html.twig</jms:reference-file> - <jms:reference-file line="22">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="15">prod/Story/Create.html.twig</jms:reference-file> + <jms:reference-file line="22">prod/orders/order_item.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8d391a678bc6acf01f3f67c57b07853c5a588171" resname="Ajouter un nouvel utilisateur" approved="yes"> <source>Ajouter un nouvel utilisateur</source> @@ -853,17 +858,23 @@ <target state="translated">All</target> <jms:reference-file line="35">Form/Configuration/CustomLinkFormType.php</jms:reference-file> <jms:reference-file line="13">WorkZone/Browser/Browser.html.twig</jms:reference-file> - <jms:reference-file line="193">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="203">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="213">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="223">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="233">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="243">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="189">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="199">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="209">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="219">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="229">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="239">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="8">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="cff1e86ef3cd4771d8b9a289d1e75a465d5b48a7" resname="All these conditions" approved="yes"> + <source>All these conditions</source> + <target state="translated">All these conditions</target> + <jms:reference-file line="414">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4f5920cee28837f31429fd82f7bc5a335272a436" resname="All values" approved="yes"> <source>All values</source> <target state="translated">All values</target> - <jms:reference-file line="232">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="247">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="bc5595b574bc9e623a22a54ae40ae0cef6c28e80" resname="Aller a" approved="yes"> <source>Aller a</source> @@ -880,11 +891,6 @@ <target state="translated">Allowed</target> <jms:reference-file line="37">web/account/authorized_apps.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="38bee8bd21d8a303b49f881d977af44c493ad168" resname="Allowed access to the following collections" approved="yes"> - <source>Allowed access to the following collections</source> - <target state="translated">Access allowed to the following collections</target> - <jms:reference-file line="30">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="c264a7efdbe0e0af2a6fe69e2bc9a89b90c5ec0e" resname="Allowed to access report" approved="yes"> <source>Allowed to access report</source> <target state="translated">Allow to access Report</target> @@ -933,14 +939,14 @@ <trans-unit id="f2daa38baf15cf880ed52b7ce074c1d24f9fd58a" resname="Alphabetic asc" approved="yes"> <source>Alphabetic asc</source> <target state="translated">Alphabetic asc</target> - <jms:reference-file line="714">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="731">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="743">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="805">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="822">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="834">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e7029550f725d4758c662974089acb89c467d221" resname="Alphabetic desc" approved="yes"> <source>Alphabetic desc</source> <target state="translated">Alphabetic desc</target> - <jms:reference-file line="716">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="807">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ebd447ea09611b090d7b8a12835ffaf79ea17e47" resname="Also delete records that rely on groupings." approved="yes"> <source>Also delete records that rely on groupings.</source> @@ -950,23 +956,8 @@ <trans-unit id="f0cf9a47c6b420dda55c973a12840600fc19b7fb" resname="An error occured" approved="yes"> <source>An error occured</source> <target state="translated">An error occurred</target> - <jms:reference-file line="173">Controller/Prod/BasketController.php</jms:reference-file> - <jms:reference-file line="163">Controller/Prod/MoveCollectionController.php</jms:reference-file> - <jms:reference-file line="214">Controller/Prod/StoryController.php</jms:reference-file> - <jms:reference-file line="243">Controller/Prod/LazaretController.php</jms:reference-file> - <jms:reference-file line="170">Controller/Prod/ToolsController.php</jms:reference-file> - <jms:reference-file line="185">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="225">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="266">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="449">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="517">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="557">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="595">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="633">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="666">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="699">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="807">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="71">Controller/Admin/DataboxesController.php</jms:reference-file> + <jms:reference-file line="118">Model/Manipulator/LazaretManipulator.php</jms:reference-file> + <jms:reference-file line="233">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="82">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="155">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="187">Controller/Admin/DataboxController.php</jms:reference-file> @@ -977,14 +968,34 @@ <jms:reference-file line="499">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="581">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="647">Controller/Admin/DataboxController.php</jms:reference-file> - <jms:reference-file line="118">Model/Manipulator/LazaretManipulator.php</jms:reference-file> - <jms:reference-file line="231">Model/Manipulator/LazaretManipulator.php</jms:reference-file> - <jms:reference-file line="25">admin/collection/suggested_value.html.twig</jms:reference-file> - <jms:reference-file line="23">admin/collection/collection.html.twig</jms:reference-file> - <jms:reference-file line="194">task-manager/task-editor/task.html.twig</jms:reference-file> - <jms:reference-file line="19">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="71">Controller/Admin/DataboxesController.php</jms:reference-file> + <jms:reference-file line="186">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="226">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="267">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="450">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="518">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="558">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="596">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="634">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="667">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="700">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="808">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="173">Controller/Prod/BasketController.php</jms:reference-file> + <jms:reference-file line="170">Controller/Prod/ToolsController.php</jms:reference-file> + <jms:reference-file line="257">Controller/Prod/LazaretController.php</jms:reference-file> + <jms:reference-file line="164">Controller/Prod/MoveCollectionController.php</jms:reference-file> + <jms:reference-file line="214">Controller/Prod/StoryController.php</jms:reference-file> <jms:reference-file line="653">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="19">admin/databox/databox.html.twig</jms:reference-file> <jms:reference-file line="15">web/admin/databases.html.twig</jms:reference-file> + <jms:reference-file line="23">admin/collection/collection.html.twig</jms:reference-file> + <jms:reference-file line="25">admin/collection/suggested_value.html.twig</jms:reference-file> + <jms:reference-file line="194">task-manager/task-editor/task.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="a16a3255c311eccbe2471bfc5b5cd92f3b907654" resname="An error occured when wanting to change status!"> + <source>An error occured when wanting to change status!</source> + <target state="new">An error occured when wanting to change status!</target> + <jms:reference-file line="136">Controller/Prod/LazaretController.php</jms:reference-file> </trans-unit> <trans-unit id="a518072a2c5c91cdd2591c1b8d79777664df1ea4" resname="An error occured while denying, please retry or contact an admin if problem persists" approved="yes"> <source>An error occured while denying, please retry or contact an admin if problem persists</source> @@ -1021,12 +1032,12 @@ <source>An error occurred</source> <target state="translated">An error occurred</target> <jms:reference-file line="77">Order/Controller/ProdOrderController.php</jms:reference-file> - <jms:reference-file line="145">Controller/Prod/BasketController.php</jms:reference-file> - <jms:reference-file line="125">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="521">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="108">Controller/Admin/SearchEngineController.php</jms:reference-file> - <jms:reference-file line="2008">Controller/Api/V1Controller.php</jms:reference-file> - <jms:reference-file line="2454">Controller/Api/V1Controller.php</jms:reference-file> + <jms:reference-file line="126">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="145">Controller/Prod/BasketController.php</jms:reference-file> + <jms:reference-file line="2050">Controller/Api/V1Controller.php</jms:reference-file> + <jms:reference-file line="2496">Controller/Api/V1Controller.php</jms:reference-file> <jms:reference-file line="81">web/admin/statusbit.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7e861f79c8744b5cb0b59ce4f0100603952751b1" resname="An error occurred reading this file" approved="yes"> @@ -1057,7 +1068,7 @@ <trans-unit id="aae1263383b96270870516a4097020921912df74" resname="Aperture" approved="yes"> <source>Aperture</source> <target state="translated">Aperture</target> - <jms:reference-file line="284">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="295">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> <jms:reference-file line="104">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="013cf62916a339608ae3c498d34b9e55afa46dc1" resname="Apparait aussi dans ces paniers" approved="yes"> @@ -1124,8 +1135,8 @@ <trans-unit id="b8fb717785e899f8e3bacfd74a395da7a434af9e" resname="Apply changes" approved="yes"> <source>Apply changes</source> <target state="translated">Apply changes</target> - <jms:reference-file line="113">actions/Property/index.html.twig</jms:reference-file> <jms:reference-file line="49">actions/Property/type.html.twig</jms:reference-file> + <jms:reference-file line="113">actions/Property/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0e585e139fb6fc86d30e02ba78bdbb4dff6ac6b9" resname="Apply status on story children." approved="yes"> <source>Apply status on story children.</source> @@ -1145,7 +1156,8 @@ <trans-unit id="2621c6fd51a58e1d1d5c491aac71488647b20224" resname="Archive" approved="yes"> <source>Archive</source> <target state="translated">Archive</target> - <jms:reference-file line="170">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="180">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="181">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6e8fd96e9e2759d3e405608bfb1a064d3338b4dd" resname="Are you sure you want delete users rights ?" approved="yes"> <source>Are you sure you want delete users rights ?</source> @@ -1161,7 +1173,7 @@ <source>Are you sure you want to delete this list ?</source> <target state="translated">Are you sure you want to delete this list?</target> <jms:reference-file line="83">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="131">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="132">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0ad86fda5d367a9ff74a9c278344f3bb8f75c223" resname="Are you sure you want to rebuild the sub-definitions of selected records?" approved="yes"> <source>Are you sure you want to rebuild the sub-definitions of selected records?</source> @@ -1197,7 +1209,7 @@ <trans-unit id="b2ed82f1bf1c30916cde300ded82176c2ff0300a" resname="Aucun" approved="yes"> <source>Aucun</source> <target state="translated">None</target> - <jms:reference-file line="214">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="229">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3f9f7ad2bc75b4c34160ea51aeff9a273da06c1f" resname="Aucun bridge disponible. Veuillez contacter un administrateur." approved="yes"> <source>Aucun bridge disponible. Veuillez contacter un administrateur.</source> @@ -1212,7 +1224,7 @@ <trans-unit id="5c4eb810a8d51375a0e76c76d183446905d39d3a" resname="Aucun statut editable" approved="yes"> <source>Aucun statut editable</source> <target state="translated">No editable status</target> - <jms:reference-file line="207">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="209">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e8f882731020de75c4168f82456175a386828cd1" resname="Aucune" approved="yes"> <source>Aucune</source> @@ -1253,33 +1265,38 @@ <trans-unit id="acdac205f5e24cb75113c4b281a2c13f08b75159" resname="Audio" approved="yes"> <source>Audio</source> <target state="translated">Audio</target> - <jms:reference-file line="296">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="321">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8074d6bbaaca47f35831923ebfd25c58be4b1cee" resname="Audio Birate" approved="yes"> <source>Audio Birate</source> <target state="translated">Audio Bitrate</target> - <jms:reference-file line="32">Media/Subdef/Audio.php</jms:reference-file> + <jms:reference-file line="35">Media/Subdef/Audio.php</jms:reference-file> </trans-unit> <trans-unit id="d6caeca6303e9c722c929fbb58744a013a7ba7db" resname="Audio Codec" approved="yes"> <source>Audio Codec</source> <target state="translated">Audio Codec</target> + <jms:reference-file line="37">Media/Subdef/Audio.php</jms:reference-file> <jms:reference-file line="36">Media/Subdef/Video.php</jms:reference-file> - <jms:reference-file line="34">Media/Subdef/Audio.php</jms:reference-file> </trans-unit> <trans-unit id="a80232c45008d73666e95544f7c9c8c0896536af" resname="Audio Samplerate" approved="yes"> <source>Audio Samplerate</source> <target state="translated">Audio Samplerate</target> - <jms:reference-file line="320">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="339">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + </trans-unit> + <trans-unit id="31afcc88a7f552bfd4d330c2c70d8fafd7b8e0f9" resname="Audio channel" approved="yes"> + <source>Audio channel</source> + <target state="translated">Audio channel</target> + <jms:reference-file line="38">Media/Subdef/Audio.php</jms:reference-file> </trans-unit> <trans-unit id="bdeea21f6257f434dcfcffb4f0470a042a1b5c17" resname="Audio codec" approved="yes"> <source>Audio codec</source> <target state="translated">Audio codec</target> - <jms:reference-file line="330">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="353">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="27be4ad944410219f1a8dd01cc5e216a09c16646" resname="AudioSamplerate" approved="yes"> <source>AudioSamplerate</source> <target state="translated">Audio sample rate</target> - <jms:reference-file line="33">Media/Subdef/Audio.php</jms:reference-file> + <jms:reference-file line="36">Media/Subdef/Audio.php</jms:reference-file> </trans-unit> <trans-unit id="9e761dfcff90efcb07867accd3e8b109762fc596" resname="Auth_token directory path" approved="yes"> <source>Auth_token directory path</source> @@ -1322,9 +1339,9 @@ <target state="translated">DEPRECATED, Authorise *Phraseanet Navigator*</target> <jms:reference-file line="27">Form/Configuration/APIClientsFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="b85de40822e66ce4309b94ccad5bb731f2a89373" resname="Authorize Adobe cc Plugin to connect."> + <trans-unit id="b85de40822e66ce4309b94ccad5bb731f2a89373" resname="Authorize Adobe cc Plugin to connect." approved="yes"> <source>Authorize Adobe cc Plugin to connect.</source> - <target state="new">Authorize Adobe cc Plugin to connect.</target> + <target state="translated">Authorize Adobe CC Plugin to log in</target> <jms:reference-file line="36">Form/Configuration/APIClientsFormType.php</jms:reference-file> </trans-unit> <trans-unit id="6e1ead524b95ba3b45281df7ba45d2addbbf1a79" resname="Authorize Microsoft Office Plugin to connect." approved="yes"> @@ -1350,20 +1367,20 @@ <trans-unit id="11d4e8a639615510da9cd75da3031e91f4f551bb" resname="Autorisation d'acces" approved="yes"> <source>Autorisation d'acces</source> <target state="translated">Access authorization</target> - <jms:reference-file line="89">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="69">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="89">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ff83984310dc25c919f046ccac2c300469efa084" resname="Autoriser" approved="yes"> <source>Autoriser</source> <target state="translated">Authorize</target> - <jms:reference-file line="105">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="85">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="105">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b0f9d3132d4759c2fd88c394935503435cebbc79" resname="Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ?" approved="yes"> <source>Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ?</source> <target state="translated">Allow application %application_name% to access content on %home_title%?</target> - <jms:reference-file line="94">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="74">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="94">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="45fc87c2d0ade465c57c00f7aa434a4d0bebe106" resname="Available in multi-export tab" approved="yes"> <source>Available in multi-export tab</source> @@ -1387,12 +1404,12 @@ <trans-unit id="738444fb7badaeb28467562ed8af8e1311e42eac" resname="Back to Feedback" approved="yes"> <source>Back to Feedback</source> <target state="translated">Back to Feedback</target> - <jms:reference-file line="275">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="280">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6b61d67b7d0f7a7548068655adbd7f0a91a2eb8d" resname="Back to Push" approved="yes"> <source>Back to Push</source> <target state="translated">Back to Push</target> - <jms:reference-file line="271">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="276">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ba753fe34fb03869657d308ee16ef7bc8cc695f9" resname="Back to basket list" approved="yes"> <source>Back to basket list</source> @@ -1402,10 +1419,10 @@ <trans-unit id="ae1378dc6a6f7df2435c398db9e6eac71646092b" resname="Bad request format, only JSON is allowed" approved="yes"> <source>Bad request format, only JSON is allowed</source> <target state="translated">Bad request format. Only JSON is allowed.</target> + <jms:reference-file line="187">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="573">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="58">Controller/Admin/RootController.php</jms:reference-file> <jms:reference-file line="220">Controller/Admin/RootController.php</jms:reference-file> - <jms:reference-file line="573">Controller/Admin/DataboxController.php</jms:reference-file> - <jms:reference-file line="180">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="fa0d7d2cb29f1ca72b4108bfaa0bf5686d3910ff" resname="Bad request, please contact an admin" approved="yes"> <source>Bad request, please contact an admin</source> @@ -1420,8 +1437,8 @@ <trans-unit id="3e06b5206dcaf1dca9ccaab68e3fbb918b450113" resname="Base %base%" approved="yes"> <source>Base %base%</source> <target state="translated">Database %base%</target> - <jms:reference-file line="4">web/admin/editusers_timelimit.html.twig</jms:reference-file> <jms:reference-file line="42">web/admin/editusers_quotas.html.twig</jms:reference-file> + <jms:reference-file line="4">web/admin/editusers_timelimit.html.twig</jms:reference-file> <jms:reference-file line="4">web/admin/editusers_timelimit_sbas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="65a99419ccf90ea10839c45a87a109f3b8c581a9" resname="Base could not be created" approved="yes"> @@ -1462,7 +1479,7 @@ <trans-unit id="83602366c2bc77de4a17181cf566da428eaee78e" resname="Basket is not found" approved="yes"> <source>Basket is not found</source> <target state="translated">Basket is not found</target> - <jms:reference-file line="166">Model/Repositories/BasketRepository.php</jms:reference-file> + <jms:reference-file line="184">Model/Repositories/BasketRepository.php</jms:reference-file> </trans-unit> <trans-unit id="f149359beace4d242ac47578384e4cb7e001b9e7" resname="Basket updated" approved="yes"> <source>Basket updated</source> @@ -1502,9 +1519,9 @@ <trans-unit id="38481c2ad1ad4de56004cc8e542ad04652002add" resname="Browse Baskets" approved="yes"> <source>Browse Baskets</source> <target state="translated">Browse baskets</target> - <jms:reference-file line="211">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="213">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="214">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="215">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="216">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="54a2cf5e634dbba0be2bf8a55f79252f5c790bdb" resname="Browser" approved="yes"> <source>Browser</source> @@ -1514,7 +1531,7 @@ <trans-unit id="2d90cbe9431fb9e8d6013b651c2fb46a598de9eb" resname="Business Fields" approved="yes"> <source>Business Fields</source> <target state="translated">Business field</target> - <jms:reference-file line="197">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="212">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7985544ae054430f8b4416a883fa9d0b084ee0cf" resname="By checking this box, you accept %beginning_link% Terms of Use %end_link%" approved="yes"> <source>By checking this box, you accept %beginning_link% Terms of Use %end_link%</source> @@ -1532,32 +1549,27 @@ <trans-unit id="2a8e6c2695279fb4760d299974903123f751b3bf" resname="By field" approved="yes"> <source>By field</source> <target state="translated">By field</target> - <jms:reference-file line="355">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="384">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="48bf97f55c15fa2acb0a283e3a7e3f4f738b781d" resname="CHAMPS" approved="yes"> <source>CHAMPS</source> <target state="translated">Fields setup</target> <jms:reference-file line="123">web/admin/tree.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="23cb1ba2135af54bb7f9dc4ac628c8c16b1274c8" resname="CSV export" approved="yes"> - <source>CSV export</source> - <target state="translated">CSV export</target> - <jms:reference-file line="22">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="07d75a5073e3247c7ac54d3a797d3f777b421863" resname="Camera Model" approved="yes"> <source>Camera Model</source> <target state="translated">Camera model</target> - <jms:reference-file line="274">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="281">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> <jms:reference-file line="56">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="77dfd2135f4db726c47299bb55be26f7f4525a46" resname="Cancel" approved="yes"> <source>Cancel</source> <target state="translated">Cancel</target> <jms:reference-file line="119">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="38">prod/User/Add.html.twig</jms:reference-file> <jms:reference-file line="52">prod/actions/delete_records_confirm.html.twig</jms:reference-file> - <jms:reference-file line="115">actions/Property/index.html.twig</jms:reference-file> <jms:reference-file line="50">actions/Property/type.html.twig</jms:reference-file> + <jms:reference-file line="115">actions/Property/index.html.twig</jms:reference-file> + <jms:reference-file line="38">prod/User/Add.html.twig</jms:reference-file> <jms:reference-file line="77">task-manager/task-editor/task.html.twig</jms:reference-file> <jms:reference-file line="42">user/import/view.html.twig</jms:reference-file> <jms:reference-file line="68">admin/fields/templates.html.twig</jms:reference-file> @@ -1565,8 +1577,8 @@ <trans-unit id="ae1f9ef7dc1cee4760e7f208f36c225e3ab1aa1f" resname="Cancel all" approved="yes"> <source>Cancel all</source> <target state="translated">Cancel all</target> + <jms:reference-file line="131">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="121">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="128">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="82695f04e6097106923a58949a9e1b0fadd1a989" resname="Cannot upload Zero Byte files" approved="yes"> <source>Cannot upload Zero Byte files</source> @@ -1586,9 +1598,9 @@ <trans-unit id="790d9876f3745353f60eb4d5232b26bb597ca5a3" resname="Categorie" approved="yes"> <source>Categorie</source> <target state="translated">Category</target> + <jms:reference-file line="38">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> <jms:reference-file line="58">Bridge/Youtube/upload.html.twig</jms:reference-file> <jms:reference-file line="45">Bridge/Youtube/video_modify.html.twig</jms:reference-file> - <jms:reference-file line="38">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> </trans-unit> <trans-unit id="bf1584669680e7841bf069b9495ea2f012bff60b" resname="Ce champ est decrit comme element du %DublinCoreElementSet%" approved="yes"> <source>Ce champ est decrit comme element du %DublinCoreElementSet%</source> @@ -1620,12 +1632,12 @@ <target state="translated">This field is mandatory</target> <jms:reference-file line="691">Bridge/Api/Flickr.php</jms:reference-file> <jms:reference-file line="713">Bridge/Api/Flickr.php</jms:reference-file> - <jms:reference-file line="798">Bridge/Api/Dailymotion.php</jms:reference-file> - <jms:reference-file line="823">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="905">Bridge/Api/Youtube.php</jms:reference-file> <jms:reference-file line="908">Bridge/Api/Youtube.php</jms:reference-file> <jms:reference-file line="931">Bridge/Api/Youtube.php</jms:reference-file> <jms:reference-file line="934">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="798">Bridge/Api/Dailymotion.php</jms:reference-file> + <jms:reference-file line="823">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="e821f6f0c9613624f82ae880c01573ab0c0a0eac" resname="Ce champ est relie a une branche de thesaurus" approved="yes"> <source>Ce champ est relie a une branche de thesaurus</source> @@ -1648,10 +1660,10 @@ <target state="translated">Too long, expecting %length% characters max.</target> <jms:reference-file line="694">Bridge/Api/Flickr.php</jms:reference-file> <jms:reference-file line="716">Bridge/Api/Flickr.php</jms:reference-file> - <jms:reference-file line="801">Bridge/Api/Dailymotion.php</jms:reference-file> - <jms:reference-file line="826">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="911">Bridge/Api/Youtube.php</jms:reference-file> <jms:reference-file line="937">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="801">Bridge/Api/Dailymotion.php</jms:reference-file> + <jms:reference-file line="826">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="6a436b2b01f08a63284006c23ac3b38c9a699cbd" resname="Ce champ est utilise en titre a l'affichage" approved="yes"> <source>Ce champ est utilise en titre a l'affichage</source> @@ -1768,8 +1780,8 @@ <trans-unit id="7135ee5eaed0e404c4fcf48d6eb7d2808f8e55f2" resname="Clear list" approved="yes"> <source>Clear list</source> <target state="translated">Clear list</target> + <jms:reference-file line="112">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="109">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="109">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0fcdb8c5215c8bd73769c3492e47d86ec3f6837e" resname="Client application" approved="yes"> <source>Client application</source> @@ -1791,11 +1803,6 @@ <target state="translated">Check all boxes from column</target> <jms:reference-file line="43">web/admin/index.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="9f6dde6e53de78e748cd510d4dcd153b38a0b855" resname="Cochez les cases correspondantes aux colonnes que vous desirez voire apparaitre dans le report" approved="yes"> - <source>Cochez les cases correspondantes aux colonnes que vous desirez voire apparaitre dans le report</source> - <target state="translated">Select the columns to be displayed in report</target> - <jms:reference-file line="4">web/report/listColumn.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="3db8c513d71fe9dd08684c52c36e0a9d5bc591c5" resname="Code d'acces" approved="yes"> <source>Code d'acces</source> <target state="translated">Access code</target> @@ -1804,7 +1811,7 @@ <trans-unit id="397cd77cd56f7d480a93a17770e90f2d8a1ac032" resname="Codec Audio" approved="yes"> <source>Codec Audio</source> <target state="translated">Audio codec</target> - <jms:reference-file line="83">actions/Tools/videoEditor.html.twig</jms:reference-file> + <jms:reference-file line="96">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="140">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="672e654e54323537399e2353680dd144c0b9af32" resname="Codec Video" approved="yes"> @@ -1816,24 +1823,24 @@ <source>Collection</source> <target state="translated">Collection</target> <jms:reference-file line="3">prod/Story/Create.html.twig</jms:reference-file> - <jms:reference-file line="344">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="441">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="12">admin/databox/details.html.twig</jms:reference-file> </trans-unit> <trans-unit id="814cd4d896d0d93eac2f4d71dc24c91a46cd5e28" resname="Collection %collection%" approved="yes"> <source>Collection %collection%</source> <target state="translated">Collection %collection%</target> - <jms:reference-file line="8">web/admin/editusers_timelimit.html.twig</jms:reference-file> <jms:reference-file line="46">web/admin/editusers_quotas.html.twig</jms:reference-file> + <jms:reference-file line="8">web/admin/editusers_timelimit.html.twig</jms:reference-file> </trans-unit> <trans-unit id="915c5b033858560e7d04ae453279b9418637eade" resname="Collection empty successful" approved="yes"> <source>Collection empty successful</source> <target state="translated">Collection successfully emptied</target> - <jms:reference-file line="131">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="132">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="898b7e63805ba2e4277ee0f4523c6376dcd0e579" resname="Collection order" approved="yes"> <source>Collection order</source> <target state="translated">Collection order</target> - <jms:reference-file line="706">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="797">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f704cc39c26f37922029d5ff58c61b607d384521" resname="Color Depth" approved="yes"> <source>Color Depth</source> @@ -1848,13 +1855,13 @@ <trans-unit id="0b8cb446bc8277d5fd8242aa11ecb0054f9bbaa6" resname="Colorspace" approved="yes"> <source>Colorspace</source> <target state="translated">Colorspace</target> - <jms:reference-file line="340">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="367">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="478443411674f0df06db3b28230d37625383f8c2" resname="Commande" approved="yes"> <source>Commande</source> <target state="translated">Order</target> <jms:reference-file line="20">eventsmanager/notify/ordernotdelivered.php</jms:reference-file> - <jms:reference-file line="20">eventsmanager/notify/orderdeliver.php</jms:reference-file> + <jms:reference-file line="23">eventsmanager/notify/orderdeliver.php</jms:reference-file> </trans-unit> <trans-unit id="71e4baa0bd2b501d3cffecac38f650c5db86c3f4" resname="Commande du %date%" approved="yes"> <source>Commande du %date%</source> @@ -1864,14 +1871,14 @@ <trans-unit id="17275970238d7ec2311e2097df8868fb3d338585" resname="Commandes" approved="yes"> <source>Commandes</source> <target state="translated">Orders</target> - <jms:reference-file line="119">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="120">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7a1994999d181deea68e4304b3346e78f838ecb7" resname="Company" approved="yes"> <source>Company</source> <target state="translated">Company</target> - <jms:reference-file line="20">prod/User/Add.html.twig</jms:reference-file> - <jms:reference-file line="177">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="173">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="22">actions/Feedback/ListsMacros.html.twig</jms:reference-file> + <jms:reference-file line="20">prod/User/Add.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ebbde5a0aa9da74fc06083bd39398b2caecf42e5" resname="Complete the fields below to register on %instance_title%!" approved="yes"> <source>Complete the fields below to register on %instance_title%!</source> @@ -1886,10 +1893,10 @@ <trans-unit id="f7853f027e327a9ddf52dd60f8d1719ae6904333" resname="Confidentialite" approved="yes"> <source>Confidentialite</source> <target state="translated">Confidentiality</target> - <jms:reference-file line="87">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="56">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="75">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="56">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="87">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="56">Bridge/Youtube/video_modify.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6e9445beaddb548587c6f275e49da38e9fc7b785" resname="Confidentialite : privee" approved="yes"> <source>Confidentialite : privee</source> @@ -1904,7 +1911,7 @@ <trans-unit id="754164850f38c1ecdaf6b8ed894cb192bc36c5f4" resname="Configuration" approved="yes"> <source>Configuration</source> <target state="translated">Configuration</target> - <jms:reference-file line="580">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="671">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="37c3584d7b7d64dcff10d75caf719d4908e1f433" resname="Confirm new email address" approved="yes"> <source>Confirm new email address</source> @@ -1929,13 +1936,13 @@ <trans-unit id="6512ee1541e9a6c52d5bf7cf465332e8df25ea3c" resname="Connection" approved="yes"> <source>Connection</source> <target state="translated">Login</target> - <jms:reference-file line="74">login/oauth/login.html.twig</jms:reference-file> - <jms:reference-file line="15">login/providers/bind.html.twig</jms:reference-file> - <jms:reference-file line="73">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="15">login/providers/mapping.html.twig</jms:reference-file> <jms:reference-file line="89">login/providers/mapping.html.twig</jms:reference-file> + <jms:reference-file line="15">login/providers/bind.html.twig</jms:reference-file> + <jms:reference-file line="73">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="24">web/login/index.html.twig</jms:reference-file> - <jms:reference-file line="84">web/login/index.html.twig</jms:reference-file> + <jms:reference-file line="85">web/login/index.html.twig</jms:reference-file> + <jms:reference-file line="74">login/oauth/login.html.twig</jms:reference-file> </trans-unit> <trans-unit id="64b7896508144a1f427b5bad0d51c6b139c610f3" resname="Connection is OK but database does not exists or can not be accessed" approved="yes"> <source>Connection is OK but database does not exists or can not be accessed</source> @@ -1957,6 +1964,11 @@ <target state="translated">Check Online for required list of components and web server setup</target> <jms:reference-file line="311">web/setup/step2.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="33e15d008d511f3101566a2e25203ef2a3f605a0" resname="Contains" approved="yes"> + <source>Contains</source> + <target state="translated">Contains</target> + <jms:reference-file line="433">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="34326e71e2592544dedcb84077a6317dc5a5e700" resname="Continuer ?" approved="yes"> <source>Continuer ?</source> <target state="translated">Continue ?</target> @@ -1995,7 +2007,7 @@ <trans-unit id="2d4f012e5f06719ae9bbd6de1696d7502474ba2d" resname="Could not perform request, please contact an administrator." approved="yes"> <source>Could not perform request, please contact an administrator.</source> <target state="translated">Request can't be performed. Please contact an administrator.</target> - <jms:reference-file line="87">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="94">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="c183d160b24ba4d8cd1a39ffb5ceed69be38ee51" resname="Could not retrieve the file ID, please retry or contact an admin if problem persist" approved="yes"> <source>Could not retrieve the file ID, please retry or contact an admin if problem persist</source> @@ -2010,17 +2022,17 @@ <trans-unit id="7ebde54d7a6733f04781a2112a3d7548cb144e1f" resname="Couleur de selection" approved="yes"> <source>Couleur de selection</source> <target state="translated">Selection color</target> - <jms:reference-file line="674">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="765">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d523ebbd10146cdfd39dee077f04c9d08468d0bc" resname="Country" approved="yes"> <source>Country</source> <target state="translated">Country</target> - <jms:reference-file line="183">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="179">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="36">actions/Feedback/ListsMacros.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="1a86d07315c59a10355c667fbd3cdd3d813aa476" resname="Create a user"> + <trans-unit id="1a86d07315c59a10355c667fbd3cdd3d813aa476" resname="Create a user" approved="yes"> <source>Create a user</source> - <target state="new">Create a user</target> + <target state="translated">Create a user</target> <jms:reference-file line="16">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="233c58630043458775b6173975ce442f854a9c77" resname="Create an account manually" approved="yes"> @@ -2051,9 +2063,9 @@ <trans-unit id="2bd00521d39c34d7b8a4a42573e1cf42fb319036" resname="Creer" approved="yes"> <source>Creer</source> <target state="translated">Create</target> - <jms:reference-file line="4">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="4">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> <jms:reference-file line="4">Bridge/Dailymotion/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="4">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="4">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e0c179a64761a8abdbd1a1ef499e6aa7fd41b516" resname="Creer la tache d'ecriture des metadonnees" approved="yes"> <source>Creer la tache d'ecriture des metadonnees</source> @@ -2098,8 +2110,8 @@ <trans-unit id="6a2b9fb6f6a60bde44a1bbe5e058c013cb1004ea" resname="Creer une playlist" approved="yes"> <source>Creer une playlist</source> <target state="translated">Create a Playlist</target> - <jms:reference-file line="4">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> <jms:reference-file line="4">Bridge/Dailymotion/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="4">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> </trans-unit> <trans-unit id="27c26eb5f5ded79caa39c9dd44376bf3556f6466" resname="Creez une application pour commencer a utiliser l'API Phraseanet" approved="yes"> <source>Creez une application pour commencer a utiliser l'API Phraseanet</source> @@ -2121,7 +2133,7 @@ errors</source> <target state="translated">Current configuration contains some errors</target> - <jms:reference-file line="290">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="309">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="31b3c410ee3a3630f3efc08bae2fd9d06ec16ff4" resname="Current operations cannot be executed because the site is temporarily in maintenance mode. Wait a few minutes and try your request again" approved="yes"> <source>Current operations cannot be executed because the site is temporarily in maintenance mode. Wait a few minutes and try your request again</source> @@ -2219,31 +2231,31 @@ <trans-unit id="eb9a4bc1c0c153e4e4b042a79113b815b7e3021d" resname="Date" approved="yes"> <source>Date</source> <target state="translated">Date</target> - <jms:reference-file line="337">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="434">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2aafad40063bdb20757ad69b9fc9e0a06d6ca1c1" resname="Date Added" approved="yes"> <source>Date Added</source> <target state="translated">Date added</target> - <jms:reference-file line="348">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="377">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a4dde3acaa2424fe7135b962c49e37b13b1ebb43" resname="Date Creation" approved="yes"> <source>Date Creation</source> <target state="translated">Creation date</target> <jms:reference-file line="55">admin/publications/list.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="ae5ac088b6ef50c2a9e1ccf96d6f3c6d65cc4c05" resname="Date Updated"> + <trans-unit id="ae5ac088b6ef50c2a9e1ccf96d6f3c6d65cc4c05" resname="Date Updated" approved="yes"> <source>Date Updated</source> - <target state="new">Date Updated</target> - <jms:reference-file line="351">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Date Updated</target> + <jms:reference-file line="380">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="910c2f8e114bda3eef68b7f17eee5e864be52dc4" resname="Date de connexion" approved="yes"> <source>Date de connexion</source> <target state="translated">Login date</target> <jms:reference-file line="22">web/account/sessions.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="d5e8d1af5f3c137fb998b7afa347eeea683a7229" resname="Date de création"> + <trans-unit id="d5e8d1af5f3c137fb998b7afa347eeea683a7229" resname="Date de création" approved="yes"> <source>Date de création</source> - <target state="new">Date de création</target> + <target state="translated">Creation date</target> <jms:reference-file line="10">prod/Baskets/Reorder.html.twig</jms:reference-file> <jms:reference-file line="9">prod/Story/Reorder.html.twig</jms:reference-file> </trans-unit> @@ -2254,12 +2266,17 @@ <jms:reference-file line="103">prod/orders/order_box.html.twig</jms:reference-file> <jms:reference-file line="154">prod/orders/order_box.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="c004345fde85bded2c74513e29c8cd58d74b594f" resname="Date de modification"> + <trans-unit id="c004345fde85bded2c74513e29c8cd58d74b594f" resname="Date de modification" approved="yes"> <source>Date de modification</source> - <target state="new">Date de modification</target> + <target state="translated">Modification date</target> <jms:reference-file line="11">prod/Baskets/Reorder.html.twig</jms:reference-file> <jms:reference-file line="10">prod/Story/Reorder.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="ce084029e351b4bfa9f425ae70e8aaa14a8904e5" resname="Date(s) from field(s)" approved="yes"> + <source>Date(s) from field(s)</source> + <target state="translated">Date(s) from field(s)</target> + <jms:reference-file line="459">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="6b98c9b528241fc8135fb9fd472c7db12ec14964" resname="De" approved="yes"> <source>De</source> <target state="translated">From</target> @@ -2301,7 +2318,7 @@ <trans-unit id="21cec17f6cd9c992f10804a71ea6d286a56c456a" resname="Default basket" approved="yes"> <source>Default basket</source> <target state="translated">Default basket</target> - <jms:reference-file line="48">Phrasea/Helper/WorkZone.php</jms:reference-file> + <jms:reference-file line="49">Phrasea/Helper/WorkZone.php</jms:reference-file> </trans-unit> <trans-unit id="1747ef3d688685c5844db2dc7c98aafd78ce3893" resname="Default export title" approved="yes"> <source>Default export title</source> @@ -2336,7 +2353,7 @@ <trans-unit id="93603718ec74d5e4b9bc11e64f36a5d90f03f48e" resname="Defined by admin" approved="yes"> <source>Defined by admin</source> <target state="translated">Defined by admin</target> - <jms:reference-file line="712">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="803">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3b6bf506a535e9bf22431eace58b8f2f704dbd2a" resname="Defined in Apache configuration" approved="yes"> <source>Defined in Apache configuration</source> @@ -2356,10 +2373,15 @@ <trans-unit id="f6fdbe48dc54dd86f63097a03bd24094dedd713a" resname="Delete" approved="yes"> <source>Delete</source> <target state="translated">Delete</target> - <jms:reference-file line="355">prod/upload/lazaret.html.twig</jms:reference-file> - <jms:reference-file line="356">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="512">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="513">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="25">admin/task-manager/templates.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="1b5737dea168495fa0495e00ce58b4832772a492" resname="Delete account successfull" approved="yes"> + <source>Delete account successfull</source> + <target state="translated">Account deleted successfully</target> + <jms:reference-file line="21">Notification/Mail/MailSuccessAccountDelete.php</jms:reference-file> + </trans-unit> <trans-unit id="7533d4121d8de10e9b2b4b9c5afa5dfbde846af1" resname="Delete all users rights" approved="yes"> <source>Delete all users rights</source> <target state="translated">Delete all users rights</target> @@ -2369,7 +2391,7 @@ <trans-unit id="ddd0876d47dc58418b245cf6a3d73a97d8b09400" resname="Delete basket" approved="yes"> <source>Delete basket</source> <target state="translated">Delete basket</target> - <jms:reference-file line="37">WorkZone/Browser/Results.html.twig</jms:reference-file> + <jms:reference-file line="18">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dba1d3851f7f3efec8a1956e040bae0328da98d0" resname="Delete current" approved="yes"> <source>Delete current</source> @@ -2381,14 +2403,14 @@ <target state="translated">Delete records</target> <jms:reference-file line="43">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> - <trans-unit id="c6d08354792522fdbda121b635282d0f2c41c507" resname="Delete the selection"> + <trans-unit id="c6d08354792522fdbda121b635282d0f2c41c507" resname="Delete the selection" approved="yes"> <source>Delete the selection</source> - <target state="new">Delete the selection</target> - <jms:reference-file line="72">actions/Feedback/list.html.twig</jms:reference-file> + <target state="translated">Delete the selection</target> + <jms:reference-file line="68">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="5934638eb5d7384a3c63899019365bb9b7b53aff" resname="Delete the subview ?"> + <trans-unit id="5934638eb5d7384a3c63899019365bb9b7b53aff" resname="Delete the subview ?" approved="yes"> <source>Delete the subview ?</source> - <target state="new">Delete the subview ?</target> + <target state="translated">Delete the subview ?</target> <jms:reference-file line="343">web/admin/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="eedc3da946c6f6f8cca37df0edc42543d09e1464" resname="Demarrer avec l'API Phraseanet" approved="yes"> @@ -2406,9 +2428,9 @@ <trans-unit id="57ec2e2addbd6a4117f16c1fff5f491fe3c5642c" resname="Deplacement %n_element% elements" approved="yes"> <source>Deplacement %n_element% elements</source> <target state="translated">Moving %n_element% documents</target> - <jms:reference-file line="6">Bridge/Flickr/photo_moveinto_photoset.html.twig</jms:reference-file> - <jms:reference-file line="6">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> <jms:reference-file line="6">Bridge/Dailymotion/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="6">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="6">Bridge/Flickr/photo_moveinto_photoset.html.twig</jms:reference-file> </trans-unit> <trans-unit id="17c91ee147631da4f5aacabed0e198eb02955790" resname="Dernier access" approved="yes"> <source>Dernier access</source> @@ -2418,8 +2440,8 @@ <trans-unit id="821ed4c906c76220f9dc83eba5e0b861e22baa04" resname="Derniere mise a jour le %updated_on%" approved="yes"> <source>Derniere mise a jour le %updated_on%</source> <target state="translated">Last Update on %updated_on%</target> - <jms:reference-file line="45">prod/results/entry.html.twig</jms:reference-file> <jms:reference-file line="39">prod/results/feeds_entry.html.twig</jms:reference-file> + <jms:reference-file line="45">prod/results/entry.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dcce9368ad626fe4addfa719b7a16807d464aa9b" resname="Derniers envois" approved="yes"> <source>Derniers envois</source> @@ -2434,39 +2456,40 @@ <trans-unit id="55f8ebc805e65b5b71ddafdae390e3be2bcd69af" resname="Description" approved="yes"> <source>Description</source> <target state="translated">Caption</target> - <jms:reference-file line="19">prod/Tooltip/DCESFieldInfo.html.twig</jms:reference-file> - <jms:reference-file line="52">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="31">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> - <jms:reference-file line="24">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="44">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="24">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="31">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="43">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="31">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="24">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="44">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="31">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="24">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="52">Bridge/Flickr/upload.html.twig</jms:reference-file> + <jms:reference-file line="31">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> + <jms:reference-file line="19">prod/Tooltip/DCESFieldInfo.html.twig</jms:reference-file> <jms:reference-file line="68">web/developers/application_form.html.twig</jms:reference-file> </trans-unit> <trans-unit id="85cce1e14782f67cb830f74002ebe5603783c674" resname="Deselect all" approved="yes"> <source>Deselect all</source> <target state="translated">Deselect all</target> - <jms:reference-file line="64">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="216">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="27">web/report/form_date_and_base.html.twig</jms:reference-file> + <jms:reference-file line="222">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="60">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="71">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="48">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="fd281ce85e6f98a7dad0aa31a2e493a85ef178ca" resname="Design of personalization logo section"> + <trans-unit id="fd281ce85e6f98a7dad0aa31a2e493a85ef178ca" resname="Design of personalization logo section" approved="yes"> <source>Design of personalization logo section</source> - <target state="new">Design of personalization logo section</target> + <target state="translated">Design of logo customization section</target> <jms:reference-file line="60">Form/Configuration/GeneralFormType.php</jms:reference-file> </trans-unit> <trans-unit id="ac930a136ebd04a19bc5f2ce1769fc065efb7bdf" resname="Detailed view URL" approved="yes"> <source>Detailed view URL</source> <target state="translated">URL of the detailed view</target> - <jms:reference-file line="50">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="56">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dc3decbb93847518f1a049dcf49d0d7c6560bcc6" resname="Details" approved="yes"> <source>Details</source> <target state="translated">Details</target> - <jms:reference-file line="2">admin/collection/details.html.twig</jms:reference-file> <jms:reference-file line="2">admin/databox/details.html.twig</jms:reference-file> + <jms:reference-file line="2">admin/collection/details.html.twig</jms:reference-file> </trans-unit> <trans-unit id="426d7f1b0dc37d0fb8ebff49d28335b1fd73774e" resname="Developpeur" approved="yes"> <source>Developpeur</source> @@ -2481,9 +2504,9 @@ <trans-unit id="45e147abd920eeb1aca320340e18cf67b4c77252" resname="Dimension" approved="yes"> <source>Dimension</source> <target state="translated">Size</target> + <jms:reference-file line="32">Media/Subdef/Image.php</jms:reference-file> <jms:reference-file line="32">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="32">Media/Subdef/Video.php</jms:reference-file> - <jms:reference-file line="32">Media/Subdef/Image.php</jms:reference-file> </trans-unit> <trans-unit id="8b6613d50c2d8718fd7cab023e1530ce11650736" resname="Disable document type sharing" approved="yes"> <source>Disable document type sharing</source> @@ -2503,22 +2526,22 @@ <trans-unit id="fa9fd169cd55f0433c6e7a4b5d758f90d0847411" resname="Display & action settings" approved="yes"> <source><![CDATA[Display & action settings]]></source> <target state="translated">Display and action settings</target> - <jms:reference-file line="153">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="152">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d47165ea879fb259a5754e6c4052a1a4437dfda8" resname="Display technical data" approved="yes"> <source>Display technical data</source> <target state="translated">Display technical data</target> - <jms:reference-file line="634">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="725">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="91ac9f9a0ff33ed65ca817be668da3693d743364" resname="Display thumbnails" approved="yes"> <source>Display thumbnails</source> <target state="translated">Display as title</target> - <jms:reference-file line="210">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="225">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f2f91f3c9d0ddbb497a99ee01c0f18a4b896bad4" resname="Do not display" approved="yes"> <source>Do not display</source> <target state="translated">Do not display</target> - <jms:reference-file line="645">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="736">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e3eb8417683d81ed1fb08ad9399e3c61f7054000" resname="Do not forget to restart the tasks scheduler" approved="yes"> <source>Do not forget to restart the tasks scheduler</source> @@ -2550,7 +2573,7 @@ <trans-unit id="e214b8a29923056887b7edf6635d90dcbb2abe88" resname="Document" approved="yes"> <source>Document</source> <target state="translated">Document</target> - <jms:reference-file line="297">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="322">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c5bd0e534d218eb5680d7e83804e69cef318ea3f" resname="Document Type Sharing" approved="yes"> <source>Document Type Sharing</source> @@ -2633,13 +2656,13 @@ <trans-unit id="0d01e2e86669e98441ab4dce5520696c318b7098" resname="E-mail" approved="yes"> <source>E-mail</source> <target state="translated">E-mail</target> - <jms:reference-file line="37">Form/Login/PhraseaRegisterForm.php</jms:reference-file> <jms:reference-file line="23">Form/Login/PhraseaForgotPasswordForm.php</jms:reference-file> + <jms:reference-file line="37">Form/Login/PhraseaRegisterForm.php</jms:reference-file> </trans-unit> - <trans-unit id="9cf2896f8b2e9e6a28f9b151e8be31f220a5d256" resname="E-mail domain"> + <trans-unit id="9cf2896f8b2e9e6a28f9b151e8be31f220a5d256" resname="E-mail domain" approved="yes"> <source>E-mail domain</source> - <target state="new">E-mail domain</target> - <jms:reference-file line="171">actions/Feedback/list.html.twig</jms:reference-file> + <target state="translated">E-mail domain</target> + <jms:reference-file line="167">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="734a78cd06d0929c433f487754d18bf073e43bf6" resname="EN" approved="yes"> <source>EN</source> @@ -2689,9 +2712,9 @@ <trans-unit id="5184ecbec7829b91dda100c703ea3fa284c7f5e8" resname="Edition de 1 element" approved="yes"> <source>Edition de 1 element</source> <target state="translated">Editing 1 document</target> - <jms:reference-file line="10">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> - <jms:reference-file line="10">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="10">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="10">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="10">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> </trans-unit> <trans-unit id="99ead0eb32b2089a9933db5ccc262e2fc35fd0a6" resname="Edition des droits de %display_name%" approved="yes"> <source>Edition des droits de %display_name%</source> @@ -2706,7 +2729,7 @@ <trans-unit id="92376275a970f44a04fcce0319075ec61bbac9ca" resname="Edition impossible" approved="yes"> <source>Edition impossible</source> <target state="translated">Unable to edit</target> - <jms:reference-file line="400">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="402">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c7e9fb2ea6c3b8c3ce97645eb902c348d859f36d" resname="Editor" approved="yes"> <source>Editor</source> @@ -2744,13 +2767,13 @@ <trans-unit id="84add5b2952787581cb9a8851eef63d1ec75d22b" resname="Email" approved="yes"> <source>Email</source> <target state="translated">E-mail</target> - <jms:reference-file line="140">admin/publications/fiche.html.twig</jms:reference-file> <jms:reference-file line="129">web/admin/dashboard.html.twig</jms:reference-file> + <jms:reference-file line="140">admin/publications/fiche.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4492ab77c9378c5582b87621ecd89c96fef88640" resname="Email '%email%' for login '%login%' already exists in database" approved="yes"> <source>Email '%email%' for login '%login%' already exists in database</source> <target state="translated">E-mail '%email%' for login '%login%' already exists in database</target> - <jms:reference-file line="654">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="655">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="e4aaac273d3c0d793207e6b559a7b7f97d543064" resname="Email Name" approved="yes"> <source>Email Name</source> @@ -2775,14 +2798,32 @@ <trans-unit id="d8efc876746f2fe8dae7e433323dc4f22535d1ac" resname="Email successfully confirmed" approved="yes"> <source>Email successfully confirmed</source> <target state="translated">E-mail successfully confirmed.</target> - <jms:reference-file line="21">Notification/Mail/MailSuccessEmailConfirmationUnregistered.php</jms:reference-file> <jms:reference-file line="21">Notification/Mail/MailSuccessEmailConfirmationRegistered.php</jms:reference-file> + <jms:reference-file line="21">Notification/Mail/MailSuccessEmailConfirmationUnregistered.php</jms:reference-file> </trans-unit> <trans-unit id="b529e23b7676146d364266e97d9f242eac2e28b4" resname="Email test result : %email_status%" approved="yes"> <source>Email test result : %email_status%</source> <target state="translated">E-mail test result: %email_status%</target> <jms:reference-file line="136">web/admin/dashboard.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="c839b2905a9c9e4e611519e461c6f3e0dde4ec78" resname="Email:deletion:request:message Hello %civility% %firstName% %lastName%. We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below. If you are not at the origin of this request, please change your password as soon as possible %resetPassword% Link is valid for one hour." approved="yes"> + <source>Email:deletion:request:message Hello %civility% %firstName% %lastName%. + We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below. + If you are not at the origin of this request, please change your password as soon as possible %resetPassword% + Link is valid for one hour.</source> + <target state="translated">Hello %civility% %firstName% %lastName%. We have received an account deletion request for your account on %urlInstance%. Please confirm this deletion by clicking on the link below. If you are not at the origin of this request, please change your password as soon as possible %resetPassword%. Link is valid for one hour.</target> + <jms:reference-file line="51">Notification/Mail/MailRequestAccountDelete.php</jms:reference-file> + </trans-unit> + <trans-unit id="ccbd5b5d94afa34b04935d0b084335f2656d96af" resname="Email:deletion:request:subject Delete account confirmation" approved="yes"> + <source>Email:deletion:request:subject Delete account confirmation</source> + <target state="translated">Account deletion confirmation</target> + <jms:reference-file line="39">Notification/Mail/MailRequestAccountDelete.php</jms:reference-file> + </trans-unit> + <trans-unit id="b37c2cc6df6ff49078905d16da4e3fa3a28490e4" resname="Email:deletion:request:textButton Delete my account" approved="yes"> + <source>Email:deletion:request:textButton Delete my account</source> + <target state="translated">Delete my account</target> + <jms:reference-file line="68">Notification/Mail/MailRequestAccountDelete.php</jms:reference-file> + </trans-unit> <trans-unit id="473558393914486d8e60b9968e5443e40be433e0" resname="Emails" approved="yes"> <source>Emails</source> <target state="translated">E-mail configuration</target> @@ -2791,7 +2832,7 @@ <trans-unit id="7884b9b422d77cabded5da8a9a56524a84481930" resname="Embed code" approved="yes"> <source>Embed code</source> <target state="translated">Embed code</target> - <jms:reference-file line="61">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="67">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e5afbbe7023486a123b45581f49820899571c415" resname="Empty a collection" approved="yes"> <source>Empty a collection</source> @@ -2817,8 +2858,8 @@ <trans-unit id="b21b69f5882b80aa94dde1b4b588cc884758d886" resname="Empty the collection before removing" approved="yes"> <source>Empty the collection before removing</source> <target state="translated">Empty the collection before deleting.</target> - <jms:reference-file line="68">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="455">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="69">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="456">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="5231158f14d4ea45584d5ad019c76e7e5e52e7ef" resname="En attente" approved="yes"> <source>En attente</source> @@ -2833,8 +2874,8 @@ <trans-unit id="0413c20ae2fd31e0a1eef73e7768c8e1c68558d9" resname="En cours d'encodage" approved="yes"> <source>En cours d'encodage</source> <target state="translated">Encoding in progress</target> - <jms:reference-file line="531">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="495">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="531">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="56">actions/Bridge/records_list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="43494e363213dc176e0699b914ccf966ccbd994d" resname="En cours d'envoi" approved="yes"> @@ -2968,6 +3009,11 @@ <target state="translated">Succesfully delivered</target> <jms:reference-file line="445">Phrasea/Controller/LightboxController.php</jms:reference-file> </trans-unit> + <trans-unit id="09b6a6dcd3f6d4a7d3a95bceaad67a7f1800272f" resname="Equals" approved="yes"> + <source>Equals</source> + <target state="translated">Equals</target> + <jms:reference-file line="434">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="ab546c237a6685e5c75689266cfa715eeb21b7db" resname="Erreur" approved="yes"> <source>Erreur</source> <target state="translated">Error</target> @@ -2976,8 +3022,8 @@ <trans-unit id="fb6a263ee36a9eebf03b39221b223a2b7b2eae5f" resname="Erreur !" approved="yes"> <source>Erreur !</source> <target state="translated">Error !</target> - <jms:reference-file line="9">web/lightbox/error.html.twig</jms:reference-file> <jms:reference-file line="15">mobile/lightbox/error.html.twig</jms:reference-file> + <jms:reference-file line="9">web/lightbox/error.html.twig</jms:reference-file> </trans-unit> <trans-unit id="90aa6d11f451da9eab381da74e349cb9d7f53647" resname="Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas" approved="yes"> <source>Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas</source> @@ -3032,9 +3078,9 @@ <trans-unit id="7f7bf810a272a035f6da919a27124160567c0b3f" resname="Erreur lors de la tentative ; errreur : %message%" approved="yes"> <source>Erreur lors de la tentative ; errreur : %message%</source> <target state="translated">Error when trying. Error: %message%</target> - <jms:reference-file line="135">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> - <jms:reference-file line="483">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> - <jms:reference-file line="495">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> + <jms:reference-file line="139">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> + <jms:reference-file line="493">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> + <jms:reference-file line="507">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> </trans-unit> <trans-unit id="bd8b889cda696b61ee9c4d197f3d93e93c1ab8e6" resname="Erreur lors de votre authentification" approved="yes"> <source>Erreur lors de votre authentification</source> @@ -3059,7 +3105,7 @@ <trans-unit id="3bce15460cac7169ea217ebc3f887d839e28e3a8" resname="Error while creating user" approved="yes"> <source>Error while creating user</source> <target state="translated">Error while creating user</target> - <jms:reference-file line="489">Controller/Prod/PushController.php</jms:reference-file> + <jms:reference-file line="494">Controller/Prod/PushController.php</jms:reference-file> </trans-unit> <trans-unit id="15059bc07c7d22747a0bf89dbefdeffe625a4776" resname="Error while saving preference" approved="yes"> <source>Error while saving preference</source> @@ -3070,8 +3116,8 @@ <trans-unit id="ef89b844df981421f3abce06ad08d28d2b31e539" resname="Error while sending the file" approved="yes"> <source>Error while sending the file</source> <target state="translated">Error while sending the file</target> - <jms:reference-file line="59">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="38">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="60">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="cbd40a831648175ebe3f427f83956d626506dc56" resname="Error while uploading" approved="yes"> <source>Error while uploading</source> @@ -3081,8 +3127,8 @@ <trans-unit id="40019ae278d51a265b82e37738989bf1b22157b7" resname="Etendue de la publication" approved="yes"> <source>Etendue de la publication</source> <target state="translated">Publication scope</target> - <jms:reference-file line="22">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="105">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="22">admin/publications/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="255f8b2705b27e25acc23428730bfd7a32d9a0db" resname="Etes vous sur de supprimer %number% photos ?" approved="yes"> <source>Etes vous sur de supprimer %number% photos ?</source> @@ -3097,14 +3143,19 @@ <trans-unit id="e7f864e2cef6464cd4342b0a0b607c6b53fd8263" resname="Etes vous sur de supprimer %number% playlists ?" approved="yes"> <source>Etes vous sur de supprimer %number% playlists ?</source> <target state="translated">Do you confirm that you want to delete of %number% playlists ?</target> - <jms:reference-file line="13">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/playlist_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f0181b1da6f09b84ae46efce781899eb57ec74b8" resname="Etes vous sur de supprimer %number% videos ?" approved="yes"> <source>Etes vous sur de supprimer %number% videos ?</source> <target state="translated">Confirm delete of %number% videos ?</target> - <jms:reference-file line="13">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="46a1884f7b083976b0fd0678f10b8f00ee93cde9" resname="Ex : Paris, bleu, montagne" approved="yes"> + <source>Ex : Paris, bleu, montagne</source> + <target state="translated">Ex : Paris, blue, mountain</target> + <jms:reference-file line="436">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a9c067c65c9f9d5a8e96791db7d189bc22eca9c1" resname="Executables externes" approved="yes"> <source>Executables externes</source> @@ -3119,9 +3170,9 @@ <trans-unit id="f3e4fadb9e370a1e2c0c622c01fc8c77daf93a2c" resname="Export" approved="yes"> <source>Export</source> <target state="translated">Export</target> - <jms:reference-file line="107">Controller/Prod/LanguageController.php</jms:reference-file> <jms:reference-file line="75">Controller/Prod/DoDownloadController.php</jms:reference-file> <jms:reference-file line="76">Controller/Prod/DoDownloadController.php</jms:reference-file> + <jms:reference-file line="107">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> <trans-unit id="9c26d273867dffc55d40f46e6a163067c75969f5" resname="Export ranges"> <source>Export ranges</source> @@ -3165,7 +3216,7 @@ <jms:reference-file line="54">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="51">prod/WorkZone/Basket.html.twig</jms:reference-file> <jms:reference-file line="143">web/prod/toolbar.html.twig</jms:reference-file> - <jms:reference-file line="192">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="190">web/prod/toolbar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ffe8e99492ee9b850395d53f6c519938952fde0d" resname="Feeds" approved="yes"> <source>Feeds</source> @@ -3220,11 +3271,11 @@ <trans-unit id="aadf78d4b7c7c7341aa891adca70897c4f978cb6" resname="File is not present in quarantine anymore, please refresh" approved="yes"> <source>File is not present in quarantine anymore, please refresh</source> <target state="translated">Document is not in quarantine anymore, please refresh</target> - <jms:reference-file line="78">Controller/Prod/LazaretController.php</jms:reference-file> - <jms:reference-file line="197">Controller/Prod/LazaretController.php</jms:reference-file> <jms:reference-file line="54">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="134">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="155">Model/Manipulator/LazaretManipulator.php</jms:reference-file> + <jms:reference-file line="78">Controller/Prod/LazaretController.php</jms:reference-file> + <jms:reference-file line="207">Controller/Prod/LazaretController.php</jms:reference-file> </trans-unit> <trans-unit id="3491d2e44dd1896af3411bb1a048847c13647feb" resname="File is too big : 64k max" approved="yes"> <source>File is too big : 64k max</source> @@ -3254,7 +3305,7 @@ <trans-unit id="a3cbb98ddf5ee976bc1c3be5221d66ce3ca2e867" resname="Filename" approved="yes"> <source>Filename</source> <target state="translated">File Name</target> - <jms:reference-file line="336">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="433">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="246a65679a39e030c98cad396903b0a3d8874dbc" resname="Fils disponibles" approved="yes"> <source>Fils disponibles</source> @@ -3267,11 +3318,6 @@ <target state="translated">Filter</target> <jms:reference-file line="41">web/admin/users.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="a7a02ef54f4fa28248414c42efbf3c45d2942326" resname="Filtrer" approved="yes"> - <source>Filtrer</source> - <target state="translated">Filter</target> - <jms:reference-file line="62">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="b6ea992aab4668311bb94778e056dd0285f27621" resname="First Name" approved="yes"> <source>First Name</source> <target state="translated">First name</target> @@ -3292,19 +3338,19 @@ <trans-unit id="b62482236f533b5e0f245e716211965a8774a2f2" resname="Flash" approved="yes"> <source>Flash</source> <target state="translated">Flash</target> - <jms:reference-file line="298">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="323">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="87">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2869d115faa9aa305076269dfbaf57c28cbd9fb6" resname="FlashFired" approved="yes"> <source>FlashFired</source> <target state="translated">FlashFired</target> - <jms:reference-file line="303">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="318">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="02893456d53323f0fdbbe9447fe5b3401f2102f7" resname="Flatten layers" approved="yes"> <source>Flatten layers</source> <target state="translated">Flatten layers</target> - <jms:reference-file line="35">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="35">Media/Subdef/Image.php</jms:reference-file> + <jms:reference-file line="35">Media/Subdef/Unknown.php</jms:reference-file> </trans-unit> <trans-unit id="9bd85a7d22f6cdee554e5b9e865d26dcbb4dafc9" resname="Focal length" approved="yes"> <source>Focal length</source> @@ -3314,7 +3360,7 @@ <trans-unit id="0267a34f43c33d216cc700ffcd521bf8a5ddcd0c" resname="Force authentication" approved="yes"> <source>Force authentication</source> <target state="translated">Force authentication</target> - <jms:reference-file line="168">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="169">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c7dbc1bf5eabb170eb6a0597a076723db79ec064" resname="Force sending of the document ?" approved="yes"> <source>Force sending of the document ?</source> @@ -3334,10 +3380,10 @@ <trans-unit id="4c29f7f0335807c2524d8c36d531496aee23f473" resname="Forgot password?" approved="yes"> <source>Forgot password?</source> <target state="translated">Forgot password?</target> - <jms:reference-file line="58">login/oauth/login.html.twig</jms:reference-file> - <jms:reference-file line="58">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="74">login/providers/mapping.html.twig</jms:reference-file> + <jms:reference-file line="58">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="70">web/login/index.html.twig</jms:reference-file> + <jms:reference-file line="58">login/oauth/login.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a2f060b7363f54c9f80d62805d36636dd7ebc33c" resname="Forgot your password?" approved="yes"> <source>Forgot your password?</source> @@ -3357,7 +3403,7 @@ <trans-unit id="629fe48e7fcf628a108551add706c29832b214df" resname="FrameRate" approved="yes"> <source>FrameRate</source> <target state="translated">FrameRate</target> - <jms:reference-file line="315">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="332">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="d4947df23a237794a9ff63353bd60ebe679c830c" resname="Frequence d'echantillonage" approved="yes"> <source>Frequence d'echantillonage</source> @@ -3389,24 +3435,19 @@ <target state="translated">General settings</target> <jms:reference-file line="87">web/admin/dashboard.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="fc45f9b7a9a6e8b48f0e28821ec1981804dd1eb6" resname="Generate" approved="yes"> - <source>Generate</source> - <target state="translated">Generate</target> - <jms:reference-file line="21">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="1738f829e68f7add441844e11cae6237acf401d1" resname="Generate dashboard" approved="yes"> - <source>Generate dashboard</source> - <target state="translated">Generate dashboard</target> - <jms:reference-file line="52">web/report/report_layout_child.html.twig</jms:reference-file> + <trans-unit id="05db1e4e974fff47ae67bae1309fb4edd9b0a053" resname="Generate-cterms"> + <source>Generate-cterms</source> + <target state="new">Generate-cterms</target> + <jms:reference-file line="267">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9f1b4c9f85fcbbf355fdd3c97210173b63551aa6" resname="Generates a flexpaper flash file" approved="yes"> <source>Generates a flexpaper flash file</source> <target state="translated">Creates a flexpaper flash file</target> <jms:reference-file line="32">Media/Subdef/FlexPaper.php</jms:reference-file> </trans-unit> - <trans-unit id="b2af9671fd7a6a61d5dd01e3c033bcade0d9695a" resname="Generates a pdf file"> + <trans-unit id="b2af9671fd7a6a61d5dd01e3c033bcade0d9695a" resname="Generates a pdf file" approved="yes"> <source>Generates a pdf file</source> - <target state="new">Generates a pdf file</target> + <target state="translated">Generates a pdf file</target> <jms:reference-file line="24">Media/Subdef/Pdf.php</jms:reference-file> </trans-unit> <trans-unit id="d40d73fbcffe62e09f9430c0043ec2e7011a801b" resname="Generates a video file" approved="yes"> @@ -3422,18 +3463,18 @@ <trans-unit id="7ba409c16f96c035c4bdd4246eecf1070e8efd46" resname="Generates an audio file" approved="yes"> <source>Generates an audio file</source> <target state="translated">Creates an audio file</target> - <jms:reference-file line="44">Media/Subdef/Audio.php</jms:reference-file> + <jms:reference-file line="48">Media/Subdef/Audio.php</jms:reference-file> </trans-unit> <trans-unit id="d1e6306fa0e2c34c9580854b101bc70e510bc5a3" resname="Generates an image" approved="yes"> <source>Generates an image</source> <target state="translated">Generates an image</target> - <jms:reference-file line="47">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="47">Media/Subdef/Image.php</jms:reference-file> + <jms:reference-file line="47">Media/Subdef/Unknown.php</jms:reference-file> </trans-unit> <trans-unit id="621654fc14cd9c0d5f5009ff29c1ba0db747f162" resname="Geo Search" approved="yes"> <source>Geo Search</source> <target state="translated">Geo Search</target> - <jms:reference-file line="274">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="296">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="efd1f5fd46c31701d2e70555e9ab45efe27b4048" resname="Geonames server address" approved="yes"> <source>Geonames server address</source> @@ -3507,25 +3548,14 @@ </trans-unit> <trans-unit id="779f61efcfe62182d0052c9526f3910378764758" resname="Graphiste (preview au rollover)" approved="yes"> <source>Graphiste (preview au rollover)</source> - <target state="translated">Graphist (preview on rollover)</target> - <jms:reference-file line="629">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Graphist (preview on thumbnail rollover)</target> + <jms:reference-file line="720">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="bd846adf34307e77ff7d457b28a426470fc0bad9" resname="Great" approved="yes"> <source>Great</source> <target state="translated">Great</target> <jms:reference-file line="153">Controller/Root/LoginController.php</jms:reference-file> </trans-unit> - <trans-unit id="325f1aa7d25c7b35a2006768bef41b1e7727d444" resname="Groupement des resultats sur le champ %name%" approved="yes"> - <source>Groupement des resultats sur le champ %name%</source> - <target state="translated">Group results on the field %name%</target> - <jms:reference-file line="607">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="754">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="42c8f672af9a6da3268b6f4a99958d6e735607b1" resname="Grouper" approved="yes"> - <source>Grouper</source> - <target state="translated">Regroup</target> - <jms:reference-file line="66">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="d36ed42d18a32e092664742ba0e0879f66ff0439" resname="Groupez 2 ou plusieurs mots avec des guillemets: "Michael Jackson"" approved="yes"> <source>Groupez 2 ou plusieurs mots avec des guillemets: "Michael Jackson"</source> <target state="translated">Group 2 or more words with quotes: "Michael Jackson"</target> @@ -3534,8 +3564,8 @@ <trans-unit id="face83ee3014bdc8f98203cc94e2e89222452e90" resname="Guest" approved="yes"> <source>Guest</source> <target state="translated">Guest</target> - <jms:reference-file line="165">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="246">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="149">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="223">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="233f29cc242544136b94f354693299956575a9d0" resname="Guest access" approved="yes"> <source>Guest access</source> @@ -3547,6 +3577,16 @@ <target state="translated">You must be authenticated to have the right to download.</target> <jms:reference-file line="88">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="771d30c668093219776b418dc5d3475682457167" resname="Gui-editable"> + <source>Gui-editable</source> + <target state="new">Gui-editable</target> + <jms:reference-file line="196">admin/fields/templates.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="c3ccdd44c467c7149733d19a40e0068ddb00ab25" resname="Gui-visible"> + <source>Gui-visible</source> + <target state="new">Gui-visible</target> + <jms:reference-file line="204">admin/fields/templates.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="6bc9ceaf6239215199222552fbbe96c17a549705" resname="HD Download" approved="yes"> <source>HD Download</source> <target state="translated">Document Download</target> @@ -3555,14 +3595,14 @@ <trans-unit id="d0d3632efe2a20cf1235aead5d817e03308131cc" resname="Hello %username%" approved="yes"> <source>Hello %username%</source> <target state="translated">Hi %username%</target> + <jms:reference-file line="62">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="45">api/auth/native_app_access_token.html.twig</jms:reference-file> <jms:reference-file line="82">api/auth/end_user_authorization.html.twig</jms:reference-file> - <jms:reference-file line="62">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c47ae15370cfe1ed2781eedc1dc2547d12d9e972" resname="Help" approved="yes"> <source>Help</source> <target state="translated">Help</target> - <jms:reference-file line="69">login/layout/base-layout.html.twig</jms:reference-file> + <jms:reference-file line="70">login/layout/base-layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7c4fcd241b7c7436fc9380f34ad57efcb70fd49c" resname="Hi, Please log in" approved="yes"> <source>Hi, Please log in</source> @@ -3577,11 +3617,11 @@ <trans-unit id="70f8bb9a8a5393ef080507a89e4b98d139000d65" resname="Home" approved="yes"> <source>Home</source> <target state="translated">Home</target> - <jms:reference-file line="66">login/layout/base-layout.html.twig</jms:reference-file> - <jms:reference-file line="3">login/include/language-block.html.twig</jms:reference-file> - <jms:reference-file line="17">mobile/lightbox/feed.html.twig</jms:reference-file> <jms:reference-file line="50">mobile/lightbox/basket_element.html.twig</jms:reference-file> + <jms:reference-file line="17">mobile/lightbox/feed.html.twig</jms:reference-file> <jms:reference-file line="33">mobile/lightbox/validate.html.twig</jms:reference-file> + <jms:reference-file line="3">login/include/language-block.html.twig</jms:reference-file> + <jms:reference-file line="67">login/layout/base-layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="99f3b7dca04d6f354a9d2a3b633d9578a9ad8cac" resname="Homepage slideshow" approved="yes"> <source>Homepage slideshow</source> @@ -3607,7 +3647,7 @@ <trans-unit id="4f325d995b6d028ccc75771b1679537b623521c4" resname="ISO" approved="yes"> <source>ISO</source> <target state="translated">ISO</target> - <jms:reference-file line="279">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="288">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="16a5173a6d384d155354f429d72834cd0bd6bc54" resname="ISO sensibility" approved="yes"> <source>ISO sensibility</source> @@ -3616,8 +3656,8 @@ </trans-unit> <trans-unit id="e195951cb1946935a88fdd9ee6735e0f6ddc120b" resname="Iconographe (description au rollover)" approved="yes"> <source>Iconographe (description au rollover)</source> - <target state="translated">Iconograph (caption on rollover)</target> - <jms:reference-file line="625">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Iconograph (caption on thumbnail rollover)</target> + <jms:reference-file line="716">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="474ae52625b87d7628ae7b20a499329a99e07119" resname="Id" approved="yes"> <source>Id</source> @@ -3662,7 +3702,7 @@ <trans-unit id="50e19fda0d5b4b74a4a1a1d584e56578693a4ea4" resname="Image" approved="yes"> <source>Image</source> <target state="translated">Image</target> - <jms:reference-file line="294">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="319">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="57a8e563190f921afb876d6489bb40ed74f43a1a" resname="ImageMagick" approved="yes"> <source>ImageMagick</source> @@ -3672,7 +3712,7 @@ <trans-unit id="3e38a20c1629a473809ea6a14c9cdf4204d3ac3b" resname="Images par secondes" approved="yes"> <source>Images par secondes</source> <target state="translated">Image per second</target> - <jms:reference-file line="78">actions/Tools/videoEditor.html.twig</jms:reference-file> + <jms:reference-file line="91">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="134">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4d39de5885805135b502a3e8920ffb0b1921cb6f" resname="Imagette indisponible" approved="yes"> @@ -3688,7 +3728,7 @@ <trans-unit id="ca13920228ea59b30c40b8372f53df3bf4631520" resname="In the answer grid" approved="yes"> <source>In the answer grid</source> <target state="translated">In the answer grid</target> - <jms:reference-file line="637">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="728">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="37ba6b0018a45c0890440d9e1cae63e046bad31d" resname="Include Business-fields in caption" approved="yes"> <source>Include Business-fields in caption</source> @@ -3700,12 +3740,12 @@ <trans-unit id="e60e6d0321b0dc4e2a47c163bdb8402df3deb18f" resname="Incorrect please try again" approved="yes"> <source>Incorrect please try again</source> <target state="translated">Incorrect. Please try again.</target> - <jms:reference-file line="19">web/common/macros.html.twig</jms:reference-file> + <jms:reference-file line="19">web/common/macro_captcha.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d8b6addd60debc77c2c9b03c90e8b626de36d170" resname="Indexable" approved="yes"> <source>Indexable</source> <target state="translated">Indexable</target> - <jms:reference-file line="181">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="180">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="85737399ad7bf8da1405c20f9984ceef5efe1ca9" resname="Indexation task" approved="yes"> <source>Indexation task</source> @@ -3720,9 +3760,9 @@ <trans-unit id="54937b3a4f8cfa4576692882d3ff7b14c90c4ce5" resname="Informations" approved="yes"> <source>Informations</source> <target state="translated">Info</target> - <jms:reference-file line="195">admin/user/registrations.html.twig</jms:reference-file> - <jms:reference-file line="33">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="56">web/account/base.html.twig</jms:reference-file> + <jms:reference-file line="33">web/admin/dashboard.html.twig</jms:reference-file> + <jms:reference-file line="195">admin/user/registrations.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e1e0586141223b0143df16f7422dae5a43b77103" resname="Informations personnelles" approved="yes"> <source>Informations personnelles</source> @@ -3737,8 +3777,8 @@ <trans-unit id="9be51f96ff02e94d1a5108f14de0b373ef3dd675" resname="Inscription" approved="yes"> <source>Inscription</source> <target state="translated">Registration</target> - <jms:reference-file line="14">web/login/register.html.twig</jms:reference-file> <jms:reference-file line="15">web/login/register-classic.html.twig</jms:reference-file> + <jms:reference-file line="14">web/login/register.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ff4fc2499da3e8fafdb7402dafd3b326aa0cc762" resname="Install in progess" approved="yes"> <source>Install in progess</source> @@ -3758,8 +3798,8 @@ <trans-unit id="3da203883b919e942c295aa2ebec1ac7e121c3fb" resname="Invalid file format" approved="yes"> <source>Invalid file format</source> <target state="translated">Invalid file format</target> - <jms:reference-file line="62">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="41">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="63">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="56f848f49e2a8c9efeb61b986ec48e6328cac5cc" resname="Invalid file type" approved="yes"> <source>Invalid file type</source> @@ -3770,9 +3810,9 @@ <trans-unit id="3a8b37b23cc60ea1c00e28058bfbb15cf00a547d" resname="Invalid file type, only (%supported_file_types%) file formats are supported" approved="yes"> <source>Invalid file type, only (%supported_file_types%) file formats are supported</source> <target state="translated">Invalid file type. Only %supported_file_types% file formats are supported.</target> + <jms:reference-file line="397">admin/databox/databox.html.twig</jms:reference-file> <jms:reference-file line="60">user/import/file.html.twig</jms:reference-file> <jms:reference-file line="199">admin/statusbit/edit.html.twig</jms:reference-file> - <jms:reference-file line="397">admin/databox/databox.html.twig</jms:reference-file> </trans-unit> <trans-unit id="65fd566280b15a384df25c73315b0dcbc6dacb69" resname="Invalid file type, only (%supported_file_types%) file formats are supported'" approved="yes"> <source>Invalid file type, only (%supported_file_types%) file formats are supported'</source> @@ -3782,8 +3822,8 @@ <trans-unit id="1c3a084c7a6e7e196db6c80a473d0bf0dfdd8f69" resname="Invalid labels parameter" approved="yes"> <source>Invalid labels parameter</source> <target state="translated">Invalid label parameters</target> - <jms:reference-file line="574">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="134">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="575">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="d211e2ef8dd9e15443e081e455da91938085a2ff" resname="Invalid link." approved="yes"> <source>Invalid link.</source> @@ -3793,7 +3833,7 @@ <trans-unit id="8a3506d6dd32abc6a9d3651ec8b9bba513f65e81" resname="Invalid password provided" approved="yes"> <source>Invalid password provided</source> <target state="translated">Invalid password provided</target> - <jms:reference-file line="64">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="71">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="a1244ab057df1737a47854d003cc98ec33ad3c09" resname="Invalid target collection" approved="yes"> <source>Invalid target collection</source> @@ -3856,17 +3896,17 @@ <trans-unit id="a5efbcf21fb4f967dcf3c54434390038f645d761" resname="L'utilisateur approuve ce document" approved="yes"> <source>L'utilisateur approuve ce document</source> <target state="translated">User approves this document</target> - <jms:reference-file line="361">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="391">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f1a075e09cf00ad7f6a7b13f0e7982c01f71b4db" resname="L'utilisateur desapprouve ce document" approved="yes"> <source>L'utilisateur desapprouve ce document</source> <target state="translated">User disapproves this document</target> - <jms:reference-file line="365">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="395">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d189e6ca37fc13568fa40c4e089d3c55f1bb26cf" resname="L'utilisateur n'a pas encore donne son avis sur ce document" approved="yes"> <source>L'utilisateur n'a pas encore donne son avis sur ce document</source> <target state="translated">User hasn't decided yet</target> - <jms:reference-file line="363">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="393">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6f16ba73379400f5465d624690a333f732ba02a5" resname="La connection vers le serveur distant est OK" approved="yes"> <source>La connection vers le serveur distant est OK</source> @@ -3883,20 +3923,20 @@ <trans-unit id="cfa0120ab592ae2bc3198dbde15a7a87a0c792c4" resname="La taille maximale d'une video est de %duration% minutes." approved="yes"> <source>La taille maximale d'une video est de %duration% minutes.</source> <target state="translated">The maximum duration for a video is %duration% minutes.</target> - <jms:reference-file line="900">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="1014">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="900">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="1dcfd86b957b9cf12ede165c6c2fa0acf12f3eeb" resname="La video a ete rejetee" approved="yes"> <source>La video a ete rejetee</source> <target state="translated">Video has been rejected</target> - <jms:reference-file line="527">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="491">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="527">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="653e67f152ecc63ff3ee1014e86cc630a35dfe1a" resname="La video a ete supprimee" approved="yes"> <source>La video a ete supprimee</source> <target state="translated">Video has been deleted</target> - <jms:reference-file line="525">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="489">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="525">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="da1c672d0d761ed5ac292335ed60e14ff3073265" resname="La video est restreinte" approved="yes"> <source>La video est restreinte</source> @@ -3912,7 +3952,7 @@ <trans-unit id="89b86ab0e66f527166d98df92ddbcf5416ed58f6" resname="Language" approved="yes"> <source>Language</source> <target state="translated">Language</target> - <jms:reference-file line="593">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="684">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="863cb39fbe7d70597076af1960b7ae4618d9e1bc" resname="Last Name" approved="yes"> <source>Last Name</source> @@ -3942,7 +3982,7 @@ <trans-unit id="73d43eca841fe44e1b9b41795ecbe13ee0772b38" resname="Last uploaded version" approved="yes"> <source>Last uploaded version</source> <target state="translated">Last uploaded version</target> - <jms:reference-file line="330">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="427">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0e0925b2bb685e25d3e94442cb0faea41156392b" resname="Le bridge Dailymotion ne prend en charge que les videos" approved="yes"> <source>Le bridge Dailymotion ne prend en charge que les videos</source> @@ -3977,7 +4017,7 @@ <trans-unit id="1486ba721fa0e62d17c809eb55964a1c514f6d3f" resname="Le contenu de cet email est confidentiel, ne le divulguez pas." approved="yes"> <source>Le contenu de cet email est confidentiel, ne le divulguez pas.</source> <target state="translated">The content of this e-mail is confidential. Please do not disclose it.</target> - <jms:reference-file line="119">templates/web/email-template.html.twig</jms:reference-file> + <jms:reference-file line="125">templates/web/email-template.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8d90d64a516aa1d05e3aa4c5beb4f9e80bf77bb1" resname="Le nom de base de donnee est incorrect" approved="yes"> <source>Le nom de base de donnee est incorrect</source> @@ -3993,15 +4033,15 @@ <source>Le poids maximum d'un fichier est de %size%</source> <target state="translated">Maximum filesize is %size%</target> <jms:reference-file line="814">Bridge/Api/Flickr.php</jms:reference-file> - <jms:reference-file line="906">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="1020">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="906">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="13b9d7ef8e81663d7162d25b84cec1c24041e630" resname="Le record n'a pas de fichier physique" approved="yes"> <source>Le record n'a pas de fichier physique</source> <target state="translated">No physical file for this record</target> <jms:reference-file line="808">Bridge/Api/Flickr.php</jms:reference-file> - <jms:reference-file line="896">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="1010">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="896">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="a596c989f20650068f6278338c1a966b7a8693f8" resname="Le token n'a pas encore ete genere" approved="yes"> <source>Le token n'a pas encore ete genere</source> @@ -4022,9 +4062,9 @@ <trans-unit id="e330465da3182b7f6ed1b78217993edb4e22aacb" resname="Les elements ne peuvent etre uploades (problemes de type ou de droit)" approved="yes"> <source>Les elements ne peuvent etre uploades (problemes de type ou de droit)</source> <target state="translated">Selected files can't be uploaded (file type or rights error)</target> - <jms:reference-file line="16">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="15">Bridge/Youtube/upload.html.twig</jms:reference-file> <jms:reference-file line="15">Bridge/Dailymotion/upload.html.twig</jms:reference-file> + <jms:reference-file line="15">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="16">Bridge/Flickr/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="72d3dbec389dce620bfa531d37c5f199ca2ccfda" resname="Les indications donnees ci dessous sont a titre informatif." approved="yes"> <source>Les indications donnees ci dessous sont a titre informatif.</source> @@ -4044,18 +4084,24 @@ <trans-unit id="a733c2df9772facab04b4773c9d2bed560c25e9a" resname="Les status de certains documents ne sont pas accessibles par manque de droits" approved="yes"> <source>Les status de certains documents ne sont pas accessibles par manque de droits</source> <target state="translated">your user rights do not allow you to modify Status for some of the selected documents</target> - <jms:reference-file line="210">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="212">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="663929297180bbb5ff977df2695f71e94c35fa5e" resname="Les termes apparaissent dans le(s) champs" approved="yes"> <source>Les termes apparaissent dans le(s) champs</source> <target state="translated">Word(s) from field(s)</target> - <jms:reference-file line="375">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="405">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="83d5335897894b8ddd91c98ef5ba0e9cbc6a6db9" resname="Light Value" approved="yes"> <source>Light Value</source> <target state="translated">Light value</target> <jms:reference-file line="122">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="99f6a030c5134d53253c7442cb05c1be14229565" resname="Lightbox" approved="yes"> + <source>Lightbox</source> + <target state="translated">Lightbox</target> + <jms:reference-file line="152">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="153">prod/WorkZone/Macros.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="3edfadcb908b635854afe7332087309fcd436f22" resname="Limite temporelle" approved="yes"> <source>Limite temporelle</source> <target state="translated">Time limit</target> @@ -4065,7 +4111,7 @@ <trans-unit id="646afe6f18d162b8c66197f9a080bbdabe03ec82" resname="Limited vocabulary" approved="yes"> <source>Limited vocabulary</source> <target state="translated">Controlled vocabulary</target> - <jms:reference-file line="147">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="146">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c360543a2117bfc435eb3ba34f161bdcd1b6c9bf" resname="List %name% has been created" approved="yes"> <source>List %name% has been created</source> @@ -4075,12 +4121,12 @@ <trans-unit id="a925ff45a3aec48f2d2284ee9bb6868db34c1ebb" resname="List Manager" approved="yes"> <source>List Manager</source> <target state="translated">List manager</target> - <jms:reference-file line="88">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="97">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="bb5453db2e4b2a0d4da46011ba58a8dbbca13cf6" resname="List Name" approved="yes"> <source>List Name</source> <target state="translated">List name</target> - <jms:reference-file line="103">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="99">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="986d90f23c096a5e41777014cf1079b53c430cef" resname="List has been deleted" approved="yes"> <source>List has been deleted</source> @@ -4116,8 +4162,8 @@ <trans-unit id="57c9502a7d7d48fd4a86b45fefb2b163491c3ae1" resname="Lists" approved="yes"> <source>Lists</source> <target state="translated">Lists</target> + <jms:reference-file line="61">prod/actions/Push.html.twig</jms:reference-file> <jms:reference-file line="15">actions/Feedback/lists-all.html.twig</jms:reference-file> - <jms:reference-file line="62">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="309cbd8221d07b28b0bd59d151777b155d5d3d3d" resname="Live search" approved="yes"> <source>Live search</source> @@ -4139,30 +4185,30 @@ <target state="translated">Login</target> <jms:reference-file line="32">Form/Login/PhraseaAuthenticationForm.php</jms:reference-file> <jms:reference-file line="8">actions/Feedback/ListsMacros.html.twig</jms:reference-file> - <jms:reference-file line="9">login/oauth/login.html.twig</jms:reference-file> - <jms:reference-file line="7">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="7">login/providers/mapping.html.twig</jms:reference-file> + <jms:reference-file line="7">login/providers/bind.html.twig</jms:reference-file> + <jms:reference-file line="9">login/oauth/login.html.twig</jms:reference-file> </trans-unit> <trans-unit id="950c019b3fdf4ee87547ab457330c0f003fdec4b" resname="Login %login% already exists in database" approved="yes"> <source>Login %login% already exists in database</source> <target state="translated">Login %login% already exists in database</target> - <jms:reference-file line="638">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="639">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="092417444255d19227b90cb8b6a31eb531c3e045" resname="Login %login% is already defined in the file at line %line%" approved="yes"> <source>Login %login% is already defined in the file at line %line%</source> <target state="translated">Login %login% already exists in the file line %line%</target> - <jms:reference-file line="632">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="633">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="01a1b17937851d24fabec72d491bfe7693dcbeb5" resname="Login line %line% is empty" approved="yes"> <source>Login line %line% is empty</source> <target state="translated">Login line %line% is empty</target> - <jms:reference-file line="630">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="631">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="9a839961790bd116cb1d19dd249a0f68170ea33d" resname="Login to link your account" approved="yes"> <source>Login to link your account</source> <target state="translated">Login to link your account</target> - <jms:reference-file line="28">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="44">login/providers/mapping.html.twig</jms:reference-file> + <jms:reference-file line="28">login/providers/bind.html.twig</jms:reference-file> </trans-unit> <trans-unit id="126dd3b70a5ca7818e0e26ad1e008d23b0f14a53" resname="Logs" approved="yes"> <source>Logs</source> @@ -4173,12 +4219,12 @@ <trans-unit id="9769982c266077f46f2c0a0290183511ec5536fb" resname="Ma derniere question" approved="yes"> <source>Ma derniere question</source> <target state="translated">My last query</target> - <jms:reference-file line="688">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="779">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c176d759339c846576bc2937aab7e01f5404e4e3" resname="Mail line %line% is empty" approved="yes"> <source>Mail line %line% is empty</source> <target state="translated">E-mail line %line% is empty</target> - <jms:reference-file line="652">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="653">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="fdb9efd7a759711741fc699549c92e54c664e38c" resname="Mail sent" approved="yes"> <source>Mail sent</source> @@ -4228,7 +4274,7 @@ <trans-unit id="4c2ea2d10dc0ede0423eff4ee1aac7300cd7cc28" resname="Mandatory" approved="yes"> <source>Mandatory</source> <target state="translated">Mandatory</target> - <jms:reference-file line="173">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="172">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="60706a32c32fff7bad89e110e221466d30c96f37" resname="Mandatory fields" approved="yes"> <source>Mandatory fields</source> @@ -4259,12 +4305,12 @@ <source>Message</source> <target state="translated">Message</target> <jms:reference-file line="87">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="154">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="155">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cbcbdf92e7a47c81ec1719f03f00d8e6c5b5f5ef" resname="Message automatique de Phraseanet" approved="yes"> <source>Message automatique de Phraseanet</source> <target state="translated">Automatic message from Phraseanet</target> - <jms:reference-file line="128">templates/web/email-template.html.twig</jms:reference-file> + <jms:reference-file line="134">templates/web/email-template.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3f17a172513ae816fbe5f183f85cd0c465de0860" resname="Mettre a jour" approved="yes"> <source>Mettre a jour</source> @@ -4279,7 +4325,7 @@ <trans-unit id="1bd7ccbde8d3077fec1f549017e747393223a900" resname="MimeType" approved="yes"> <source>MimeType</source> <target state="translated">MimeType</target> - <jms:reference-file line="345">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="374">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="cb4f425374af2741715669ed8b541a666078b729" resname="Minimum number of letters before truncation" approved="yes"> <source>Minimum number of letters before truncation</source> @@ -4294,8 +4340,8 @@ <trans-unit id="a9b8f078d07adc678766fb9d2094292080ab3c52" resname="Missing labels parameter" approved="yes"> <source>Missing labels parameter</source> <target state="translated">Labels missing parameter</target> - <jms:reference-file line="571">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="131">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="572">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="b4efaf7a18aa1ca3f50081c404e78c7fec456e40" resname="Missing mandatory parameter %parameter%" approved="yes"> <source>Missing mandatory parameter %parameter%</source> @@ -4305,7 +4351,7 @@ <trans-unit id="0f0312bad12a23972edbf3999e9de2678039b079" resname="Missing name parameter" approved="yes"> <source>Missing name parameter</source> <target state="translated">Missing name parameter</target> - <jms:reference-file line="540">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="541">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="0f79e8927b12fa1faaf351996f502775b4642c2d" resname="Missing path parameter" approved="yes"> <source>Missing path parameter</source> @@ -4330,7 +4376,7 @@ <trans-unit id="e18d18d8f28fe0d795ee04013be3a7f8ce96be7b" resname="Mode de presentation" approved="yes"> <source>Mode de presentation</source> <target state="translated">Display mode</target> - <jms:reference-file line="604">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="695">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f67d47fbf556ab52703a984d7b5aafcaab35735e" resname="Modele de donnees" approved="yes"> <source>Modele de donnees</source> @@ -4340,7 +4386,7 @@ <trans-unit id="f3798f81c7b6fecad2cbfec741314f8a66c0eca3" resname="Models" approved="yes"> <source>Models</source> <target state="translated">Templates</target> - <jms:reference-file line="186">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="182">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="197">admin/user/registrations.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9fe408e12dc6ee8d44c87b38b82ff435c397a441" resname="Modify" approved="yes"> @@ -4392,7 +4438,12 @@ <trans-unit id="3bd45e2eb3d0af33531dc6ab4a45ee550ead2180" resname="Multivalued" approved="yes"> <source>Multivalued</source> <target state="translated">Multivalued</target> - <jms:reference-file line="159">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="158">admin/fields/templates.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="1b369c4651e2b82200334fa587669b3828071192" resname="My application " approved="yes"> + <source>My application </source> + <target state="translated">My application </target> + <jms:reference-file line="266">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9f36fd4dc42df8a92572afe51d887c5f33dda5b0" resname="My baskets" approved="yes"> <source>My baskets</source> @@ -4411,7 +4462,7 @@ <jms:reference-file line="86">Controller/Prod/LanguageController.php</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/playlist_createcontainer.html.twig</jms:reference-file> <jms:reference-file line="38">actions/Download/prepare.html.twig</jms:reference-file> - <jms:reference-file line="150">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="151">prod/templates/push.html.twig</jms:reference-file> <jms:reference-file line="50">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="994e92a6f1e83337ca0193b7fa44cf6b3e9287e5" resname="Name or email" approved="yes"> @@ -4432,8 +4483,8 @@ <trans-unit id="611ce61a8afa84c06dd4ae06d9405b50d7cadc70" resname="Ne pas autoriser" approved="yes"> <source>Ne pas autoriser</source> <target state="translated">Do not authorize</target> - <jms:reference-file line="112">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="92">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="112">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f5a3032fbde245ea35d8fa654d628809a9a448fc" resname="Ne pas creer de DataBox maintenant" approved="yes"> <source>Ne pas creer de DataBox maintenant</source> @@ -4444,7 +4495,7 @@ <source>New list name ?</source> <target state="translated">Give a name to the new recipients list:</target> <jms:reference-file line="84">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="124">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="125">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d850ee188c7c55b64bc3624534de5c5051a57dc6" resname="New password" approved="yes"> <source>New password</source> @@ -4473,12 +4524,13 @@ <trans-unit id="816c52fd2bdd94a63cd0944823a6c0aa9384c103" resname="No" approved="yes"> <source>No</source> <target state="translated">No</target> + <jms:reference-file line="290">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="32">web/developers/applications.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8c123d8ad43d08cc48c3d6a7676e65f71eea59df" resname="No URL available" approved="yes"> <source>No URL available</source> <target state="translated">No URL available</target> - <jms:reference-file line="135">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="141">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="486829367591dc8209f3fc6960814c0bdd8930d1" resname="No account yet?" approved="yes"> <source>No account yet?</source> @@ -4525,9 +4577,9 @@ <target state="translated">No matches found</target> <jms:reference-file line="8">web/geonames/city_list.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="f8ff49677b7d397b0de712de733cd8bc88ef22d3" resname="No metadata available"> + <trans-unit id="f8ff49677b7d397b0de712de733cd8bc88ef22d3" resname="No metadata available" approved="yes"> <source>No metadata available</source> - <target state="new">No metadata available</target> + <target state="translated">No metadata available</target> <jms:reference-file line="43">actions/Tools/metadata.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ee0ccefc5da5a79647ce65575ea97814db7506b7" resname="No participants specified" approved="yes"> @@ -4543,7 +4595,7 @@ <trans-unit id="3a5aa5b9e5d2494ebc5a37af09018367b4220845" resname="No preview available" approved="yes"> <source>No preview available</source> <target state="translated">No preview available</target> - <jms:reference-file line="63">actions/Tools/videoEditor.html.twig</jms:reference-file> + <jms:reference-file line="75">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="657c9f21a7a4da0e213e67dbee089b281dce3279" resname="No receivers specified" approved="yes"> <source>No receivers specified</source> @@ -4558,8 +4610,12 @@ <trans-unit id="b993b0c537190bfc94b21360ac5abe51e56be36f" resname="No results" approved="yes"> <source>No results</source> <target state="translated">No results</target> - <jms:reference-file line="8">WorkZone/Browser/Results.html.twig</jms:reference-file> - <jms:reference-file line="111">WorkZone/Browser/Results.html.twig</jms:reference-file> + <jms:reference-file line="87">WorkZone/Browser/Results.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="bfccc7c966ca427d629149d67548af04605eb746" resname="No thesaurus concept query" approved="yes"> + <source>No thesaurus concept query</source> + <target state="translated">No thesaurus search</target> + <jms:reference-file line="16">prod/results/infos.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6866c8b666718aff85382e93b25ef50cd321669b" resname="No users selected" approved="yes"> <source>No users selected</source> @@ -4595,15 +4651,15 @@ <trans-unit id="c57d307e10f641b5b496db576d0dcd69d1daf25e" resname="Non-Restreinte (publique)" approved="yes"> <source>Non-Restreinte (publique)</source> <target state="translated">Unrestricted (public)</target> - <jms:reference-file line="25">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="108">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="25">admin/publications/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6eef6648406c333a4035cd5e60d0bf2ecf2606d7" resname="None" approved="yes"> <source>None</source> <target state="translated">None</target> <jms:reference-file line="41">Form/Configuration/EmailFormType.php</jms:reference-file> - <jms:reference-file line="260">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="53">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="260">admin/user/registrations.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ece3fad87bd747a7b0b1f3ff9336645ee1a36078" resname="None of the records can be modified." approved="yes"> <source>None of the records can be modified.</source> @@ -4633,7 +4689,7 @@ <trans-unit id="a6633333760410e40ad92a50baade0b83afe8f7f" resname="Not aggregated" approved="yes"> <source>Not aggregated</source> <target state="translated">Not aggregated</target> - <jms:reference-file line="227">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="242">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cc451929f50e088ffcff10e90dfe157d2319e753" resname="Notification par email" approved="yes"> <source>Notification par email</source> @@ -4643,8 +4699,8 @@ <trans-unit id="753a22b2eb617204efee4644795034b8ace1ee14" resname="Notifications" approved="yes"> <source>Notifications</source> <target state="translated">Notifications</target> - <jms:reference-file line="156">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="229">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="214">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="286">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ac0b3b17f88b480b11c468d0b5bea6409bbd14b8" resname="Notifications globales" approved="yes"> <source>Notifications globales</source> @@ -4654,7 +4710,7 @@ <trans-unit id="18ee7ad22bf04f818fd95599481303c7f7d1b29f" resname="Notify third party application when an event occurs in Phraseanet" approved="yes"> <source>Notify third party application when an event occurs in Phraseanet</source> <target state="translated">Notify third party application when an event occurs in Phraseanet</target> - <jms:reference-file line="61">TaskManager/Job/WebhookJob.php</jms:reference-file> + <jms:reference-file line="74">TaskManager/Job/WebhookJob.php</jms:reference-file> </trans-unit> <trans-unit id="3ccc3824ae2ffdfea7482564cbc8cf35de78766d" resname="Notify users about this publication" approved="yes"> <source>Notify users about this publication</source> @@ -4694,7 +4750,7 @@ <trans-unit id="39e336676dcacd1411fbc236d035878a38989667" resname="Number of records to process per batch" approved="yes"> <source>Number of records to process per batch</source> <target state="translated">Number of records to process per batch</target> - <jms:reference-file line="39">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="42">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="997c69f6571530618bb38ac03f4cf2d236dcc15e" resname="Number of replicas" approved="yes"> <source>Number of replicas</source> @@ -4716,8 +4772,8 @@ <trans-unit id="9ce3bd4224c8c1780db56b4125ecf3f24bf748b7" resname="OK" approved="yes"> <source>OK</source> <target state="translated">OK</target> - <jms:reference-file line="535">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="499">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="535">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="b0a98216a32426b9e66a4ac1eb6df2e96e1b495c" resname="Ok" approved="yes"> <source>Ok</source> @@ -4740,6 +4796,11 @@ <target state="translated">One frame forward</target> <jms:reference-file line="125">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> + <trans-unit id="c15c49205663ceff94e31db82030bb5da10df870" resname="One of these conditions" approved="yes"> + <source>One of these conditions</source> + <target state="translated">One of these conditions</target> + <jms:reference-file line="419">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="1ae26e7b698cf33577df1bd9fd55ddd1d0771802" resname="Only %nbEditableDocuments% records can be modified." approved="yes"> <source>Only %nbEditableDocuments% records can be modified.</source> <target state="translated">Only %nbEditableDocuments% records can be modified.</target> @@ -4755,13 +4816,18 @@ <target state="translated">Open the URL in a new window</target> <jms:reference-file line="125">Core/Provider/TwigServiceProvider.php</jms:reference-file> </trans-unit> + <trans-unit id="e72184f55cc026514b7160d78c3c5aef63c2a050" resname="Or" approved="yes"> + <source>Or</source> + <target state="translated">Or</target> + <jms:reference-file line="35">prod/upload/upload.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="94946e4d2391ccf8ff24f984869ae8fcf9ede7c4" resname="Or login with" approved="yes"> <source>Or login with</source> <target state="translated">Or login with</target> - <jms:reference-file line="56">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="36">web/login/register.html.twig</jms:reference-file> + <jms:reference-file line="103">web/login/index.html.twig</jms:reference-file> <jms:reference-file line="91">login/oauth/login.html.twig</jms:reference-file> - <jms:reference-file line="102">web/login/index.html.twig</jms:reference-file> + <jms:reference-file line="56">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1d75774c0f96b6ee44eb6643c9fea71b50b90ea8" resname="Order" approved="yes"> <source>Order</source> @@ -4786,7 +4852,7 @@ <source>Orders manager</source> <target state="translated">Orders manager</target> <jms:reference-file line="45">eventsmanager/notify/order.php</jms:reference-file> - <jms:reference-file line="117">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="118">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0bc63392df32795e16ab5cbb605be75812542d30" resname="Ordinary" approved="yes"> <source>Ordinary</source> @@ -4796,7 +4862,7 @@ <trans-unit id="86e4e3875420cdee95d08d4472073493729a7aee" resname="Orientation" approved="yes"> <source>Orientation</source> <target state="translated">Orientation</target> - <jms:reference-file line="335">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="360">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="77561f3d48cb738cc40f376dec4616a77da54ee1" resname="Original name" approved="yes"> <source>Original name</source> @@ -4808,11 +4874,6 @@ <target state="translated">Oups ! Something went wrong !</target> <jms:reference-file line="10">actions/Bridge/error.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="4e3f5ff6fef1232b4a80b35f08a3db8f776f44d0" resname="Outdated access to the following collections" approved="yes"> - <source>Outdated access to the following collections</source> - <target state="translated">Outdated access to the following collections</target> - <jms:reference-file line="134">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="89ff31225c5f042fff61e92ec8cf80e417a7140c" resname="Owner" approved="yes"> <source>Owner</source> <target state="translated">Owner</target> @@ -4838,24 +4899,25 @@ <trans-unit id="fe42b90acc297644b70123354014701c49384489" resname="Paniers" approved="yes"> <source>Paniers</source> <target state="translated">Baskets</target> + <jms:reference-file line="50">mobile/lightbox/index.html.twig</jms:reference-file> + <jms:reference-file line="116">mobile/lightbox/index.html.twig</jms:reference-file> + <jms:reference-file line="257">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="91">web/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="127">lightbox/IE6/validate.html.twig</jms:reference-file> <jms:reference-file line="140">web/lightbox/validate.html.twig</jms:reference-file> - <jms:reference-file line="50">mobile/lightbox/index.html.twig</jms:reference-file> - <jms:reference-file line="116">mobile/lightbox/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="379c70ed96868079feece6d5c6a2b91545c2515b" resname="Par %author%" approved="yes"> <source>Par %author%</source> <target state="translated">by %author%</target> - <jms:reference-file line="20">prod/results/entry.html.twig</jms:reference-file> - <jms:reference-file line="14">prod/results/feeds_entry.html.twig</jms:reference-file> <jms:reference-file line="25">mobile/lightbox/feed.html.twig</jms:reference-file> + <jms:reference-file line="14">prod/results/feeds_entry.html.twig</jms:reference-file> + <jms:reference-file line="20">prod/results/entry.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8be3c943b1609fffbfc51aad666d0a04adf83c9d" resname="Password" approved="yes"> <source>Password</source> <target state="translated">Password</target> - <jms:reference-file line="52">Form/Login/PhraseaRegisterForm.php</jms:reference-file> <jms:reference-file line="41">Form/Login/PhraseaAuthenticationForm.php</jms:reference-file> + <jms:reference-file line="52">Form/Login/PhraseaRegisterForm.php</jms:reference-file> <jms:reference-file line="81">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e3c007b7794e8f9fc4381136dfc7cdff5aa788a8" resname="Password (confirmation)" approved="yes"> @@ -4866,7 +4928,7 @@ <trans-unit id="6e77cc0549ad99a9d3ba5c384f7f329db24d6d0c" resname="Password is empty at line %line%" approved="yes"> <source>Password is empty at line %line%</source> <target state="translated">Password is empty in line %line%</target> - <jms:reference-file line="667">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="668">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="1dde2526f4dbbd53204d28438a85c8b30284c584" resname="Password renewal for login "%login%" has been requested" approved="yes"> <source>Password renewal for login "%login%" has been requested</source> @@ -4888,16 +4950,11 @@ <target state="translated">Pause</target> <jms:reference-file line="124">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> - <trans-unit id="2a78f0e9eeb4969ad86a55df617e6bb0373df78f" resname="Pays"> + <trans-unit id="2a78f0e9eeb4969ad86a55df617e6bb0373df78f" resname="Pays" approved="yes"> <source>Pays</source> - <target state="new">Pays</target> + <target state="translated">Country</target> <jms:reference-file line="32">prod/User/Add.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="42dea402e91b757c7437006335c9cc8d0382f29d" resname="Pending access to the following collections" approved="yes"> - <source>Pending access to the following collections</source> - <target state="translated">Pending access to the following collections</target> - <jms:reference-file line="84">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="3d8de900b56813bb78e97afbf22578720d473219" resname="Periodically fetches an FTP repository content locally" approved="yes"> <source>Periodically fetches an FTP repository content locally</source> <target state="translated">Periodically fetches a FTP repository content locally</target> @@ -4962,14 +5019,14 @@ <trans-unit id="cd95b41f85ddc0922e3fce8844279c55e9e3cdd9" resname="Playlist" approved="yes"> <source>Playlist</source> <target state="translated">Playlist</target> - <jms:reference-file line="14">Bridge/Youtube/actionelements.html.twig</jms:reference-file> <jms:reference-file line="14">Bridge/Dailymotion/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="14">Bridge/Youtube/actionelements.html.twig</jms:reference-file> </trans-unit> <trans-unit id="77b69f32c8780049ce0eec9782c3b77bb1e52bc3" resname="Playlists" approved="yes"> <source>Playlists</source> <target state="translated">Playlists</target> - <jms:reference-file line="183">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="168">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="183">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="9a79729c3f4563330799d576273950579e1ba3f5" resname="Please accept the terms of use to register." approved="yes"> <source>Please accept the terms of use to register.</source> @@ -4989,12 +5046,12 @@ <trans-unit id="7d971fb22555bf3deb2da6d7820d2379b6f37d12" resname="Please consider send this push to the following users : %recommendation%" approved="yes"> <source>Please consider send this push to the following users : %recommendation%</source> <target state="translated">Please consider sending this Push to the following users : %recommendation%</target> - <jms:reference-file line="135">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="142">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="78fbf70be163b16d5c72147a659d43a1ddbe4f62" resname="Please consider send this validation to the following users : %recommendation%" approved="yes"> <source>Please consider send this validation to the following users : %recommendation%</source> <target state="translated">Please consider you can send this feedback request to the following users: %recommendation%</target> - <jms:reference-file line="137">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="144">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cb75472a748e630791f52a7e31b275376a65b600" resname="Please enter the databox name to reset or create" approved="yes"> <source>Please enter the databox name to reset or create</source> @@ -5069,7 +5126,7 @@ <trans-unit id="cf1c85adba548e8d681255278976584a7e4a44de" resname="Position" approved="yes"> <source>Position</source> <target state="translated">Position</target> - <jms:reference-file line="180">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="176">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="502823ab9297855805de9b08960bcb4654a235a9" resname="Pour davantage d'informations, consulter le lien suivant %lien%" approved="yes"> <source>Pour davantage d'informations, consulter le lien suivant %lien%</source> @@ -5079,7 +5136,7 @@ <trans-unit id="b7a45fd93ff9471252ff1535c56c82f2f2d93865" resname="Pour gérer l'envoi d'email automatique, connectez-vous à %link%" approved="yes"> <source>Pour gérer l'envoi d'email automatique, connectez-vous à %link%</source> <target state="translated">To manage automatic e-mail notifications, please connect to %link%.</target> - <jms:reference-file line="134">templates/web/email-template.html.twig</jms:reference-file> + <jms:reference-file line="140">templates/web/email-template.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cb6a1b19177957adc64d41ef7744e5f3f2f1d220" resname="Preference saved !" approved="yes"> <source>Preference saved !</source> @@ -5090,10 +5147,10 @@ <trans-unit id="9dfd349ebee555eb8d652be20dad971cae439eca" resname="Preferences" approved="yes"> <source>Preferences</source> <target state="translated">Settings</target> - <jms:reference-file line="249">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="250">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="477">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="576">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="253">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="256">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="568">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="667">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="40c963556bf21635f163641ae0bbc354c6f8452c" resname="Prefix for notification emails" approved="yes"> <source>Prefix for notification emails</source> @@ -5108,12 +5165,12 @@ <trans-unit id="9cafca25680cc440912450d10272214d3f3daee4" resname="Presentation de vignettes" approved="yes"> <source>Presentation de vignettes</source> <target state="translated">Thumbnails</target> - <jms:reference-file line="622">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="713">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="be11dff872b14e749d330f920d6b159e107f277a" resname="Presentation de vignettes de panier" approved="yes"> <source>Presentation de vignettes de panier</source> <target state="translated">Basket display setup</target> - <jms:reference-file line="833">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="924">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e709e76ff5425bd59879423588e80e67d778fa57" resname="Presets" approved="yes"> <source>Presets</source> @@ -5135,8 +5192,8 @@ <trans-unit id="e6ad53898d609dbabefb5da33ee1b4cc04fba023" resname="Problemes de connexion ?" approved="yes"> <source>Problemes de connexion ?</source> <target state="translated">Connection problems?</target> - <jms:reference-file line="74">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="54">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="74">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="376483bbeebdab912944e9b41d8d31510132abde" resname="Process the registration" approved="yes"> <source>Process the registration</source> @@ -5166,10 +5223,10 @@ <trans-unit id="0855684c1444ece44c79b3612a7f4cfac9ae6e2a" resname="Publications" approved="yes"> <source>Publications</source> <target state="translated">Publications</target> - <jms:reference-file line="694">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="785">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="2">admin/publications/wrapper.html.twig</jms:reference-file> <jms:reference-file line="58">web/admin/tree.html.twig</jms:reference-file> - <jms:reference-file line="109">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="110">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="34e6b19e8980f86ac8f2a33377c8cd669b66ac9b" resname="Publier" approved="yes"> <source>Publier</source> @@ -5179,8 +5236,8 @@ <trans-unit id="a255047b3f86eb4c0c79377f0725c89ceafe07ae" resname="Publique" approved="yes"> <source>Publique</source> <target state="translated">Public</target> - <jms:reference-file line="40">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="123">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="40">admin/publications/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="107e7fab79b95c8f34990d625dd309e15996acba" resname="Publishers" approved="yes"> <source>Publishers</source> @@ -5206,64 +5263,64 @@ <trans-unit id="dc5a4abd4a0dd0729a7935958c49369f845aefe7" resname="Push::filter on companies" approved="yes"> <source>Push::filter on companies</source> <target state="translated">Company</target> - <jms:reference-file line="151">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="147">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="46">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0062d9a99e994aa4c343618e2236b82cf70fdf4a" resname="Push::filter on countries" approved="yes"> <source>Push::filter on countries</source> <target state="translated">Country</target> - <jms:reference-file line="148">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="144">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="45">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3dec8278889a4c672e776c0f810f7ed4a4ff7179" resname="Push::filter on emails" approved="yes"> <source>Push::filter on emails</source> <target state="translated">E-mail</target> - <jms:reference-file line="154">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="150">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="47">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d839b546e93714294e67e04cc94c6fcd2196cb9f" resname="Push::filter on login" approved="yes"> <source>Push::filter on login</source> <target state="translated">Login</target> - <jms:reference-file line="142">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="138">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="43">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="68226ba2a14991c3fc4b892b6b826868d5a093f0" resname="Push::filter on name" approved="yes"> <source>Push::filter on name</source> <target state="translated">Last name/First name</target> - <jms:reference-file line="145">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="141">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="df2d864dd4e6285082e77bd1c265e71d5c65645c" resname="Push::filter on templates" approved="yes"> <source>Push::filter on templates</source> <target state="translated">Last template</target> - <jms:reference-file line="157">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="153">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d2f5c0ac80b1da7a8257a2b0df31f94dc9e6b072" resname="Push::filter starts" approved="yes"> <source>Push::filter starts</source> <target state="translated">Starts with</target> - <jms:reference-file line="160">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="156">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="49">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dcf907ccbbcda0c0a828ef73ff1e6320748c1fad" resname="Push::une validation est une demande d'appreciation a d'autres personnes" approved="yes"> <source>Push::une validation est une demande d'appreciation a d'autres personnes</source> <target state="translated">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.</target> - <jms:reference-file line="182">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="189">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3e45857148ed08b19a425b5f4a2775e30dd346a7" resname="Push::unpush permet d'envoyer un lot d'image a des destinataires" approved="yes"> <source>Push::unpush permet d'envoyer un lot d'image a des destinataires</source> <target state="translated">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.</target> - <jms:reference-file line="180">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="187">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a60f2c73604f623449f263e78f5857849ad5e429" resname="Quality" approved="yes"> <source>Quality</source> <target state="translated">Quality</target> - <jms:reference-file line="36">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="36">Media/Subdef/Image.php</jms:reference-file> + <jms:reference-file line="36">Media/Subdef/Unknown.php</jms:reference-file> </trans-unit> <trans-unit id="7f983c163b8d6973ad2a1aa6de868dad5be7f8e2" resname="Quarantine" approved="yes"> <source>Quarantine</source> <target state="translated">Quarantine</target> - <jms:reference-file line="15">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="15">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="15">prod/upload/upload-flash.html.twig</jms:reference-file> </trans-unit> <trans-unit id="edd025b4ece2ab6693982ff127227d5672c7b0f1" resname="Quarantine notificaton" approved="yes"> <source>Quarantine notificaton</source> @@ -5278,80 +5335,80 @@ <trans-unit id="64ef3e9b9c1030a3df3515f8837f98d76950dd3a" resname="Raccourcis claviers de la zone des paniers :" approved="yes"> <source>Raccourcis claviers de la zone des paniers :</source> <target state="translated"><![CDATA[Baskets & features zone shortcuts]]></target> - <jms:reference-file line="536">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="627">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0fa257c61469082fe30f197cec92755b9b4fa8f0" resname="Raccourcis claviers en cours de editing :" approved="yes"> <source>Raccourcis claviers en cours de editing :</source> <target state="translated">Edit window shortcuts</target> - <jms:reference-file line="544">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="635">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b9401adb809efe10b4f5c4cb884566bd566a7969" resname="Raccourcis claviers en cours de preview :" approved="yes"> <source>Raccourcis claviers en cours de preview :</source> <target state="translated">Detailed View window shortcut</target> - <jms:reference-file line="550">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="641">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6d5b336b50c5326a4cfdaa1a9e8ac7c4bc6d7b3b" resname="Raccourcis claviers en cours de recherche :" approved="yes"> <source>Raccourcis claviers en cours de recherche :</source> <target state="translated">Main windows shortcuts</target> - <jms:reference-file line="524">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="615">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c53cf63d91236443a009fd132ae3728c8c8c7da0" resname="Raccourcis:: ctrl-a : tout selectionner" approved="yes"> <source>Raccourcis:: ctrl-a : tout selectionner</source> <target state="translated">ctrl-a : select all</target> - <jms:reference-file line="526">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="538">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="617">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="629">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="812022dea00fadf2f69eeae12652173c5292a306" resname="Raccourcis:: ctrl-e : editer la selection" approved="yes"> <source>Raccourcis:: ctrl-e : editer la selection</source> <target state="translated">ctrl-e : edit selection</target> - <jms:reference-file line="528">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="540">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="619">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="631">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c99e1c9838e7a805cbeac7e7f0c5268b64787ee8" resname="Raccourcis:: ctrl-p : imprimer la selection" approved="yes"> <source>Raccourcis:: ctrl-p : imprimer la selection</source> <target state="translated">ctrl-p : print selected</target> - <jms:reference-file line="527">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="539">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="618">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="630">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4dbc2034b309af31b59245364f6f02b7f7234737" resname="Raccourcis::espace : arreter/demarrer le diaporama" approved="yes"> <source>Raccourcis::espace : arreter/demarrer le diaporama</source> <target state="translated">space : start/stop diaporama</target> - <jms:reference-file line="554">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="645">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b6b7ba6a989c15ed4a35c733f02597ba34607758" resname="Raccourcis::fleche bas : scroll vertical" approved="yes"> <source>Raccourcis::fleche bas : scroll vertical</source> <target state="translated">down arrow : vertical scroll</target> - <jms:reference-file line="532">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="623">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="11d9cd036e502f222ca13b3fe1cefb7a9af7189b" resname="Raccourcis::fleche droite : page suivante" approved="yes"> <source>Raccourcis::fleche droite : page suivante</source> <target state="translated">right arrow : next page</target> - <jms:reference-file line="530">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="621">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f9cdc8b16bcbc46ca9a0ec80f780e584e27a5999" resname="Raccourcis::fleche gauche : en arriere" approved="yes"> <source>Raccourcis::fleche gauche : en arriere</source> <target state="translated">left arrow : previous document</target> - <jms:reference-file line="553">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="644">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="500299a27b8ec15496801e637d2ffa5e9ca45c17" resname="Raccourcis::fleche gauche : en avant" approved="yes"> <source>Raccourcis::fleche gauche : en avant</source> <target state="translated">right arrow : next document</target> - <jms:reference-file line="552">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="643">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3c8f969d01141d75f1a5c8cc19da3f22b17e7bb5" resname="Raccourcis::fleche gauche : page precedente" approved="yes"> <source>Raccourcis::fleche gauche : page precedente</source> <target state="translated">left arrow : previous page</target> - <jms:reference-file line="529">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="620">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ea7b04fcba2b542ae05ff8bf1c2eccab32451a78" resname="Raccourcis::fleche haut : scroll vertical" approved="yes"> <source>Raccourcis::fleche haut : scroll vertical</source> <target state="translated">up arrow : vertical scroll</target> - <jms:reference-file line="531">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="622">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="82c2178626ff2cdee250667a4efd09961f720dee" resname="Raccourcis::tab/shift-tab se ballade dans les champs" approved="yes"> <source>Raccourcis::tab/shift-tab se ballade dans les champs</source> <target state="translated">tab/shift-tab : change field</target> - <jms:reference-file line="546">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="637">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4efaf5e07d4b4b4c4373d24615adeed3a0eca433" resname="Rappel : Il vous reste %number% jours pour valider %title% de %user%" approved="yes"> <source>Rappel : Il vous reste %number% jours pour valider %title% de %user%</source> @@ -5366,29 +5423,31 @@ <trans-unit id="aafcf684757a5a4e1bf1630db0821e75f47a2d08" resname="Rapport de Validation" approved="yes"> <source>Rapport de Validation</source> <target state="translated">Feedback report</target> - <jms:reference-file line="74">eventsmanager/notify/validationdone.php</jms:reference-file> + <jms:reference-file line="80">eventsmanager/notify/validationdone.php</jms:reference-file> </trans-unit> <trans-unit id="17e7c81f42087a2439ab16806eea8693d6bcfff0" resname="Re-initialiser" approved="yes"> <source>Re-initialiser</source> <target state="translated">Reset</target> <jms:reference-file line="8">prod/Baskets/Reorder.html.twig</jms:reference-file> - <jms:reference-file line="328">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="7">prod/Story/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="328">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ca2a6abfc98ae1a46c15a6f8bbdc5fac25531462" resname="Re-ordonner" approved="yes"> <source>Re-ordonner</source> <target state="translated">Set order</target> - <jms:reference-file line="181">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="182">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="248">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="252">prod/WorkZone/Macros.html.twig</jms:reference-file> <jms:reference-file line="13">prod/Baskets/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="188">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="189">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="190">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="274">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="278">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="279">prod/WorkZone/Macros.html.twig</jms:reference-file> <jms:reference-file line="12">prod/Story/Reorder.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9b19a5a212deb29444cc1b420ad81703205848be" resname="Read-only" approved="yes"> <source>Read-only</source> <target state="translated">Read-only</target> - <jms:reference-file line="189">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="188">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8af84354a61a59531041ee67713997b84e7657ee" resname="Recaptcha private key" approved="yes"> <source>Recaptcha private key</source> @@ -5419,27 +5478,22 @@ <source>Received from %user_name%</source> <target state="translated">Received from %user_name%</target> <jms:reference-file line="43">WorkZone/Browser/Basket.html.twig</jms:reference-file> - <jms:reference-file line="73">WorkZone/Browser/Results.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="8434c52b54f0df88fc7f845d21a20f6a6d5ff880" resname="Receiver" approved="yes"> - <source>Receiver</source> - <target state="translated">Recipient</target> - <jms:reference-file line="595">Controller/Report/ActivityController.php</jms:reference-file> + <jms:reference-file line="50">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="da14ea4ea4ade5295d38ee6c0cd689aee3cd62ba" resname="Reception d'un rapport de validation" approved="yes"> <source>Reception d'un rapport de validation</source> <target state="translated">Incoming feedback report</target> - <jms:reference-file line="83">eventsmanager/notify/validationdone.php</jms:reference-file> + <jms:reference-file line="89">eventsmanager/notify/validationdone.php</jms:reference-file> </trans-unit> <trans-unit id="69d1feaf46a349a3e34611edbfd84d913f5cf209" resname="Reception d'une commande" approved="yes"> <source>Reception d'une commande</source> <target state="translated">Order Delivery</target> - <jms:reference-file line="82">eventsmanager/notify/orderdeliver.php</jms:reference-file> + <jms:reference-file line="90">eventsmanager/notify/orderdeliver.php</jms:reference-file> </trans-unit> <trans-unit id="62046e2515337958c10c5a6c4e08a3e415af005b" resname="Reception de commande" approved="yes"> <source>Reception de commande</source> <target state="translated">Order Delivery</target> - <jms:reference-file line="73">eventsmanager/notify/orderdeliver.php</jms:reference-file> + <jms:reference-file line="81">eventsmanager/notify/orderdeliver.php</jms:reference-file> </trans-unit> <trans-unit id="49f32abd3c743170b12fd28ce4e6035d5f0d1014" resname="Reception of %basket_name%" approved="yes"> <source>Reception of %basket_name%</source> @@ -5479,7 +5533,7 @@ <trans-unit id="f5e93456bc3a36a53bbcc31ea9dc7dc18b084a3d" resname="Rechercher dans un champ date" approved="yes"> <source>Rechercher dans un champ date</source> <target state="translated">In a date field</target> - <jms:reference-file line="441">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="470">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4faa65b556f68207d69cb14bcae4acb71980a036" resname="Recommendations" approved="yes"> <source>Recommendations</source> @@ -5499,7 +5553,7 @@ <trans-unit id="3cd74928930cda94205568949be186e4cae37119" resname="Record Not Found" approved="yes"> <source>Record Not Found</source> <target state="translated">Record not found</target> - <jms:reference-file line="2006">Controller/Api/V1Controller.php</jms:reference-file> + <jms:reference-file line="2048">Controller/Api/V1Controller.php</jms:reference-file> </trans-unit> <trans-unit id="ef0112aa634cbad5a586b72e4befe1ab1a39e73f" resname="Record removed from basket" approved="yes"> <source>Record removed from basket</source> @@ -5524,7 +5578,7 @@ <trans-unit id="1361dc265b8f8d5fbfae5c59f5eb7008345b0a60" resname="Records have been successfuly moved" approved="yes"> <source>Records have been successfuly moved</source> <target state="translated">Records have been successfuly moved</target> - <jms:reference-file line="158">Controller/Prod/MoveCollectionController.php</jms:reference-file> + <jms:reference-file line="159">Controller/Prod/MoveCollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="c5122f4f064abbc30552663cb0942faf7c7eb035" resname="Records type" approved="yes"> <source>Records type</source> @@ -5540,10 +5594,10 @@ <trans-unit id="d672995a14650d0e018026b64f297663d8c71c8d" resname="Register" approved="yes"> <source>Register</source> <target state="translated">Register</target> - <jms:reference-file line="6">web/login/register.html.twig</jms:reference-file> <jms:reference-file line="7">web/login/register-classic.html.twig</jms:reference-file> - <jms:reference-file line="10">login/include/register-link-block.html.twig</jms:reference-file> + <jms:reference-file line="6">web/login/register.html.twig</jms:reference-file> <jms:reference-file line="6">web/login/register-provider.html.twig</jms:reference-file> + <jms:reference-file line="10">login/include/register-link-block.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9ab985702970c5012a1c1a2db7b65d95926aecaf" resname="Register approbation" approved="yes"> <source>Register approbation</source> @@ -5567,15 +5621,10 @@ <jms:reference-file line="117">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="30">web/admin/users.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="c3c3adf6aadb4b23c2012f0ca5904b3d8172d98a" resname="Rejected access to the following collections" approved="yes"> - <source>Rejected access to the following collections</source> - <target state="translated">Rejected access to the following collections</target> - <jms:reference-file line="57">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="dcb70f5244f8883ac49c5eceb7d1e1cdeaf82711" resname="Relevance" approved="yes"> <source>Relevance</source> <target state="translated">Relevance</target> - <jms:reference-file line="354">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="383">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ced7b308a348567fbf21dd775ee496dd01207f24" resname="Remember me" approved="yes"> <source>Remember me</source> @@ -5590,8 +5639,8 @@ <trans-unit id="ecd6539bc6678ec0ff3748ecac64d64cee566b8f" resname="Remove ICC Profile" approved="yes"> <source>Remove ICC Profile</source> <target state="translated">Remove ICC profile</target> - <jms:reference-file line="34">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="34">Media/Subdef/Image.php</jms:reference-file> + <jms:reference-file line="34">Media/Subdef/Unknown.php</jms:reference-file> </trans-unit> <trans-unit id="db7741b4a5e42acd8d4e758ae50075157a0c08b7" resname="Remove current Range"> <source>Remove current Range</source> @@ -5639,12 +5688,7 @@ <trans-unit id="ee45c30326b750387589752c0f75e1dd87ddc7e4" resname="Report" approved="yes"> <source>Report</source> <target state="translated">Report</target> - <jms:reference-file line="205">admin/fields/templates.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="c0d6afbb9a5d52be258437c6100523c0ca890975" resname="Report generation may take a long time to generate, depending on the number of collections and the period selected." approved="yes"> - <source>Report generation may take a long time to generate, depending on the number of collections and the period selected.</source> - <target state="translated">Depending on the number of collections and the period selected, Report may take time to be generate.</target> - <jms:reference-file line="27">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="220">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="859ca6c24228b6fe9c9010bed75d2933884d7b49" resname="Request access" approved="yes"> <source>Request access</source> @@ -5710,13 +5754,13 @@ <trans-unit id="516aae52959dcf5398a9985414a78b8c24a4f0e5" resname="Resolution" approved="yes"> <source>Resolution</source> <target state="translated">Resolution in DPI</target> - <jms:reference-file line="33">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="33">Media/Subdef/Image.php</jms:reference-file> + <jms:reference-file line="33">Media/Subdef/Unknown.php</jms:reference-file> </trans-unit> <trans-unit id="8e78cff6cd2bb8595029060cb53dba7a4ba72b8a" resname="Resource URL" approved="yes"> <source>Resource URL</source> <target state="translated">Resource URL</target> - <jms:reference-file line="38">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="44">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2479ef7e025d9d4c6e5463dc366c2d6c79aaefbe" resname="Resquest access" approved="yes"> <source>Resquest access</source> @@ -5726,12 +5770,12 @@ <trans-unit id="ce2c77f1871ac286de08f393786b2a43da8aeb60" resname="Restart the task every X records" approved="yes"> <source>Restart the task every X records</source> <target state="translated">Restart the task every X records</target> - <jms:reference-file line="45">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="48">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="72f952850433b0f6e2359d47502eb500eb41ddad" resname="Restart the task if memory reaches" approved="yes"> <source>Restart the task if memory reaches</source> <target state="translated">Restart the task if memory reaches</target> - <jms:reference-file line="51">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="54">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="68135bb8f15e79ba2b97fcf79236ac3b2ba42dac" resname="Reste" approved="yes"> <source>Reste</source> @@ -5857,29 +5901,29 @@ <trans-unit id="efc007a393f66cdb14d57d385822a3d9e36ef873" resname="Save" approved="yes"> <source>Save</source> <target state="translated">Save</target> - <jms:reference-file line="112">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="108">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="45">web/account/change-password.html.twig</jms:reference-file> <jms:reference-file line="26">admin/search-engine/general-aggregation.html.twig</jms:reference-file> <jms:reference-file line="3">admin/search-engine/elastic-search.html.twig</jms:reference-file> <jms:reference-file line="75">task-manager/task-editor/task.html.twig</jms:reference-file> - <jms:reference-file line="45">web/account/change-password.html.twig</jms:reference-file> - <jms:reference-file line="41">web/login/renew-password.html.twig</jms:reference-file> <jms:reference-file line="53">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="91">web/developers/application.html.twig</jms:reference-file> + <jms:reference-file line="41">web/login/renew-password.html.twig</jms:reference-file> </trans-unit> <trans-unit id="960c9d85e9849fa58deb038c6c9bcf36ec973c99" resname="Save all changes" approved="yes"> <source>Save all changes</source> <target state="translated">Save all changes</target> <jms:reference-file line="8">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="a68dd32b578cf2863f4df4362232db4d80a9557c" resname="Save the list"> + <trans-unit id="a68dd32b578cf2863f4df4362232db4d80a9557c" resname="Save the list" approved="yes"> <source>Save the list</source> - <target state="new">Save the list</target> - <jms:reference-file line="90">actions/Feedback/list.html.twig</jms:reference-file> + <target state="translated">Save the list</target> + <jms:reference-file line="86">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e5c05c39658269a025f4dc37b50af1bb5ab946ca" resname="Save this list" approved="yes"> <source>Save this list</source> <target state="translated">Save this list</target> - <jms:reference-file line="241">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="247">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="fedf2439f275db3b471d35c2e773398bfff1c9eb" resname="Se connecter" approved="yes"> <source>Se connecter</source> @@ -5896,9 +5940,9 @@ <target state="translated">Search engine</target> <jms:reference-file line="61">Form/Configuration/MainConfigurationFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="a41408e4e69d88053181c88ed06a4efe5855dc4a" resname="Search for existing user"> + <trans-unit id="a41408e4e69d88053181c88ed06a4efe5855dc4a" resname="Search for existing user" approved="yes"> <source>Search for existing user</source> - <target state="new">Search for existing user</target> + <target state="translated">Search for existing user</target> <jms:reference-file line="23">actions/Feedback/List-Share.html.twig</jms:reference-file> </trans-unit> <trans-unit id="16c9aa8877f2b2a5067b5183327d5d35f0e8b5de" resname="SearchEngine settings" approved="yes"> @@ -5931,35 +5975,41 @@ <trans-unit id="b945126af2994e142e712b4e6f3c2cb2dd186a76" resname="See my order" approved="yes"> <source>See my order</source> <target state="translated">See my orders</target> - <jms:reference-file line="74">Notification/Mail/MailInfoOrderDelivered.php</jms:reference-file> <jms:reference-file line="75">Notification/Mail/MailInfoOrderCancelled.php</jms:reference-file> + <jms:reference-file line="74">Notification/Mail/MailInfoOrderDelivered.php</jms:reference-file> </trans-unit> <trans-unit id="369b9cb821dd6966e989359a1b8aadaf9c4db387" resname="See others" approved="yes"> <source>See others</source> <target state="translated">See others' choices</target> <jms:reference-file line="42">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="76f0c2c4f58a932f4d61175ea0da5799c1b3c231" resname="See the list"> + <trans-unit id="76f0c2c4f58a932f4d61175ea0da5799c1b3c231" resname="See the list" approved="yes"> <source>See the list</source> - <target state="new">See the list</target> - <jms:reference-file line="138">actions/Feedback/list.html.twig</jms:reference-file> + <target state="translated">View the list</target> + <jms:reference-file line="134">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7c2ce4a38c55478fb397967408b8c6d7c29fcc3b" resname="See validation results" approved="yes"> <source>See validation results</source> <target state="translated">See feedback results.</target> <jms:reference-file line="81">Notification/Mail/MailInfoValidationDone.php</jms:reference-file> </trans-unit> + <trans-unit id="fd6294adde442e65458da9640beeafed76f7f66a" resname="Select a field" approved="yes"> + <source>Select a field</source> + <target state="translated">Select a field</target> + <jms:reference-file line="425">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="68679be6d90db68ca5ceebaded92d5d83de8761c" resname="Select a list on the left and edit it !" approved="yes"> <source>Select a list on the left and edit it !</source> <target state="translated">Select a list on the left and then edit it !</target> - <jms:reference-file line="295">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="300">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="913afff1faf79724f1f685fe8b1e36a729123ca2" resname="Select all" approved="yes"> <source>Select all</source> <target state="translated">Select all</target> - <jms:reference-file line="61">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="215">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="24">web/report/form_date_and_base.html.twig</jms:reference-file> + <jms:reference-file line="221">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="57">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="68">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="45">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7c83f0d10a0a04ab6ae1ceb098113b081e9bc4d5" resname="Select all collections" approved="yes"> <source>Select all collections</source> @@ -5969,8 +6019,8 @@ <trans-unit id="aacba52fe3c2b562e2ef14b41fcd4abab92a0619" resname="Select files..." approved="yes"> <source>Select files...</source> <target state="translated">Select files</target> - <jms:reference-file line="202">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="31">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="202">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="160">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="185">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="210">admin/collection/collection.html.twig</jms:reference-file> @@ -5978,6 +6028,11 @@ <jms:reference-file line="56">admin/statusbit/edit.html.twig</jms:reference-file> <jms:reference-file line="121">admin/statusbit/edit.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="49fae2071d9672ce46d9fbadda409a3fa0cbc238" resname="Selected base(s)" approved="yes"> + <source>Selected base(s)</source> + <target state="translated">Selected database(s) :</target> + <jms:reference-file line="345">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="2c418c187fb3108749d7156765e7b9b16a51215f" resname="Selected files" approved="yes"> <source>Selected files</source> <target state="translated">Selected files</target> @@ -5987,12 +6042,12 @@ <source>Send</source> <target state="translated">Send</target> <jms:reference-file line="90">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="254">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="256">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="259">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="261">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="113">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="110">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="185">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="220">prod/orders/order_item.html.twig</jms:reference-file> - <jms:reference-file line="110">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="110">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="130">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="46">web/login/forgot-password.html.twig</jms:reference-file> </trans-unit> @@ -6006,16 +6061,18 @@ <target state="translated">Send to Facebook</target> <jms:reference-file line="32">prod/Share/record.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="60b2d62f2951ccf92ed7fb647ee7d6ab7ecfdd5e" resname="Send to Linkedin" approved="yes"> + <source>Send to Linkedin</source> + <target state="translated">Send to LinkedIn</target> + <jms:reference-file line="37">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="38">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="39">prod/Share/record.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="29f82ee42eeecce87dfe9223d5d7ff716dc68ead" resname="Send to Twitter" approved="yes"> <source>Send to Twitter</source> <target state="translated">Send to Twitter</target> <jms:reference-file line="24">prod/Share/record.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="35f49dcfbfb2e03fdce327671e82bf173b1ccb8b" resname="Sent" approved="yes"> - <source>Sent</source> - <target state="translated">Sent</target> - <jms:reference-file line="199">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="31f38dffd0e514c2f0c21da7a49966442217f792" resname="Sent documents (mail)" approved="yes"> <source>Sent documents (mail)</source> <target state="translated">Sent documents</target> @@ -6025,12 +6082,12 @@ <source>Sent for validation to %list_participants%</source> <target state="translated">Sent for feedback to %list_participants%</target> <jms:reference-file line="66">WorkZone/Browser/Basket.html.twig</jms:reference-file> - <jms:reference-file line="91">WorkZone/Browser/Results.html.twig</jms:reference-file> + <jms:reference-file line="68">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b4b289a7b76be83adf9d38e7a3ee28190349bff2" resname="Separator" approved="yes"> <source>Separator</source> <target state="translated">Separator</target> - <jms:reference-file line="163">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="162">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="af8c1d265158926dfd6209077b075c5efaa5c0d2" resname="Service youtube introuvable." approved="yes"> <source>Service youtube introuvable.</source> @@ -6055,8 +6112,8 @@ <trans-unit id="4b1933037822e34594e624b3f814726a137a71fd" resname="Set labels" approved="yes"> <source>Set labels</source> <target state="translated">Set labels</target> - <jms:reference-file line="100">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="96">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="100">admin/collection/collection.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9137bba9319a52102294ab278c3a7aca79d67e29" resname="Set statuses restrictions" approved="yes"> <source>Set statuses restrictions</source> @@ -6071,8 +6128,8 @@ <trans-unit id="cdd7bb2816b7a8f88bce0e47be39943bc369516b" resname="Setup" approved="yes"> <source>Setup</source> <target state="translated">Setup</target> - <jms:reference-file line="22">web/admin/tree.html.twig</jms:reference-file> <jms:reference-file line="2">web/admin/setup.html.twig</jms:reference-file> + <jms:reference-file line="22">web/admin/tree.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a6fac1ccf7f969630ff9a2226f831a093093448b" resname="Setup my password" approved="yes"> <source>Setup my password</source> @@ -6084,9 +6141,9 @@ <target state="translated">Share</target> <jms:reference-file line="108">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> - <trans-unit id="ce896454ee1650a73169d33b97a59cb8f90d6e6b" resname="Share my list"> + <trans-unit id="ce896454ee1650a73169d33b97a59cb8f90d6e6b" resname="Share my list" approved="yes"> <source>Share my list</source> - <target state="new">Share my list</target> + <target state="translated">Share my list</target> <jms:reference-file line="31">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3d9576616347132778bc28cffe80b27a914f9dd0" resname="Share the list" approved="yes"> @@ -6102,13 +6159,13 @@ <trans-unit id="396c2137a0b503759e5d4930af8a16aa28ce3ee7" resname="Short description" approved="yes"> <source>Short description</source> <target state="translated">Short description</target> - <jms:reference-file line="18">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="101">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="18">admin/publications/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="32e50dd99f3b67dc93272aa6c904b83d37f4f48d" resname="Shutter speed" approved="yes"> <source>Shutter speed</source> <target state="translated">Shutter speed</target> - <jms:reference-file line="292">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="305">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> <jms:reference-file line="98">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e4538baf30d4eb324ec64e4b48c1ca424dd3b773" resname="Si cet email contient des liens non cliquables, copiez/collez ces liens dans votre navigateur." approved="yes"> @@ -6144,7 +6201,7 @@ <trans-unit id="b7152342a267362add3c0d7f69f720f7a9c76c9e" resname="Size" approved="yes"> <source>Size</source> <target state="translated">Size</target> - <jms:reference-file line="86">actions/Tools/videoEditor.html.twig</jms:reference-file> + <jms:reference-file line="99">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="40">actions/Download/prepare.html.twig</jms:reference-file> <jms:reference-file line="37">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> @@ -6208,8 +6265,8 @@ <trans-unit id="8657e88f4bf4b28dd29659361c70f11dea58efa5" resname="Sous-titre" approved="yes"> <source>Sous-titre</source> <target state="translated">Subtitle</target> - <jms:reference-file line="16">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="99">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="16">admin/publications/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="970f057325af27424f32675051fea5366873b007" resname="Space bar" approved="yes"> <source>Space bar</source> @@ -6235,7 +6292,7 @@ <trans-unit id="2e5dd1202b7de8194a1498340953992c32738494" resname="Start by creating one by using the "add" button on the left !" approved="yes"> <source>Start by creating one by using the "add" button on the left !</source> <target state="translated">Start by creating one by using the "add" button on the left!</target> - <jms:reference-file line="291">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="296">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7ec5491e76522fe1687d799f35ab2ba39ae573fe" resname="Start validation" approved="yes"> <source>Start validation</source> @@ -6251,7 +6308,7 @@ <trans-unit id="4e1c8377cce4ac872e1c3e8fc6bc760c5130946d" resname="Status des documents a rechercher" approved="yes"> <source>Status des documents a rechercher</source> <target state="translated">Document status</target> - <jms:reference-file line="389">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="502">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5b9261222b0e03c8cd1796d7c8adabf1bb552e4d" resname="Status edition" approved="yes"> <source>Status edition</source> @@ -6289,7 +6346,7 @@ <trans-unit id="315bc332aafca63cad8ac042c2e2f5111544fe9d" resname="Story Not Found" approved="yes"> <source>Story Not Found</source> <target state="translated">Story not found</target> - <jms:reference-file line="2452">Controller/Api/V1Controller.php</jms:reference-file> + <jms:reference-file line="2494">Controller/Api/V1Controller.php</jms:reference-file> </trans-unit> <trans-unit id="94e347da85f4797810ed7987973c8ef79092057e" resname="Story created" approved="yes"> <source>Story created</source> @@ -6344,8 +6401,8 @@ <trans-unit id="8017bd7de9961cf42f59abc587d0495a9d25c2a9" resname="Substitute" approved="yes"> <source>Substitute</source> <target state="translated">Substitute</target> - <jms:reference-file line="359">prod/upload/lazaret.html.twig</jms:reference-file> - <jms:reference-file line="360">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="516">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="517">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3d48a1d66362cef46e567ddf521b0dc3233f57a2" resname="Substitution is not possible for this kind of record" approved="yes"> <source>Substitution is not possible for this kind of record</source> @@ -6355,8 +6412,8 @@ <trans-unit id="42a8f651d79fd005eeac0612df6442b983a01184" resname="Success" approved="yes"> <source>Success</source> <target state="translated">Success</target> - <jms:reference-file line="508">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="9">api/auth/native_app_access_token.html.twig</jms:reference-file> + <jms:reference-file line="508">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5f7dcc16f00b622a8fb8bf4abf16dad52640a5fc" resname="Successful install" approved="yes"> <source>Successful install</source> @@ -6366,22 +6423,16 @@ <trans-unit id="4b7dae46777ddbfd995aab044d4a51239c1cb2ca" resname="Successful removal" approved="yes"> <source>Successful removal</source> <target state="translated">Successful removal.</target> - <jms:reference-file line="185">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="225">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="266">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="460">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="99">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="394">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="186">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="226">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="267">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="461">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="6ba2cae76f3ec74086cc39f093db7b475944448b" resname="Successful update" approved="yes"> <source>Successful update</source> <target state="translated">Successful update</target> - <jms:reference-file line="557">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="595">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="633">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="666">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="699">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="807">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="155">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="187">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="221">Controller/Admin/DataboxController.php</jms:reference-file> @@ -6389,10 +6440,16 @@ <jms:reference-file line="464">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="602">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="647">Controller/Admin/DataboxController.php</jms:reference-file> - <jms:reference-file line="168">actions/Tools/videoEditor.html.twig</jms:reference-file> - <jms:reference-file line="20">admin/collection/suggested_value.html.twig</jms:reference-file> - <jms:reference-file line="18">admin/collection/collection.html.twig</jms:reference-file> + <jms:reference-file line="558">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="596">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="634">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="667">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="700">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="808">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="181">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="10">web/admin/databases.html.twig</jms:reference-file> + <jms:reference-file line="18">admin/collection/collection.html.twig</jms:reference-file> + <jms:reference-file line="20">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> <trans-unit id="432156a872c392232a4f7434feca02cdf36cfbfa" resname="Successfull connection" approved="yes"> <source>Successfull connection</source> @@ -6422,14 +6479,14 @@ <trans-unit id="dd631af5459e2fae291effe51fbb608d13a75163" resname="Suppression de %n_element% playlists" approved="yes"> <source>Suppression de %n_element% playlists</source> <target state="translated">Deleting %n_element% playlists</target> - <jms:reference-file line="6">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="6">Bridge/Dailymotion/playlist_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="6">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> </trans-unit> <trans-unit id="299c2796a0d682b2495627623e9f228410b8a84a" resname="Suppression de %n_element% videos" approved="yes"> <source>Suppression de %n_element% videos</source> <target state="translated">Deleting %n_element% videos</target> - <jms:reference-file line="6">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="6">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="6">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1acfc1c7d761310db2e5e876c0cade4d522cfed2" resname="Supprimer" approved="yes"> <source>Supprimer</source> @@ -6441,11 +6498,6 @@ <target state="translated">Delete also the documents linked to this story?</target> <jms:reference-file line="39">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> - <trans-unit id="65cc662ad8bf7275ba279006da212ce5a48f4eec" resname="Suspended access to the following collections" approved="yes"> - <source>Suspended access to the following collections</source> - <target state="translated">Suspended access to the following collections</target> - <jms:reference-file line="159">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="8f040009fef60fd317d7519f22f4fe97ee277dc0" resname="Symbolized by" approved="yes"> <source>Symbolized by</source> <target state="translated">Symbolised by</target> @@ -6470,16 +6522,16 @@ <trans-unit id="848eed0fbd5429f556b2982dec3ea87136e33e44" resname="Tags" approved="yes"> <source>Tags</source> <target state="translated">Tags</target> - <jms:reference-file line="68">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="71">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="38">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="57">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="49">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="71">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="38">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="68">Bridge/Flickr/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0e98caed82acc9fa2f1ba9edeab7789e75e49c36" resname="Target Device" approved="yes"> <source>Target Device</source> <target state="translated">Target device</target> - <jms:reference-file line="388">classes/databox/subdef.php</jms:reference-file> + <jms:reference-file line="392">classes/databox/subdef.php</jms:reference-file> </trans-unit> <trans-unit id="5fb2e4a63ebe9160da52c28fba2f61029c85c8d6" resname="Task Edition" approved="yes"> <source>Task Edition</source> @@ -6513,11 +6565,6 @@ <target state="translated">Downloadable</target> <jms:reference-file line="417">web/admin/subdefs.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="e7b08fafe055633f6df0d3f22da6d788f79e4d9f" resname="Temporary access to the following collections" approved="yes"> - <source>Temporary access to the following collections</source> - <target state="translated">Temporary access to the following collections</target> - <jms:reference-file line="109">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="d32cbb0b2df6ec0df4b80910498d4ef9ce5f0bb3" resname="Terms Of Use" approved="yes"> <source>Terms Of Use</source> <target state="translated">Terms of Service</target> @@ -6539,8 +6586,8 @@ <target state="translated">Terms of use</target> <jms:reference-file line="72">Controller/Prod/TOUController.php</jms:reference-file> <jms:reference-file line="141">web/admin/tree.html.twig</jms:reference-file> - <jms:reference-file line="74">login/layout/base-layout.html.twig</jms:reference-file> <jms:reference-file line="6">web/login/cgus.html.twig</jms:reference-file> + <jms:reference-file line="75">login/layout/base-layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="903b3a1a72b51b7b51f85ec8c81def53ed9c9b0c" resname="The Phraseanet Web API allows other web application to rely on this instance" approved="yes"> <source>The Phraseanet Web API allows other web application to rely on this instance</source> @@ -6561,7 +6608,7 @@ <source>The application is going down for maintenance, please logout.</source> <target state="translated">You will be disconnected for maintenance, please quit Phraseanet</target> <jms:reference-file line="85">Controller/Root/SessionController.php</jms:reference-file> - <jms:reference-file line="173">Controller/Root/SessionController.php</jms:reference-file> + <jms:reference-file line="175">Controller/Root/SessionController.php</jms:reference-file> </trans-unit> <trans-unit id="dbc7a77bb18477228fe3550ec43be9d8632599f6" resname="The authentication token specified in the Authorization header has expired." approved="yes"> <source>The authentication token specified in the Authorization header has expired.</source> @@ -6581,7 +6628,7 @@ <trans-unit id="96d9248cb4dfd196e98cbb278169e01e69ecc41a" resname="The destination record provided is not allowed" approved="yes"> <source>The destination record provided is not allowed</source> <target state="translated">The targeted record choosen is not allowed</target> - <jms:reference-file line="215">Controller/Prod/LazaretController.php</jms:reference-file> + <jms:reference-file line="225">Controller/Prod/LazaretController.php</jms:reference-file> </trans-unit> <trans-unit id="3814607399fa053b6054a4d7ce214f2d34034150" resname="The document %name% has been quarantined" approved="yes"> <source>The document %name% has been quarantined</source> @@ -6621,13 +6668,13 @@ <trans-unit id="bed6ca36bed72a06b8787982e6c74a8fbbb7715f" resname="The file is too big" approved="yes"> <source>The file is too big</source> <target state="translated">The file is too large.</target> - <jms:reference-file line="65">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="44">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="66">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="1d5dadcdeeecd294a88baf096ba0440053ecf738" resname="The file was moved to the quarantine" approved="yes"> <source>The file was moved to the quarantine</source> <target state="translated">The file has moved to quarantine</target> - <jms:reference-file line="225">Controller/Prod/UploadController.php</jms:reference-file> + <jms:reference-file line="282">Controller/Prod/UploadController.php</jms:reference-file> </trans-unit> <trans-unit id="1818502d42e14ffcb9c664fd1365fafa969971ff" resname="The following errors have been detected" approved="yes"> <source>The following errors have been detected</source> @@ -6637,13 +6684,13 @@ <trans-unit id="d22c09c164965d42fcdb8d8fe2b40d7d57799a8f" resname="The publication has been stopped" approved="yes"> <source>The publication has been stopped</source> <target state="translated">The publication has been stopped.</target> - <jms:reference-file line="516">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="498">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="517">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="bae1c72ecbe1459751e4a0fee382a305bbf933b7" resname="The record was successfully created" approved="yes"> <source>The record was successfully created</source> <target state="translated">The record has been successfully created</target> - <jms:reference-file line="196">Controller/Prod/UploadController.php</jms:reference-file> + <jms:reference-file line="253">Controller/Prod/UploadController.php</jms:reference-file> </trans-unit> <trans-unit id="209817489c23cec8b7a15f6b8ca3e45daf08656d" resname="The records have been properly ordered" approved="yes"> <source>The records have been properly ordered</source> @@ -6679,7 +6726,7 @@ <trans-unit id="a797e30923ac1be590300ce6b08e63b4e6dc6688" resname="Theme" approved="yes"> <source>Theme</source> <target state="translated">Skin</target> - <jms:reference-file line="616">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="707">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="322573ed2c245ecca02a8d7e8c96d89511d99b5a" resname="There is no one to validate orders, please contact an administrator" approved="yes"> <source>There is no one to validate orders, please contact an administrator</source> @@ -6705,7 +6752,7 @@ <trans-unit id="163fc70a23cf29331bab9896c9a8a0cb0b113bd6" resname="Thesaurus branch" approved="yes"> <source>Thesaurus branch</source> <target state="translated">Thesaurus branch</target> - <jms:reference-file line="248">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="263">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c80f8a4f795945c822db75e5414796446ada185c" resname="Thesaurus ou CTerms invalide" approved="yes"> <source>Thesaurus ou CTerms invalide</source> @@ -6762,7 +6809,7 @@ <trans-unit id="0845a443aa08307788a65ee5e1218a618dfcc9aa" resname="This link is valid until" approved="yes"> <source>This link is valid until</source> <target state="translated">This link is valid until</target> - <jms:reference-file line="109">templates/web/email-template.html.twig</jms:reference-file> + <jms:reference-file line="115">templates/web/email-template.html.twig</jms:reference-file> </trans-unit> <trans-unit id="58e76d1cc6a26f43783774d888c3a260970f637b" resname="This option disables the selecting of the databases on which a user can register himself, and registration is made on all granted databases." approved="yes"> <source>This option disables the selecting of the databases on which a user can register himself, and registration is made on all granted databases.</source> @@ -6772,7 +6819,7 @@ <trans-unit id="814c3298cccd06ad65ccac8a35e4f2104a4af17e" resname="This user does not participate to the validation but is only viewer." approved="yes"> <source>This user does not participate to the validation but is only viewer.</source> <target state="translated">This user does not participate to the feedback request but is only viewer.</target> - <jms:reference-file line="368">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="398">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="edbc2ef60cebe2e6efe5cb9a2662e710a65615d1" resname="This user has no rights" approved="yes"> <source>This user has no rights</source> @@ -6803,24 +6850,24 @@ <source>Time for feedback (days)</source> <target state="translated">Time for feedback (in days)</target> <jms:reference-file line="88">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="138">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="139">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="eb97899aedcd5609782b5ccb4ffa390e0e66a3eb" resname="Titre" approved="yes"> <source>Titre</source> <target state="translated">Title</target> <jms:reference-file line="9">prod/Baskets/Reorder.html.twig</jms:reference-file> - <jms:reference-file line="39">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="24">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> - <jms:reference-file line="13">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="29">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="13">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="24">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="29">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="24">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="29">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="24">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="39">Bridge/Flickr/upload.html.twig</jms:reference-file> + <jms:reference-file line="24">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> <jms:reference-file line="8">prod/Story/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="93">admin/publications/fiche.html.twig</jms:reference-file> <jms:reference-file line="9">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="54">admin/publications/list.html.twig</jms:reference-file> - <jms:reference-file line="93">admin/publications/fiche.html.twig</jms:reference-file> </trans-unit> <trans-unit id="01594f4dad04782844c8175778fdf66deabf580d" resname="Toggle loop" approved="yes"> <source>Toggle loop</source> @@ -6832,6 +6879,11 @@ <target state="translated">Token</target> <jms:reference-file line="109">web/developers/application.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="e894979930445d4b2bd8c947d6e2e6b816fcb0ab" resname="Token not found" approved="yes"> + <source>Token not found</source> + <target state="translated">Token not found</target> + <jms:reference-file line="383">Controller/Root/AccountController.php</jms:reference-file> + </trans-unit> <trans-unit id="f97edaa0ce78a61e01095cae4169cada477d52dc" resname="Tool box" approved="yes"> <source>Tool box</source> <target state="translated">Media Tool box</target> @@ -6840,18 +6892,18 @@ <trans-unit id="b25928c69902557b0ef0a628490a3a1768d7b82f" resname="Total" approved="yes"> <source>Total</source> <target state="translated">Total</target> - <jms:reference-file line="27">admin/collection/details.html.twig</jms:reference-file> <jms:reference-file line="47">admin/databox/details.html.twig</jms:reference-file> + <jms:reference-file line="27">admin/collection/details.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b97ae3b4f9093f64a85df9e7d4338f6c62772516" resname="Tous" approved="yes"> <source>Tous</source> <target state="translated">All</target> - <jms:reference-file line="213">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="228">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6a5df111083f0da274d3b57d9b32183a19d33616" resname="Tout type" approved="yes"> <source>Tout type</source> <target state="translated">All types</target> - <jms:reference-file line="293">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="318">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="858b4e63ba1db83dde4feb9673b47c725b20a18b" resname="Toutes les publications" approved="yes"> <source>Toutes les publications</source> @@ -6871,24 +6923,18 @@ <trans-unit id="9764c016bb5a296069109116fa95c49815dcba82" resname="Transmited files" approved="yes"> <source>Transmited files</source> <target state="translated">Transmitted files</target> + <jms:reference-file line="122">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="118">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="119">prod/upload/upload.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="a7e4c9fa228eb48d2c3526022f4fad0106db3d08" resname="Trier" approved="yes"> - <source>Trier</source> - <target state="translated">Sort</target> - <jms:reference-file line="49">web/report/generate_tab.html.twig</jms:reference-file> - <jms:reference-file line="50">web/report/generate_tab.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6e764776541fbe428a3566f42ee7956312af98b7" resname="Trier par" approved="yes"> <source>Trier par</source> <target state="translated">Sort by</target> - <jms:reference-file line="344">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="373">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f85e36f3a512d36e7e4bba99d440d389ab84ca9d" resname="Try to extract embedded thumbnails" approved="yes"> <source>Try to extract embedded thumbnails</source> <target state="translated">Try to extract embedded thumbnails</target> - <jms:reference-file line="61">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="64">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3deb7456519697ecf4eefc455516c969a3681bae" resname="Type" approved="yes"> <source>Type</source> @@ -6908,7 +6954,7 @@ <trans-unit id="a5ab97f65fffae645fe7e88ee89ca7ebc1e033be" resname="Type de documents" approved="yes"> <source>Type de documents</source> <target state="translated">Document(s) Type</target> - <jms:reference-file line="650">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="741">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0264aa285ccf980bbec0969e06c2eab7e936188c" resname="Type nombre" approved="yes"> <source>Type nombre</source> @@ -6923,8 +6969,8 @@ <trans-unit id="c2739616a133e476dda18386df0d2487d526766a" resname="URL de callback" approved="yes"> <source>URL de callback</source> <target state="translated">Callback url</target> - <jms:reference-file line="44">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="102">web/developers/application_form.html.twig</jms:reference-file> + <jms:reference-file line="44">web/developers/application.html.twig</jms:reference-file> </trans-unit> <trans-unit id="268f900effee1beb15231a1504d02543e8827bb3" resname="Un document commande" approved="yes"> <source>Un document commande</source> @@ -6939,8 +6985,8 @@ <trans-unit id="d32751443628a0d2c5b31b441c1e2b3001f35dfd" resname="Unable to add file to Phraseanet" approved="yes"> <source>Unable to add file to Phraseanet</source> <target state="translated">Unable to add files to Phraseanet</target> - <jms:reference-file line="237">Controller/Prod/UploadController.php</jms:reference-file> <jms:reference-file line="195">Controller/Admin/FeedController.php</jms:reference-file> + <jms:reference-file line="294">Controller/Prod/UploadController.php</jms:reference-file> </trans-unit> <trans-unit id="8b233593eb66b5be4da2f44ff527bd641b3a6fc1" resname="Unable to add usr to list" approved="yes"> <source>Unable to add usr to list</source> @@ -6968,12 +7014,12 @@ <trans-unit id="225f62661868b2c3fb3820c94c5727f70b1e7d4c" resname="Unable to create template, the name is already used." approved="yes"> <source>Unable to create template, the name is already used.</source> <target state="translated">Unable to create template, the name is already used.</target> - <jms:reference-file line="270">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="271">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="ac9cb56f58dc3e077f9557ed6958e993dae09e71" resname="Unable to create the user." approved="yes"> <source>Unable to create the user.</source> <target state="translated">Unable to create the user.</target> - <jms:reference-file line="272">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="273">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="5660d6aac90c7a8f4df9fcad68513c061bef3298" resname="Unable to delete list" approved="yes"> <source>Unable to delete list</source> @@ -7031,7 +7077,7 @@ <trans-unit id="c091c74374b8ad7b7018e849fd89bf14c1fe3f02" resname="Une question personnelle" approved="yes"> <source>Une question personnelle</source> <target state="translated">The query</target> - <jms:reference-file line="691">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="782">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="de1052fd7157a697a5ee7741019cc38322fc6128" resname="Une selection" approved="yes"> <source>Une selection</source> @@ -7089,16 +7135,16 @@ <trans-unit id="8bdf057f91e76ae328b2a21d35f682daa08a0ec0" resname="Upload" approved="yes"> <source>Upload</source> <target state="translated">Upload</target> - <jms:reference-file line="6">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="83">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="16">actions/Bridge/index.html.twig</jms:reference-file> - <jms:reference-file line="5">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="101">Bridge/Youtube/upload.html.twig</jms:reference-file> <jms:reference-file line="5">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="89">Bridge/Dailymotion/upload.html.twig</jms:reference-file> - <jms:reference-file line="8">prod/upload/upload-flash.html.twig</jms:reference-file> + <jms:reference-file line="5">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="101">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="16">actions/Bridge/index.html.twig</jms:reference-file> + <jms:reference-file line="6">Bridge/Flickr/upload.html.twig</jms:reference-file> + <jms:reference-file line="83">Bridge/Flickr/upload.html.twig</jms:reference-file> <jms:reference-file line="8">prod/upload/upload.html.twig</jms:reference-file> - <jms:reference-file line="93">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="8">prod/upload/upload-flash.html.twig</jms:reference-file> + <jms:reference-file line="94">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f9ee782a49540357e87b6dc0dde09d8bec6507af" resname="Upload URL is not set, please contact an admin" approved="yes"> <source>Upload URL is not set, please contact an admin</source> @@ -7123,7 +7169,7 @@ <trans-unit id="a8ddbae32452ce671987065bc29d7ae6685a2b17" resname="Uploaded by : %username%" approved="yes"> <source>Uploaded by : %username%</source> <target state="translated">Uploaded by: %username%</target> - <jms:reference-file line="341">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="438">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ea1fd4c4c366bf2e13d348b67b75e96039d7a1d7" resname="Use Google Chart API" approved="yes"> <source>Use Google Chart API</source> @@ -7143,7 +7189,7 @@ <trans-unit id="d029e308808256c5e3868e24ea33f14866ab2e36" resname="Use latest search settings on Production loading" approved="yes"> <source>Use latest search settings on Production loading</source> <target state="translated">Use latest search settings on Production when loading</target> - <jms:reference-file line="588">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="679">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="74126bf38974fc3d5bf2d0844567be2be473e122" resname="Use my Phraseanet account" approved="yes"> <source>Use my Phraseanet account</source> @@ -7158,16 +7204,16 @@ <trans-unit id="17a74b77867e7b3f4f5e5b2ad90be36cf800dfda" resname="Use the Flash uploader" approved="yes"> <source>Use the Flash uploader</source> <target state="translated">Use the Flash uploader version</target> + <jms:reference-file line="53">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="146">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="132">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="50">prod/upload/upload.html.twig</jms:reference-file> - <jms:reference-file line="143">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b9473cfd4d6d6383f40de2d9be11adcca7b76ab6" resname="Use the HTML5 uploader" approved="yes"> <source>Use the HTML5 uploader</source> <target state="translated">Switch to HTML5 uploader</target> + <jms:reference-file line="145">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="48">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="131">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="142">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1d2b0439bd02b54c622696c45588eab8d051dfb9" resname="Use with mod_token. Attention requires the apache modules and mod_h264_streaming mod_auth_token" approved="yes"> <source>Use with mod_token. Attention requires the apache modules and mod_h264_streaming mod_auth_token</source> @@ -7198,40 +7244,40 @@ <source>User can download HD</source> <target state="translated">User can download Documents</target> <jms:reference-file line="103">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="107">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="109">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="213">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="215">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="254">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="256">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="108">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="110">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="214">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="216">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="255">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="257">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ae005b1ce814398e203551a75eeeb5da09f80204" resname="User can see others choices" approved="yes"> <source>User can see others choices</source> <target state="translated">User can see other user's choices</target> <jms:reference-file line="105">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="100">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="102">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="101">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="103">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9e982c7ce4a8cb5f48743cd0ca79a82ca30f7dc1" resname="User contribute to the feedback" approved="yes"> <source>User contribute to the feedback</source> <target state="translated">User can contribute to Feedbacks</target> <jms:reference-file line="104">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="93">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="95">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="94">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="96">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="981305c0c2dad92d70b1afd4757a274596de6ec7" resname="User successfully created" approved="yes"> <source>User successfully created</source> <target state="translated">User successfully created</target> - <jms:reference-file line="485">Controller/Prod/PushController.php</jms:reference-file> + <jms:reference-file line="490">Controller/Prod/PushController.php</jms:reference-file> </trans-unit> <trans-unit id="57f2b181d0a5e79a147ea1cdf41457f58dbbb3c9" resname="Users" approved="yes"> <source>Users</source> <target state="translated">Users</target> <jms:reference-file line="40">Vocabulary/ControlProvider/UserProvider.php</jms:reference-file> + <jms:reference-file line="107">prod/actions/Push.html.twig</jms:reference-file> <jms:reference-file line="5">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="100">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="29">user/import/view.html.twig</jms:reference-file> <jms:reference-file line="19">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="29">user/import/view.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3482565eef4d4cd1decb5ebfad6ecfc5943d30da" resname="Users must accept Terms of Use for each export" approved="yes"> <source>Users must accept Terms of Use for each export</source> @@ -7241,11 +7287,11 @@ <trans-unit id="28f4718f1cf2cd1f31d49c8bce276341ffe222bd" resname="Users suggestion" approved="yes"> <source>Users suggestion</source> <target state="translated">Users suggestion</target> - <jms:reference-file line="142">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="149">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="a56fad2f92979e0171b42bbc51ff5657d17ceb91" resname="Utilisation prevue:"> + <trans-unit id="a56fad2f92979e0171b42bbc51ff5657d17ceb91" resname="Utilisation prevue:" approved="yes"> <source>Utilisation prevue:</source> - <target state="needs-translation">Intended use:</target> + <target state="translated">Intended use:</target> <jms:reference-file line="250">prod/orders/order_item.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3b3e9155f69edf73caab337bf5f64231188b1e48" resname="VALIDATION" approved="yes"> @@ -7262,11 +7308,11 @@ <trans-unit id="dd74d182c641e4c78502d863b44d0aeff1575e54" resname="Validation" approved="yes"> <source>Validation</source> <target state="translated">Feedback</target> + <jms:reference-file line="23">eventsmanager/notify/validationdone.php</jms:reference-file> <jms:reference-file line="20">eventsmanager/notify/validationreminder.php</jms:reference-file> <jms:reference-file line="73">eventsmanager/notify/validationreminder.php</jms:reference-file> <jms:reference-file line="20">eventsmanager/notify/validate.php</jms:reference-file> <jms:reference-file line="78">eventsmanager/notify/validate.php</jms:reference-file> - <jms:reference-file line="20">eventsmanager/notify/validationdone.php</jms:reference-file> <jms:reference-file line="86">lightbox/IE6/validate.html.twig</jms:reference-file> </trans-unit> <trans-unit id="83da6b62512e6597a104cf295a8f050cd9799a6d" resname="Validation from %user%" approved="yes"> @@ -7282,11 +7328,11 @@ <trans-unit id="6c259e54dcc7188e7cfe33403eca78cda53017fc" resname="Validations" approved="yes"> <source>Validations</source> <target state="translated">Feedbacks</target> + <jms:reference-file line="46">mobile/lightbox/index.html.twig</jms:reference-file> + <jms:reference-file line="86">mobile/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="24">web/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="119">lightbox/IE6/validate.html.twig</jms:reference-file> <jms:reference-file line="132">web/lightbox/validate.html.twig</jms:reference-file> - <jms:reference-file line="46">mobile/lightbox/index.html.twig</jms:reference-file> - <jms:reference-file line="86">mobile/lightbox/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="264cc8414ca311d9fa99c7ed66a90171dcf22dc6" resname="Validations received" approved="yes"> <source>Validations received</source> @@ -7321,7 +7367,7 @@ <trans-unit id="bc17c1f0179a888f2a7e8389f67d4f2cf5cf4531" resname="Video" approved="yes"> <source>Video</source> <target state="translated">Video</target> - <jms:reference-file line="295">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="320">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="49b431928c1ca1e514c612954a19457fadff2485" resname="Video Codec" approved="yes"> <source>Video Codec</source> @@ -7331,13 +7377,13 @@ <trans-unit id="534048d6c768f47f83f67c0498e6d4ecf5cff4bb" resname="Video codec" approved="yes"> <source>Video codec</source> <target state="translated">Video codec</target> - <jms:reference-file line="325">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="346">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="56b71e89fb1079caaadefd0889e9a22e8b0560e3" resname="Videos" approved="yes"> <source>Videos</source> <target state="translated">Videos</target> - <jms:reference-file line="174">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="159">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="174">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="18af7efc4ef7f30783dbb1ad1bc0b9aed857a19c" resname="View on %title%" approved="yes"> <source>View on %title%</source> @@ -7347,24 +7393,24 @@ <trans-unit id="f5bd306a7ccf0851eeefd7659ac5c01c382df934" resname="Vocabulary not found" approved="yes"> <source>Vocabulary not found</source> <target state="translated">Vocabulary not found</target> - <jms:reference-file line="255">Controller/Prod/EditController.php</jms:reference-file> + <jms:reference-file line="258">Controller/Prod/EditController.php</jms:reference-file> </trans-unit> <trans-unit id="a1e3e6d2f9b416cfab10df81ce100f4fc43eb90a" resname="Vocabulary type" approved="yes"> <source>Vocabulary type</source> <target state="translated">Vocabulary type</target> - <jms:reference-file line="237">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="252">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="044d95dece43b99febe25cb6bc5fab28bf212ee0" resname="Voici vos paniers" approved="yes"> <source>Voici vos paniers</source> <target state="translated">Your Basket(s)</target> - <jms:reference-file line="94">web/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="120">mobile/lightbox/index.html.twig</jms:reference-file> + <jms:reference-file line="94">web/lightbox/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c6dacfdd161fc809b7996f80fccf5c7515f82e1c" resname="Voici vos validations en cours" approved="yes"> <source>Voici vos validations en cours</source> <target state="translated">Your feedbacks in progress</target> - <jms:reference-file line="27">web/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="90">mobile/lightbox/index.html.twig</jms:reference-file> + <jms:reference-file line="27">web/lightbox/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a2fde1d3f411f4fbe13b98748bd7c18fb84e71f9" resname="Votre adresse email" approved="yes"> <source>Votre adresse email</source> @@ -7411,11 +7457,6 @@ <target state="translated">You have a new basket available</target> <jms:reference-file line="4">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="4d922dc119f737364189a2807ca9423a19d3fdfc" resname="Vous avez recu une demande de validation de document sur ce panier" approved="yes"> - <source>Vous avez recu une demande de validation de document sur ce panier</source> - <target state="translated">You have received a feedback demand for documents from this basket.</target> - <jms:reference-file line="30">prod/WorkZone/Macros.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="48b0edd4b7baadecf72f020e6bc23a8a2118e83f" resname="Vous aviez envoye cette demande a %n% utilisateurs" approved="yes"> <source>Vous aviez envoye cette demande a %n% utilisateurs</source> <target state="translated">You have sent this demand to %n% user(s)</target> @@ -7494,10 +7535,10 @@ <trans-unit id="12ee49ba726f4422d3dcc6bc7b92ab9de279d211" resname="Vous n'avez selectionne aucun element" approved="yes"> <source>Vous n'avez selectionne aucun element</source> <target state="translated">No document selected</target> - <jms:reference-file line="14">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="88">actions/Bridge/index.html.twig</jms:reference-file> - <jms:reference-file line="13">Bridge/Youtube/upload.html.twig</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/upload.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="88">actions/Bridge/index.html.twig</jms:reference-file> + <jms:reference-file line="14">Bridge/Flickr/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5e8fd52d6c7e92e6907f1148d2e458871d17c1ae" resname="Vous ne pouvez pas editer plusieurs elements simultanement" approved="yes"> <source>Vous ne pouvez pas editer plusieurs elements simultanement</source> @@ -7523,7 +7564,7 @@ <trans-unit id="4ac570371902f3ba1babc51f8a4c030e31724b34" resname="Vous pouvez quitter la plupart des fenetres survolantes via la touche echap" approved="yes"> <source>Vous pouvez quitter la plupart des fenetres survolantes via la touche echap</source> <target state="translated">esc : close most of overlayed windows</target> - <jms:reference-file line="559">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="650">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="338f05228fd3d0770eac9a4d37cc93dcc1cd7cdc" resname="Warning !" approved="yes"> <source>Warning !</source> @@ -7569,7 +7610,7 @@ <trans-unit id="58877d4031b60c13f284719a0aecfb1e7962c59a" resname="Welcome to the ListManager !" approved="yes"> <source>Welcome to the ListManager !</source> <target state="translated">Welcome in the ListManager !</target> - <jms:reference-file line="288">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="293">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="769bb19e615b7f8e2809e5882e2d05a18f57a531" resname="When" approved="yes"> <source>When</source> @@ -7584,8 +7625,8 @@ <trans-unit id="ceffd5b622d10de1a19822471cb3804cb61cba28" resname="Which playlist you want to put you %number% elements into ?" approved="yes"> <source>Which playlist you want to put you %number% elements into ?</source> <target state="translated">Select a Playlist to add the %number% documents</target> - <jms:reference-file line="13">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6e2507e568a039431c507b30f44aa72cbb1ed929" resname="Whoops, looks like something went wrong." approved="yes"> <source>Whoops, looks like something went wrong.</source> @@ -7615,15 +7656,22 @@ <target state="translated">Write Metadatas</target> <jms:reference-file line="498">web/admin/subdefs.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="d3f8f7b810c4b08f0b4ac4e47fdf8d265a10d869" resname="YYYY-MM-DD" approved="yes"> + <source>YYYY-MM-DD</source> + <target state="translated">YYYY-MM-DD</target> + <jms:reference-file line="10">web/report/form_date_and_base.html.twig</jms:reference-file> + <jms:reference-file line="20">web/report/form_date_and_base.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="9ebeadaf2d2237a35176827d093952ad6cc88f5e" resname="YYYY/MM/DD" approved="yes"> <source>YYYY/MM/DD</source> <target state="translated">YYYY/MM/DD</target> - <jms:reference-file line="453">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="459">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="485">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="492">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5397e0583f14f6c88de06b1ef28f460a1fb5b0ae" resname="Yes" approved="yes"> <source>Yes</source> <target state="translated">Yes</target> + <jms:reference-file line="291">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="13">user/import/view.html.twig</jms:reference-file> <jms:reference-file line="33">web/developers/applications.html.twig</jms:reference-file> </trans-unit> @@ -7635,22 +7683,22 @@ <trans-unit id="d2a23a2eb3bc334253d0a4cd6541bea3e520e3d9" resname="You are about to ask for feedback for %nb_push_items% records, %nb_not_available% records can not be processed." approved="yes"> <source>You are about to ask for feedback for %nb_push_items% records, %nb_not_available% records can not be processed.</source> <target state="translated">You are about to ask a feedback for %nb_push_items% records, %nb_not_available% records can not be processed.</target> - <jms:reference-file line="209">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="215">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4614afcfbdb05da7ae2e2ce6fc7e808cd707f257" resname="You are about to ask for feedback for %nb_push_items% records." approved="yes"> <source>You are about to ask for feedback for %nb_push_items% records.</source> <target state="translated">You are about to ask a feedback for %nb_push_items% records.</target> - <jms:reference-file line="206">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="212">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2292a5ac48e50169c8d013bf51853ccaf69d182b" resname="You are about to push %nb_push_items% records, %nb_not_available% records can not be processed." approved="yes"> <source>You are about to push %nb_push_items% records, %nb_not_available% records can not be processed.</source> <target state="translated">You are about to push %nb_push_items% records, %nb_not_available% records can not be processed.</target> - <jms:reference-file line="201">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="207">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="94aec9ece3188cf70534cff6d45bc11b81f7ef4d" resname="You are about to push %nb_push_items% records." approved="yes"> <source>You are about to push %nb_push_items% records.</source> <target state="translated">You are about to push %nb_push_items% records.</target> - <jms:reference-file line="198">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="204">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cf393f9867e45930f4d907a0ec4f728ea65d503b" resname="You are attempting to exceed the storage limit on your account and must delete existing entries before inserting new entries" approved="yes"> <source>You are attempting to exceed the storage limit on your account and must delete existing entries before inserting new entries</source> @@ -7717,8 +7765,8 @@ <trans-unit id="4a67615bcd64fcc9443c499676a462d835ad841e" resname="You can not upload files" approved="yes"> <source>You can not upload files</source> <target state="translated">You are not allowed to upload files</target> + <jms:reference-file line="150">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="102">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="147">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4faca55769348dcbc9714b19438181057aa2510e" resname="You do not enough rights to update status" approved="yes"> <source>You do not enough rights to update status</source> @@ -7773,7 +7821,7 @@ <trans-unit id="aecece60b34fa1f68f4671b168031bfb1b287d56" resname="You have not access to this basket" approved="yes"> <source>You have not access to this basket</source> <target state="translated">You cannot access to this basket</target> - <jms:reference-file line="182">Model/Repositories/BasketRepository.php</jms:reference-file> + <jms:reference-file line="200">Model/Repositories/BasketRepository.php</jms:reference-file> </trans-unit> <trans-unit id="7d7596cb5bf503833487b48c95cf263b44f3e05d" resname="You have selected %nbReceivedDocuments% records." approved="yes"> <source>You have selected %nbReceivedDocuments% records.</source> @@ -7813,7 +7861,7 @@ <trans-unit id="d48b3bc5b1daedb76e3dd7aa5240bbc34de7470e" resname="You must give a destination record" approved="yes"> <source>You must give a destination record</source> <target state="translated">You must select one target record</target> - <jms:reference-file line="188">Controller/Prod/LazaretController.php</jms:reference-file> + <jms:reference-file line="198">Controller/Prod/LazaretController.php</jms:reference-file> </trans-unit> <trans-unit id="6304d7df5d76b28a076c00dd984f87eef3dabeee" resname="You need define a model before importing a list of users" approved="yes"> <source>You need define a model before importing a list of users</source> @@ -7912,10 +7960,15 @@ <target state="translated">Media and their subviews (such as previews, thumbnails...) will be stored in the following directories:</target> <jms:reference-file line="736">web/setup/step2.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="bd5a589e9bed2de0b0180ca950ea0593249f7f69" resname="Your phraseanet account on %urlInstance% has been deleted!" approved="yes"> + <source>Your phraseanet account on %urlInstance% has been deleted!</source> + <target state="translated">Your phraseanet account on %urlInstance% has been deleted!</target> + <jms:reference-file line="29">Notification/Mail/MailSuccessAccountDelete.php</jms:reference-file> + </trans-unit> <trans-unit id="257253d658fdcbe73c4f4d02d2a3442ea8e4011d" resname="Your registration requests have been taken into account." approved="yes"> <source>Your registration requests have been taken into account.</source> <target state="translated">Your registration request have been taken into account.</target> - <jms:reference-file line="329">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="426">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="e63b3e4d7c2710f8973d4371433e1a0875a02c12" resname="a propos" approved="yes"> <source>a propos</source> @@ -7926,13 +7979,15 @@ <trans-unit id="93741c74decbac407e8f237c41d0235dd78a8eac" resname="action : ajouter au panier" approved="yes"> <source>action : ajouter au panier</source> <target state="translated">Add to Basket</target> - <jms:reference-file line="117">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="118">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="119">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="120">prod/results/record.html.twig</jms:reference-file> <jms:reference-file line="4">prod/preview/tools.html.twig</jms:reference-file> </trans-unit> <trans-unit id="162536d0e4aeccdde8b707acd6111800a25d549b" resname="action : bridge" approved="yes"> <source>action : bridge</source> <target state="translated">Bridge</target> - <jms:reference-file line="864">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="955">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3ffc763c6cf92695a7ce387f904bbe6e7a94bdbc" resname="action : collection" approved="yes"> <source>action : collection</source> @@ -7954,10 +8009,12 @@ <target state="translated">Export</target> <jms:reference-file line="7">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="6">prod/WorkZone/Basket.html.twig</jms:reference-file> - <jms:reference-file line="866">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="124">prod/results/record.html.twig</jms:reference-file> <jms:reference-file line="50">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="128">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="129">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="130">prod/results/record.html.twig</jms:reference-file> <jms:reference-file line="25">prod/preview/tools.html.twig</jms:reference-file> + <jms:reference-file line="957">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="121">web/lightbox/feed.html.twig</jms:reference-file> <jms:reference-file line="123">lightbox/IE6/feed.html.twig</jms:reference-file> <jms:reference-file line="155">lightbox/IE6/validate.html.twig</jms:reference-file> @@ -7968,15 +8025,17 @@ <target state="translated">Tools</target> <jms:reference-file line="70">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="67">prod/WorkZone/Basket.html.twig</jms:reference-file> - <jms:reference-file line="299">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="291">web/prod/toolbar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="71e15cbcf85fd5fe848fe7fa210fa8318a09f842" resname="action : print" approved="yes"> <source>action : print</source> <target state="translated">Print</target> <jms:reference-file line="11">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="10">prod/WorkZone/Basket.html.twig</jms:reference-file> - <jms:reference-file line="131">prod/results/record.html.twig</jms:reference-file> <jms:reference-file line="58">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="138">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="139">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="140">prod/results/record.html.twig</jms:reference-file> <jms:reference-file line="20">prod/preview/tools.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d222a71a73f44cb6bdf237790f350f0b1fb9eb1f" resname="action : publier" approved="yes"> @@ -7984,9 +8043,9 @@ <target state="translated">Publish</target> <jms:reference-file line="63">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="60">prod/WorkZone/Basket.html.twig</jms:reference-file> - <jms:reference-file line="865">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="157">web/prod/toolbar.html.twig</jms:reference-file> - <jms:reference-file line="223">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="219">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="956">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="17948b21adfde1bf589b2a34a2c8253e2af91913" resname="action : push" approved="yes"> <source>action : push</source> @@ -7994,7 +8053,7 @@ <jms:reference-file line="47">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="44">prod/WorkZone/Basket.html.twig</jms:reference-file> <jms:reference-file line="135">web/prod/toolbar.html.twig</jms:reference-file> - <jms:reference-file line="184">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="182">web/prod/toolbar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f22184cfa5be236b7193d80d5f8407a36b108b79" resname="action : status" approved="yes"> <source>action : status</source> @@ -8006,8 +8065,9 @@ <trans-unit id="24ade348bc49c69cced4d173e31f7369aa466772" resname="action : supprimer" approved="yes"> <source>action : supprimer</source> <target state="translated">Delete</target> - <jms:reference-file line="175">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="308">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="198">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="199">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="300">web/prod/toolbar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b88ca5fbb2e89cb79b08c981283383361be312bf" resname="action:: nouveau panier" approved="yes"> <source>action:: nouveau panier</source> @@ -8019,38 +8079,44 @@ <trans-unit id="74894db9388e92ba33510dd3881626d42d29bd20" resname="action:: nouveau reportage" approved="yes"> <source>action:: nouveau reportage</source> <target state="translated">New Story</target> - <jms:reference-file line="220">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="222">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="223">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="224">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="226">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="227">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9cd95a80cd47133cb87c6b6a55015fa9e3566d60" resname="action::Valider" approved="yes"> <source>action::Valider</source> <target state="translated">Validate</target> <jms:reference-file line="68">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="162">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="170">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="171">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="83db61ed4488bb58e40b315e67f39a6ad40e5707" resname="action::detacher" approved="yes"> <source>action::detacher</source> <target state="translated">Release from Basket zone</target> - <jms:reference-file line="242">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="267">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="268">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="896ab2ff86bda5e26adff7fa7d418c4c926c6b0c" resname="action::editer" approved="yes"> <source>action::editer</source> <target state="translated">Edit</target> - <jms:reference-file line="235">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="258">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="259">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1a99f659649e77e29efa0a391ae879ab8dc8df0e" resname="action::exporter" approved="yes"> <source>action::exporter</source> <target state="translated">Export</target> <jms:reference-file line="48">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="142">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="228">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="144">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="145">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="247">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="248">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4c6537a9f14dd9d59ed9c3dca8f7f04ee33ae8d2" resname="action::renommer" approved="yes"> <source>action::renommer</source> <target state="translated">Rename</target> - <jms:reference-file line="152">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="153">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="159">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="160">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="161">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="aa878e20e09ce58233e45272b39764b5dfd4ee49" resname="actual status" approved="yes"> <source>actual status</source> @@ -8240,8 +8306,8 @@ <trans-unit id="1f17890a6f5675a0542b997121fc105bb6bd4466" resname="admin::base:collection: Creer une collection" approved="yes"> <source>admin::base:collection: Creer une collection</source> <target state="translated">Create collection</target> - <jms:reference-file line="2">admin/collection/create.html.twig</jms:reference-file> <jms:reference-file line="107">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="2">admin/collection/create.html.twig</jms:reference-file> </trans-unit> <trans-unit id="68d7a4cf1ed350b4ede9c867500fe6f0f166adc2" resname="admin::base:collection: Monter une collection" approved="yes"> <source>admin::base:collection: Monter une collection</source> @@ -8257,8 +8323,8 @@ <trans-unit id="d22d5f91dbed4fb514e0d87876206a9a85420abc" resname="admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces" approved="yes"> <source>admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces</source> <target state="translated">apply users and rights from collection :</target> - <jms:reference-file line="28">admin/collection/create.html.twig</jms:reference-file> <jms:reference-file line="159">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="28">admin/collection/create.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3d84e19b243dea8a79762b90a3086d96e5cc2c00" resname="admin::base:collection: activer la collection" approved="yes"> <source>admin::base:collection: activer la collection</source> @@ -8269,10 +8335,10 @@ <trans-unit id="92f3414a98bf0c0d1723281930e272528ab7b6b2" resname="admin::base:collection: aucun fichier (minilogo, watermark ...)" approved="yes"> <source>admin::base:collection: aucun fichier (minilogo, watermark ...)</source> <target state="translated">No file</target> + <jms:reference-file line="214">admin/databox/databox.html.twig</jms:reference-file> <jms:reference-file line="156">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="181">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="206">admin/collection/collection.html.twig</jms:reference-file> - <jms:reference-file line="214">admin/databox/databox.html.twig</jms:reference-file> </trans-unit> <trans-unit id="82f874797027463bcc1e0fa7222160aecdd35abb" resname="admin::base:collection: descativer la collection" approved="yes"> <source>admin::base:collection: descativer la collection</source> @@ -8333,20 +8399,20 @@ <trans-unit id="a7765634e47a714273ba54690efd1f6c2a08e6de" resname="admin::base:collorder: descendre" approved="yes"> <source>admin::base:collorder: descendre</source> <target state="translated">Move Down</target> - <jms:reference-file line="92">admin/collection/suggested_value.html.twig</jms:reference-file> <jms:reference-file line="25">admin/collection/reorder.html.twig</jms:reference-file> + <jms:reference-file line="92">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> <trans-unit id="adc7e4a654ee4a660a18aa80518192eeaa24cceb" resname="admin::base:collorder: monter" approved="yes"> <source>admin::base:collorder: monter</source> <target state="translated">Move Up</target> - <jms:reference-file line="91">admin/collection/suggested_value.html.twig</jms:reference-file> <jms:reference-file line="20">admin/collection/reorder.html.twig</jms:reference-file> + <jms:reference-file line="91">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> <trans-unit id="82356065e1cf79e0ea18809dde087170c41be325" resname="admin::base:collorder: reinitialiser en ordre alphabetique" approved="yes"> <source>admin::base:collorder: reinitialiser en ordre alphabetique</source> <target state="translated">Sort alphabetically</target> - <jms:reference-file line="94">admin/collection/suggested_value.html.twig</jms:reference-file> <jms:reference-file line="28">admin/collection/reorder.html.twig</jms:reference-file> + <jms:reference-file line="94">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> <trans-unit id="59fb64701fdcfa682495e91bb1e286a9dba77848" resname="admin::colelction::presentation des elements : rien" approved="yes"> <source>admin::colelction::presentation des elements : rien</source> @@ -8401,21 +8467,21 @@ <trans-unit id="df2642eaa7386518762050a368f5d2c49a3fe42a" resname="admin::compte-utilisateur activite" approved="yes"> <source>admin::compte-utilisateur activite</source> <target state="translated">Activity</target> + <jms:reference-file line="312">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="104">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="311">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="122">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="528">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="221">admin/user/registrations.html.twig</jms:reference-file> - <jms:reference-file line="122">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="10b0a44531159b40162fd9349abbe2bd21946c3e" resname="admin::compte-utilisateur adresse" approved="yes"> <source>admin::compte-utilisateur adresse</source> <target state="translated">Address</target> + <jms:reference-file line="304">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="69">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="303">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="87">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="487">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="225">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="363">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="87">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e922f2ca7321d1d1f403e937dbf109db04bac722" resname="admin::compte-utilisateur changer mon mot de passe" approved="yes"> <source>admin::compte-utilisateur changer mon mot de passe</source> @@ -8425,11 +8491,11 @@ <trans-unit id="218d3257842bd2817f0ba7bcd02f3729c60e591d" resname="admin::compte-utilisateur code postal" approved="yes"> <source>admin::compte-utilisateur code postal</source> <target state="translated">Zip code</target> + <jms:reference-file line="306">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="76">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="305">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="94">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="495">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="370">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="94">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="bc2f858e3323d3baa8be27661724b11ce9c0a57b" resname="admin::compte-utilisateur confirmer la nouvelle adresse email" approved="yes"> <source>admin::compte-utilisateur confirmer la nouvelle adresse email</source> @@ -8449,23 +8515,23 @@ <trans-unit id="d79bdc62fa5ecc611e96fe7ab9f5cf4d4debabae" resname="admin::compte-utilisateur email" approved="yes"> <source>admin::compte-utilisateur email</source> <target state="translated">E-mail</target> + <jms:reference-file line="301">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="111">Event/Subscriber/RegistrationSubscriber.php</jms:reference-file> - <jms:reference-file line="300">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="74">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="479">web/admin/editusers.html.twig</jms:reference-file> - <jms:reference-file line="215">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="109">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="215">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="22">web/admin/connected-users.html.twig</jms:reference-file> <jms:reference-file line="335">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="74">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d194728e348f759c2a443df96338ba1e2c8adfb5" resname="admin::compte-utilisateur fax" approved="yes"> <source>admin::compte-utilisateur fax</source> <target state="translated">Fax</target> + <jms:reference-file line="309">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="118">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="308">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="136">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="545">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="384">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="136">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d6e2b9ddcaf97ba5258571cb54935f1ff6b581a2" resname="admin::compte-utilisateur id utilisateur" approved="yes"> <source>admin::compte-utilisateur id utilisateur</source> @@ -8476,35 +8542,35 @@ <source>admin::compte-utilisateur identifiant</source> <target state="translated">Login</target> <jms:reference-file line="36">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="443">web/admin/editusers.html.twig</jms:reference-file> - <jms:reference-file line="211">admin/user/registrations.html.twig</jms:reference-file> - <jms:reference-file line="94">web/admin/users.html.twig</jms:reference-file> - <jms:reference-file line="19">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="49">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="21">web/account/reset-email.html.twig</jms:reference-file> <jms:reference-file line="35">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="188">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="443">web/admin/editusers.html.twig</jms:reference-file> + <jms:reference-file line="94">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="211">admin/user/registrations.html.twig</jms:reference-file> + <jms:reference-file line="19">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f5fe48877b8b43297cc3c999ab84bbe0bd60f5af" resname="admin::compte-utilisateur mot de passe" approved="yes"> <source>admin::compte-utilisateur mot de passe</source> <target state="translated">Password</target> - <jms:reference-file line="562">web/setup/step2.html.twig</jms:reference-file> - <jms:reference-file line="25">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="50">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="562">web/setup/step2.html.twig</jms:reference-file> <jms:reference-file line="27">web/account/reset-email.html.twig</jms:reference-file> <jms:reference-file line="195">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="25">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0e2d7957bf48ebf857d73e4395e78fa73e193b5d" resname="admin::compte-utilisateur nom" approved="yes"> <source>admin::compte-utilisateur nom</source> <target state="translated">Last name</target> + <jms:reference-file line="299">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="62">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> <jms:reference-file line="109">Event/Subscriber/RegistrationSubscriber.php</jms:reference-file> - <jms:reference-file line="298">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="60">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="471">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="213">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="13">web/admin/connected-users.html.twig</jms:reference-file> <jms:reference-file line="321">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="60">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1dbac236fd2ee8bcce590e0cdc7c4a418885c52b" resname="admin::compte-utilisateur nouvelle adresse email" approved="yes"> <source>admin::compte-utilisateur nouvelle adresse email</source> @@ -8514,48 +8580,48 @@ <trans-unit id="1b83f90c602146fc09f3e025507c9b11aa10772a" resname="admin::compte-utilisateur pays" approved="yes"> <source>admin::compte-utilisateur pays</source> <target state="translated">Country</target> - <jms:reference-file line="306">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="307">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="114">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="28c517ddecdb662c767290d2e1fa53ef198307fa" resname="admin::compte-utilisateur poste" approved="yes"> <source>admin::compte-utilisateur poste</source> <target state="translated">Job</target> + <jms:reference-file line="310">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="90">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="309">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="108">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="512">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="219">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="356">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="108">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="eadb6eaa53204a688e4059a35261b6878fda8b37" resname="admin::compte-utilisateur prenom" approved="yes"> <source>admin::compte-utilisateur prenom</source> <target state="translated">First name</target> + <jms:reference-file line="300">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="55">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> <jms:reference-file line="110">Event/Subscriber/RegistrationSubscriber.php</jms:reference-file> - <jms:reference-file line="299">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="67">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="463">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="213">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="328">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="67">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0ee82fdcf687c10dd1e5040a5b84d9a90d079a9a" resname="admin::compte-utilisateur sexe" approved="yes"> <source>admin::compte-utilisateur sexe</source> <target state="translated">Gender</target> <jms:reference-file line="44">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="451">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="42">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="451">web/admin/editusers.html.twig</jms:reference-file> </trans-unit> <trans-unit id="78b65792aca82024d5f1ff60dec83a501c01e15e" resname="admin::compte-utilisateur societe" approved="yes"> <source>admin::compte-utilisateur societe</source> <target state="translated">Company</target> + <jms:reference-file line="311">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="97">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="310">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="115">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="520">web/admin/editusers.html.twig</jms:reference-file> - <jms:reference-file line="217">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="104">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="217">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="16">web/admin/connected-users.html.twig</jms:reference-file> <jms:reference-file line="349">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="115">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4d15ba95c86a58884d598415b8f8a400ab636cd9" resname="admin::compte-utilisateur tel" approved="yes"> <source>admin::compte-utilisateur tel</source> @@ -8565,31 +8631,31 @@ <trans-unit id="aa3ffb658796d685813791430da4efdac145b8d9" resname="admin::compte-utilisateur telephone" approved="yes"> <source>admin::compte-utilisateur telephone</source> <target state="translated">Phone</target> - <jms:reference-file line="307">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="308">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="129">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="537">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="223">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="19">web/admin/connected-users.html.twig</jms:reference-file> <jms:reference-file line="342">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="129">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="29d3952c833272679cb313988c698f11cb6bbb64" resname="admin::compte-utilisateur un email de confirmation vient de vous etre envoye. Veuillez suivre les instructions contenue pour continuer" approved="yes"> <source>admin::compte-utilisateur un email de confirmation vient de vous etre envoye. Veuillez suivre les instructions contenue pour continuer</source> <target state="translated">A confirmation e-mail has been sent. Please follow the instructions contained to continue.</target> - <jms:reference-file line="127">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="134">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="00a39eeb4e86af2189a6080e16418d249d98a12b" resname="admin::compte-utilisateur ville" approved="yes"> <source>admin::compte-utilisateur ville</source> <target state="translated">City</target> + <jms:reference-file line="305">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="83">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="304">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="101">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="503">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="377">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="101">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2f752312fcd370b6547b296ca173da51487a2c5d" resname="admin::compte-utilisateur: L'email a correctement ete mis a jour" approved="yes"> <source>admin::compte-utilisateur: L'email a correctement ete mis a jour</source> <target state="translated">E-mail address successfully updated.</target> - <jms:reference-file line="151">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="158">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="65b62caf0d011a7a87ac02e39fcea79869f0d26a" resname="admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour changer mon adresse email ?" approved="yes"> <source>admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour changer mon adresse email ?</source> @@ -8609,7 +8675,7 @@ <trans-unit id="5bea2ac2d5d9b17df772d715e4a452316e6625f6" resname="admin::compte-utilisateur: erreur lors de la mise a jour" approved="yes"> <source>admin::compte-utilisateur: erreur lors de la mise a jour</source> <target state="translated">Error while updating</target> - <jms:reference-file line="142">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="149">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="56d75cba0bcd6dae815548d79af45f8a58c822cf" resname="admin::compte-utilisateur::securite caracteres majuscules" approved="yes"> <source>admin::compte-utilisateur::securite caracteres majuscules</source> @@ -8634,8 +8700,8 @@ <trans-unit id="6d985c39243c51b967903e290ce6c33583b17c8a" resname="admin::compte-utilisateur:ftp: repertoire de destination ftp" approved="yes"> <source>admin::compte-utilisateur:ftp: repertoire de destination ftp</source> <target state="translated">Ftp reception folder</target> - <jms:reference-file line="43">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="202">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="43">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d6084018a101b645f6a3a136be17cb1b8c2a499c" resname="admin::compte-utilisateur:ftp: Activer le compte FTP" approved="yes"> <source>admin::compte-utilisateur:ftp: Activer le compte FTP</source> @@ -8645,19 +8711,19 @@ <trans-unit id="d7ef5ce109bd15843f144dc60ed2e594ddd04d41" resname="admin::compte-utilisateur:ftp: Le mot de passe est errone" approved="yes"> <source>admin::compte-utilisateur:ftp: Le mot de passe est errone</source> <target state="translated">Wrong password</target> - <jms:reference-file line="93">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="100">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="9bf7a0391d97674b47027a4021a3fa438db12b2d" resname="admin::compte-utilisateur:ftp: Nombre d'essais max" approved="yes"> <source>admin::compte-utilisateur:ftp: Nombre d'essais max</source> <target state="translated">Max. retry</target> - <jms:reference-file line="37">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="225">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="37">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7353ab4d025765f9e75cf84168059ea043b71166" resname="admin::compte-utilisateur:ftp: Utiliser le mode passif" approved="yes"> <source>admin::compte-utilisateur:ftp: Utiliser le mode passif</source> <target state="translated">Use passive mode</target> - <jms:reference-file line="31">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="218">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="31">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="58538c361989dbed251ba82a942de32f4a23b003" resname="admin::compte-utilisateur:ftp: creer un dossier" approved="yes"> <source>admin::compte-utilisateur:ftp: creer un dossier</source> @@ -8678,25 +8744,25 @@ <source>admin::compte-utilisateur:sexe: madame</source> <target state="translated">Mrs.</target> <jms:reference-file line="50">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> + <jms:reference-file line="50">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="456">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="314">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="50">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7af00728508b30971b5cd3eb769433546ad9abfa" resname="admin::compte-utilisateur:sexe: mademoiselle" approved="yes"> <source>admin::compte-utilisateur:sexe: mademoiselle</source> <target state="translated">Miss</target> <jms:reference-file line="49">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> + <jms:reference-file line="47">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="455">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="313">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="47">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="db663dadd7bd9b045a68cafcfe2ca4e0c832e50a" resname="admin::compte-utilisateur:sexe: monsieur" approved="yes"> <source>admin::compte-utilisateur:sexe: monsieur</source> <target state="translated">Mr.</target> <jms:reference-file line="51">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> + <jms:reference-file line="53">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="457">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="315">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="53">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cfc904c9a87afe2d3986041a6bdb542298607880" resname="admin::monitor: bases sur lesquelles l'utilisateur est connecte :" approved="yes"> <source>admin::monitor: bases sur lesquelles l'utilisateur est connecte :</source> @@ -8724,10 +8790,10 @@ <trans-unit id="9513f9700541e6a67371a6848330b051c8e9d3c2" resname="admin::monitor: module client" approved="yes"> <source>admin::monitor: module client</source> <target state="translated">Client</target> + <jms:reference-file line="80">lib/classes/phrasea.php</jms:reference-file> <jms:reference-file line="414">classes/record/preview.php</jms:reference-file> <jms:reference-file line="521">classes/record/preview.php</jms:reference-file> <jms:reference-file line="668">classes/record/preview.php</jms:reference-file> - <jms:reference-file line="80">lib/classes/phrasea.php</jms:reference-file> <jms:reference-file line="116">Controller/Admin/ConnectedUsersController.php</jms:reference-file> <jms:reference-file line="53">web/admin/connected-users.html.twig</jms:reference-file> </trans-unit> @@ -8746,10 +8812,10 @@ <trans-unit id="49d0391bab2fa680a4c2830fb4a225d48eefa425" resname="admin::monitor: module production" approved="yes"> <source>admin::monitor: module production</source> <target state="translated">Production</target> + <jms:reference-file line="79">lib/classes/phrasea.php</jms:reference-file> <jms:reference-file line="410">classes/record/preview.php</jms:reference-file> <jms:reference-file line="518">classes/record/preview.php</jms:reference-file> <jms:reference-file line="666">classes/record/preview.php</jms:reference-file> - <jms:reference-file line="79">lib/classes/phrasea.php</jms:reference-file> <jms:reference-file line="115">Controller/Admin/ConnectedUsersController.php</jms:reference-file> <jms:reference-file line="49">web/admin/connected-users.html.twig</jms:reference-file> </trans-unit> @@ -8774,16 +8840,16 @@ <target state="translated">Upload</target> <jms:reference-file line="86">lib/classes/phrasea.php</jms:reference-file> <jms:reference-file line="122">Controller/Admin/ConnectedUsersController.php</jms:reference-file> - <jms:reference-file line="96">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="97">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="14e4b19f7496c10dbb05e61dee0c436c0792235f" resname="admin::monitor: module validation" approved="yes"> <source>admin::monitor: module validation</source> <target state="translated">Lightbox</target> <jms:reference-file line="85">lib/classes/phrasea.php</jms:reference-file> - <jms:reference-file line="121">Controller/Admin/ConnectedUsersController.php</jms:reference-file> <jms:reference-file line="205">Phrasea/Controller/LightboxController.php</jms:reference-file> <jms:reference-file line="236">Phrasea/Controller/LightboxController.php</jms:reference-file> <jms:reference-file line="313">Phrasea/Controller/LightboxController.php</jms:reference-file> + <jms:reference-file line="121">Controller/Admin/ConnectedUsersController.php</jms:reference-file> <jms:reference-file line="78">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d3110046b5f8b6bbf171a3b97c1d1c4d75ee3b38" resname="admin::monitor: modules" approved="yes"> @@ -8862,6 +8928,31 @@ <target state="translated">Aggregates settings</target> <jms:reference-file line="5">admin/search-engine/search-engine-settings.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="08772ff0da8ce970d5fac07a7afb6f855401d235" resname="admin::setup:personalisation_logo: download gabari" approved="yes"> + <source>admin::setup:personalisation_logo: download gabari</source> + <target state="translated">Download template</target> + <jms:reference-file line="18">web/admin/personalisation_logo.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="a051f8357ca68bd96210d071cdfacfe8a54de2af" resname="admin::setup:personalisation_logo: error text dimension" approved="yes"> + <source>admin::setup:personalisation_logo: error text dimension</source> + <target state="translated">Error: the size of the file is incorrect, please choose a file size: 120 x 41 px in .png</target> + <jms:reference-file line="44">web/admin/personalisation_logo.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="4499d392aa84b8bf806252937b820281034ffd0c" resname="admin::setup:personalisation_logo: error text file type" approved="yes"> + <source>admin::setup:personalisation_logo: error text file type</source> + <target state="translated">Error: the format of the file is incorrect, please choose a file in .png</target> + <jms:reference-file line="45">web/admin/personalisation_logo.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="78a276b502761ddad6d621bf315ed17362b12748" resname="admin::setup:personalisation_logo: help text" approved="yes"> + <source>admin::setup:personalisation_logo: help text</source> + <target state="translated">Import your logo at the maximum file size: 120 x 41 px in .png</target> + <jms:reference-file line="16">web/admin/personalisation_logo.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="1ae037eda66d81b87705cdbdc04e4d8c0a953755" resname="admin::setup:personalisation_logo: select file" approved="yes"> + <source>admin::setup:personalisation_logo: select file</source> + <target state="translated">Choose a file</target> + <jms:reference-file line="31">web/admin/personalisation_logo.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="8fb48b51ad1962dc1b6a3643964f38fc48853161" resname="admin::status: case A" approved="yes"> <source>admin::status: case A</source> <target state="translated">Off</target> @@ -8975,8 +9066,8 @@ <trans-unit id="8f1dba76b561684930a25a984046b3b4149785ca" resname="alert" approved="yes"> <source>alert</source> <target state="translated">Warning</target> + <jms:reference-file line="177">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="244">actions/Tools/index.html.twig</jms:reference-file> - <jms:reference-file line="164">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="edde11c24ed5e6df4e416143e77248e908567faa" resname="all caches services have been flushed" approved="yes"> <source>all caches services have been flushed</source> @@ -9001,7 +9092,7 @@ <trans-unit id="28a04a7076b48759b6dc6fc06df7676a69e415d0" resname="and %n% more peoples" approved="yes"> <source>and %n% more peoples</source> <target state="translated">and %n% more people</target> - <jms:reference-file line="125">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="132">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="aacef678d2c5455205b104be7f364575db5d5b95" resname="aout" approved="yes"> <source>aout</source> @@ -9016,9 +9107,9 @@ <trans-unit id="a06a492959ce12b3f0292406ec84177d07ae19b1" resname="audio" approved="yes"> <source>audio</source> <target state="translated">audio</target> - <jms:reference-file line="278">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> - <jms:reference-file line="25">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="302">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> <jms:reference-file line="371">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="28">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a028c8828218375b107b7b7c48664ed31e10163b" resname="avril" approved="yes"> <source>avril</source> @@ -9060,18 +9151,18 @@ <trans-unit id="1d1dbbac03e2a5e30fe7e568ad75572e469a6301" resname="boutton:: selectionner aucune base" approved="yes"> <source>boutton:: selectionner aucune base</source> <target state="translated">None</target> - <jms:reference-file line="320">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="352">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2fb22ccabd1651b5307698b4029b6696042ca6e2" resname="boutton:: selectionner toutes les bases" approved="yes"> <source>boutton:: selectionner toutes les bases</source> <target state="translated">All</target> - <jms:reference-file line="317">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="349">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d59bc356bd632596c602560d44e1ed9cb7145699" resname="boutton::ajouter" approved="yes"> <source>boutton::ajouter</source> <target state="translated">Add</target> - <jms:reference-file line="244">prod/actions/edit_default.html.twig</jms:reference-file> - <jms:reference-file line="349">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="246">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="351">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="111">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8641f76c3f062372dc5509faad531672cf3558a5" resname="boutton::annuler" approved="yes"> @@ -9079,35 +9170,35 @@ <target state="translated">Cancel</target> <jms:reference-file line="41">Controller/Prod/LanguageController.php</jms:reference-file> <jms:reference-file line="49">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="13">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> - <jms:reference-file line="40">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> - <jms:reference-file line="13">Bridge/Youtube/video_modify.html.twig</jms:reference-file> - <jms:reference-file line="71">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> <jms:reference-file line="71">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> - <jms:reference-file line="245">prod/actions/edit_default.html.twig</jms:reference-file> - <jms:reference-file line="364">prod/actions/edit_default.html.twig</jms:reference-file> - <jms:reference-file line="53">web/thesaurus/new-term.html.twig</jms:reference-file> - <jms:reference-file line="78">web/thesaurus/new-term.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="71">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> + <jms:reference-file line="40">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> + <jms:reference-file line="247">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="366">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="114">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> + <jms:reference-file line="590">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="989">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="1093">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="70">web/thesaurus/import-dialog.html.twig</jms:reference-file> + <jms:reference-file line="74">web/thesaurus/link-field-step2.html.twig</jms:reference-file> <jms:reference-file line="164">web/thesaurus/accept.html.twig</jms:reference-file> <jms:reference-file line="180">web/thesaurus/accept.html.twig</jms:reference-file> <jms:reference-file line="137">web/thesaurus/export-topics-dialog.html.twig</jms:reference-file> - <jms:reference-file line="74">web/thesaurus/link-field-step2.html.twig</jms:reference-file> - <jms:reference-file line="114">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> - <jms:reference-file line="582">web/thesaurus/thesaurus.html.twig</jms:reference-file> - <jms:reference-file line="981">web/thesaurus/thesaurus.html.twig</jms:reference-file> - <jms:reference-file line="1085">web/thesaurus/thesaurus.html.twig</jms:reference-file> - <jms:reference-file line="70">web/thesaurus/import-dialog.html.twig</jms:reference-file> + <jms:reference-file line="53">web/thesaurus/new-term.html.twig</jms:reference-file> + <jms:reference-file line="78">web/thesaurus/new-term.html.twig</jms:reference-file> <jms:reference-file line="61">web/thesaurus/link-field-step1.html.twig</jms:reference-file> - <jms:reference-file line="47">admin/collection/create.html.twig</jms:reference-file> + <jms:reference-file line="49">web/account/reset-email.html.twig</jms:reference-file> <jms:reference-file line="129">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="47">admin/collection/create.html.twig</jms:reference-file> <jms:reference-file line="47">web/admin/index.html.twig</jms:reference-file> <jms:reference-file line="168">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="250">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="404">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="487">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="24">web/report/all_content.html.twig</jms:reference-file> - <jms:reference-file line="49">web/account/reset-email.html.twig</jms:reference-file> + <jms:reference-file line="23">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c6f716e883e5747e4bc8a8afc7a0ec1ccf44e0b5" resname="boutton::appliquer" approved="yes"> <source>boutton::appliquer</source> @@ -9118,8 +9209,8 @@ <source>boutton::chercher</source> <target state="translated">Search</target> <jms:reference-file line="121">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="588">web/thesaurus/thesaurus.html.twig</jms:reference-file> - <jms:reference-file line="1091">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="596">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="1099">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="58">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4a71090794c12d5b26f62d9f0c68c0d894f7e00e" resname="boutton::choisir" approved="yes"> @@ -9142,14 +9233,14 @@ <trans-unit id="32e5c3419a0a410255ee44e462fd7329f708873f" resname="boutton::demarrer" approved="yes"> <source>boutton::demarrer</source> <target state="translated">Slideshow</target> - <jms:reference-file line="9">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="9">web/lightbox/sc_options_box.html.twig</jms:reference-file> + <jms:reference-file line="9">web/lightbox/feed_options_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d49d2b52ce2f1912f7ada4a3f57ab39fd2e9904e" resname="boutton::editer" approved="yes"> <source>boutton::editer</source> <target state="translated">Edit</target> - <jms:reference-file line="27">prod/results/entry.html.twig</jms:reference-file> <jms:reference-file line="21">prod/results/feeds_entry.html.twig</jms:reference-file> + <jms:reference-file line="27">prod/results/entry.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6b126c214de4c40550d9dc32b02766809b1cac1a" resname="boutton::enregistrer" approved="yes"> <source>boutton::enregistrer</source> @@ -9176,17 +9267,17 @@ <source>boutton::fermer</source> <target state="translated">Close</target> <jms:reference-file line="57">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="383">prod/actions/edit_default.html.twig</jms:reference-file> - <jms:reference-file line="388">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="11">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="385">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="390">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="118">web/thesaurus/properties.html.twig</jms:reference-file> <jms:reference-file line="116">web/thesaurus/accept.html.twig</jms:reference-file> <jms:reference-file line="132">web/thesaurus/accept.html.twig</jms:reference-file> - <jms:reference-file line="45">web/thesaurus/link-field-step3.html.twig</jms:reference-file> <jms:reference-file line="39">web/thesaurus/export-topics.html.twig</jms:reference-file> + <jms:reference-file line="45">web/thesaurus/link-field-step3.html.twig</jms:reference-file> <jms:reference-file line="23">web/lightbox/sc_note.html.twig</jms:reference-file> <jms:reference-file line="96">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="25">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="24">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ce91bb36902944da7788997865b8c482a59e80fe" resname="boutton::generer" approved="yes"> <source>boutton::generer</source> @@ -9201,9 +9292,9 @@ <trans-unit id="1e4c65d295605a0e884818b5c06d32a63fd692d5" resname="boutton::modifier" approved="yes"> <source>boutton::modifier</source> <target state="translated">Modify</target> - <jms:reference-file line="1">Bridge/Flickr/actionelement.html.twig</jms:reference-file> - <jms:reference-file line="1">Bridge/Youtube/actionelement.html.twig</jms:reference-file> <jms:reference-file line="1">Bridge/Dailymotion/actionelement.html.twig</jms:reference-file> + <jms:reference-file line="1">Bridge/Youtube/actionelement.html.twig</jms:reference-file> + <jms:reference-file line="1">Bridge/Flickr/actionelement.html.twig</jms:reference-file> <jms:reference-file line="62">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ef6ccc2669466ac98a3d580bd7bab8f33d0e4bcc" resname="boutton::monter" approved="yes"> @@ -9214,8 +9305,8 @@ <trans-unit id="a6083d9bc73ab5df12f4949b67577186f6e8c240" resname="boutton::pause" approved="yes"> <source>boutton::pause</source> <target state="translated">Pause</target> - <jms:reference-file line="12">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="12">web/lightbox/sc_options_box.html.twig</jms:reference-file> + <jms:reference-file line="12">web/lightbox/feed_options_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="28bb622fa0fe835d89deb626494ce572cbd27072" resname="boutton::precedent" approved="yes"> <source>boutton::precedent</source> @@ -9226,16 +9317,16 @@ <jms:reference-file line="696">web/setup/step2.html.twig</jms:reference-file> <jms:reference-file line="754">web/setup/step2.html.twig</jms:reference-file> <jms:reference-file line="866">web/setup/step2.html.twig</jms:reference-file> - <jms:reference-file line="3">web/lightbox/feed_options_box.html.twig</jms:reference-file> - <jms:reference-file line="6">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="3">web/lightbox/sc_options_box.html.twig</jms:reference-file> <jms:reference-file line="6">web/lightbox/sc_options_box.html.twig</jms:reference-file> + <jms:reference-file line="3">web/lightbox/feed_options_box.html.twig</jms:reference-file> + <jms:reference-file line="6">web/lightbox/feed_options_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5ac4cff651bd34d7b0f295259a0c0907d6af5cd1" resname="boutton::rechercher" approved="yes"> <source>boutton::rechercher</source> <target state="translated">Search</target> <jms:reference-file line="51">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="277">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="299">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9d39f48fbb3a9887cf97368d39a1de32a71c3dee" resname="boutton::refresh" approved="yes"> <source>boutton::refresh</source> @@ -9250,7 +9341,7 @@ <trans-unit id="7c93f19dc5b7cef99db6fb84975ef795e3e87102" resname="boutton::remplacer" approved="yes"> <source>boutton::remplacer</source> <target state="translated">Replace</target> - <jms:reference-file line="243">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="245">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6b9c19dded5ae1d0dbe62a14e2754f2c8cf65302" resname="boutton::renouveller" approved="yes"> <source>boutton::renouveller</source> @@ -9260,26 +9351,26 @@ <trans-unit id="e0af1d0d7872c48928d4faef76c45567426e62f9" resname="boutton::retour" approved="yes"> <source>boutton::retour</source> <target state="translated">Back</target> - <jms:reference-file line="20">Bridge/Flickr/photoset_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="28">Bridge/Flickr/photo_moveinto_photoset.html.twig</jms:reference-file> - <jms:reference-file line="54">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="20">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="37">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="28">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> - <jms:reference-file line="20">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="20">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="20">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="25">Bridge/Dailymotion/playlist_createcontainer.html.twig</jms:reference-file> <jms:reference-file line="28">Bridge/Dailymotion/video_moveinto_playlist.html.twig</jms:reference-file> <jms:reference-file line="20">Bridge/Dailymotion/playlist_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="20">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="44">admin/collection/details.html.twig</jms:reference-file> + <jms:reference-file line="20">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="37">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="28">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="20">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="20">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="20">Bridge/Flickr/photoset_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="28">Bridge/Flickr/photo_moveinto_photoset.html.twig</jms:reference-file> + <jms:reference-file line="54">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> <jms:reference-file line="558">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="223">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="64">admin/databox/details.html.twig</jms:reference-file> + <jms:reference-file line="44">admin/collection/details.html.twig</jms:reference-file> <jms:reference-file line="50">user/import/file.html.twig</jms:reference-file> <jms:reference-file line="162">admin/statusbit/edit.html.twig</jms:reference-file> - <jms:reference-file line="64">admin/databox/details.html.twig</jms:reference-file> - <jms:reference-file line="154">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="119">web/developers/application_form.html.twig</jms:reference-file> + <jms:reference-file line="154">web/developers/application.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a7a9651d909792bcf98f2d1e96c43cb1d3a618e4" resname="boutton::retry" approved="yes"> <source>boutton::retry</source> @@ -9295,40 +9386,40 @@ <jms:reference-file line="632">web/setup/step2.html.twig</jms:reference-file> <jms:reference-file line="699">web/setup/step2.html.twig</jms:reference-file> <jms:reference-file line="757">web/setup/step2.html.twig</jms:reference-file> - <jms:reference-file line="15">web/lightbox/feed_options_box.html.twig</jms:reference-file> - <jms:reference-file line="18">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="15">web/lightbox/sc_options_box.html.twig</jms:reference-file> <jms:reference-file line="18">web/lightbox/sc_options_box.html.twig</jms:reference-file> + <jms:reference-file line="15">web/lightbox/feed_options_box.html.twig</jms:reference-file> + <jms:reference-file line="18">web/lightbox/feed_options_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a83f74309cdfc79345f54eb1f4e4e2747316f820" resname="boutton::supprimer" approved="yes"> <source>boutton::supprimer</source> <target state="translated">Delete</target> <jms:reference-file line="42">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="125">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="30">prod/results/entry.html.twig</jms:reference-file> - <jms:reference-file line="24">prod/results/feeds_entry.html.twig</jms:reference-file> - <jms:reference-file line="21">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="35">Bridge/Flickr/actionelements.html.twig</jms:reference-file> - <jms:reference-file line="21">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="35">Bridge/Youtube/actionelements.html.twig</jms:reference-file> - <jms:reference-file line="21">Bridge/Dailymotion/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="35">Bridge/Dailymotion/actionelements.html.twig</jms:reference-file> <jms:reference-file line="26">actions/Bridge/disconnected.html.twig</jms:reference-file> + <jms:reference-file line="35">Bridge/Dailymotion/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="21">Bridge/Dailymotion/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="35">Bridge/Youtube/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="21">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="35">Bridge/Flickr/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="21">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="24">prod/results/feeds_entry.html.twig</jms:reference-file> + <jms:reference-file line="30">prod/results/entry.html.twig</jms:reference-file> + <jms:reference-file line="125">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="6">web/thesaurus/presets.html.twig</jms:reference-file> - <jms:reference-file line="93">admin/collection/suggested_value.html.twig</jms:reference-file> + <jms:reference-file line="162">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="95">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="136">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="151">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="176">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="201">admin/collection/collection.html.twig</jms:reference-file> + <jms:reference-file line="93">admin/collection/suggested_value.html.twig</jms:reference-file> <jms:reference-file line="410">web/admin/subdefs.html.twig</jms:reference-file> - <jms:reference-file line="95">admin/publications/list.html.twig</jms:reference-file> - <jms:reference-file line="162">admin/publications/fiche.html.twig</jms:reference-file> </trans-unit> <trans-unit id="68b702f13ff62025c57948bf5c4a5b47af10dee9" resname="boutton::telecharger" approved="yes"> <source>boutton::telecharger</source> <target state="translated">Download</target> - <jms:reference-file line="21">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="21">web/lightbox/sc_options_box.html.twig</jms:reference-file> + <jms:reference-file line="21">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="167">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4288c5788ee74d7fa3f325987a8e752687b43023" resname="boutton::telecharger tous les documents" approved="yes"> @@ -9349,56 +9440,57 @@ <source>boutton::valider</source> <target state="translated">Validate</target> <jms:reference-file line="48">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="20">prod/Baskets/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="34">mobile/lightbox/note_form.html.twig</jms:reference-file> <jms:reference-file line="7">prod/Baskets/Update.html.twig</jms:reference-file> - <jms:reference-file line="701">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="20">prod/Baskets/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="19">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="24">Bridge/Dailymotion/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="27">Bridge/Dailymotion/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="70">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="19">Bridge/Dailymotion/playlist_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="19">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="36">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="27">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="70">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="19">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="19">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="19">Bridge/Flickr/photoset_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="27">Bridge/Flickr/photo_moveinto_photoset.html.twig</jms:reference-file> - <jms:reference-file line="39">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> <jms:reference-file line="53">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="19">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="36">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="70">Bridge/Youtube/video_modify.html.twig</jms:reference-file> - <jms:reference-file line="27">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> - <jms:reference-file line="19">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="19">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="24">Bridge/Dailymotion/playlist_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="70">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> - <jms:reference-file line="27">Bridge/Dailymotion/video_moveinto_playlist.html.twig</jms:reference-file> - <jms:reference-file line="19">Bridge/Dailymotion/playlist_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="19">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="341">prod/actions/edit_default.html.twig</jms:reference-file> - <jms:reference-file line="363">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="39">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> + <jms:reference-file line="343">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="365">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="20">prod/Story/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="792">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="116">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> + <jms:reference-file line="995">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="72">web/thesaurus/import-dialog.html.twig</jms:reference-file> + <jms:reference-file line="72">web/thesaurus/link-field-step2.html.twig</jms:reference-file> + <jms:reference-file line="162">web/thesaurus/accept.html.twig</jms:reference-file> + <jms:reference-file line="139">web/thesaurus/export-topics-dialog.html.twig</jms:reference-file> + <jms:reference-file line="51">web/thesaurus/index.html.twig</jms:reference-file> <jms:reference-file line="55">web/thesaurus/new-term.html.twig</jms:reference-file> <jms:reference-file line="80">web/thesaurus/new-term.html.twig</jms:reference-file> - <jms:reference-file line="162">web/thesaurus/accept.html.twig</jms:reference-file> - <jms:reference-file line="51">web/thesaurus/index.html.twig</jms:reference-file> - <jms:reference-file line="139">web/thesaurus/export-topics-dialog.html.twig</jms:reference-file> - <jms:reference-file line="72">web/thesaurus/link-field-step2.html.twig</jms:reference-file> - <jms:reference-file line="116">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> - <jms:reference-file line="987">web/thesaurus/thesaurus.html.twig</jms:reference-file> - <jms:reference-file line="72">web/thesaurus/import-dialog.html.twig</jms:reference-file> <jms:reference-file line="59">web/thesaurus/link-field-step1.html.twig</jms:reference-file> - <jms:reference-file line="130">admin/collection/suggested_value.html.twig</jms:reference-file> - <jms:reference-file line="39">admin/collection/reorder.html.twig</jms:reference-file> - <jms:reference-file line="58">admin/collection/collection.html.twig</jms:reference-file> - <jms:reference-file line="46">admin/collection/create.html.twig</jms:reference-file> - <jms:reference-file line="557">web/admin/editusers.html.twig</jms:reference-file> - <jms:reference-file line="403">web/admin/subdefs.html.twig</jms:reference-file> - <jms:reference-file line="45">admin/publications/list.html.twig</jms:reference-file> - <jms:reference-file line="128">admin/publications/fiche.html.twig</jms:reference-file> - <jms:reference-file line="34">web/admin/structure.html.twig</jms:reference-file> - <jms:reference-file line="274">admin/user/registrations.html.twig</jms:reference-file> - <jms:reference-file line="41">user/import/view.html.twig</jms:reference-file> - <jms:reference-file line="159">admin/statusbit/edit.html.twig</jms:reference-file> - <jms:reference-file line="111">web/admin/dashboard.html.twig</jms:reference-file> - <jms:reference-file line="83">web/admin/setup.html.twig</jms:reference-file> - <jms:reference-file line="22">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="75">web/account/access.html.twig</jms:reference-file> <jms:reference-file line="48">web/account/reset-email.html.twig</jms:reference-file> <jms:reference-file line="236">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="111">web/admin/dashboard.html.twig</jms:reference-file> + <jms:reference-file line="557">web/admin/editusers.html.twig</jms:reference-file> + <jms:reference-file line="128">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="45">admin/publications/list.html.twig</jms:reference-file> + <jms:reference-file line="83">web/admin/setup.html.twig</jms:reference-file> + <jms:reference-file line="46">admin/collection/create.html.twig</jms:reference-file> + <jms:reference-file line="39">admin/collection/reorder.html.twig</jms:reference-file> + <jms:reference-file line="58">admin/collection/collection.html.twig</jms:reference-file> + <jms:reference-file line="130">admin/collection/suggested_value.html.twig</jms:reference-file> + <jms:reference-file line="403">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="34">web/admin/structure.html.twig</jms:reference-file> + <jms:reference-file line="41">user/import/view.html.twig</jms:reference-file> + <jms:reference-file line="274">admin/user/registrations.html.twig</jms:reference-file> + <jms:reference-file line="159">admin/statusbit/edit.html.twig</jms:reference-file> <jms:reference-file line="115">web/developers/application_form.html.twig</jms:reference-file> - <jms:reference-file line="34">mobile/lightbox/note_form.html.twig</jms:reference-file> + <jms:reference-file line="21">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b27b98c3e0119082312d402ca0b89dd39f00f5c8" resname="boutton::vue graphique" approved="yes"> <source>boutton::vue graphique</source> @@ -9495,9 +9587,9 @@ <trans-unit id="aa593702faaee1da7f577eb3fbd5964703051696" resname="choisir" approved="yes"> <source>choisir</source> <target state="translated">Select</target> - <jms:reference-file line="676">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="37">admin/collection/create.html.twig</jms:reference-file> + <jms:reference-file line="767">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="161">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="37">admin/collection/create.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7e7b33d679caaf09ae03ab03c7144e908cbbcc27" resname="classe" approved="yes"> <source>classe</source> @@ -9505,11 +9597,6 @@ <jms:reference-file line="433">web/admin/subdefs.html.twig</jms:reference-file> <jms:reference-file line="437">web/admin/subdefs.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="efa8808d6f8c8597743781236bd79cbe60350bfc" resname="cocher tout" approved="yes"> - <source>cocher tout</source> - <target state="translated">Select all</target> - <jms:reference-file line="7">web/report/listColumn.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="6bca60e4b2d44b5623e626f9ff951ba6605e975f" resname="collection.label.unknown" approved="yes"> <source>collection.label.unknown</source> <target state="translated">Unknown collection</target> @@ -9526,19 +9613,13 @@ <jms:reference-file line="101">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="296">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="0652e436f42d75f5672a8bd9ae2f398a55115d51" resname="configuration" approved="yes"> - <source>configuration</source> - <target state="translated">Configuration</target> - <jms:reference-file line="534">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="682">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> <trans-unit id="a70a59b9120185471e5b45630f8ba24d5516f590" resname="copyClipboardLabel" approved="yes"> <source>copyClipboardLabel</source> <target state="translated">Copy to clipboard</target> - <jms:reference-file line="16">prod/results/infos.html.twig</jms:reference-file> - <jms:reference-file line="46">prod/Share/record.html.twig</jms:reference-file> - <jms:reference-file line="56">prod/Share/record.html.twig</jms:reference-file> - <jms:reference-file line="72">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="18">prod/results/infos.html.twig</jms:reference-file> + <jms:reference-file line="52">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="62">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="78">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="751a7df4249ede5126600fd5e11560b3300c8dd5" resname="create_subdef_button_label" approved="yes"> <source>create_subdef_button_label</source> @@ -9585,6 +9666,11 @@ <target state="translated">Subview Name</target> <jms:reference-file line="354">web/admin/subdefs.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="670f6628c7b72287a36ecd01262005e81428451c" resname="created_on" approved="yes"> + <source>created_on</source> + <target state="translated">created on</target> + <jms:reference-file line="476">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="fc97186645dc71dae8e3221c8ce53c56e6d611bf" resname="dans %category%" approved="yes"> <source>dans %category%</source> <target state="translated">in %category%</target> @@ -9593,17 +9679,17 @@ <trans-unit id="dbfe8cf37a8d7b4941dd9f89e79302038b2bedef" resname="dans %feed_name%" approved="yes"> <source>dans %feed_name%</source> <target state="translated">in %feed_name%</target> - <jms:reference-file line="52">prod/results/entry.html.twig</jms:reference-file> <jms:reference-file line="46">prod/results/feeds_entry.html.twig</jms:reference-file> + <jms:reference-file line="52">prod/results/entry.html.twig</jms:reference-file> </trans-unit> <trans-unit id="aab7fdd9c18941cbc8d78fa0c690361ffd8c50bf" resname="date dajout" approved="yes"> <source>date dajout</source> <target state="translated">Add date</target> <jms:reference-file line="141">SearchEngine/Elastic/ElasticSearchEngine.php</jms:reference-file> </trans-unit> - <trans-unit id="9422f3c3d1d722ee14182539cce3e00c003efd63" resname="date de modification"> + <trans-unit id="9422f3c3d1d722ee14182539cce3e00c003efd63" resname="date de modification" approved="yes"> <source>date de modification</source> - <target state="new">date de modification</target> + <target state="translated">Modification date</target> <jms:reference-file line="142">SearchEngine/Elastic/ElasticSearchEngine.php</jms:reference-file> </trans-unit> <trans-unit id="41c882ad92672dcb86f0ede3f789f7542bcc82fc" resname="decembre" approved="yes"> @@ -9614,7 +9700,7 @@ <trans-unit id="9485989ff514b5106b7738850fd73c23e8c1e3f7" resname="delete" approved="yes"> <source>delete</source> <target state="translated">Delete</target> - <jms:reference-file line="316">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="343">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1051f820052d19c0fff9afec561c3d02607fc90d" resname="descendant" approved="yes"> <source>descendant</source> @@ -9629,10 +9715,10 @@ <trans-unit id="4f8278c89ad16da05fec4fdfc61fe44798b92720" resname="document" approved="yes"> <source>document</source> <target state="translated">document</target> - <jms:reference-file line="270">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> - <jms:reference-file line="28">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="294">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> <jms:reference-file line="372">web/admin/subdefs.html.twig</jms:reference-file> <jms:reference-file line="439">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="31">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="956c99f946a95f60d02e45468e0ed1f6fdf7fc08" resname="document original" approved="yes"> <source>document original</source> @@ -9686,7 +9772,7 @@ <trans-unit id="8abba1c9ff44c3fcc4d30726337bc02847d67235" resname="edit::preset:: titre" approved="yes"> <source>edit::preset:: titre</source> <target state="translated">Title</target> - <jms:reference-file line="394">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="396">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="869b2f5267c5abc112d0f6281b4201a228054f92" resname="effacer (OK) ou quitter (Annuler) ?" approved="yes"> <source>effacer (OK) ou quitter (Annuler) ?</source> @@ -9696,7 +9782,7 @@ <trans-unit id="0536206a542dfc2d630996e79398079eb6976247" resname="element(s)" approved="yes"> <source>element(s)</source> <target state="translated">element(s)</target> - <jms:reference-file line="54">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="55">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a04a3246075e5b6ac9d63ad46d807a1221e71321" resname="email is not valid" approved="yes"> <source>email is not valid</source> @@ -9733,13 +9819,13 @@ </trans-unit> <trans-unit id="fcf5093722566a47fe3e773296cc63fac7190dac" resname="export::export-email: email-invalid" approved="yes"> <source>export::export-email: email-invalid</source> - <target state="translated">Invalid Email</target> + <target state="translated">The email address format seems incorrect</target> <jms:reference-file line="510">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="40a92233bac9303de825031d1954e6b109088b38" resname="export::ftp: reglages manuels" approved="yes"> <source>export::ftp: reglages manuels</source> <target state="translated">Manual settings</target> - <jms:reference-file line="274">classes/set/export.php</jms:reference-file> + <jms:reference-file line="279">classes/set/export.php</jms:reference-file> </trans-unit> <trans-unit id="076c427ffe1fe647c7c158681b1bbd17cb5e2ad3" resname="export::mail: contenu du mail" approved="yes"> <source>export::mail: contenu du mail</source> @@ -9785,20 +9871,12 @@ <jms:reference-file line="236">Controller/Prod/ToolsController.php</jms:reference-file> <jms:reference-file line="265">Controller/Prod/ToolsController.php</jms:reference-file> </trans-unit> - <trans-unit id="f8969980f2b8fd935f45cdd92a39dca6a4010d04" resname="filtrer les resultats sur la colonne %colonne%" approved="yes"> - <source>filtrer les resultats sur la colonne %colonne%</source> - <target state="translated">filter results on %colonne% column</target> - <jms:reference-file line="561">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="132">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="385">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="709">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> <trans-unit id="6117e45ab57f8660d866a21ca5e9d2c31dbc1945" resname="flash" approved="yes"> <source>flash</source> <target state="translated">flash</target> - <jms:reference-file line="282">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> - <jms:reference-file line="31">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="306">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> <jms:reference-file line="373">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="34">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="530e5ec7cd0bf5af44dc8c30cf7b7a86d3c454c6" resname="for the following reasons : %reasons%" approved="yes"> <source>for the following reasons : %reasons%</source> @@ -9814,7 +9892,7 @@ <trans-unit id="e6ae91533b29ee255483b85273eaeb74f9c1ac60" resname="forms::l'email semble invalide" approved="yes"> <source>forms::l'email semble invalide</source> <target state="translated">E-mail address seems invalid.</target> - <jms:reference-file line="99">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="106">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="3edc07eb02649e91baa490fbf402ebbedb10d2cf" resname="forms::la valeur donnee est trop courte" approved="yes"> <source>forms::la valeur donnee est trop courte</source> @@ -9845,7 +9923,7 @@ <trans-unit id="61cc4acf7d6a30e2177360defda8d8b94eb01d53" resname="forms::les emails ne correspondent pas" approved="yes"> <source>forms::les emails ne correspondent pas</source> <target state="translated">E-mails do not match.</target> - <jms:reference-file line="105">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="112">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="39adae60eaec2c7664f31f59c482634f90eea3c1" resname="forms::les mots de passe ne correspondent pas" approved="yes"> <source>forms::les mots de passe ne correspondent pas</source> @@ -9862,12 +9940,6 @@ <target state="translated">Modifications done</target> <jms:reference-file line="14">admin/databox/databox.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="0b1e95cfd9775191a7224d0a218ae79187e80c1d" resname="from" approved="yes"> - <source>from</source> - <target state="translated">from</target> - <jms:reference-file line="10">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="13">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="45b162f3c09db4eb9ecea5e048393a7ccaab4f7d" resname="help::help-section-bullet: check-spelling" approved="yes"> <source>help::help-section-bullet: check-spelling</source> <target state="translated">Check that there are no misspellings or typing errors.</target> @@ -9927,9 +9999,9 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="0e76292794888d4f1fa75fb3aff4ca27c58f56a6" resname="image" approved="yes"> <source>image</source> <target state="translated">Image</target> - <jms:reference-file line="266">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> - <jms:reference-file line="19">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="290">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> <jms:reference-file line="369">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="22">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="994bebec7c4690d1953f5e2b8832a853238efd5e" resname="image rotation" approved="yes"> <source>image rotation</source> @@ -9944,42 +10016,42 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="0d25ab4ea387d19f49a120acb928c7f9500b0cf3" resname="index::advance_search: disable-facet" approved="yes"> <source>index::advance_search: disable-facet</source> <target state="translated">Hide facets with 1 result (experimental)</target> - <jms:reference-file line="750">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="841">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="16b1c68bd21754876991dfc8df38b024383fbca4" resname="index::advance_search: facet" approved="yes"> <source>index::advance_search: facet</source> <target state="translated">Facets Preferences</target> - <jms:reference-file line="722">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="813">web/prod/index.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="2f830d57f4cedb2a49c7b109f9b91b0f8ba83e8b" resname="index::advance_search: facet-order"> + <trans-unit id="2f830d57f4cedb2a49c7b109f9b91b0f8ba83e8b" resname="index::advance_search: facet-order" approved="yes"> <source>index::advance_search: facet-order</source> - <target state="needs-translation">Facets order</target> - <jms:reference-file line="723">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Facets order</target> + <jms:reference-file line="814">web/prod/index.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="5a25478cdd7fe21258071c4f3a5d9920225f9356" resname="index::advance_search: facet-tech-order"> + <trans-unit id="5a25478cdd7fe21258071c4f3a5d9920225f9356" resname="index::advance_search: facet-tech-order" approved="yes"> <source>index::advance_search: facet-tech-order</source> - <target state="needs-translation">default order</target> - <jms:reference-file line="729">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Default order</target> + <jms:reference-file line="820">web/prod/index.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="6b9516a3c46d7ad246a9fbb3df693ba6c783c986" resname="index::advance_search: facet-values-order"> + <trans-unit id="6b9516a3c46d7ad246a9fbb3df693ba6c783c986" resname="index::advance_search: facet-values-order" approved="yes"> <source>index::advance_search: facet-values-order</source> - <target state="needs-translation">facets value order</target> - <jms:reference-file line="735">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Facets values order</target> + <jms:reference-file line="826">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dfb02fcdeb804315cd6ad8388efcfb4ccc4abf38" resname="index::advance_search: hidden-facet-values-order" approved="yes"> <source>index::advance_search: hidden-facet-values-order</source> <target state="translated">Hidden Facets</target> - <jms:reference-file line="752">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="843">web/prod/index.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="4a35cc75d1072f7dad99c8e91596298f55f20a54" resname="index::advance_search: order-by-hits"> + <trans-unit id="4a35cc75d1072f7dad99c8e91596298f55f20a54" resname="index::advance_search: order-by-hits" approved="yes"> <source>index::advance_search: order-by-hits</source> - <target state="new">index::advance_search: order-by-hits</target> - <jms:reference-file line="741">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Order by hits</target> + <jms:reference-file line="832">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1039a002699408da4c4fe74638a6b44f60499069" resname="index:advanced-preferences:: use truncation" approved="yes"> <source>index:advanced-preferences:: use truncation</source> <target state="translated">use truncation</target> - <jms:reference-file line="312">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="341">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="830af6e37576114c7943a0e190f35ad2f0302b4d" resname="invite:: Redirection vers la zone d'authentification, cliquez sur OK pour continuer ou annulez" approved="yes"> <source>invite:: Redirection vers la zone d'authentification, cliquez sur OK pour continuer ou annulez</source> @@ -10035,9 +10107,9 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="c372f7e2737372f0ec380396e5755850485ee3e9" resname="login:: Mon compte" approved="yes"> <source>login:: Mon compte</source> <target state="translated">My account</target> - <jms:reference-file line="168">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="249">web/common/menubar.html.twig</jms:reference-file> <jms:reference-file line="22">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="152">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="226">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="51813acc1a667a12d4be8e86f3f2300e369a68cf" resname="login:: Visitez le lien suivant et suivez les instructions pour continuer, sinon ignorez cet email et il ne se passera rien" approved="yes"> <source>login:: Visitez le lien suivant et suivez les instructions pour continuer, sinon ignorez cet email et il ne se passera rien</source> @@ -10068,13 +10140,13 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="5cdbff50d2a3ae92720c5af32d4cd560d1351a91" resname="login::notification: Changements enregistres" approved="yes"> <source>login::notification: Changements enregistres</source> <target state="translated">Changes saved</target> - <jms:reference-file line="393">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="490">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="46f7a3bb71222626147c7e64c6a59a3f4c3d8e42" resname="login::notification: Mise a jour du mot de passe avec succes" approved="yes"> <source>login::notification: Mise a jour du mot de passe avec succes</source> <target state="translated">Password update done</target> <jms:reference-file line="396">Controller/Root/LoginController.php</jms:reference-file> - <jms:reference-file line="60">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="67">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="28dd2416483329c548279196d0c60f722578632f" resname="login::notification: demande de confirmation par mail envoyee" approved="yes"> <source>login::notification: demande de confirmation par mail envoyee</source> @@ -10082,16 +10154,6 @@ See documentation for more examples https://docs.phraseanet.com</target> <jms:reference-file line="240">Controller/Root/LoginController.php</jms:reference-file> <jms:reference-file line="310">Controller/Root/LoginController.php</jms:reference-file> </trans-unit> - <trans-unit id="71604a1b149b2101d8500cdd929c4d4689961cf1" resname="login::register: Faire une demande d'acces" approved="yes"> - <source>login::register: Faire une demande d'acces</source> - <target state="translated">Register</target> - <jms:reference-file line="206">web/account/access.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="26697ed6ba3b6aa626a51d008244c09f734c5a3f" resname="login::register: L'acces aux bases ci-dessous implique l'acceptation des Conditions Generales d'Utilisation (CGU) suivantes" approved="yes"> - <source>login::register: L'acces aux bases ci-dessous implique l'acceptation des Conditions Generales d'Utilisation (CGU) suivantes</source> - <target state="translated">To access the following collections, you must accept General Terms of Use.</target> - <jms:reference-file line="195">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="fd24fc482ff7c390471bcff193f8ed218a520ccc" resname="login::register: email confirmation email Pour valider votre inscription a la base de donnees, merci de confirmer votre e-mail en suivant le lien ci-dessous." approved="yes"> <source>login::register: email confirmation email Pour valider votre inscription a la base de donnees, merci de confirmer votre e-mail en suivant le lien ci-dessous.</source> <target state="translated">To process your registration, please confirm your e-mail address by using the following link:</target> @@ -10100,24 +10162,14 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="e0521fa8816ba827070adffaa4656fe554eec05d" resname="login::register: merci d'avoir confirme votre adresse email" approved="yes"> <source>login::register: merci d'avoir confirme votre adresse email</source> <target state="translated">Thank you for confirming your e-mail.</target> - <jms:reference-file line="29">Notification/Mail/MailSuccessEmailConfirmationUnregistered.php</jms:reference-file> <jms:reference-file line="29">Notification/Mail/MailSuccessEmailConfirmationRegistered.php</jms:reference-file> + <jms:reference-file line="29">Notification/Mail/MailSuccessEmailConfirmationUnregistered.php</jms:reference-file> </trans-unit> <trans-unit id="2c92f505fbd419ecba46a9c61daf8e304fc0cd61" resname="login::register: sujet email : confirmation de votre adresse email" approved="yes"> <source>login::register: sujet email : confirmation de votre adresse email</source> <target state="translated">E-mail address check.</target> - <jms:reference-file line="21">Notification/Mail/MailRequestEmailConfirmation.php</jms:reference-file> <jms:reference-file line="21">Notification/Mail/MailRequestEmailUpdate.php</jms:reference-file> - </trans-unit> - <trans-unit id="90c4688a719d4a3f762b4d9ec0e17e5389fdf515" resname="login::register::CGU: lire les CGU" approved="yes"> - <source>login::register::CGU: lire les CGU</source> - <target state="translated">Read GTU</target> - <jms:reference-file line="40">web/account/access.html.twig</jms:reference-file> - <jms:reference-file line="66">web/account/access.html.twig</jms:reference-file> - <jms:reference-file line="92">web/account/access.html.twig</jms:reference-file> - <jms:reference-file line="117">web/account/access.html.twig</jms:reference-file> - <jms:reference-file line="142">web/account/access.html.twig</jms:reference-file> - <jms:reference-file line="167">web/account/access.html.twig</jms:reference-file> + <jms:reference-file line="21">Notification/Mail/MailRequestEmailConfirmation.php</jms:reference-file> </trans-unit> <trans-unit id="ef4716e235916afcf4b9458248245b4c43f42636" resname="login::register:email: Voici un compte rendu du traitement de vos demandes d'acces :" approved="yes"> <source>login::register:email: Voici un compte rendu du traitement de vos demandes d'acces :</source> @@ -10132,12 +10184,12 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="ace8a8481cf18b9b69c30aa34a65135ed2d75277" resname="login::register:email: Vous avez ete accepte sur les collections suivantes : " approved="yes"> <source>login::register:email: Vous avez ete accepte sur les collections suivantes : </source> <target state="translated">Your access has been granted on these bases and collections:</target> - <jms:reference-file line="524">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="525">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="20fc11d974588d0abed50d717ed3174eff70ac83" resname="login::register:email: Vous avez ete refuse sur les collections suivantes : " approved="yes"> <source>login::register:email: Vous avez ete refuse sur les collections suivantes : </source> <target state="translated">Your access has been denied to the following databases and collections:</target> - <jms:reference-file line="527">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="528">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="ea4440bd94714e4e85334618405679ae2e36f4f1" resname="mai" approved="yes"> <source>mai</source> @@ -10152,8 +10204,8 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="520593b5cc1a6e328e74717650c586fb1dbfa265" resname="maximum : %maxFileSizeReadable%" approved="yes"> <source>maximum : %maxFileSizeReadable%</source> <target state="translated">Maximum filesize: %maxFileSizeReadable%</target> + <jms:reference-file line="39">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="33">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="36">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="024b6bde2b38cc102db445880d243021b5ed8509" resname="mediatype" approved="yes"> <source>mediatype</source> @@ -10183,16 +10235,16 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="fd1286353570c5703799ba76999323b7c7447b06" resname="no" approved="yes"> <source>no</source> <target state="translated">No</target> + <jms:reference-file line="75">web/account/sessions.html.twig</jms:reference-file> <jms:reference-file line="582">web/admin/subdefs.html.twig</jms:reference-file> <jms:reference-file line="14">user/import/view.html.twig</jms:reference-file> <jms:reference-file line="91">web/common/technical_datas.html.twig</jms:reference-file> - <jms:reference-file line="75">web/account/sessions.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6c632badea2664bc707979fac5e58072b6a2feba" resname="no image selected" approved="yes"> <source>no image selected</source> <target state="translated">No Document selected</target> + <jms:reference-file line="178">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="245">actions/Tools/index.html.twig</jms:reference-file> - <jms:reference-file line="165">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="37031f99ac78580c9f82e04fa237d295ea10ca41" resname="non" approved="yes"> <source>non</source> @@ -10474,9 +10526,9 @@ See documentation for more examples https://docs.phraseanet.com</target> <jms:reference-file line="117">prod/orders/order_box.html.twig</jms:reference-file> <jms:reference-file line="168">prod/orders/order_box.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="0259e4e17a1f2697d4f4f0108080276a5d7573de" resname="original logo"> + <trans-unit id="0259e4e17a1f2697d4f4f0108080276a5d7573de" resname="original logo" approved="yes"> <source>original logo</source> - <target state="new">original logo</target> + <target state="translated">Original logo</target> <jms:reference-file line="23">Form/Configuration/PersonalisationLogoFormType.php</jms:reference-file> </trans-unit> <trans-unit id="5898fc860300e228dcd54c0b1045b5fa0dcda502" resname="oui" approved="yes"> @@ -10509,17 +10561,17 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="b634852764694ba6d2738c84f6696db177426f69" resname="panier:: ordre Validation ascendante" approved="yes"> <source>panier:: ordre Validation ascendante</source> <target state="translated">Most approved</target> - <jms:reference-file line="339">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="366">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dfd32efef3d8fa4ede00019a8337b38819a0d4de" resname="panier:: ordre Validation descendante" approved="yes"> <source>panier:: ordre Validation descendante</source> <target state="translated">Less approved</target> - <jms:reference-file line="340">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="367">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ab89cfcdd590c720551475cb654efb414b3f3850" resname="panier:: ordre du panier" approved="yes"> <source>panier:: ordre du panier</source> <target state="translated">Basket order</target> - <jms:reference-file line="338">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="365">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="255b0c1fa53afa654ef27c6cfed00c535b904679" resname="panier:: renommer le panier" approved="yes"> <source>panier:: renommer le panier</source> @@ -10567,9 +10619,9 @@ See documentation for more examples https://docs.phraseanet.com</target> <target state="translated">per month</target> <jms:reference-file line="62">web/admin/editusers_quotas.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="ead5a6379197deb9163d2101354822e6caaa30eb" resname="personalize logo"> + <trans-unit id="ead5a6379197deb9163d2101354822e6caaa30eb" resname="personalize logo" approved="yes"> <source>personalize logo</source> - <target state="new">personalize logo</target> + <target state="translated">Customize logo</target> <jms:reference-file line="24">Form/Configuration/PersonalisationLogoFormType.php</jms:reference-file> </trans-unit> <trans-unit id="f16110620b1971f58336063cbdb64df7e0e0c7ac" resname="pertinence" approved="yes"> @@ -10602,6 +10654,11 @@ See documentation for more examples https://docs.phraseanet.com</target> <target state="translated">Mount Database from a distant host.</target> <jms:reference-file line="103">web/admin/databases.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="6cb5c0796bbc3bf1d892ba5be804a7e53595ea1d" resname="phraseanet:: Preferences" approved="yes"> + <source>phraseanet:: Preferences</source> + <target state="translated">Preferences</target> + <jms:reference-file line="255">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="2751058550fb9a63ba3ffa07152ec68f594dec2a" resname="phraseanet:: Un email vient de vous etre envoye" approved="yes"> <source>phraseanet:: Un email vient de vous etre envoye</source> <target state="translated">An e-mail has been sent.</target> @@ -10610,23 +10667,28 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="eb699a47b1a213ea730879af2fd492110b3c1f4e" resname="phraseanet:: a propos" approved="yes"> <source>phraseanet:: a propos</source> <target state="translated">About</target> - <jms:reference-file line="198">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="293">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="190">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="255">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8039b17c124d6907eb83dc8b705888769f45d82d" resname="phraseanet:: adresse" approved="yes"> <source>phraseanet:: adresse</source> <target state="translated">Address</target> <jms:reference-file line="554">web/setup/step2.html.twig</jms:reference-file> + <jms:reference-file line="181">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="31">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="89">web/admin/connected-users.html.twig</jms:reference-file> <jms:reference-file line="7">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="181">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a934108e5aa19f91fafd6eb9ee20b00bc248bab9" resname="phraseanet:: aide" approved="yes"> <source>phraseanet:: aide</source> <target state="translated">Help</target> - <jms:reference-file line="179">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="273">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="170">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="237">web/common/menubar.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="20f45a77e291b513c2fb6c389574ccca61cfb141" resname="phraseanet:: baskets"> + <source>phraseanet:: baskets</source> + <target state="new">phraseanet:: baskets</target> + <jms:reference-file line="21">web/prod/tab_headers.html.twig</jms:reference-file> </trans-unit> <trans-unit id="82f1c4ecdd310877886e675b4a6ccf848f77e34d" resname="phraseanet:: choisir" approved="yes"> <source>phraseanet:: choisir</source> @@ -10648,14 +10710,14 @@ See documentation for more examples https://docs.phraseanet.com</target> <source>phraseanet:: deconnection</source> <target state="translated">Sign out</target> <jms:reference-file line="31">actions/Bridge/wrapper.html.twig</jms:reference-file> - <jms:reference-file line="210">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="264">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="162">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="267">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6a27e232d8975a8ea80916b303f6d1f873186429" resname="phraseanet:: details" approved="yes"> <source>phraseanet:: details</source> <target state="translated">Details</target> - <jms:reference-file line="35">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="50">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="35">admin/collection/collection.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8e0c935881fe96023527a3196737821738f5fb44" resname="phraseanet:: hostname" approved="yes"> <source>phraseanet:: hostname</source> @@ -10677,7 +10739,7 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="300f5de4c2878a60aa1332e6a00574106d2bb022" resname="phraseanet:: plugin.workzone" approved="yes"> <source>phraseanet:: plugin.workzone</source> <target state="translated">Plugin workzone</target> - <jms:reference-file line="27">web/prod/tab_headers.html.twig</jms:reference-file> + <jms:reference-file line="28">web/prod/tab_headers.html.twig</jms:reference-file> </trans-unit> <trans-unit id="96eedbcdec855436500199e6bb6fe9ab40858b4c" resname="phraseanet:: port" approved="yes"> <source>phraseanet:: port</source> @@ -10694,13 +10756,13 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="02e53272b6740f58947e81b6fd23e62e2ca5c301" resname="phraseanet:: presse-papier" approved="yes"> <source>phraseanet:: presse-papier</source> <target state="translated">Clipboard</target> - <jms:reference-file line="260">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="262">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="da1f4cb9f98aef274dbb8f5992dedaf20e91ea71" resname="phraseanet:: preview" approved="yes"> <source>phraseanet:: preview</source> <target state="translated">Preview</target> + <jms:reference-file line="259">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="7">prod/actions/printer_default.html.twig</jms:reference-file> - <jms:reference-file line="257">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2baca947f8536e2ff6bab1c45c1876c04706a6a0" resname="phraseanet:: propositions" approved="yes"> <source>phraseanet:: propositions</source> @@ -10711,26 +10773,25 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="51d3e2ae2daff6825c733d3d8e2cc572fca0e0ec" resname="phraseanet:: raccourcis clavier" approved="yes"> <source>phraseanet:: raccourcis clavier</source> <target state="translated">Shortcuts</target> - <jms:reference-file line="192">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="284">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="181">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="249">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="99a70ecaddc20d59056e5d479c6fa9d0bc113a0e" resname="phraseanet:: sous definition" approved="yes"> <source>phraseanet:: sous definition</source> <target state="translated">Subview</target> - <jms:reference-file line="93">module/report/filter.php</jms:reference-file> <jms:reference-file line="685">classes/module/report.php</jms:reference-file> - <jms:reference-file line="352">Controller/Report/RootController.php</jms:reference-file> + <jms:reference-file line="93">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="c33ce7e20779d5b34c1c812406e2f22b779a45d0" resname="phraseanet:: thesaurus" approved="yes"> <source>phraseanet:: thesaurus</source> <target state="translated">Thesaurus</target> - <jms:reference-file line="255">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="257">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="15">web/prod/tab_headers.html.twig</jms:reference-file> - <jms:reference-file line="5">web/thesaurus/index.html.twig</jms:reference-file> <jms:reference-file line="5">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="216">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="11">web/thesaurus/load-thesaurus.html.twig</jms:reference-file> <jms:reference-file line="12">web/thesaurus/load-thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="5">web/thesaurus/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b6022bf4291f5e9d7d7051fe6c3d6a6abbd92c1a" resname="phraseanet:: tri" approved="yes"> <source>phraseanet:: tri</source> @@ -10740,17 +10801,17 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="771634fc3ec89c0a08c7666e776fc5db3072f318" resname="phraseanet:: tri par date" approved="yes"> <source>phraseanet:: tri par date</source> <target state="translated">Sort by date</target> - <jms:reference-file line="231">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="233">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="234">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="235">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="237">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="238">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="89">web/thesaurus/export-topics-dialog.html.twig</jms:reference-file> </trans-unit> <trans-unit id="db34986ff3eb1fd0e90f897a97eaf52ea6708600" resname="phraseanet:: tri par nom" approved="yes"> <source>phraseanet:: tri par nom</source> <target state="translated">Sort by name</target> - <jms:reference-file line="240">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="242">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="243">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="244">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="246">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="247">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d775557b6bf79c672ee2efea64f5e282124055a8" resname="phraseanet:: user" approved="yes"> <source>phraseanet:: user</source> @@ -10768,11 +10829,56 @@ See documentation for more examples https://docs.phraseanet.com</target> <target state="translated">Do not display anymore</target> <jms:reference-file line="38">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> + <trans-unit id="245fd09d0518644a6580518f710add762804ca9a" resname="phraseanet::account The account has been deleted" approved="yes"> + <source>phraseanet::account The account has been deleted</source> + <target state="translated">The account has been deleted</target> + <jms:reference-file line="552">Controller/Root/AccountController.php</jms:reference-file> + </trans-unit> + <trans-unit id="bf7028b694aea3fc9ede5014a9f8b5d617b83b6f" resname="phraseanet::account: << your account can be deleted via admin interface >> " approved="yes"> + <source><![CDATA[phraseanet::account: << your account can be deleted via admin interface >> ]]></source> + <target state="translated">Your rights do not allow to perform this action. Your account can only be deleted via the Administration interface.</target> + <jms:reference-file line="296">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="047b7994f5960aae108105ad5deadb5bbd72c8fc" resname="phraseanet::account: A confirmation e-mail has been sent. Please follow the instructions contained to continue account deletion" approved="yes"> + <source>phraseanet::account: A confirmation e-mail has been sent. Please follow the instructions contained to continue account deletion</source> + <target state="translated">A confirmation email has been sent. Please follow the instructions to delete the account.</target> + <jms:reference-file line="360">Controller/Root/AccountController.php</jms:reference-file> + </trans-unit> + <trans-unit id="d0ee9e2c90a05b113b00bf7accd590557bd78528" resname="phraseanet::account: Are you sure you want to delete your account?" approved="yes"> + <source>phraseanet::account: Are you sure you want to delete your account?</source> + <target state="translated">Are you sure you wish to delete your account?</target> + <jms:reference-file line="253">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="b98be91d0f8cadb22e52e6217584b7a11370fbb6" resname="phraseanet::account: Delete my account" approved="yes"> + <source>phraseanet::account: Delete my account</source> + <target state="translated">Delete my account</target> + <jms:reference-file line="244">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="b7993903466c49139bfae4c34c63446ff24b1474" resname="phraseanet::account: I am agree to delete my account" approved="yes"> + <source>phraseanet::account: I am agree to delete my account</source> + <target state="translated">I agree to delete my account</target> + <jms:reference-file line="285">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="1b836fda2a5c65abfd05c215d4c4dd66361e4f0f" resname="phraseanet::account: I am agree to delete my account, need confirmation on mail" approved="yes"> + <source>phraseanet::account: I am agree to delete my account, need confirmation on mail</source> + <target state="translated">I agree to delete my account and I need a confirmation by email</target> + <jms:reference-file line="283">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="121aa945bfcb3565989acc06a1ccda5b36be6bf0" resname="phraseanet::account: List of data to be deleted" approved="yes"> + <source>phraseanet::account: List of data to be deleted</source> + <target state="translated">List of data to be deleted</target> + <jms:reference-file line="254">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="8d168955d9cfb26df27fbdcb4f83bbfe78654703" resname="phraseanet::account: My phraseanet account" approved="yes"> + <source>phraseanet::account: My phraseanet account</source> + <target state="translated">My Phraseanet account</target> + <jms:reference-file line="274">web/account/account.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="9628f29074afd5c9bb42bb0b4c896f8bc32c192e" resname="phraseanet::chargement" approved="yes"> <source>phraseanet::chargement</source> <target state="translated">Loading</target> <jms:reference-file line="47">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="268">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="270">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="77">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="34">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> @@ -10798,7 +10904,14 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="754677fa0aa06c7f10237a728e6f33eaea06d42b" resname="phraseanet::erreur: echec du serveur de mail" approved="yes"> <source>phraseanet::erreur: echec du serveur de mail</source> <target state="translated">Mail-server error</target> - <jms:reference-file line="116">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="123">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="344">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="541">Controller/Root/AccountController.php</jms:reference-file> + </trans-unit> + <trans-unit id="60ae97c7ab0fb3923682a785ff0348958e308d4a" resname="phraseanet::error: failed to revoke some user access"> + <source>phraseanet::error: failed to revoke some user access</source> + <target state="new">phraseanet::error: failed to revoke some user access</target> + <jms:reference-file line="530">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="2a5db6bf8928d23c54b13277fa7d5289a1f52744" resname="phraseanet::jours:: dimanche" approved="yes"> <source>phraseanet::jours:: dimanche</source> @@ -10883,12 +10996,12 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="9b218d667572510f2b87bc933b23fe2e1049da91" resname="phraseanet::time:: a" approved="yes"> <source>phraseanet::time:: a</source> <target state="translated">To</target> - <jms:reference-file line="455">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="487">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="17294973074fcca7917d08a31570996d882ae840" resname="phraseanet::time:: de" approved="yes"> <source>phraseanet::time:: de</source> <target state="translated">From</target> - <jms:reference-file line="449">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="480">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="10188a0f6e181f9c9159f315f47e1349efb5659a" resname="phraseanet::type:: audios" approved="yes"> <source>phraseanet::type:: audios</source> @@ -10898,8 +11011,8 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="255c1bcd520c4025c47b940d1820d1355d0b35e0" resname="phraseanet::type:: documents" approved="yes"> <source>phraseanet::type:: documents</source> <target state="translated">Documents</target> - <jms:reference-file line="283">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="28">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="306">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0846fc377cde824859cb98aacb8a3b258bae7c7c" resname="phraseanet::type:: images" approved="yes"> <source>phraseanet::type:: images</source> @@ -10909,7 +11022,7 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="a2dfbbcaf441131e47dcd23530fa98f1155999ff" resname="phraseanet::type:: reportages" approved="yes"> <source>phraseanet::type:: reportages</source> <target state="translated">Stories</target> - <jms:reference-file line="287">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="311">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="866330f63ad6553c27c7c4a60fd6354d4291e2b3" resname="phraseanet::type:: videos" approved="yes"> <source>phraseanet::type:: videos</source> @@ -10925,16 +11038,6 @@ See documentation for more examples https://docs.phraseanet.com</target> <source>phraseanet::utilisateurs</source> <target state="translated">Users</target> <jms:reference-file line="66">module/report/filter.php</jms:reference-file> - <jms:reference-file line="152">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="7cf383c0af92a038f4aa629bfc8292876459b08d" resname="phrseanet:: sous definition" approved="yes"> - <source>phrseanet:: sous definition</source> - <target state="translated">Document type</target> - <jms:reference-file line="282">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="34">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="52">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="273">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="281">Controller/Report/InformationController.php</jms:reference-file> </trans-unit> <trans-unit id="1aa787fe0cfb373575fc2c0f6f826e7c6dc9fd41" resname="preview" approved="yes"> <source>preview</source> @@ -10944,49 +11047,49 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="fdb5ea435d0e0d2d8e9dc7e2dc925c031406385c" resname="preview:: Description" approved="yes"> <source>preview:: Description</source> <target state="translated">Caption</target> - <jms:reference-file line="793">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="884">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="424597224c5d2322b6e8db99037234f7b2641de0" resname="preview:: Historique" approved="yes"> <source>preview:: Historique</source> <target state="translated">Timeline</target> - <jms:reference-file line="794">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="885">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="74e09022ffbf0d295142654902e9d7a007f209a5" resname="preview:: Popularite" approved="yes"> <source>preview:: Popularite</source> <target state="translated">Statistics</target> - <jms:reference-file line="796">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="887">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f9c61385964471a1171066ba2ba3622a98ffb84b" resname="preview:: arreter le diaporama" approved="yes"> <source>preview:: arreter le diaporama</source> <target state="translated">Stop</target> <jms:reference-file line="62">prod/preview/basket_train.html.twig</jms:reference-file> - <jms:reference-file line="10">prod/preview/result_train_options.html.twig</jms:reference-file> - <jms:reference-file line="96">prod/preview/reg_train.html.twig</jms:reference-file> - <jms:reference-file line="60">prod/preview/feed_train.html.twig</jms:reference-file> <jms:reference-file line="56">prod/preview/result_train.html.twig</jms:reference-file> + <jms:reference-file line="96">prod/preview/reg_train.html.twig</jms:reference-file> + <jms:reference-file line="10">prod/preview/result_train_options.html.twig</jms:reference-file> + <jms:reference-file line="60">prod/preview/feed_train.html.twig</jms:reference-file> </trans-unit> <trans-unit id="77a36033b8fdccc947d744ae8e3120c7d8dafa46" resname="preview:: demarrer le diaporama" approved="yes"> <source>preview:: demarrer le diaporama</source> <target state="translated">Slideshow</target> <jms:reference-file line="60">prod/preview/basket_train.html.twig</jms:reference-file> - <jms:reference-file line="8">prod/preview/result_train_options.html.twig</jms:reference-file> - <jms:reference-file line="94">prod/preview/reg_train.html.twig</jms:reference-file> - <jms:reference-file line="58">prod/preview/feed_train.html.twig</jms:reference-file> <jms:reference-file line="54">prod/preview/result_train.html.twig</jms:reference-file> + <jms:reference-file line="94">prod/preview/reg_train.html.twig</jms:reference-file> + <jms:reference-file line="8">prod/preview/result_train_options.html.twig</jms:reference-file> + <jms:reference-file line="58">prod/preview/feed_train.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a5cc2b2cd9b0421d131185277e9005d8e616582c" resname="preview::date" approved="yes"> <source>preview::date</source> <target state="translated">Date</target> - <jms:reference-file line="74">prod/preview/popularity.html.twig</jms:reference-file> - <jms:reference-file line="88">prod/preview/popularity.html.twig</jms:reference-file> - <jms:reference-file line="124">prod/preview/popularity.html.twig</jms:reference-file> - <jms:reference-file line="138">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="83">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="98">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="134">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="148">prod/preview/popularity.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0cbda44654b686e66bae8ec061748385d8b13de0" resname="preview::downloads" approved="yes"> <source>preview::downloads</source> <target state="translated">Number of Downloads</target> - <jms:reference-file line="125">prod/preview/popularity.html.twig</jms:reference-file> - <jms:reference-file line="151">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="135">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="161">prod/preview/popularity.html.twig</jms:reference-file> </trans-unit> <trans-unit id="688566b835a97bcfbbdb83fb85b59c7c2aa5893d" resname="preview::statistiques de telechargement" approved="yes"> <source>preview::statistiques de telechargement</source> @@ -11001,15 +11104,15 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="b130a62ee72757a562af1398e01cd0fc5aad3d30" resname="preview::visualisation" approved="yes"> <source>preview::visualisation</source> <target state="translated">Number of views</target> - <jms:reference-file line="75">prod/preview/popularity.html.twig</jms:reference-file> - <jms:reference-file line="101">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="84">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="111">prod/preview/popularity.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7ac5447a13806c0a2e2602b51644729fe8464e0e" resname="previewLinkLabel" approved="yes"> <source>previewLinkLabel</source> <target state="translated">Preview</target> - <jms:reference-file line="45">prod/Share/record.html.twig</jms:reference-file> - <jms:reference-file line="55">prod/Share/record.html.twig</jms:reference-file> - <jms:reference-file line="71">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="51">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="61">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="77">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d369ca0ef132e64f45e4cef5bfa2aaff9104a276" resname="print:: description" approved="yes"> <source>print:: description</source> @@ -11049,20 +11152,20 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="98ab0e2a8cf4a7c9f6952361e6c750a8009b70a5" resname="prive" approved="yes"> <source>prive</source> <target state="translated">Private</target> - <jms:reference-file line="91">Bridge/Youtube/upload.html.twig</jms:reference-file> <jms:reference-file line="79">Bridge/Dailymotion/upload.html.twig</jms:reference-file> + <jms:reference-file line="91">Bridge/Youtube/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="039db3240f9c47314f5b8f05835c54795f45324e" resname="privé" approved="yes"> <source>privé</source> <target state="translated">Private</target> - <jms:reference-file line="60">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="60">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="60">Bridge/Youtube/video_modify.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6dd8429cc900b9460f1e9d4be6155a6ee1b6de42" resname="processing" approved="yes"> <source>processing</source> <target state="translated">Processing...</target> + <jms:reference-file line="179">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="246">actions/Tools/index.html.twig</jms:reference-file> - <jms:reference-file line="166">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f63658cad863dee4a5876278e836472380183ade" resname="prod::Les enregistrements ne provienent pas tous de la meme base et ne peuvent donc etre traites ensemble" approved="yes"> <source>prod::Les enregistrements ne provienent pas tous de la meme base et ne peuvent donc etre traites ensemble</source> @@ -11075,6 +11178,16 @@ See documentation for more examples https://docs.phraseanet.com</target> <target state="translated">You do not have the required permissions on selected documents</target> <jms:reference-file line="35">Controller/Prod/MoveCollectionController.php</jms:reference-file> </trans-unit> + <trans-unit id="ef27ad74061e0e15683e84dec7f5559f7797637f" resname="prod::advancesearch:tooltips:datefield_restriction_explanation" approved="yes"> + <source>prod::advancesearch:tooltips:datefield_restriction_explanation</source> + <target state="translated">Narrow the search results to dates</target> + <jms:reference-file line="463">web/prod/index.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="fa55093d5fb1dfe235a46f8b4fecad5d36d3f250" resname="prod::advancesearch:tooltips:field_restriction_explanation"> + <source>prod::advancesearch:tooltips:field_restriction_explanation</source> + <target state="new">prod::advancesearch:tooltips:field_restriction_explanation</target> + <jms:reference-file line="408">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="8b8698f202f815bbde691f54c7d51b691bef0263" resname="prod::collection deplacer egalement les documents rattaches a ce(s) regroupement(s)" approved="yes"> <source>prod::collection deplacer egalement les documents rattaches a ce(s) regroupement(s)</source> <target state="translated">Move also Stories linked documents ?</target> @@ -11083,7 +11196,7 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="063431f63e0c593c52fffb55f390d1d9c216ee4a" resname="prod::edit: Impossible d'editer simultanement des documents provenant de bases differentes" approved="yes"> <source>prod::edit: Impossible d'editer simultanement des documents provenant de bases differentes</source> <target state="translated">Selected documents come from differents databases, unable to edit</target> - <jms:reference-file line="404">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="406">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c1978319cea9a232bb3076453e217df0781ef7a6" resname="prod::editing valeurs heterogenes, choisir 'remplacer', 'ajouter' ou 'annuler'" approved="yes"> <source>prod::editing valeurs heterogenes, choisir 'remplacer', 'ajouter' ou 'annuler'</source> @@ -11093,32 +11206,32 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="b4647a860e97f9b173747e8736ae36630631fbb4" resname="prod::editing: %not_actionable% documents ne peuvent etre edites car vos droits sont induffisants" approved="yes"> <source>prod::editing: %not_actionable% documents ne peuvent etre edites car vos droits sont induffisants</source> <target state="translated">Your user rights do not allow you to edit %not_actionable% documents from selection</target> - <jms:reference-file line="414">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="416">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e58fe53260dcb47548d687b0aac89a231f8fd349" resname="prod::editing: 1 document ne peut etre edite car vos droits sont induffisants" approved="yes"> <source>prod::editing: 1 document ne peut etre edite car vos droits sont induffisants</source> <target state="translated">You do not have the required permissions to edit 1 document</target> - <jms:reference-file line="416">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="418">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d06429358cfa7814d995cffec515505b4babbdf3" resname="prod::editing: aucun documents ne peuvent etre edites car vos droits sont induffisants" approved="yes"> <source>prod::editing: aucun documents ne peuvent etre edites car vos droits sont induffisants</source> <target state="translated">Your user rights do not allow you to edit any of the selected documents</target> - <jms:reference-file line="406">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="408">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="93a5e45cf78591b66011a369a41a9faae6439da0" resname="prod::editing: modeles de fiches" approved="yes"> <source>prod::editing: modeles de fiches</source> <target state="translated">Caption template</target> - <jms:reference-file line="259">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="261">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="43cef7ae638274317ae80eeb9d2207fbd8c60889" resname="prod::editing: rechercher-remplacer" approved="yes"> <source>prod::editing: rechercher-remplacer</source> <target state="translated">Find / Replace</target> - <jms:reference-file line="258">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="260">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1a368232d8ba90d4b168be2a328b32b2889a909c" resname="prod::editing: valider ou annuler les modifications" approved="yes"> <source>prod::editing: valider ou annuler les modifications</source> <target state="translated">Valid changes or Cancel</target> - <jms:reference-file line="389">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="391">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f5b80c50fa70208435fd889b73915ca753efabd3" resname="prod::editing::annulation: abandonner les modification ?" approved="yes"> <source>prod::editing::annulation: abandonner les modification ?</source> @@ -11133,108 +11246,83 @@ See documentation for more examples https://docs.phraseanet.com</target> <trans-unit id="be0abffee86e7b309d3ff31af3ab46a7e3927914" resname="prod::editing::replace: remplacer dans le champ" approved="yes"> <source>prod::editing::replace: remplacer dans le champ</source> <target state="translated">Replace in field</target> - <jms:reference-file line="279">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="281">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5abac240c44453bcb822102437d5b2e95115dbe2" resname="prod::editing::replace: remplacer dans tous les champs" approved="yes"> <source>prod::editing::replace: remplacer dans tous les champs</source> <target state="translated">Replace in all fields</target> - <jms:reference-file line="282">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="284">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7ba84a24ce43f7192d766a7afcda8d7de22ba760" resname="prod::editing:indexation en cours" approved="yes"> <source>prod::editing:indexation en cours</source> <target state="translated">Processing indexation</target> - <jms:reference-file line="376">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="378">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f2dbeebb5642463cc9d946ac5fef8b54e3ef9c8d" resname="prod::editing:remplace: chaine remplacante" approved="yes"> <source>prod::editing:remplace: chaine remplacante</source> <target state="translated">Replace with</target> - <jms:reference-file line="296">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="298">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2d8fd9918eb060abef1aff6634ede1135c2f898a" resname="prod::editing:remplace: options de remplacement" approved="yes"> <source>prod::editing:remplace: options de remplacement</source> <target state="translated">Options</target> - <jms:reference-file line="302">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="304">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9b33f1b01e6908366fc4b3f960d1869ccf1ea6a2" resname="prod::editing:remplace::option : utiliser une expression reguliere" approved="yes"> <source>prod::editing:remplace::option : utiliser une expression reguliere</source> <target state="translated">Regular expression</target> - <jms:reference-file line="305">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="307">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5649e43cc87b1330e3a5ad75b54c6096561e00cd" resname="prod::editing:remplace::option la valeur du cahmp doit etre exacte" approved="yes"> <source>prod::editing:remplace::option la valeur du cahmp doit etre exacte</source> <target state="translated">Whole field</target> - <jms:reference-file line="328">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="330">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cb4a27dc95b4aaf582361724327b0937991b6884" resname="prod::editing:remplace::option la valeur est comprise dans le champ" approved="yes"> <source>prod::editing:remplace::option la valeur est comprise dans le champ</source> <target state="translated">In field</target> - <jms:reference-file line="331">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="333">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5f18e2b78a5091db78a4adbd14e912959070ebd5" resname="prod::editing:remplace::option respecter la casse" approved="yes"> <source>prod::editing:remplace::option respecter la casse</source> <target state="translated">Case sensitive</target> - <jms:reference-file line="334">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="336">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="27a3b22c9b8b1abb910147d1d3a556d038f0ab50" resname="prod::editing:remplace::option: remplacer toutes les occurences" approved="yes"> <source>prod::editing:remplace::option: remplacer toutes les occurences</source> <target state="translated">Replace All</target> - <jms:reference-file line="321">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="323">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a77e26d6710709aca37c36887252c53bc238ec43" resname="prod::editing:remplace::option: rester insensible a la casse" approved="yes"> <source>prod::editing:remplace::option: rester insensible a la casse</source> <target state="translated">Case insensitive</target> - <jms:reference-file line="324">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="326">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dd5e4eca9dfa743d305cd038b0c53b0470c71c61" resname="prod::editing:replace: chaine a rechercher" approved="yes"> <source>prod::editing:replace: chaine a rechercher</source> <target state="translated">Find</target> - <jms:reference-file line="290">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="292">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cb08c63b1c016e31a255a38795c8e4cb66b0e66e" resname="prod::facet:base_label" approved="yes"> <source>prod::facet:base_label</source> <target state="translated">Base</target> - <jms:reference-file line="259">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="260">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="36fa870bac03b1a7c83f2b7030bf93ed4718e0a7" resname="prod::facet:collection_label" approved="yes"> <source>prod::facet:collection_label</source> <target state="translated">Collection</target> - <jms:reference-file line="264">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="267">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="12988153991e94fd6fc58934903504b0bf03c30a" resname="prod::facet:doctype_label" approved="yes"> <source>prod::facet:doctype_label</source> <target state="translated">Document type</target> - <jms:reference-file line="269">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="274">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="2a4d65f9a1aaeec92617d3d5dc3ef0167a019e82" resname="prod::recherche: Attention : la liste des bases selectionnees pour la recherche a ete changee." approved="yes"> <source>prod::recherche: Attention : la liste des bases selectionnees pour la recherche a ete changee.</source> <target state="translated">Warning, list of collections to search in has been changed</target> <jms:reference-file line="33">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> - <trans-unit id="93e6180a1f0f64a4dfc76fd640c4dc0049be00fc" resname="prod::setup: download gabari"> - <source>prod::setup: download gabari</source> - <target state="new">prod::setup: download gabari</target> - <jms:reference-file line="10">web/admin/personalisation_logo.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="7751e538494c3f8ed3f5518422715b60b28d306a" resname="prod::setup: error text dimension"> - <source>prod::setup: error text dimension</source> - <target state="new">prod::setup: error text dimension</target> - <jms:reference-file line="41">web/admin/personalisation_logo.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="a9f8a6a629117e38936d41b34cbb3dbcc13353fa" resname="prod::setup: error text file type"> - <source>prod::setup: error text file type</source> - <target state="new">prod::setup: error text file type</target> - <jms:reference-file line="42">web/admin/personalisation_logo.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="7950ac5291b8ffafd5cfa55c429cada508a2fdd1" resname="prod::setup: help text"> - <source>prod::setup: help text</source> - <target state="new">prod::setup: help text</target> - <jms:reference-file line="16">web/admin/personalisation_logo.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="acd399272f9331ebe8c669752339051f920a4084" resname="prod::setup: select file"> - <source>prod::setup: select file</source> - <target state="new">prod::setup: select file</target> - <jms:reference-file line="29">web/admin/personalisation_logo.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="df147d680e0fab108bc7a6a1c878c55428ecd3ea" resname="prod::thesaurusTab:candidats" approved="yes"> <source>prod::thesaurusTab:candidats</source> <target state="translated">Candidates</target> @@ -11363,7 +11451,7 @@ See documentation for more examples https://docs.phraseanet.com</target> </trans-unit> <trans-unit id="501adfe6ea4c900a76df9f3c1d55834e6db5b9a9" resname="prod:app trash: also-move-record" approved="yes"> <source>prod:app trash: also-move-record</source> - <target state="translated">also move record</target> + <target state="translated">Also move to Trash the records that rely on stories</target> <jms:reference-file line="28">prod/actions/delete_records_confirm.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9dd9daa2dc851f005bbcb2ce0ea0c8de6b86ad52" resname="prod:app trash: record-delete"> @@ -11396,9 +11484,9 @@ See documentation for more examples https://docs.phraseanet.com</target> <target state="needs-translation">Only a media of type video can be edited</target> <jms:reference-file line="149">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> - <trans-unit id="d2e761bd6f1cd95c2ea787f5eb206f6457c20d4b" resname="prod:edit: suggested_values"> + <trans-unit id="d2e761bd6f1cd95c2ea787f5eb206f6457c20d4b" resname="prod:edit: suggested_values" approved="yes"> <source>prod:edit: suggested_values</source> - <target state="needs-translation">Suggested values</target> + <target state="translated">Suggested values</target> <jms:reference-file line="152">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> <trans-unit id="253244f8f2642b58bb079abe2088b2461a3dd7b1" resname="prod:edit: video-editor"> @@ -11432,20 +11520,15 @@ It is possible to place several search areas</target> <trans-unit id="a938566e7b60b6fc2e197259cf2f2b2f42656d17" resname="prod:push: delete selection"> <source>prod:push: delete selection</source> <target state="new">prod:push: delete selection</target> - <jms:reference-file line="217">prod/actions/Push.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="2b9af3311e90dc6acc56f5dbb15c859f525a4d0e" resname="prod:push:save list"> - <source>prod:push:save list</source> - <target state="new">prod:push:save list</target> - <jms:reference-file line="249">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="223">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="61c9b2b17db77a27841bbeeabff923448b0f6388" resname="public" approved="yes"> <source>public</source> <target state="translated">Public</target> - <jms:reference-file line="95">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="64">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="83">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="64">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="95">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="64">Bridge/Youtube/video_modify.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9647ab4603346566d2218fda731606baafcbe408" resname="publication : autheur" approved="yes"> <source>publication : autheur</source> @@ -11513,37 +11596,67 @@ It is possible to place several search areas</target> <trans-unit id="80d5c6fb17d995644a96db043efbec28278893eb" resname="raccourci :: a propos des raccourcis claviers" approved="yes"> <source>raccourci :: a propos des raccourcis claviers</source> <target state="translated">About shortcuts</target> - <jms:reference-file line="522">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="613">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a7b6e3e14f736db30984625d4a84be582f2f16ac" resname="raccourcis :: ne plus montrer cette aide" approved="yes"> <source>raccourcis :: ne plus montrer cette aide</source> <target state="translated">Do not display this help anymore</target> - <jms:reference-file line="567">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="658">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1d740fd7fe206b5e6e57bef828e876a1bc484dd5" resname="rafraichir" approved="yes"> <source>rafraichir</source> <target state="translated">Refresh</target> <jms:reference-file line="89">prod/WorkZone/Story.html.twig</jms:reference-file> - <jms:reference-file line="94">prod/WorkZone/Basket.html.twig</jms:reference-file> <jms:reference-file line="3">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="94">prod/WorkZone/Basket.html.twig</jms:reference-file> <jms:reference-file line="17">prod/results/feeds.html.twig</jms:reference-file> <jms:reference-file line="22">prod/results/feeds.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="aa9ad912bb5495802feb4738958c197a8e2de1dc" resname="rechercher dans tous les champs" approved="yes"> - <source>rechercher dans tous les champs</source> - <target state="translated">All fields</target> - <jms:reference-file line="377">web/prod/index.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="0dea865dcd106d77e52ea8bffe6f87e2add0ac53" resname="recordtype" approved="yes"> <source>recordtype</source> <target state="translated">record type</target> - <jms:reference-file line="16">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="19">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="df1f4db3d6016bf2b31805b0a3038df4498fc2ee" resname="regeneration of sub-definitions" approved="yes"> <source>regeneration of sub-definitions</source> <target state="translated">Recreate subviews</target> <jms:reference-file line="29">actions/Tools/index.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="c8c491587b0dfb9bab18afb7694a0bb14665e7de" resname="registration:collection.accepted"> + <source>registration:collection.accepted</source> + <target state="new">registration:collection.accepted</target> + <jms:reference-file line="64">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="8feaff2c61f3573c1aaaaa16de3df1ef8758f28f" resname="registration:collection.active"> + <source>registration:collection.active</source> + <target state="new">registration:collection.active</target> + <jms:reference-file line="52">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="9a5d8160431e85e0ecbe21dfcb2017543a8f7268" resname="registration:collection.in-time"> + <source>registration:collection.in-time</source> + <target state="new">registration:collection.in-time</target> + <jms:reference-file line="56">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="8e154460c434c2beb7dc268aac77c5b8b52c4abb" resname="registration:collection.out-dated"> + <source>registration:collection.out-dated</source> + <target state="new">registration:collection.out-dated</target> + <jms:reference-file line="58">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="ec1982774689f302e8d8549a12d99a3e41525648" resname="registration:collection.pending"> + <source>registration:collection.pending</source> + <target state="new">registration:collection.pending</target> + <jms:reference-file line="60">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="fcaffe2361d5da4c38aaf4c02d2b944c29db7da1" resname="registration:collection.registrable"> + <source>registration:collection.registrable</source> + <target state="new">registration:collection.registrable</target> + <jms:reference-file line="54">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="7abb365333a7902838022d4bfc560f41323abb7c" resname="registration:collection.rejected"> + <source>registration:collection.rejected</source> + <target state="new">registration:collection.rejected</target> + <jms:reference-file line="62">web/account/access.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="796a49ee2759063c6ffcb69cb54bc55b92020af5" resname="reponses:: %total% Resultats" approved="yes"> <source>reponses:: %total% Resultats</source> <target state="translated">%total% results</target> @@ -11557,22 +11670,24 @@ It is possible to place several search areas</target> <trans-unit id="04e3a887b050c987ecd5ed86b775e09a92ccddd6" resname="reponses:: images par pages :" approved="yes"> <source>reponses:: images par pages :</source> <target state="translated">Results per page</target> - <jms:reference-file line="659">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="750">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5aeb7a518f4ac89f3db531fc3e4efb7dd5e11182" resname="reponses:: mode liste" approved="yes"> <source>reponses:: mode liste</source> <target state="translated">List</target> - <jms:reference-file line="612">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="703">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f3f71ef37b35e713c5dcea151d066ec447e95579" resname="reponses:: mode vignettes" approved="yes"> <source>reponses:: mode vignettes</source> <target state="translated">Thumbnails</target> - <jms:reference-file line="608">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="699">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cf0636b6d894370de0b8a9d6f2dceb07ad46f800" resname="reponses:: partager" approved="yes"> <source>reponses:: partager</source> <target state="translated">Share</target> - <jms:reference-file line="140">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="150">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="151">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="152">prod/results/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4e25e3a99801b881f73fe940cac50b0fc636d6cf" resname="reponses:: selectionner rien" approved="yes"> <source>reponses:: selectionner rien</source> @@ -11587,115 +11702,55 @@ It is possible to place several search areas</target> <trans-unit id="d3b5a64da3a08e4a63a641fb4164844ecdb67a2f" resname="reponses:: taille des images :" approved="yes"> <source>reponses:: taille des images :</source> <target state="translated">Thumbnails size</target> - <jms:reference-file line="666">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="757">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e32952b1a087c6ba28e13097e0ebb5395c2f2105" resname="reponses::document sans titre" approved="yes"> <source>reponses::document sans titre</source> <target state="translated">Untitled</target> - <jms:reference-file line="934">classes/record/adapter.php</jms:reference-file> - </trans-unit> - <trans-unit id="e1fd199951b7475ef26b375b42056b7619abdfb9" resname="report :: aucun resultat trouve" approved="yes"> - <source>report :: aucun resultat trouve</source> - <target state="translated">No Result</target> - <jms:reference-file line="115">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="dde6a50f70eb651f8e8b72e4d19c826ed474f62f" resname="report :: configurer le tableau" approved="yes"> - <source>report :: configurer le tableau</source> - <target state="translated">Setup table</target> - <jms:reference-file line="15">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="4b5e07be61a6dbe3f4b635225bed3513f93472a5" resname="report :: filtrer" approved="yes"> - <source>report :: filtrer</source> - <target state="translated">Filter</target> - <jms:reference-file line="62">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="f9891f9435be957f4dd0901856d8cb2e49e48f9f" resname="report :: grouper" approved="yes"> - <source>report :: grouper</source> - <target state="translated">Group</target> - <jms:reference-file line="66">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="089ca06ac338646a81d97f218405812b04d88182" resname="report :: imprimer le tableau" approved="yes"> - <source>report :: imprimer le tableau</source> - <target state="translated">Print table</target> - <jms:reference-file line="18">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="1c2a928659706b02208f44cfe76294f5a3c3e788" resname="report:: (connexions) Globales" approved="yes"> - <source>report:: (connexions) Globales</source> - <target state="translated">All connections</target> - <jms:reference-file line="87">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="daaac8fc71cfa4f27496b88c286789c66aeb104a" resname="report:: (connexions) OS et navigateurs" approved="yes"> - <source>report:: (connexions) OS et navigateurs</source> - <target state="translated"><![CDATA[Platforms & Browsers]]></target> - <jms:reference-file line="91">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="8a190fa937cca670cc7ae51eb822dd4e7adffc03" resname="report:: (connexions) Par utilisateurs" approved="yes"> - <source>report:: (connexions) Par utilisateurs</source> - <target state="translated">Per users</target> - <jms:reference-file line="71">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="68ed1e7f53fb514c611feeb9849a396352d28fd2" resname="report:: (telechargement) Global" approved="yes"> - <source>report:: (telechargement) Global</source> - <target state="translated">All downloads</target> - <jms:reference-file line="135">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="9f849cd5fb7a65d33e1ec022c8f0e28cd25c63d3" resname="report:: (telechargement) Par documents sur la base" approved="yes"> - <source>report:: (telechargement) Par documents sur la base</source> - <target state="translated">Per documents, from database</target> - <jms:reference-file line="143">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="de74bbae455a47c9404da8d0883534456eddd1e5" resname="report:: (telechargement) Par jours base par base" approved="yes"> - <source>report:: (telechargement) Par jours base par base</source> - <target state="translated">Daily</target> - <jms:reference-file line="139">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="938">classes/record/adapter.php</jms:reference-file> </trans-unit> <trans-unit id="0e0b1a1001cc76b95ef11cd1c208c87a03743b4b" resname="report:: 1 - Periode" approved="yes"> <source>report:: 1 - Periode</source> - <target state="translated">1 - Time space</target> - <jms:reference-file line="4">web/report/form_date_and_base.html.twig</jms:reference-file> + <target state="translated">Time Range</target> + <jms:reference-file line="3">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="dff8c22d33c5488a01a5834535dff916fe5d6487" resname="report:: 2 - Bases" approved="yes"> - <source>report:: 2 - Bases</source> - <target state="translated">2 - Databases</target> - <jms:reference-file line="19">web/report/form_date_and_base.html.twig</jms:reference-file> + <trans-unit id="87cb22fb5598f714cf44b13ef0d2fcfa0fe1e01a" resname="report:: 2 - Base" approved="yes"> + <source>report:: 2 - Base</source> + <target state="translated">Database</target> + <jms:reference-file line="26">web/report/form_date_and_base.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="49e279e2253aaf0d8aebad389584f5c7c77e5a78" resname="report:: 3 - Collections" approved="yes"> + <source>report:: 3 - Collections</source> + <target state="translated">Collections</target> + <jms:reference-file line="39">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a807c0ef7e32813081616c65bbc134acdf30666b" resname="report:: 3 - Type de report" approved="yes"> <source>report:: 3 - Type de report</source> - <target state="translated">3 - Type of report</target> - <jms:reference-file line="67">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="115">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="171">web/report/report_layout_child.html.twig</jms:reference-file> + <target state="translated">Type of report</target> + <jms:reference-file line="11">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="36">web/report/report_layout_child.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="bbf54f30e0791db4dc06243d939468640ddb6cc5" resname="report:: 4 - Fields" approved="yes"> + <source>report:: 4 - Fields</source> + <target state="translated">Fields</target> + <jms:reference-file line="62">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="67272ff4fb66e47f6a5e55c7171e994c69b6f162" resname="report:: Au (date)" approved="yes"> <source>report:: Au (date)</source> <target state="translated">To</target> - <jms:reference-file line="12">web/report/form_date_and_base.html.twig</jms:reference-file> - <jms:reference-file line="9">web/report/ajax_report_dashboard.html.twig</jms:reference-file> + <jms:reference-file line="15">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> <trans-unit id="10f8b6e84219c04ef9961e1710b17e0904746fab" resname="report:: Connexion" approved="yes"> <source>report:: Connexion</source> <target state="translated">Connections</target> <jms:reference-file line="666">classes/module/report.php</jms:reference-file> - <jms:reference-file line="8">web/report/report_layout.html.twig</jms:reference-file> - <jms:reference-file line="59">web/report/ajax_data_content.html.twig</jms:reference-file> - <jms:reference-file line="108">web/report/ajax_data_content.html.twig</jms:reference-file> - <jms:reference-file line="26">web/report/all_content.html.twig</jms:reference-file> - <jms:reference-file line="8">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="13">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="17">web/report/chart.html.twig</jms:reference-file> - <jms:reference-file line="43">web/report/chart.html.twig</jms:reference-file> + <jms:reference-file line="9">web/report/report_layout.html.twig</jms:reference-file> + <jms:reference-file line="25">web/report/all_content.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="70a2e2ecaac5729f9c103110e2f37f915c722526" resname="report:: Cumul telechargements & connexions" approved="yes"> - <source><![CDATA[report:: Cumul telechargements & connexions]]></source> - <target state="translated">Cumulated connexions and downloads</target> - <jms:reference-file line="25">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="6543d1226df7dd63e1df3071abb9e42be332413a" resname="report:: Dashboard" approved="yes"> - <source>report:: Dashboard</source> - <target state="translated">Dashboard</target> - <jms:reference-file line="7">web/report/report_layout.html.twig</jms:reference-file> - <jms:reference-file line="2">web/report/ajax_dashboard_content.html.twig</jms:reference-file> - <jms:reference-file line="21">web/report/ajax_report_dashboard.html.twig</jms:reference-file> + <trans-unit id="afa9685c95f7dff29cb2ad048da368c6e3dbadbc" resname="report:: Databox content" approved="yes"> + <source>report:: Databox content</source> + <target state="translated">Databox content</target> + <jms:reference-file line="11">web/report/report_layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="afa00f7f0e9cf982c242e1a53235360b4aac707d" resname="report:: Detail des connexions" approved="yes"> <source>report:: Detail des connexions</source> @@ -11710,30 +11765,17 @@ It is possible to place several search areas</target> <trans-unit id="b00438fba3b211fc47deec5e6ccae27ef9d7c216" resname="report:: Du (date)" approved="yes"> <source>report:: Du (date)</source> <target state="translated">From</target> - <jms:reference-file line="6">web/report/form_date_and_base.html.twig</jms:reference-file> - <jms:reference-file line="5">web/report/ajax_report_dashboard.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="de563e5406946f25c4f6cb63311dbea280ef5cc5" resname="report:: Enlever le filtre" approved="yes"> - <source>report:: Enlever le filtre</source> - <target state="translated">Remove filter</target> - <jms:reference-file line="5">web/report/colFilter.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="7d66db3bd34ddc505fd6721d4ffabfa19c4f005f" resname="report:: Grouper par" approved="yes"> - <source>report:: Grouper par</source> - <target state="translated">Group by %s</target> - <jms:reference-file line="76">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="119">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="5">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7f326bdbbc7dec4c7f61a0e4b22465d0479c0d64" resname="report:: Heures" approved="yes"> <source>report:: Heures</source> <target state="translated">Hours</target> - <jms:reference-file line="33">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="32">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5ae2efd275a14a59f28c95f331168286f11197cf" resname="report:: IP" approved="yes"> <source>report:: IP</source> <target state="translated">IP</target> <jms:reference-file line="72">module/report/filter.php</jms:reference-file> - <jms:reference-file line="154">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="6b4276e87d8e054cabe49ed3b9bf7ee9f6599cba" resname="report:: Information sur l'enregistrement numero %number%" approved="yes"> <source>report:: Information sur l'enregistrement numero %number%</source> @@ -11755,97 +11797,37 @@ It is possible to place several search areas</target> <target state="translated">Users information corresponding to %critere%</target> <jms:reference-file line="415">module/report/nav.php</jms:reference-file> </trans-unit> - <trans-unit id="449ab664cb3a86585e7942d12693cfe75ca80e9b" resname="report:: Les questions les plus posees" approved="yes"> - <source>report:: Les questions les plus posees</source> - <target state="translated">Top questions</target> - <jms:reference-file line="181">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="67">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> + <trans-unit id="d61b0b1a419a5b37db8576e1072307a5503dba79" resname="report:: Phraseanet report" approved="yes"> + <source>report:: Phraseanet report</source> + <target state="translated">Phraseanet report</target> + <jms:reference-file line="6">web/report/report_layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a5c2d01ec9cd2716cb44a02ba1851d82de40aa8a" resname="report:: Plateforme" approved="yes"> <source>report:: Plateforme</source> <target state="translated">Platform</target> <jms:reference-file line="160">module/report/nav.php</jms:reference-file> </trans-unit> - <trans-unit id="7745037fc8189172f2a349bed3b123b9ac4222df" resname="report:: Utilisateurs les plus actifs" approved="yes"> - <source>report:: Utilisateurs les plus actifs</source> - <target state="translated">Most active users</target> - <jms:reference-file line="31">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="37">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="43">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="49">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="89e1f53ec411b155207ca8489388aafffe430392" resname="report:: Volumetrie des questions posees sur %home_title%" approved="yes"> - <source>report:: Volumetrie des questions posees sur %home_title%</source> - <target state="translated">Questions asked</target> - <jms:reference-file line="41">web/report/dashboard_macro.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="0deee30b968da91f95a0daf3b988fb8613bcf4f5" resname="report:: activite" approved="yes"> <source>report:: activite</source> <target state="translated">Activity</target> <jms:reference-file line="672">classes/module/report.php</jms:reference-file> - <jms:reference-file line="217">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="286">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="285">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="80">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="123">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="b6c3ea1902c9399e1093a448712995eae208adab" resname="report:: activite document ajoute" approved="yes"> - <source>report:: activite document ajoute</source> - <target state="translated">Added documents</target> - <jms:reference-file line="17">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="0d7f08a0cf0531e4e366cc80a773e2f9ad1b5e22" resname="report:: activite document edite" approved="yes"> - <source>report:: activite document edite</source> - <target state="translated">Edited documents</target> - <jms:reference-file line="21">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="ca241fec577d1f3f2ea4f18ba45d9c0e3fba73a4" resname="report:: activite du site" approved="yes"> - <source>report:: activite du site</source> - <target state="translated">Site activity</target> - <jms:reference-file line="189">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="10">web/report/report_layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a4bdfeb6e1b025de825e5a05e564a3c58622ffe5" resname="report:: activite par heure" approved="yes"> <source>report:: activite par heure</source> <target state="translated">Hourly Activity (average)</target> <jms:reference-file line="96">module/report/activity.php</jms:reference-file> - <jms:reference-file line="7">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="ea76b4d0267c77fa551c829102db6366204f4b52" resname="report:: activite par jour" approved="yes"> - <source>report:: activite par jour</source> - <target state="translated">Daily Activity</target> - <jms:reference-file line="12">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="6">web/report/chart.html.twig</jms:reference-file> - <jms:reference-file line="30">web/report/chart.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="395a5695445d90bc2b53cd146a4aeb877a473155" resname="report:: adresse" approved="yes"> - <source>report:: adresse</source> - <target state="translated">Address</target> - <jms:reference-file line="42">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="432">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="82c2454cb127671a7f8bfb0dd6b8140affa1d868" resname="report:: ajoute" approved="yes"> - <source>report:: ajoute</source> - <target state="translated">Added</target> - <jms:reference-file line="196">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="48808e405192603e079ef1ccbbc1a1df98e317bd" resname="report:: collections" approved="yes"> <source>report:: collections</source> <target state="translated">Collections</target> - <jms:reference-file line="96">module/report/filter.php</jms:reference-file> <jms:reference-file line="665">classes/module/report.php</jms:reference-file> - <jms:reference-file line="283">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="53">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="282">Controller/Report/InformationController.php</jms:reference-file> + <jms:reference-file line="96">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="6a1193a920be0725a4560344ca10db36147ffd34" resname="report:: commentaire" approved="yes"> <source>report:: commentaire</source> <target state="translated">Comments</target> - <jms:reference-file line="99">module/report/filter.php</jms:reference-file> <jms:reference-file line="667">classes/module/report.php</jms:reference-file> - <jms:reference-file line="284">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="54">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="283">Controller/Report/InformationController.php</jms:reference-file> + <jms:reference-file line="99">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="51f822380b654c4fc5adb28eb0643f37aac0d89b" resname="report:: copyright" approved="yes"> <source>report:: copyright</source> @@ -11855,184 +11837,74 @@ It is possible to place several search areas</target> <trans-unit id="cf3a5321aa85f0706b89021206bd8cd1ad57da54" resname="report:: date" approved="yes"> <source>report:: date</source> <target state="translated">Date</target> - <jms:reference-file line="69">module/report/filter.php</jms:reference-file> <jms:reference-file line="669">classes/module/report.php</jms:reference-file> <jms:reference-file line="670">classes/module/report.php</jms:reference-file> - <jms:reference-file line="153">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="215">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="280">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="33">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="46">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="50">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="58">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="272">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="279">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="0fa74ac37777e4846a6b7521f508fe82f30fbc28" resname="report:: document" approved="yes"> - <source>report:: document</source> - <target state="translated">document</target> - <jms:reference-file line="31">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="270">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="292">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="193">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="56">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> + <jms:reference-file line="69">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="e125eaf6fca2110f86b6ebba60371a4875c87e03" resname="report:: document ajoute" approved="yes"> <source>report:: document ajoute</source> <target state="translated">Documents added</target> <jms:reference-file line="46">module/report/add.php</jms:reference-file> </trans-unit> - <trans-unit id="3b1da6e09ede169472dc0f7c993a2244b370f5f0" resname="report:: documents les plus telecharges" approved="yes"> - <source>report:: documents les plus telecharges</source> - <target state="translated">Most downloaded assets</target> - <jms:reference-file line="55">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="562beb1d0fc9d02c136608897f50040ba8227991" resname="report:: edite" approved="yes"> - <source>report:: edite</source> - <target state="translated">Caption Edited</target> - <jms:reference-file line="197">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="3d92b0d797813422ee66dbddda64e6f1f084b371" resname="report:: edited documents" approved="yes"> <source>report:: edited documents</source> <target state="translated">Edited documents</target> <jms:reference-file line="46">module/report/edit.php</jms:reference-file> </trans-unit> - <trans-unit id="98d23f79f60fb1e256100832301d040710dea789" resname="report:: email" approved="yes"> - <source>report:: email</source> - <target state="translated">E-mail</target> - <jms:reference-file line="41">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="431">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> <trans-unit id="fd08db9190c0edd6acd0ad385708b302e8c972ea" resname="report:: fichier" approved="yes"> <source>report:: fichier</source> <target state="translated">File</target> <jms:reference-file line="681">classes/module/report.php</jms:reference-file> - <jms:reference-file line="353">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="b64c2533c7b357659df3ea9dfb02aec00e95283f" resname="report:: fonction" approved="yes"> <source>report:: fonction</source> <target state="translated">Job</target> <jms:reference-file line="671">classes/module/report.php</jms:reference-file> - <jms:reference-file line="216">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="285">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="284">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="78">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="121">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="7371da035f95b6a29593e199feaae2e2882ef328" resname="report:: historique des connexions" approved="yes"> - <source>report:: historique des connexions</source> - <target state="translated">Connections</target> - <jms:reference-file line="88">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="ec7fa3164a52b7983e9ca8ac683dbcf279b1ca4a" resname="report:: historique des questions" approved="yes"> - <source>report:: historique des questions</source> - <target state="translated">Query log</target> - <jms:reference-file line="108">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="bb8aaa1753d6ae6e697f9ecbe83939c4c1e274f9" resname="report:: historique des telechargements" approved="yes"> - <source>report:: historique des telechargements</source> - <target state="translated">Downloads</target> - <jms:reference-file line="98">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="400">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="8ebc8d8e0aeeb34323009f7ac75fdd9f42763ba4" resname="report:: identifiant" approved="yes"> - <source>report:: identifiant</source> - <target state="translated">User id</target> - <jms:reference-file line="39">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="429">Controller/Report/InformationController.php</jms:reference-file> </trans-unit> <trans-unit id="48b9186d83e31f25e35119e7be71d4e2210c1954" resname="report:: jour" approved="yes"> <source>report:: jour</source> <target state="translated">Day</target> - <jms:reference-file line="289">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="32">web/report/all_content.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="dc0c59066058c42d9fafce659f68c2219c40953f" resname="report:: module" approved="yes"> - <source>report:: module</source> - <target state="translated">Modules</target> - <jms:reference-file line="432">Controller/Report/RootController.php</jms:reference-file> + <jms:reference-file line="31">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3aa60d109af43ca18e495aec94997a7885ce9029" resname="report:: modules" approved="yes"> <source>report:: modules</source> <target state="translated">Modules</target> <jms:reference-file line="339">module/report/nav.php</jms:reference-file> <jms:reference-file line="75">module/report/filter.php</jms:reference-file> - <jms:reference-file line="155">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="47">Controller/Report/InformationController.php</jms:reference-file> </trans-unit> <trans-unit id="639e7baf3ce4f23e399e47a2f29958adaa26f8ba" resname="report:: navigateur" approved="yes"> <source>report:: navigateur</source> <target state="translated">Browser</target> <jms:reference-file line="103">module/report/nav.php</jms:reference-file> - <jms:reference-file line="411">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="4f5626f82ffbe13488f3fc8a706c90e52d7845fb" resname="report:: navigateurs et plateforme" approved="yes"> <source>report:: navigateurs et plateforme</source> <target state="translated">Browsers and Platform</target> <jms:reference-file line="277">module/report/nav.php</jms:reference-file> - <jms:reference-file line="417">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="58caf40106dec978fc4988c3bd7893b38ede9d83" resname="report:: nom" approved="yes"> - <source>report:: nom</source> - <target state="translated">Name</target> - <jms:reference-file line="40">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="430">Controller/Report/InformationController.php</jms:reference-file> </trans-unit> <trans-unit id="da20260fb0ffb7f91e8659e3ccf8feb8ee778993" resname="report:: nombre" approved="yes"> <source>report:: nombre</source> <target state="translated">Number</target> <jms:reference-file line="675">classes/module/report.php</jms:reference-file> - <jms:reference-file line="412">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="418">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="423">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="428">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="433">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="75">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="227">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="138">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="189">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="99117f398785adcf45e8499ad8d1443c621ca4e8" resname="report:: nombre de documents" approved="yes"> - <source>report:: nombre de documents</source> - <target state="translated">Occurrences</target> - <jms:reference-file line="83">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="e29ea3e14febc313f90283459d28f04a05ec19a7" resname="report:: nombre de preview" approved="yes"> - <source>report:: nombre de preview</source> - <target state="translated">number of preview(s)</target> - <jms:reference-file line="84">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="52a2c7c51c95719594e526c51995fec2cff55c9a" resname="report:: nombre de reponses" approved="yes"> - <source>report:: nombre de reponses</source> - <target state="translated">Average hits</target> - <jms:reference-file line="139">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="190">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="93456bfa01cd90120e67a0eca305d3f7a94a3842" resname="report:: nombre de vue" approved="yes"> - <source>report:: nombre de vue</source> - <target state="translated">Number of displays</target> - <jms:reference-file line="80">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="26d00286d5aecf7cfda0e1395c4208440409b8c0" resname="report:: non-renseigne" approved="yes"> <source>report:: non-renseigne</source> <target state="translated">Not filled</target> <jms:reference-file line="110">module/report/add.php</jms:reference-file> - <jms:reference-file line="161">module/report/download.php</jms:reference-file> - <jms:reference-file line="464">module/report/nav.php</jms:reference-file> - <jms:reference-file line="110">module/report/connexion.php</jms:reference-file> - <jms:reference-file line="118">module/report/connexion.php</jms:reference-file> - <jms:reference-file line="123">module/report/connexion.php</jms:reference-file> <jms:reference-file line="99">module/report/question.php</jms:reference-file> + <jms:reference-file line="161">module/report/download.php</jms:reference-file> <jms:reference-file line="411">module/report/activity.php</jms:reference-file> <jms:reference-file line="508">module/report/activity.php</jms:reference-file> <jms:reference-file line="520">module/report/activity.php</jms:reference-file> - <jms:reference-file line="60">module/report/filter.php</jms:reference-file> + <jms:reference-file line="110">module/report/connexion.php</jms:reference-file> + <jms:reference-file line="118">module/report/connexion.php</jms:reference-file> + <jms:reference-file line="123">module/report/connexion.php</jms:reference-file> <jms:reference-file line="117">module/report/push.php</jms:reference-file> - <jms:reference-file line="117">module/report/validate.php</jms:reference-file> - <jms:reference-file line="114">module/report/edit.php</jms:reference-file> <jms:reference-file line="117">module/report/sent.php</jms:reference-file> - <jms:reference-file line="9">web/report/colFilter.html.twig</jms:reference-file> - <jms:reference-file line="15">web/report/colFilter.html.twig</jms:reference-file> + <jms:reference-file line="117">module/report/validate.php</jms:reference-file> + <jms:reference-file line="464">module/report/nav.php</jms:reference-file> + <jms:reference-file line="114">module/report/edit.php</jms:reference-file> + <jms:reference-file line="60">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="07c06c0cac8bd3e3507a72d6cb7fa1ee23a6bf13" resname="report:: page d'accueil" approved="yes"> <source>report:: page d'accueil</source> @@ -12046,68 +11918,15 @@ It is possible to place several search areas</target> <target state="translated">By %user_infos%</target> <jms:reference-file line="61">prod/preview/short_history.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="a3817f71ee24b8f9847baa3f3d2088e43114faff" resname="report:: par utilisateurs" approved="yes"> - <source>report:: par utilisateurs</source> - <target state="translated">Per Users</target> - <jms:reference-file line="130">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="45882e1904416b4c1e53b2d47a6f192e4c0e1c14" resname="report:: pays" approved="yes"> <source>report:: pays</source> <target state="translated">Country</target> <jms:reference-file line="673">classes/module/report.php</jms:reference-file> - <jms:reference-file line="218">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="287">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="286">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="81">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="124">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="eda7d4be8f5577170dd7f9c72b3f82d265b93637" resname="report:: plateforme" approved="yes"> - <source>report:: plateforme</source> - <target state="translated">Platform</target> - <jms:reference-file line="422">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="0e1edcbd4dbff06db1c2530bb1b8ea321fa6c86d" resname="report:: poids" approved="yes"> - <source>report:: poids</source> - <target state="translated">Size</target> - <jms:reference-file line="36">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="275">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="bed7cfb242a47b51f45d31d6f7534f53e4343f66" resname="report:: poids document" approved="yes"> - <source>report:: poids document</source> - <target state="translated">Original document filesize</target> - <jms:reference-file line="45">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="cc3a07e0f69d3e9fc7067b6053727ae59f701f76" resname="report:: poids preview" approved="yes"> - <source>report:: poids preview</source> - <target state="translated">Preview filesize</target> - <jms:reference-file line="51">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="74">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="eb41f1fd9d2f3c6bb5ab0cb3c13b59eff29a2d99" resname="report:: pourcentage" approved="yes"> <source>report:: pourcentage</source> <target state="translated">Percentage</target> <jms:reference-file line="676">classes/module/report.php</jms:reference-file> - <jms:reference-file line="413">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="419">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="424">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="429">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="434">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="e8f9a2fcac1f24e878349bd855fd00cd2014dd1d" resname="report:: preview" approved="yes"> - <source>report:: preview</source> - <target state="translated">Subviews</target> - <jms:reference-file line="291">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="62">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="14ea0ad72add93f38be10e87f3b4b08c58e31936" resname="report:: preview les plus telecharges" approved="yes"> - <source>report:: preview les plus telecharges</source> - <target state="translated">Most downloaded preview files</target> - <jms:reference-file line="61">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="59bf65358205d118e78e021aa3a14a066612beb3" resname="report:: pushe" approved="yes"> - <source>report:: pushe</source> - <target state="translated">Pushed</target> - <jms:reference-file line="195">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2fa04c59764b5ce330158195b45e3f0f71c430b1" resname="report:: pushed documents" approved="yes"> <source>report:: pushed documents</source> @@ -12117,15 +11936,9 @@ It is possible to place several search areas</target> <trans-unit id="8df95f5dffb705018ebae64a4850f1f93bafc098" resname="report:: question" approved="yes"> <source>report:: question</source> <target state="translated">Query</target> + <jms:reference-file line="668">classes/module/report.php</jms:reference-file> <jms:reference-file line="43">module/report/question.php</jms:reference-file> <jms:reference-file line="102">module/report/filter.php</jms:reference-file> - <jms:reference-file line="668">classes/module/report.php</jms:reference-file> - <jms:reference-file line="214">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="57">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="137">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="188">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="69">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="73">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b9ef4ecd16724b3218cf46f9956b8b157498c3a1" resname="report:: questions" approved="yes"> <source>report:: questions</source> @@ -12141,55 +11954,27 @@ It is possible to place several search areas</target> <source>report:: questions sans reponses</source> <target state="translated">Unanswered questions</target> <jms:reference-file line="212">module/report/activity.php</jms:reference-file> - <jms:reference-file line="185">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8fb18670b89f5cefede425401428a70189f654ea" resname="report:: record id" approved="yes"> <source>report:: record id</source> <target state="translated">recordId</target> - <jms:reference-file line="90">module/report/filter.php</jms:reference-file> <jms:reference-file line="678">classes/module/report.php</jms:reference-file> - <jms:reference-file line="281">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="351">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="32">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="51">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="271">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="dafda7f4df37c3e876cc478aa3b5733e1ee72bba" resname="report:: recordid" approved="yes"> - <source>report:: recordid</source> - <target state="translated">recordId</target> - <jms:reference-file line="147">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="90">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="a11e1e1373aae28668cdf7a08486e767283bbaa2" resname="report:: resolution" approved="yes"> <source>report:: resolution</source> <target state="translated">Screen resolution</target> <jms:reference-file line="217">module/report/nav.php</jms:reference-file> - <jms:reference-file line="427">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="c137593838c7cdfab2c2e386539151b90b4e45ed" resname="report:: site" approved="yes"> - <source>report:: site</source> - <target state="translated">Site</target> - <jms:reference-file line="79">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="4b47102c55ce755def67c13bd17568180f253c83" resname="report:: site d'ou les photo sont les plus consultees" approved="yes"> - <source>report:: site d'ou les photo sont les plus consultees</source> - <target state="translated">Consultation site</target> - <jms:reference-file line="78">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="44139fc886784bf1efa8198f67265ce6e84a286d" resname="report:: societe" approved="yes"> <source>report:: societe</source> <target state="translated">Company</target> <jms:reference-file line="674">classes/module/report.php</jms:reference-file> - <jms:reference-file line="219">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="288">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="287">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="79">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="122">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a36015011c70e326dcef4351b2aa63355e68ee38" resname="report:: taille" approved="yes"> <source>report:: taille</source> <target state="translated">Size</target> <jms:reference-file line="683">classes/module/report.php</jms:reference-file> - <jms:reference-file line="355">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="c2382e7d59ab82111739acaea80c65d01aa5f248" resname="report:: telechargement" approved="yes"> <source>report:: telechargement</source> @@ -12200,54 +11985,17 @@ It is possible to place several search areas</target> <source>report:: telechargements</source> <target state="translated">Downloads</target> <jms:reference-file line="44">module/report/download.php</jms:reference-file> - <jms:reference-file line="350">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="9">web/report/report_layout.html.twig</jms:reference-file> - <jms:reference-file line="26">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="57">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="63">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="26297a76b38e5df1ac25352f5f3063349e94992b" resname="report:: telechargements document" approved="yes"> - <source>report:: telechargements document</source> - <target state="translated">Downloads for documents</target> - <jms:reference-file line="33">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> + <jms:reference-file line="10">web/report/report_layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="338e3b26caf39e2f5a23b29047a353b99655817d" resname="report:: telechargements par jour" approved="yes"> <source>report:: telechargements par jour</source> <target state="translated">Downloads</target> <jms:reference-file line="269">module/report/activity.php</jms:reference-file> </trans-unit> - <trans-unit id="46b1963bc2dee84ba3e8dbe3aa1beb05e5f1bc8c" resname="report:: telechargements preview" approved="yes"> - <source>report:: telechargements preview</source> - <target state="translated">Downloads for previews</target> - <jms:reference-file line="39">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="fdf87efee0312793d6f07abe5dfd8017a8d2cdab" resname="report:: telephone" approved="yes"> - <source>report:: telephone</source> - <target state="translated">Phone</target> - <jms:reference-file line="43">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="433">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="94c22d8bf4371687e036c83c828703cf00887ce8" resname="report:: titre" approved="yes"> - <source>report:: titre</source> - <target state="translated">Title</target> - <jms:reference-file line="35">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="274">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="1d4c2c8fdf71cb515e7cff4e311e6b253e85bd64" resname="report:: total des telechargements" approved="yes"> - <source>report:: total des telechargements</source> - <target state="translated">Total downloads</target> - <jms:reference-file line="290">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="f82c48bb319dc1043607f84df4058022eb8efe09" resname="report:: toutes les questions" approved="yes"> - <source>report:: toutes les questions</source> - <target state="translated">Top questions</target> - <jms:reference-file line="177">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="83a8ccb59af870b7f987c86298c4202245b45065" resname="report:: type" approved="yes"> <source>report:: type</source> <target state="translated">Screen type</target> <jms:reference-file line="682">classes/module/report.php</jms:reference-file> - <jms:reference-file line="354">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="96383afe0eb9f0bfa7c5675c43cf4c91ba574d01" resname="report:: type d'action" approved="yes"> <source>report:: type d'action</source> @@ -12258,31 +12006,12 @@ It is possible to place several search areas</target> <source>report:: utilisateur</source> <target state="translated">User</target> <jms:reference-file line="664">classes/module/report.php</jms:reference-file> - <jms:reference-file line="213">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="446">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="82">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="91205c26aeb3508157493bd6061deaa0f88472c1" resname="report:: utilisateurs" approved="yes"> - <source>report:: utilisateurs</source> - <target state="translated">Users</target> - <jms:reference-file line="279">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="280">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="32">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="38">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="44">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="50">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="68">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="891b8069620627c198fe372a8b49534f99eea2c3" resname="report:: validated documents" approved="yes"> <source>report:: validated documents</source> <target state="translated">Validated documents</target> <jms:reference-file line="46">module/report/validate.php</jms:reference-file> </trans-unit> - <trans-unit id="9eb84fccd4c8c325b4e18275f2657b48a8734355" resname="report:: valide" approved="yes"> - <source>report:: valide</source> - <target state="translated">Leave feedback</target> - <jms:reference-file line="198">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="1d900ae5b08909338f17350122691995bf9174b9" resname="report:: visualiseur cooliris" approved="yes"> <source>report:: visualiseur cooliris</source> <target state="translated">Cooliris viewer</target> @@ -12295,11 +12024,6 @@ It is possible to place several search areas</target> <target state="translated">documents moved to : %coll_name%</target> <jms:reference-file line="27">prod/preview/short_history.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="19b4d8a8be30b7ffef27c51a9821d3d6415e9f2d" resname="report::Connexion" approved="yes"> - <source>report::Connexion</source> - <target state="translated">Connection</target> - <jms:reference-file line="27">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="419829b982162d12659c70a94a0aa6aafaa8df13" resname="report::Connexions" approved="yes"> <source>report::Connexions</source> <target state="translated">Connections</target> @@ -12323,8 +12047,7 @@ It is possible to place several search areas</target> <trans-unit id="339f9743dbb91b02034bec976942c35a8323a473" resname="report::Heures" approved="yes"> <source>report::Heures</source> <target state="translated">Hours</target> - <jms:reference-file line="58">web/report/ajax_data_content.html.twig</jms:reference-file> - <jms:reference-file line="27">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="26">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0f6f1e90647a3d5f5d7e170268881acc65f33f59" resname="report::Impression des formats : %format%" approved="yes"> <source>report::Impression des formats : %format%</source> @@ -12339,17 +12062,17 @@ It is possible to place several search areas</target> <trans-unit id="04141c12be7f11b46805e97c0f399934ed84d614" resname="report::Nombre de connexions" approved="yes"> <source>report::Nombre de connexions</source> <target state="translated">Connections</target> - <jms:reference-file line="31">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="30">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="605f8acc726fd40f1d7112e794cae6f51970b6ad" resname="report::Nombre de document ajoute" approved="yes"> <source>report::Nombre de document ajoute</source> <target state="translated">Number of documents added</target> - <jms:reference-file line="34">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="33">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8a138bd895ef7905fd7f338cf0854b0cbe0c8f03" resname="report::Nombre de document edite" approved="yes"> <source>report::Nombre de document edite</source> <target state="translated">Number of documents edited</target> - <jms:reference-file line="35">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="34">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="acce57a36feb4a2af81035dcb6c878555dc131bd" resname="report::Publication de %dest%" approved="yes"> <source>report::Publication de %dest%</source> @@ -12386,56 +12109,37 @@ It is possible to place several search areas</target> <source>report::activite</source> <target state="translated">Activity</target> <jms:reference-file line="81">module/report/filter.php</jms:reference-file> - <jms:reference-file line="157">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="002c70f6ab109c3160dc534f93c03d56b342cf10" resname="report::ajout du documentt" approved="yes"> <source>report::ajout du documentt</source> <target state="translated">Add document</target> <jms:reference-file line="53">prod/preview/short_history.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="4d3fc1f99d957aa50573f067f78ad75cd7ef9842" resname="report::aucune precision" approved="yes"> - <source>report::aucune precision</source> - <target state="translated">No filters</target> - <jms:reference-file line="145">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="de28bcec9376030978303c519bd3d5ef776ea7bd" resname="report::fonction" approved="yes"> <source>report::fonction</source> <target state="translated">Fonction</target> <jms:reference-file line="78">module/report/filter.php</jms:reference-file> - <jms:reference-file line="156">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="b04965bc5402acc4541bf683229cbd0af38dce6e" resname="report::la description contient" approved="yes"> - <source>report::la description contient</source> - <target state="translated">Caption includes</target> - <jms:reference-file line="146">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="20f07835433875d2e66adcb6a4203981359500b7" resname="report::pays" approved="yes"> <source>report::pays</source> <target state="translated">Country</target> <jms:reference-file line="84">module/report/filter.php</jms:reference-file> - <jms:reference-file line="158">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="afacc25a02d9dee7b2e85d3d86835ff4dba28822" resname="report::societe" approved="yes"> <source>report::societe</source> <target state="translated">Company</target> <jms:reference-file line="87">module/report/filter.php</jms:reference-file> - <jms:reference-file line="159">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="3fc0f2a0d459b0ae67244939abeda1868f5b1a51" resname="report::supression du document" approved="yes"> <source>report::supression du document</source> <target state="translated">Delete document</target> <jms:reference-file line="51">prod/preview/short_history.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="f80375b1b5a6632f3a2db88b757e1734865ad753" resname="report::version" approved="yes"> - <source>report::version</source> - <target state="translated">Version</target> - <jms:reference-file line="226">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> <trans-unit id="386c42eb4d167d87be7f7f68faf1aafce1be237e" resname="reportage" approved="yes"> <source>reportage</source> <target state="translated">Feature</target> - <jms:reference-file line="258">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> - <jms:reference-file line="274">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> + <jms:reference-file line="282">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> + <jms:reference-file line="298">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> </trans-unit> <trans-unit id="55655edb5e7b23c00fe3fe0509be09e674138da6" resname="resultat numero %number%" approved="yes"> <source>resultat numero %number%</source> @@ -12475,7 +12179,7 @@ It is possible to place several search areas</target> <trans-unit id="584d9f9b8a0c51aa1805a1c0ed427c366d11ea5e" resname="screenshot video" approved="yes"> <source>screenshot video</source> <target state="translated">Video screenshot</target> - <jms:reference-file line="99">actions/Tools/videoEditor.html.twig</jms:reference-file> + <jms:reference-file line="112">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="fe29f1a35e814c87a21282378424df4866529d1e" resname="select at least one user" approved="yes"> <source>select at least one user</source> @@ -12537,9 +12241,9 @@ It is possible to place several search areas</target> <target state="needs-translation">Add link</target> <jms:reference-file line="78">web/admin/setup.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="44a5de1cdcf30547c937f197cd3d58e143de62a6" resname="setup::custom-link:help-menu"> + <trans-unit id="44a5de1cdcf30547c937f197cd3d58e143de62a6" resname="setup::custom-link:help-menu" approved="yes"> <source>setup::custom-link:help-menu</source> - <target state="needs-translation">Help Menu</target> + <target state="translated">Help Menu</target> <jms:reference-file line="58">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> <trans-unit id="0286ea45f1074802cfe8fbf84b7c439fb287d0de" resname="setup::custom-link:language-link" approved="yes"> @@ -12557,9 +12261,9 @@ It is possible to place several search areas</target> <target state="new">setup::custom-link:location</target> <jms:reference-file line="57">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="f4db79dfecabb4b9acb44a4b49e9b6b433b28d04" resname="setup::custom-link:location-link"> + <trans-unit id="f4db79dfecabb4b9acb44a4b49e9b6b433b28d04" resname="setup::custom-link:location-link" approved="yes"> <source>setup::custom-link:location-link</source> - <target state="needs-translation">Select Placement ...</target> + <target state="translated">Placement</target> <jms:reference-file line="100">web/admin/setup.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ccfe45428ee9769a865d3d90c0e4dc50a6b68e9c" resname="setup::custom-link:name-link"> @@ -12575,7 +12279,7 @@ It is possible to place several search areas</target> </trans-unit> <trans-unit id="4696021003b181f9acc9261382e07364c6b83036" resname="setup::custom-link:order-link" approved="yes"> <source>setup::custom-link:order-link</source> - <target state="translated">Order</target> + <target state="translated">Display order</target> <jms:reference-file line="101">web/admin/setup.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1b09a3a0a8b0205f23b3fe59074f8dfd72d0b0ae" resname="setup::custom-link:placeholder-link-url"> @@ -12600,7 +12304,7 @@ It is possible to place several search areas</target> </trans-unit> <trans-unit id="f51d8ca24dc67572beccf115c79671ba1c3f545a" resname="share::share-record: select-shared-def" approved="yes"> <source>share::share-record: select-shared-def</source> - <target state="translated">Select a Subview to share</target> + <target state="translated">Select a subview to share</target> <jms:reference-file line="11">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="98693e37d002821e032bfc91ffc5091c3b6d76da" resname="status:: Affichable pour tous" approved="yes"> @@ -12667,12 +12371,12 @@ It is possible to place several search areas</target> <trans-unit id="5e97a32a49cefaf5c4eb26080caf50d7ac7ea102" resname="task::archive:Archivage" approved="yes"> <source>task::archive:Archivage</source> <target state="translated">Archive in collection</target> - <jms:reference-file line="39">TaskManager/Job/ArchiveJob.php</jms:reference-file> + <jms:reference-file line="40">TaskManager/Job/ArchiveJob.php</jms:reference-file> </trans-unit> <trans-unit id="b94199880758a342c5de52be020699d9b789a7a2" resname="task::archive:Archiving files found into a 'hotfolder'" approved="yes"> <source>task::archive:Archiving files found into a 'hotfolder'</source> <target state="translated">Archiving file(s) from hotfolder</target> - <jms:reference-file line="55">TaskManager/Job/ArchiveJob.php</jms:reference-file> + <jms:reference-file line="56">TaskManager/Job/ArchiveJob.php</jms:reference-file> </trans-unit> <trans-unit id="af67e20e5e01d46ece2e0eb262b1b0bb9df679d4" resname="task::archive:archivage sur base/collection/" approved="yes"> <source>task::archive:archivage sur base/collection/</source> @@ -12738,8 +12442,8 @@ It is possible to place several search areas</target> <trans-unit id="b8af196a1703cd1c3079eebef88a1b540ede06ea" resname="task::ftp:Status about your FTP transfert from %application% to %server%" approved="yes"> <source>task::ftp:Status about your FTP transfert from %application% to %server%</source> <target state="translated">FTP transfert status from %application% to %server%</target> - <jms:reference-file line="40">Notification/Mail/MailSuccessFTPReceiver.php</jms:reference-file> <jms:reference-file line="40">Notification/Mail/MailSuccessFTPSender.php</jms:reference-file> + <jms:reference-file line="40">Notification/Mail/MailSuccessFTPReceiver.php</jms:reference-file> </trans-unit> <trans-unit id="3442bca4992e5cd06a67f05beebf5721383d1653" resname="task::ftp:TENTATIVE no %number%, %date%" approved="yes"> <source>task::ftp:TENTATIVE no %number%, %date%</source> @@ -12784,8 +12488,8 @@ It is possible to place several search areas</target> <trans-unit id="c8eadb101df19fb4960c791cf1afaa49d3516feb" resname="task::ftp:proxy" approved="yes"> <source>task::ftp:proxy</source> <target state="translated">Proxy</target> - <jms:reference-file line="5">task-manager/task-editor/ftp-pull.html.twig</jms:reference-file> <jms:reference-file line="5">task-manager/task-editor/ftp.html.twig</jms:reference-file> + <jms:reference-file line="5">task-manager/task-editor/ftp-pull.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d50701eb37a2e5b7dfe3358ba91ff9a1cc6f10ef" resname="task::ftp:proxy password" approved="yes"> <source>task::ftp:proxy password</source> @@ -12795,8 +12499,8 @@ It is possible to place several search areas</target> <trans-unit id="a7e5c84ff2404f76423afe64d0f5b8fbea07c024" resname="task::ftp:proxy port" approved="yes"> <source>task::ftp:proxy port</source> <target state="translated">Port</target> - <jms:reference-file line="11">task-manager/task-editor/ftp-pull.html.twig</jms:reference-file> <jms:reference-file line="11">task-manager/task-editor/ftp.html.twig</jms:reference-file> + <jms:reference-file line="11">task-manager/task-editor/ftp-pull.html.twig</jms:reference-file> </trans-unit> <trans-unit id="17d927a070b462263321072111c64cc0505c9d14" resname="task::ftp:proxy user" approved="yes"> <source>task::ftp:proxy user</source> @@ -12891,8 +12595,8 @@ It is possible to place several search areas</target> <trans-unit id="9d5da9a8f62b8053385235889e7d7994ebfc1559" resname="thesaurus:: Lier la branche de thesaurus" approved="yes"> <source>thesaurus:: Lier la branche de thesaurus</source> <target state="translated">Link branch ?</target> - <jms:reference-file line="5">web/thesaurus/link-field-step3.html.twig</jms:reference-file> <jms:reference-file line="5">web/thesaurus/link-field-step2.html.twig</jms:reference-file> + <jms:reference-file line="5">web/thesaurus/link-field-step3.html.twig</jms:reference-file> </trans-unit> <trans-unit id="416134a1966f12f8d23f9f54f3cc32ea43ef3e46" resname="thesaurus:: Lier la branche de thesaurus au champ" approved="yes"> <source>thesaurus:: Lier la branche de thesaurus au champ</source> @@ -12907,13 +12611,13 @@ It is possible to place several search areas</target> <trans-unit id="227338ab622537da92490cedc6709de0b9122e56" resname="thesaurus:: Nouveau synonyme" approved="yes"> <source>thesaurus:: Nouveau synonyme</source> <target state="translated">New Synonym</target> + <jms:reference-file line="985">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="5">web/thesaurus/new-term.html.twig</jms:reference-file> - <jms:reference-file line="977">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d6bec8860c3453260869cea4fb043fac543cf724" resname="thesaurus:: Nouveau terme" approved="yes"> <source>thesaurus:: Nouveau terme</source> <target state="translated">New term</target> - <jms:reference-file line="977">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="985">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ef0a054e6da228e6ad009d469c4bdf31b1de7999" resname="thesaurus:: Nouveau terme specifique" approved="yes"> <source>thesaurus:: Nouveau terme specifique</source> @@ -12928,7 +12632,7 @@ It is possible to place several search areas</target> <trans-unit id="33df70d7fa528a31071e11d1b987b49dc947ce16" resname="thesaurus:: Supprimer cette branche ?&#10;(les termes concernes remonteront en candidats a la prochaine indexation)" approved="yes"> <source><![CDATA[thesaurus:: Supprimer cette branche ? (les termes concernes remonteront en candidats a la prochaine indexation)]]></source> <target state="translated"><![CDATA[Delete branch : (concerned terms will be displayed as candidates on future indexation)]]></target> - <jms:reference-file line="474">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="482">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="660310a4372167fced06ac64d118d8019c456c02" resname="thesaurus:: Vous n'avez acces a aucune base" approved="yes"> <source>thesaurus:: Vous n'avez acces a aucune base</source> @@ -12984,14 +12688,14 @@ It is possible to place several search areas</target> <trans-unit id="ac2f261b9d9226594280e898802a6fdac51360d3" resname="thesaurus:: corbeille" approved="yes"> <source>thesaurus:: corbeille</source> <target state="translated">Stock</target> - <jms:reference-file line="1667">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> - <jms:reference-file line="1813">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> - <jms:reference-file line="2906">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> + <jms:reference-file line="1677">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> + <jms:reference-file line="1823">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> + <jms:reference-file line="2916">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> </trans-unit> <trans-unit id="69ec558773af262994d835080fd77f22b284b64f" resname="thesaurus:: deplacer le terme dans la corbeille ?" approved="yes"> <source>thesaurus:: deplacer le terme dans la corbeille ?</source> <target state="translated">Move Terms to stock</target> - <jms:reference-file line="1037">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="1045">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="33c36f4c7ae4c9ec55d1e58c0939946c8d894958" resname="thesaurus:: enregistrement de la liste modifiee des mots candidats." approved="yes"> <source>thesaurus:: enregistrement de la liste modifiee des mots candidats.</source> @@ -13046,9 +12750,9 @@ It is possible to place several search areas</target> <trans-unit id="5fbcdef1a0e5fb7cf0b19a61ff3a18ebe2a5bdbe" resname="thesaurus:: export au format texte" approved="yes"> <source>thesaurus:: export au format texte</source> <target state="translated">Text</target> - <jms:reference-file line="5">web/thesaurus/export-text.html.twig</jms:reference-file> <jms:reference-file line="5">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> <jms:reference-file line="81">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> + <jms:reference-file line="5">web/thesaurus/export-text.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c8ec3584a75e01816472150b1c24268c9612dd51" resname="thesaurus:: export en topics" approved="yes"> <source>thesaurus:: export en topics</source> @@ -13256,7 +12960,7 @@ It is possible to place several search areas</target> <trans-unit id="1744e93c8cf4d32cb0c0418ae320f5d8438f6f76" resname="thesaurus:: synonyme" approved="yes"> <source>thesaurus:: synonyme</source> <target state="translated">Synonym</target> - <jms:reference-file line="975">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="983">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b6cbc7152d76db92327425399da711a905e1d7b6" resname="thesaurus:: synonymes" approved="yes"> <source>thesaurus:: synonymes</source> @@ -13266,7 +12970,7 @@ It is possible to place several search areas</target> <trans-unit id="8658e2ff0b9ff5e3492109790a09066c1467804f" resname="thesaurus:: terme" approved="yes"> <source>thesaurus:: terme</source> <target state="translated">Term</target> - <jms:reference-file line="975">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="983">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2369cc70d9c4cca830a6fdd9f652c1703a2a0d3b" resname="thesaurus:: tout deployer - refermable" approved="yes"> <source>thesaurus:: tout deployer - refermable</source> @@ -13346,19 +13050,8 @@ It is possible to place several search areas</target> <trans-unit id="1118f7e206d8ec4d92392f3e8c2804b156b3a082" resname="thumbnail validation" approved="yes"> <source>thumbnail validation</source> <target state="translated">Confirm thumbnail</target> + <jms:reference-file line="180">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="247">actions/Tools/index.html.twig</jms:reference-file> - <jms:reference-file line="167">actions/Tools/videoEditor.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="4374aaee247fb237ce6c97d5c8d64bbe474d16de" resname="to" approved="yes"> - <source>to</source> - <target state="translated">to</target> - <jms:reference-file line="15">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="19">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="14a21e497a8468e9df7f078d92c8c97420f0bf60" resname="tout decocher" approved="yes"> - <source>tout decocher</source> - <target state="translated">Unselect all</target> - <jms:reference-file line="11">web/report/listColumn.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7e96ed809b61066d6ea96ba9afc8747a042b361a" resname="tout le monde" approved="yes"> <source>tout le monde</source> @@ -13373,7 +13066,7 @@ It is possible to place several search areas</target> <trans-unit id="50d8b4a941c26b89482c94ab324b5a274f9ced66" resname="unknown" approved="yes"> <source>unknown</source> <target state="translated">Unknown</target> - <jms:reference-file line="34">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="37">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9f273e321a1d1ea40251ab0a45f8ca8cbdd135da" resname="untitled" approved="yes"> <source>untitled</source> @@ -13390,17 +13083,23 @@ It is possible to place several search areas</target> <target state="translated">Your version is up to date</target> <jms:reference-file line="53">web/admin/databases.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="cde2aa1e33b0a816e8539ae4669b9575a8c83762" resname="updated_on" approved="yes"> + <source>updated_on</source> + <target state="translated">updated on</target> + <jms:reference-file line="475">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="bc34ae0ecd7020a2f3f57afaf84d3fea6c3e9c0f" resname="upload:: Destination (collection) :" approved="yes"> <source>upload:: Destination (collection) :</source> <target state="translated">Collection</target> + <jms:reference-file line="60">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="55">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="57">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="39e4890a2d75f483b1cb2131b2d19f8cf96a502b" resname="upload:: Status :" approved="yes"> <source>upload:: Status :</source> <target state="translated">Apply status</target> + <jms:reference-file line="80">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="75">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="77">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="457">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4fea0574cc81b5fd40ab0537b0905cc4c3806039" resname="users rights have been reseted" approved="yes"> <source>users rights have been reseted</source> @@ -13410,23 +13109,23 @@ It is possible to place several search areas</target> <trans-unit id="e204d28a2874f6123747650d3e4003d4357d75eb" resname="validate" approved="yes"> <source>validate</source> <target state="translated">Validate</target> + <jms:reference-file line="143">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="88">actions/Tools/index.html.twig</jms:reference-file> <jms:reference-file line="116">actions/Tools/index.html.twig</jms:reference-file> <jms:reference-file line="156">actions/Tools/index.html.twig</jms:reference-file> <jms:reference-file line="182">actions/Tools/index.html.twig</jms:reference-file> - <jms:reference-file line="130">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c02a2db6d6cdf30d37962e221624cc7661f4b892" resname="validation:: NON" approved="yes"> <source>validation:: NON</source> <target state="translated">NO</target> - <jms:reference-file line="45">web/lightbox/agreement_box.html.twig</jms:reference-file> <jms:reference-file line="75">mobile/lightbox/basket_element.html.twig</jms:reference-file> + <jms:reference-file line="45">web/lightbox/agreement_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="07a1dc6df9fd47db2dc80e671f68bbd2525a789b" resname="validation:: OUI" approved="yes"> <source>validation:: OUI</source> <target state="translated">YES</target> - <jms:reference-file line="40">web/lightbox/agreement_box.html.twig</jms:reference-file> <jms:reference-file line="72">mobile/lightbox/basket_element.html.twig</jms:reference-file> + <jms:reference-file line="40">web/lightbox/agreement_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="724c4836afe058eefd1dbc9c19d0f813f9ad0d31" resname="validation:: editer ma note" approved="yes"> <source>validation:: editer ma note</source> @@ -13446,10 +13145,10 @@ It is possible to place several search areas</target> <trans-unit id="276c62d9460692fb7b96721bea12a028339dd99c" resname="validation::envoyer mon rapport" approved="yes"> <source>validation::envoyer mon rapport</source> <target state="translated">Send my feedback</target> - <jms:reference-file line="2">web/lightbox/basket_options.html.twig</jms:reference-file> - <jms:reference-file line="4">web/lightbox/basket_options.html.twig</jms:reference-file> <jms:reference-file line="58">mobile/lightbox/validate.html.twig</jms:reference-file> <jms:reference-file line="59">mobile/lightbox/validate.html.twig</jms:reference-file> + <jms:reference-file line="2">web/lightbox/basket_options.html.twig</jms:reference-file> + <jms:reference-file line="4">web/lightbox/basket_options.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c692273deb2772da307ffe37041fef77bf4baa97" resname="version" approved="yes"> <source>version</source> @@ -13459,13 +13158,13 @@ It is possible to place several search areas</target> <trans-unit id="8cef9b3ae10c5c43c4b77c568586122212a052e3" resname="veuillez choisir au minimum une collection" approved="yes"> <source>veuillez choisir au minimum une collection</source> <target state="translated">At least one collection must be selected</target> - <jms:reference-file line="23">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="22">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ffbaf58f1231628f9ac2a583f038b51719006ec6" resname="video" approved="yes"> <source>video</source> <target state="translated">Video</target> - <jms:reference-file line="22">task-manager/task-editor/subdefs.html.twig</jms:reference-file> <jms:reference-file line="370">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="25">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="51ca3cfa60e4d9ce2c7cd07b0b96fc84c4adb59f" resname="video range extractor"> <source>video range extractor</source> @@ -13480,9 +13179,9 @@ It is possible to place several search areas</target> <trans-unit id="fb360f9c09ac8c5edb2f18be5de4e80ea4c430d0" resname="yes" approved="yes"> <source>yes</source> <target state="translated">Yes</target> + <jms:reference-file line="76">web/account/sessions.html.twig</jms:reference-file> <jms:reference-file line="580">web/admin/subdefs.html.twig</jms:reference-file> <jms:reference-file line="89">web/common/technical_datas.html.twig</jms:reference-file> - <jms:reference-file line="76">web/account/sessions.html.twig</jms:reference-file> </trans-unit> <trans-unit id="646b0ebbe9829e44e9e99e9ab991a526f758001d" resname="you are about to change the representation thumbnail of your video" approved="yes"> <source>you are about to change the representation thumbnail of your video</source> diff --git a/resources/locales/messages.fr.xlf b/resources/locales/messages.fr.xlf index c1fa49febb..71c3b52cf7 100644 --- a/resources/locales/messages.fr.xlf +++ b/resources/locales/messages.fr.xlf @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2"> - <file date="2018-09-17T13:17:02Z" source-language="en" target-language="fr" datatype="plaintext" original="not.available"> + <file date="2019-11-15T08:03:23Z" source-language="en" target-language="fr" datatype="plaintext" original="not.available"> <header> <tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/> <note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note> @@ -9,12 +9,12 @@ <trans-unit id="da39a3ee5e6b4b0d3255bfef95601890afd80709" resname=""> <source></source> <target state="new"></target> - <jms:reference-file line="47">Form/Configuration/EmailFormType.php</jms:reference-file> <jms:reference-file line="60">Form/Login/PhraseaAuthenticationForm.php</jms:reference-file> + <jms:reference-file line="47">Form/Configuration/EmailFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="c03e9a1b443b7d9ac9a84e4d2cf55ebc016a9c5b" resname=" Add"> + <trans-unit id="c03e9a1b443b7d9ac9a84e4d2cf55ebc016a9c5b" resname=" Add" approved="yes"> <source> Add</source> - <target state="needs-translation">Ajouter</target> + <target state="translated">Ajouter</target> <jms:reference-file line="66">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="955ba3f1b3cb9a2d319b73af341dd94392f61e87" resname=" 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. " approved="yes"> @@ -24,7 +24,14 @@ url through a forwarded mail for example. </source> <target state="translated">L'option Forcer l'authentification des utilisateurs contraint les destinataires à s'authentifier pour accéder au contenu diffusé. Cela interdit l'accès aux documents à des personnes auprès desquels l'URL aurait été divulguée notamment par un transfert d'e-mail.</target> - <jms:reference-file line="174">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="175">prod/templates/push.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="2dda59c67dea4da116191fe9603dcf80cb3c8c3d" resname=" {0} No results|{1} Result|]1,Inf[ Results "> + <source> {0} No results|{1} Result|]1,Inf[ Results + </source> + <target state="new"> {0} No results|{1} Result|]1,Inf[ Results + </target> + <jms:reference-file line="7">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="17b36ba11b9598e1ca72638a17637c71db031f8b" resname="#3567c6" approved="yes"> <source>#3567c6</source> @@ -105,15 +112,14 @@ <trans-unit id="5c0c6d2fb4202111af321f54b5a3942bda803eb8" resname="%Total% results" approved="yes"> <source>%Total% results</source> <target state="translated">%Total% résultats</target> - <jms:reference-file line="12">WorkZone/Browser/Results.html.twig</jms:reference-file> - <jms:reference-file line="115">WorkZone/Browser/Results.html.twig</jms:reference-file> + <jms:reference-file line="91">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="21a4ac34dfdf249b5e2e3b3fde7061b354080f4b" resname="%basket_length% documents" approved="yes"> <source>%basket_length% documents</source> <target state="translated">%basket_length% documents</target> + <jms:reference-file line="39">mobile/lightbox/validate.html.twig</jms:reference-file> <jms:reference-file line="65">web/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="123">web/lightbox/index.html.twig</jms:reference-file> - <jms:reference-file line="39">mobile/lightbox/validate.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b444b30c762b94c468daf384f731e5ffc3ae998d" resname="%countable% documents can not be modified." approved="yes"> <source>%countable% documents can not be modified.</source> @@ -154,7 +160,7 @@ <source>%length% peoples</source> <target state="translated">%length% personne(s)</target> <jms:reference-file line="42">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="107">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="103">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="65779fe6ac99437fb7d81ba645a989e7745e6a29" resname="%n_elements% elements ne peuvent etre uploades" approved="yes"> <source>%n_elements% elements ne peuvent etre uploades</source> @@ -192,21 +198,21 @@ <trans-unit id="e39dc3a90b0674916ef22f19912638564f33e518" resname="%nb_view% vue" approved="yes"> <source>%nb_view% vue</source> <target state="translated">%nb_view% vue</target> - <jms:reference-file line="5">Bridge/Flickr/element_informations.html.twig</jms:reference-file> - <jms:reference-file line="5">Bridge/Youtube/element_informations.html.twig</jms:reference-file> <jms:reference-file line="5">Bridge/Dailymotion/element_informations.html.twig</jms:reference-file> + <jms:reference-file line="5">Bridge/Youtube/element_informations.html.twig</jms:reference-file> + <jms:reference-file line="5">Bridge/Flickr/element_informations.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ae7480d89dfd1ca0d1732014aee13f9958836bf8" resname="%nb_view% vues" approved="yes"> <source>%nb_view% vues</source> <target state="translated">%nb_view% vues</target> - <jms:reference-file line="7">Bridge/Flickr/element_informations.html.twig</jms:reference-file> - <jms:reference-file line="7">Bridge/Youtube/element_informations.html.twig</jms:reference-file> <jms:reference-file line="7">Bridge/Dailymotion/element_informations.html.twig</jms:reference-file> + <jms:reference-file line="7">Bridge/Youtube/element_informations.html.twig</jms:reference-file> + <jms:reference-file line="7">Bridge/Flickr/element_informations.html.twig</jms:reference-file> </trans-unit> <trans-unit id="de0804eb70c10b14d71df74292e45c6daa13d672" resname="%number% documents<br/>selectionnes" approved="yes"> <source><![CDATA[%number% documents<br/>selectionnes]]></source> <target state="translated"><![CDATA[%number% documents<br/>sélectionnés]]></target> - <jms:reference-file line="246">Controller/Prod/QueryController.php</jms:reference-file> + <jms:reference-file line="271">Controller/Prod/QueryController.php</jms:reference-file> </trans-unit> <trans-unit id="ac5c6fe2979cfa2496c95dcb218f135fd916040d" resname="%quantity% Stories attached to the WorkZone" approved="yes"> <source>%quantity% Stories attached to the WorkZone</source> @@ -257,7 +263,7 @@ <trans-unit id="d7c38bf41291d1f920c6e0b56a1c4a1cfc0b6743" resname="%quantity% selected files" approved="yes"> <source>%quantity% selected files</source> <target state="translated">%quantity% fichiers sélectionnés</target> - <jms:reference-file line="108">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="111">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="eae910e840fe7df8ef8211d587e72af74ab69463" resname="%quantity_records% records have been sent for validation to %quantity_users% users" approved="yes"> <source>%quantity_records% records have been sent for validation to %quantity_users% users</source> @@ -272,7 +278,7 @@ <trans-unit id="4d90df6ce9691d4bc172b9129250a5af4bef4b7f" resname="%record_count% records match the unique identifier :" approved="yes"> <source>%record_count% records match the unique identifier :</source> <target state="translated">%record_count% enregistrements correspondent à des identifiants uniques existants :</target> - <jms:reference-file line="379">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="585">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1d847e60f4e92e438c94f0eb3176ce96113c63e5" resname="%s field has been created with success." approved="yes"> <source>%s field has been created with success.</source> @@ -287,17 +293,12 @@ <trans-unit id="f9b19aa0c7cf7aab245692450b473acff6a077e4" resname="%total% reponses" approved="yes"> <source>%total% reponses</source> <target state="translated">%total% réponses</target> - <jms:reference-file line="294">Controller/Prod/QueryController.php</jms:reference-file> - </trans-unit> - <trans-unit id="3d850bddc9385d23589a2204c4583dcc0d62ffe5" resname="%total_count% results" approved="yes"> - <source>%total_count% results</source> - <target state="translated">%total_count% résultats</target> - <jms:reference-file line="35">web/report/generate_tab.html.twig</jms:reference-file> + <jms:reference-file line="319">Controller/Prod/QueryController.php</jms:reference-file> </trans-unit> <trans-unit id="99d2e1a7e8d0ba4a7132282b53b15e503b91c2cb" resname="%user% a envoye son rapport de validation de %title%" approved="yes"> <source>%user% a envoye son rapport de validation de %title%</source> <target state="translated">%user% a envoyé son rapport de validation pour %title%</target> - <jms:reference-file line="58">eventsmanager/notify/validationdone.php</jms:reference-file> + <jms:reference-file line="65">eventsmanager/notify/validationdone.php</jms:reference-file> </trans-unit> <trans-unit id="762e4f2823b111e8a3c45176a1376312afeb014e" resname="%user% a passe une %opening_link% commande %end_link%" approved="yes"> <source>%user% a passe une %opening_link% commande %end_link%</source> @@ -347,7 +348,7 @@ <trans-unit id="578411bc3eda63423c62f54431d62591422c6e5f" resname="%user% vous a delivre %quantity% document(s) pour votre commande %title%" approved="yes"> <source>%user% vous a delivre %quantity% document(s) pour votre commande %title%</source> <target state="translated">%user% vous a délivré %quantity% document(s) de votre commande %title%</target> - <jms:reference-file line="58">eventsmanager/notify/orderdeliver.php</jms:reference-file> + <jms:reference-file line="66">eventsmanager/notify/orderdeliver.php</jms:reference-file> </trans-unit> <trans-unit id="991c3d22c945eab4d10ee5974ff3d12e0c165185" resname="%user% vous a delivre votre commande, consultez la en ligne a l'adresse suivante" approved="yes"> <source>%user% vous a delivre votre commande, consultez la en ligne a l'adresse suivante</source> @@ -407,9 +408,7 @@ <trans-unit id="4e633811d5f61e7ef626265d09c454908f56df17" resname="1 result" approved="yes"> <source>1 result</source> <target state="translated">1 résultat</target> - <jms:reference-file line="10">WorkZone/Browser/Results.html.twig</jms:reference-file> - <jms:reference-file line="113">WorkZone/Browser/Results.html.twig</jms:reference-file> - <jms:reference-file line="33">web/report/generate_tab.html.twig</jms:reference-file> + <jms:reference-file line="89">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="fbe42fc27804535bb12503b7990343d52141318c" resname="10 tags maximum" approved="yes"> <source>10 tags maximum</source> @@ -490,7 +489,7 @@ <trans-unit id="e6558cad562de9eeae699e5f7fc7c8ae076d38c8" resname="A record matches the unique identifier :" approved="yes"> <source>A record matches the unique identifier :</source> <target state="translated">Un enregistrement correspond à un identifiant unique existant :</target> - <jms:reference-file line="377">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="583">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b73e8cb42d796f56db9989972e41942d9135c2cc" resname="A required field is missing or has an empty value" approved="yes"> <source>A required field is missing or has an empty value</source> @@ -505,7 +504,7 @@ <trans-unit id="2966d9d14e339b1aa59cd4591bbb616f2af1f070" resname="A task has been creted, please run it to complete empty collection" approved="yes"> <source>A task has been creted, please run it to complete empty collection</source> <target state="translated">Une tâche de suppression a été créée, lancez la pour vider la collection</target> - <jms:reference-file line="134">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="135">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="1745c0ee532c1592e3751ef7ef48c382df74c457" resname="A third-party application is a product developed apart from Phraseanet and that would access Phraseanet data." approved="yes"> <source>A third-party application is a product developed apart from Phraseanet and that would access Phraseanet data.</source> @@ -530,7 +529,7 @@ <trans-unit id="123328affd9ccbf569617c058422eb0104017f47" resname="API Webhook" approved="yes"> <source>API Webhook</source> <target state="translated">Webhook API</target> - <jms:reference-file line="45">TaskManager/Job/WebhookJob.php</jms:reference-file> + <jms:reference-file line="58">TaskManager/Job/WebhookJob.php</jms:reference-file> </trans-unit> <trans-unit id="62a3ad0fef668c4e2a220f6982de94942fbf1d1e" resname="AR"> <source>AR</source> @@ -585,8 +584,8 @@ </trans-unit> <trans-unit id="322d1ea01506ec9e0344d8cd25dd10808d427343" resname="Access to the above bases constitutes acceptance of the following Terms of Use (TOU)." approved="yes"> <source>Access to the above bases constitutes acceptance of the following Terms of Use (TOU).</source> - <target state="translated">Pour accéder aux bases ci-dessus, vous devez d'abord accepter les conditions générales d'utilisation.</target> - <jms:reference-file line="185">web/account/access.html.twig</jms:reference-file> + <target state="translated">L'accès aux ressources de cette base implique l'acceptation des Conditions générales d'utilisation suivantes :</target> + <jms:reference-file line="19">web/account/access.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9db7fb32c517586a4123d511613b492d910aecaa" resname="Access user have readonly access" approved="yes"> <source>Access user have readonly access</source> @@ -618,7 +617,7 @@ <source>Accuse de reception</source> <target state="translated">Accusé de réception</target> <jms:reference-file line="91">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="160">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="161">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="589db073670b88b4b42b9f60b53d87e049fa5e3f" resname="Accuse de reception indisponible, vous n'avez pas declare d'adresse email" approved="yes"> <source>Accuse de reception indisponible, vous n'avez pas declare d'adresse email</source> @@ -633,16 +632,16 @@ <trans-unit id="c3cd636a585b20c40ac2df5ffb403e83cb2eef51" resname="Actions" approved="yes"> <source>Actions</source> <target state="translated">Actions</target> - <jms:reference-file line="12">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="26">Bridge/Flickr/actionelements.html.twig</jms:reference-file> - <jms:reference-file line="12">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="26">Bridge/Youtube/actionelements.html.twig</jms:reference-file> - <jms:reference-file line="12">Bridge/Dailymotion/actioncontainers.html.twig</jms:reference-file> <jms:reference-file line="26">Bridge/Dailymotion/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="12">Bridge/Dailymotion/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="26">Bridge/Youtube/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="12">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="26">Bridge/Flickr/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="12">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c4a4f00323184bd750ee72b5c05e6e17d1584bfd" resname="Activate highlight" approved="yes"> <source>Activate highlight</source> - <target state="translated">Activer le surlignage</target> + <target state="translated">Activer le surlignage (beta). Impacte les performances de recherche</target> <jms:reference-file line="90">SearchEngine/Elastic/ElasticsearchSettingsFormType.php</jms:reference-file> <jms:reference-file line="682">web/setup/step2.html.twig</jms:reference-file> </trans-unit> @@ -654,9 +653,9 @@ <trans-unit id="b96fa78d63e470aece8873de8f36bc6d07d0ce1e" resname="Activer" approved="yes"> <source>Activer</source> <target state="translated">Activer</target> + <jms:reference-file line="192">admin/databox/databox.html.twig</jms:reference-file> <jms:reference-file line="19">web/admin/editusers_timelimit.html.twig</jms:reference-file> <jms:reference-file line="15">web/admin/editusers_timelimit_sbas.html.twig</jms:reference-file> - <jms:reference-file line="192">admin/databox/databox.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2ad25a56545b3378229ca9165351fb4cb528c722" resname="Activer le grant_type de type password pour votre application" approved="yes"> <source>Activer le grant_type de type password pour votre application</source> @@ -668,18 +667,18 @@ <target state="translated">Activer la collection</target> <jms:reference-file line="184">admin/databox/databox.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="81c0d915fa6d82fd30661c5e66e204cea52bb2b5" resname="Activity"> + <trans-unit id="81c0d915fa6d82fd30661c5e66e204cea52bb2b5" resname="Activity" approved="yes"> <source>Activity</source> - <target state="new">Activity</target> - <jms:reference-file line="174">actions/Feedback/list.html.twig</jms:reference-file> + <target state="translated">Activité</target> + <jms:reference-file line="170">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="61cc55aa0453184734c3fa0b621eda6fa874bd83" resname="Add" approved="yes"> <source>Add</source> <target state="translated">Ajouter</target> + <jms:reference-file line="161">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="509">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="510">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="39">prod/User/Add.html.twig</jms:reference-file> - <jms:reference-file line="154">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="352">prod/upload/lazaret.html.twig</jms:reference-file> - <jms:reference-file line="353">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="983c5aed52d2f74bf36e97dc34dbce97fdd43f5b" resname="Add a new field"> <source>Add a @@ -722,11 +721,16 @@ <target state="needs-translation">Nouveaux Chapitre</target> <jms:reference-file line="138">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> + <trans-unit id="1b27740ce4d6bea2dd21cee1c12fa73206c1444a" resname="Add this url" approved="yes"> + <source>Add this url</source> + <target state="translated">Ajouter cette URL</target> + <jms:reference-file line="36">prod/upload/upload.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="f347a8ddd22508ed0310a2f9d8cf43dd96be34b1" resname="Add user" approved="yes"> <source>Add user</source> <target state="translated">Ajouter un utilisateur</target> - <jms:reference-file line="167">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="172">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="174">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="179">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="001c0aa88aab8441b8835c947c94c7290eadf779" resname="Additionnal modules" approved="yes"> <source>Additionnal modules</source> @@ -756,12 +760,13 @@ <trans-unit id="f38d53519197909c91536558af4b561b0b38c32f" resname="Advanced Search" approved="yes"> <source>Advanced Search</source> <target state="translated">Recherche avancée</target> - <jms:reference-file line="270">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="281">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="292">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="36ee3c1fd529ba9fd031d157e04c6fecb356591c" resname="Advanced mode"> <source>Advanced mode</source> <target state="new">Advanced mode</target> - <jms:reference-file line="53">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="49">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2e8bbf396d28ec55f8a6987f31422f44b693a08c" resname="Advanced settings"> <source>Advanced settings</source> @@ -771,66 +776,66 @@ <trans-unit id="bc8f3ed663adc3f670da96cfd59f14ca2d063439" resname="Affichage" approved="yes"> <source>Affichage</source> <target state="translated">Affichage</target> - <jms:reference-file line="579">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="670">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1f9a8a4181e8f3f461180be54e1a63f70d9bce77" resname="Affichage au demarrage" approved="yes"> <source>Affichage au demarrage</source> <target state="translated">Afficher au démarrage</target> - <jms:reference-file line="683">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="774">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a810fdb68ba89818cce5c607021256e40cf14170" resname="Afficher la fiche descriptive" approved="yes"> <source>Afficher la fiche descriptive</source> <target state="translated">Afficher la notice</target> - <jms:reference-file line="849">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="940">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="946bf37a064ede9145bd8e3c7ce50e8608885518" resname="Afficher le titre" approved="yes"> <source>Afficher le titre</source> <target state="translated">Afficher le titre</target> - <jms:reference-file line="858">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="949">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7627cf7574df870b584ab3bd8a67d62d7ab4a18b" resname="Afficher les status" approved="yes"> <source>Afficher les status</source> <target state="translated">Afficher les Status</target> - <jms:reference-file line="840">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="931">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="47743dc906e82db1978c23daf01e4d5e727702bd" resname="Afficher une icone" approved="yes"> <source>Afficher une icone</source> <target state="translated">Afficher une icône</target> - <jms:reference-file line="653">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="744">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="53c62ab422733fc26fc4d0b64a7da7548588ae8b" resname="After metadata" approved="yes"> <source>After metadata</source> <target state="translated">Dans l'infobulle de description, après les métadonnées</target> - <jms:reference-file line="641">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="732">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b9ba037c0e4c06d192c83e08070b15787f07daaa" resname="Aggregation" approved="yes"> <source>Aggregation</source> <target state="translated">Agrégation</target> - <jms:reference-file line="223">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="238">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="40a1dd8272b48953d037ba565c6189e9ef5cd06b" resname="Aide" approved="yes"> <source>Aide</source> <target state="translated">Aide</target> - <jms:reference-file line="697">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="788">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c26a1a41764983bc03456d418ee43e732e5f513e" resname="Aide sur les expressions regulieres" approved="yes"> <source>Aide sur les expressions regulieres</source> <target state="translated">Aide sur les expressions régulières</target> - <jms:reference-file line="315">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="317">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5e8a35671080dba23a7f84416dcf97fd975a33e6" resname="Ajouter a" approved="yes"> <source>Ajouter a</source> <target state="translated">Ajouter à</target> - <jms:reference-file line="5">Bridge/Flickr/actionelements.html.twig</jms:reference-file> - <jms:reference-file line="5">Bridge/Youtube/actionelements.html.twig</jms:reference-file> <jms:reference-file line="5">Bridge/Dailymotion/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="5">Bridge/Youtube/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="5">Bridge/Flickr/actionelements.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6be348e8c91127640dc04e94dca7d5503ddb6c7d" resname="Ajouter ma selection courrante" approved="yes"> <source>Ajouter ma selection courrante</source> <target state="translated">Ajouter ma sélection courante</target> <jms:reference-file line="10">prod/Baskets/Create.html.twig</jms:reference-file> - <jms:reference-file line="22">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="15">prod/Story/Create.html.twig</jms:reference-file> + <jms:reference-file line="22">prod/orders/order_item.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8d391a678bc6acf01f3f67c57b07853c5a588171" resname="Ajouter un nouvel utilisateur" approved="yes"> <source>Ajouter un nouvel utilisateur</source> @@ -852,17 +857,23 @@ <target state="translated">Tout</target> <jms:reference-file line="35">Form/Configuration/CustomLinkFormType.php</jms:reference-file> <jms:reference-file line="13">WorkZone/Browser/Browser.html.twig</jms:reference-file> - <jms:reference-file line="193">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="203">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="213">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="223">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="233">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="243">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="189">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="199">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="209">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="219">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="229">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="239">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="8">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="cff1e86ef3cd4771d8b9a289d1e75a465d5b48a7" resname="All these conditions" approved="yes"> + <source>All these conditions</source> + <target state="translated">Toutes les conditions</target> + <jms:reference-file line="414">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4f5920cee28837f31429fd82f7bc5a335272a436" resname="All values" approved="yes"> <source>All values</source> <target state="translated">Toutes les valeurs</target> - <jms:reference-file line="232">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="247">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="bc5595b574bc9e623a22a54ae40ae0cef6c28e80" resname="Aller a" approved="yes"> <source>Aller a</source> @@ -879,11 +890,6 @@ <target state="translated">Autorisé</target> <jms:reference-file line="37">web/account/authorized_apps.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="38bee8bd21d8a303b49f881d977af44c493ad168" resname="Allowed access to the following collections" approved="yes"> - <source>Allowed access to the following collections</source> - <target state="translated">Accès autorisé aux collections suivantes</target> - <jms:reference-file line="30">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="c264a7efdbe0e0af2a6fe69e2bc9a89b90c5ec0e" resname="Allowed to access report" approved="yes"> <source>Allowed to access report</source> <target state="translated">Autoriser à consulter Phraseanet Report</target> @@ -932,14 +938,14 @@ <trans-unit id="f2daa38baf15cf880ed52b7ce074c1d24f9fd58a" resname="Alphabetic asc"> <source>Alphabetic asc</source> <target state="needs-translation">Alphabétique asc</target> - <jms:reference-file line="714">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="731">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="743">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="805">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="822">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="834">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e7029550f725d4758c662974089acb89c467d221" resname="Alphabetic desc"> <source>Alphabetic desc</source> <target state="needs-translation">Alphabétique desc</target> - <jms:reference-file line="716">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="807">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ebd447ea09611b090d7b8a12835ffaf79ea17e47" resname="Also delete records that rely on groupings." approved="yes"> <source>Also delete records that rely on groupings.</source> @@ -949,23 +955,8 @@ <trans-unit id="f0cf9a47c6b420dda55c973a12840600fc19b7fb" resname="An error occured" approved="yes"> <source>An error occured</source> <target state="translated">Une erreur est survenue.</target> - <jms:reference-file line="173">Controller/Prod/BasketController.php</jms:reference-file> - <jms:reference-file line="163">Controller/Prod/MoveCollectionController.php</jms:reference-file> - <jms:reference-file line="214">Controller/Prod/StoryController.php</jms:reference-file> - <jms:reference-file line="243">Controller/Prod/LazaretController.php</jms:reference-file> - <jms:reference-file line="170">Controller/Prod/ToolsController.php</jms:reference-file> - <jms:reference-file line="185">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="225">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="266">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="449">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="517">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="557">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="595">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="633">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="666">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="699">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="807">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="71">Controller/Admin/DataboxesController.php</jms:reference-file> + <jms:reference-file line="118">Model/Manipulator/LazaretManipulator.php</jms:reference-file> + <jms:reference-file line="233">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="82">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="155">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="187">Controller/Admin/DataboxController.php</jms:reference-file> @@ -976,14 +967,34 @@ <jms:reference-file line="499">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="581">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="647">Controller/Admin/DataboxController.php</jms:reference-file> - <jms:reference-file line="118">Model/Manipulator/LazaretManipulator.php</jms:reference-file> - <jms:reference-file line="231">Model/Manipulator/LazaretManipulator.php</jms:reference-file> - <jms:reference-file line="25">admin/collection/suggested_value.html.twig</jms:reference-file> - <jms:reference-file line="23">admin/collection/collection.html.twig</jms:reference-file> - <jms:reference-file line="194">task-manager/task-editor/task.html.twig</jms:reference-file> - <jms:reference-file line="19">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="71">Controller/Admin/DataboxesController.php</jms:reference-file> + <jms:reference-file line="186">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="226">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="267">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="450">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="518">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="558">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="596">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="634">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="667">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="700">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="808">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="173">Controller/Prod/BasketController.php</jms:reference-file> + <jms:reference-file line="170">Controller/Prod/ToolsController.php</jms:reference-file> + <jms:reference-file line="257">Controller/Prod/LazaretController.php</jms:reference-file> + <jms:reference-file line="164">Controller/Prod/MoveCollectionController.php</jms:reference-file> + <jms:reference-file line="214">Controller/Prod/StoryController.php</jms:reference-file> <jms:reference-file line="653">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="19">admin/databox/databox.html.twig</jms:reference-file> <jms:reference-file line="15">web/admin/databases.html.twig</jms:reference-file> + <jms:reference-file line="23">admin/collection/collection.html.twig</jms:reference-file> + <jms:reference-file line="25">admin/collection/suggested_value.html.twig</jms:reference-file> + <jms:reference-file line="194">task-manager/task-editor/task.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="a16a3255c311eccbe2471bfc5b5cd92f3b907654" resname="An error occured when wanting to change status!"> + <source>An error occured when wanting to change status!</source> + <target state="new">An error occured when wanting to change status!</target> + <jms:reference-file line="136">Controller/Prod/LazaretController.php</jms:reference-file> </trans-unit> <trans-unit id="a518072a2c5c91cdd2591c1b8d79777664df1ea4" resname="An error occured while denying, please retry or contact an admin if problem persists" approved="yes"> <source>An error occured while denying, please retry or contact an admin if problem persists</source> @@ -1020,12 +1031,12 @@ <source>An error occurred</source> <target state="translated">Une erreur est survenue</target> <jms:reference-file line="77">Order/Controller/ProdOrderController.php</jms:reference-file> - <jms:reference-file line="145">Controller/Prod/BasketController.php</jms:reference-file> - <jms:reference-file line="125">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="521">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="108">Controller/Admin/SearchEngineController.php</jms:reference-file> - <jms:reference-file line="2008">Controller/Api/V1Controller.php</jms:reference-file> - <jms:reference-file line="2454">Controller/Api/V1Controller.php</jms:reference-file> + <jms:reference-file line="126">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="145">Controller/Prod/BasketController.php</jms:reference-file> + <jms:reference-file line="2050">Controller/Api/V1Controller.php</jms:reference-file> + <jms:reference-file line="2496">Controller/Api/V1Controller.php</jms:reference-file> <jms:reference-file line="81">web/admin/statusbit.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7e861f79c8744b5cb0b59ce4f0100603952751b1" resname="An error occurred reading this file" approved="yes"> @@ -1056,7 +1067,7 @@ <trans-unit id="aae1263383b96270870516a4097020921912df74" resname="Aperture" approved="yes"> <source>Aperture</source> <target state="translated">Ouverture</target> - <jms:reference-file line="284">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="295">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> <jms:reference-file line="104">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="013cf62916a339608ae3c498d34b9e55afa46dc1" resname="Apparait aussi dans ces paniers" approved="yes"> @@ -1123,8 +1134,8 @@ <trans-unit id="b8fb717785e899f8e3bacfd74a395da7a434af9e" resname="Apply changes" approved="yes"> <source>Apply changes</source> <target state="translated">Appliquer les modifications</target> - <jms:reference-file line="113">actions/Property/index.html.twig</jms:reference-file> <jms:reference-file line="49">actions/Property/type.html.twig</jms:reference-file> + <jms:reference-file line="113">actions/Property/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0e585e139fb6fc86d30e02ba78bdbb4dff6ac6b9" resname="Apply status on story children." approved="yes"> <source>Apply status on story children.</source> @@ -1144,7 +1155,8 @@ <trans-unit id="2621c6fd51a58e1d1d5c491aac71488647b20224" resname="Archive" approved="yes"> <source>Archive</source> <target state="translated">Archiver</target> - <jms:reference-file line="170">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="180">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="181">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6e8fd96e9e2759d3e405608bfb1a064d3338b4dd" resname="Are you sure you want delete users rights ?" approved="yes"> <source>Are you sure you want delete users rights ?</source> @@ -1160,7 +1172,7 @@ <source>Are you sure you want to delete this list ?</source> <target state="translated">Voulez-vous vraiment supprimer cette liste ?</target> <jms:reference-file line="83">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="131">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="132">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0ad86fda5d367a9ff74a9c278344f3bb8f75c223" resname="Are you sure you want to rebuild the sub-definitions of selected records?" approved="yes"> <source>Are you sure you want to rebuild the sub-definitions of selected records?</source> @@ -1196,7 +1208,7 @@ <trans-unit id="b2ed82f1bf1c30916cde300ded82176c2ff0300a" resname="Aucun" approved="yes"> <source>Aucun</source> <target state="translated">Aucun</target> - <jms:reference-file line="214">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="229">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3f9f7ad2bc75b4c34160ea51aeff9a273da06c1f" resname="Aucun bridge disponible. Veuillez contacter un administrateur." approved="yes"> <source>Aucun bridge disponible. Veuillez contacter un administrateur.</source> @@ -1211,7 +1223,7 @@ <trans-unit id="5c4eb810a8d51375a0e76c76d183446905d39d3a" resname="Aucun statut editable" approved="yes"> <source>Aucun statut editable</source> <target state="translated">Aucun status à éditer</target> - <jms:reference-file line="207">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="209">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e8f882731020de75c4168f82456175a386828cd1" resname="Aucune" approved="yes"> <source>Aucune</source> @@ -1252,33 +1264,38 @@ <trans-unit id="acdac205f5e24cb75113c4b281a2c13f08b75159" resname="Audio" approved="yes"> <source>Audio</source> <target state="translated">Audio</target> - <jms:reference-file line="296">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="321">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8074d6bbaaca47f35831923ebfd25c58be4b1cee" resname="Audio Birate" approved="yes"> <source>Audio Birate</source> <target state="translated">Débit audio</target> - <jms:reference-file line="32">Media/Subdef/Audio.php</jms:reference-file> + <jms:reference-file line="35">Media/Subdef/Audio.php</jms:reference-file> </trans-unit> <trans-unit id="d6caeca6303e9c722c929fbb58744a013a7ba7db" resname="Audio Codec" approved="yes"> <source>Audio Codec</source> <target state="translated">Codec audio</target> + <jms:reference-file line="37">Media/Subdef/Audio.php</jms:reference-file> <jms:reference-file line="36">Media/Subdef/Video.php</jms:reference-file> - <jms:reference-file line="34">Media/Subdef/Audio.php</jms:reference-file> </trans-unit> <trans-unit id="a80232c45008d73666e95544f7c9c8c0896536af" resname="Audio Samplerate"> <source>Audio Samplerate</source> <target state="needs-translation">Fréquence d'échantillonnage</target> - <jms:reference-file line="320">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="339">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + </trans-unit> + <trans-unit id="31afcc88a7f552bfd4d330c2c70d8fafd7b8e0f9" resname="Audio channel" approved="yes"> + <source>Audio channel</source> + <target state="translated">Canal audio</target> + <jms:reference-file line="38">Media/Subdef/Audio.php</jms:reference-file> </trans-unit> <trans-unit id="bdeea21f6257f434dcfcffb4f0470a042a1b5c17" resname="Audio codec"> <source>Audio codec</source> <target state="new">Audio codec</target> - <jms:reference-file line="330">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="353">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="27be4ad944410219f1a8dd01cc5e216a09c16646" resname="AudioSamplerate" approved="yes"> <source>AudioSamplerate</source> <target state="translated">Taux d’échantillonnage audio</target> - <jms:reference-file line="33">Media/Subdef/Audio.php</jms:reference-file> + <jms:reference-file line="36">Media/Subdef/Audio.php</jms:reference-file> </trans-unit> <trans-unit id="9e761dfcff90efcb07867accd3e8b109762fc596" resname="Auth_token directory path" approved="yes"> <source>Auth_token directory path</source> @@ -1321,9 +1338,9 @@ <target state="translated">OBSOLETE Autoriser *Phraseanet Navigator*</target> <jms:reference-file line="27">Form/Configuration/APIClientsFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="b85de40822e66ce4309b94ccad5bb731f2a89373" resname="Authorize Adobe cc Plugin to connect."> + <trans-unit id="b85de40822e66ce4309b94ccad5bb731f2a89373" resname="Authorize Adobe cc Plugin to connect." approved="yes"> <source>Authorize Adobe cc Plugin to connect.</source> - <target state="new">Authorize Adobe cc Plugin to connect.</target> + <target state="translated">Autoriser la connexion du plugin Adobe CC</target> <jms:reference-file line="36">Form/Configuration/APIClientsFormType.php</jms:reference-file> </trans-unit> <trans-unit id="6e1ead524b95ba3b45281df7ba45d2addbbf1a79" resname="Authorize Microsoft Office Plugin to connect." approved="yes"> @@ -1349,20 +1366,20 @@ <trans-unit id="11d4e8a639615510da9cd75da3031e91f4f551bb" resname="Autorisation d'acces" approved="yes"> <source>Autorisation d'acces</source> <target state="translated">Autorisation d'accès</target> - <jms:reference-file line="89">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="69">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="89">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ff83984310dc25c919f046ccac2c300469efa084" resname="Autoriser" approved="yes"> <source>Autoriser</source> <target state="translated">Autoriser</target> - <jms:reference-file line="105">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="85">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="105">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b0f9d3132d4759c2fd88c394935503435cebbc79" resname="Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ?" approved="yes"> <source>Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ?</source> <target state="translated">Autorisez-vous l'application %application_name% a accéder à votre contenu sur %home_title% ?</target> - <jms:reference-file line="94">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="74">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="94">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="45fc87c2d0ade465c57c00f7aa434a4d0bebe106" resname="Available in multi-export tab" approved="yes"> <source>Available in multi-export tab</source> @@ -1386,12 +1403,12 @@ <trans-unit id="738444fb7badaeb28467562ed8af8e1311e42eac" resname="Back to Feedback" approved="yes"> <source>Back to Feedback</source> <target state="translated">Retour à la Validation</target> - <jms:reference-file line="275">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="280">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6b61d67b7d0f7a7548068655adbd7f0a91a2eb8d" resname="Back to Push" approved="yes"> <source>Back to Push</source> <target state="translated">Retour au Push</target> - <jms:reference-file line="271">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="276">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ba753fe34fb03869657d308ee16ef7bc8cc695f9" resname="Back to basket list" approved="yes"> <source>Back to basket list</source> @@ -1401,10 +1418,10 @@ <trans-unit id="ae1378dc6a6f7df2435c398db9e6eac71646092b" resname="Bad request format, only JSON is allowed" approved="yes"> <source>Bad request format, only JSON is allowed</source> <target state="translated">Mauvais format de requête. Seul JSON est autorisé.</target> + <jms:reference-file line="187">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="573">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="58">Controller/Admin/RootController.php</jms:reference-file> <jms:reference-file line="220">Controller/Admin/RootController.php</jms:reference-file> - <jms:reference-file line="573">Controller/Admin/DataboxController.php</jms:reference-file> - <jms:reference-file line="180">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="fa0d7d2cb29f1ca72b4108bfaa0bf5686d3910ff" resname="Bad request, please contact an admin" approved="yes"> <source>Bad request, please contact an admin</source> @@ -1419,8 +1436,8 @@ <trans-unit id="3e06b5206dcaf1dca9ccaab68e3fbb918b450113" resname="Base %base%" approved="yes"> <source>Base %base%</source> <target state="translated">Base %base%</target> - <jms:reference-file line="4">web/admin/editusers_timelimit.html.twig</jms:reference-file> <jms:reference-file line="42">web/admin/editusers_quotas.html.twig</jms:reference-file> + <jms:reference-file line="4">web/admin/editusers_timelimit.html.twig</jms:reference-file> <jms:reference-file line="4">web/admin/editusers_timelimit_sbas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="65a99419ccf90ea10839c45a87a109f3b8c581a9" resname="Base could not be created" approved="yes"> @@ -1461,7 +1478,7 @@ <trans-unit id="83602366c2bc77de4a17181cf566da428eaee78e" resname="Basket is not found" approved="yes"> <source>Basket is not found</source> <target state="translated">Panier non trouvé</target> - <jms:reference-file line="166">Model/Repositories/BasketRepository.php</jms:reference-file> + <jms:reference-file line="184">Model/Repositories/BasketRepository.php</jms:reference-file> </trans-unit> <trans-unit id="f149359beace4d242ac47578384e4cb7e001b9e7" resname="Basket updated" approved="yes"> <source>Basket updated</source> @@ -1501,9 +1518,9 @@ <trans-unit id="38481c2ad1ad4de56004cc8e542ad04652002add" resname="Browse Baskets" approved="yes"> <source>Browse Baskets</source> <target state="translated">Parcourir les paniers</target> - <jms:reference-file line="211">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="213">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="214">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="215">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="216">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="54a2cf5e634dbba0be2bf8a55f79252f5c790bdb" resname="Browser" approved="yes"> <source>Browser</source> @@ -1513,7 +1530,7 @@ <trans-unit id="2d90cbe9431fb9e8d6013b651c2fb46a598de9eb" resname="Business Fields" approved="yes"> <source>Business Fields</source> <target state="translated">Champ métier</target> - <jms:reference-file line="197">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="212">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7985544ae054430f8b4416a883fa9d0b084ee0cf" resname="By checking this box, you accept %beginning_link% Terms of Use %end_link%" approved="yes"> <source>By checking this box, you accept %beginning_link% Terms of Use %end_link%</source> @@ -1531,32 +1548,27 @@ <trans-unit id="2a8e6c2695279fb4760d299974903123f751b3bf" resname="By field" approved="yes"> <source>By field</source> <target state="translated">Par champ</target> - <jms:reference-file line="355">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="384">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="48bf97f55c15fa2acb0a283e3a7e3f4f738b781d" resname="CHAMPS" approved="yes"> <source>CHAMPS</source> <target state="translated">Champs</target> <jms:reference-file line="123">web/admin/tree.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="23cb1ba2135af54bb7f9dc4ac628c8c16b1274c8" resname="CSV export" approved="yes"> - <source>CSV export</source> - <target state="translated">Export CSV</target> - <jms:reference-file line="22">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="07d75a5073e3247c7ac54d3a797d3f777b421863" resname="Camera Model" approved="yes"> <source>Camera Model</source> <target state="translated">Type d'appareil numérique</target> - <jms:reference-file line="274">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="281">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> <jms:reference-file line="56">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="77dfd2135f4db726c47299bb55be26f7f4525a46" resname="Cancel" approved="yes"> <source>Cancel</source> <target state="translated">Annuler</target> <jms:reference-file line="119">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="38">prod/User/Add.html.twig</jms:reference-file> <jms:reference-file line="52">prod/actions/delete_records_confirm.html.twig</jms:reference-file> - <jms:reference-file line="115">actions/Property/index.html.twig</jms:reference-file> <jms:reference-file line="50">actions/Property/type.html.twig</jms:reference-file> + <jms:reference-file line="115">actions/Property/index.html.twig</jms:reference-file> + <jms:reference-file line="38">prod/User/Add.html.twig</jms:reference-file> <jms:reference-file line="77">task-manager/task-editor/task.html.twig</jms:reference-file> <jms:reference-file line="42">user/import/view.html.twig</jms:reference-file> <jms:reference-file line="68">admin/fields/templates.html.twig</jms:reference-file> @@ -1564,8 +1576,8 @@ <trans-unit id="ae1f9ef7dc1cee4760e7f208f36c225e3ab1aa1f" resname="Cancel all" approved="yes"> <source>Cancel all</source> <target state="translated">Annuler tout</target> + <jms:reference-file line="131">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="121">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="128">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="82695f04e6097106923a58949a9e1b0fadd1a989" resname="Cannot upload Zero Byte files" approved="yes"> <source>Cannot upload Zero Byte files</source> @@ -1585,9 +1597,9 @@ <trans-unit id="790d9876f3745353f60eb4d5232b26bb597ca5a3" resname="Categorie" approved="yes"> <source>Categorie</source> <target state="translated">Catégorie</target> + <jms:reference-file line="38">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> <jms:reference-file line="58">Bridge/Youtube/upload.html.twig</jms:reference-file> <jms:reference-file line="45">Bridge/Youtube/video_modify.html.twig</jms:reference-file> - <jms:reference-file line="38">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> </trans-unit> <trans-unit id="bf1584669680e7841bf069b9495ea2f012bff60b" resname="Ce champ est decrit comme element du %DublinCoreElementSet%" approved="yes"> <source>Ce champ est decrit comme element du %DublinCoreElementSet%</source> @@ -1619,12 +1631,12 @@ <target state="translated">Ce champ est obligatoire</target> <jms:reference-file line="691">Bridge/Api/Flickr.php</jms:reference-file> <jms:reference-file line="713">Bridge/Api/Flickr.php</jms:reference-file> - <jms:reference-file line="798">Bridge/Api/Dailymotion.php</jms:reference-file> - <jms:reference-file line="823">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="905">Bridge/Api/Youtube.php</jms:reference-file> <jms:reference-file line="908">Bridge/Api/Youtube.php</jms:reference-file> <jms:reference-file line="931">Bridge/Api/Youtube.php</jms:reference-file> <jms:reference-file line="934">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="798">Bridge/Api/Dailymotion.php</jms:reference-file> + <jms:reference-file line="823">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="e821f6f0c9613624f82ae880c01573ab0c0a0eac" resname="Ce champ est relie a une branche de thesaurus" approved="yes"> <source>Ce champ est relie a une branche de thesaurus</source> @@ -1647,10 +1659,10 @@ <target state="translated">Ce champ est trop long (%length% caractères max.)</target> <jms:reference-file line="694">Bridge/Api/Flickr.php</jms:reference-file> <jms:reference-file line="716">Bridge/Api/Flickr.php</jms:reference-file> - <jms:reference-file line="801">Bridge/Api/Dailymotion.php</jms:reference-file> - <jms:reference-file line="826">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="911">Bridge/Api/Youtube.php</jms:reference-file> <jms:reference-file line="937">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="801">Bridge/Api/Dailymotion.php</jms:reference-file> + <jms:reference-file line="826">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="6a436b2b01f08a63284006c23ac3b38c9a699cbd" resname="Ce champ est utilise en titre a l'affichage" approved="yes"> <source>Ce champ est utilise en titre a l'affichage</source> @@ -1766,8 +1778,8 @@ <trans-unit id="7135ee5eaed0e404c4fcf48d6eb7d2808f8e55f2" resname="Clear list" approved="yes"> <source>Clear list</source> <target state="translated">Vider la liste</target> + <jms:reference-file line="112">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="109">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="109">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0fcdb8c5215c8bd73769c3492e47d86ec3f6837e" resname="Client application" approved="yes"> <source>Client application</source> @@ -1789,11 +1801,6 @@ <target state="translated">Cocher toute la colonne</target> <jms:reference-file line="43">web/admin/index.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="9f6dde6e53de78e748cd510d4dcd153b38a0b855" resname="Cochez les cases correspondantes aux colonnes que vous desirez voire apparaitre dans le report" approved="yes"> - <source>Cochez les cases correspondantes aux colonnes que vous desirez voire apparaitre dans le report</source> - <target state="translated">Cochez les cases correspondantes aux colonnes que vous désirez voir apparaître dans le Report</target> - <jms:reference-file line="4">web/report/listColumn.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="3db8c513d71fe9dd08684c52c36e0a9d5bc591c5" resname="Code d'acces" approved="yes"> <source>Code d'acces</source> <target state="translated">Code d'accès</target> @@ -1802,7 +1809,7 @@ <trans-unit id="397cd77cd56f7d480a93a17770e90f2d8a1ac032" resname="Codec Audio" approved="yes"> <source>Codec Audio</source> <target state="translated">Codec audio</target> - <jms:reference-file line="83">actions/Tools/videoEditor.html.twig</jms:reference-file> + <jms:reference-file line="96">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="140">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="672e654e54323537399e2353680dd144c0b9af32" resname="Codec Video" approved="yes"> @@ -1814,24 +1821,24 @@ <source>Collection</source> <target state="translated">Collection</target> <jms:reference-file line="3">prod/Story/Create.html.twig</jms:reference-file> - <jms:reference-file line="344">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="441">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="12">admin/databox/details.html.twig</jms:reference-file> </trans-unit> <trans-unit id="814cd4d896d0d93eac2f4d71dc24c91a46cd5e28" resname="Collection %collection%" approved="yes"> <source>Collection %collection%</source> <target state="translated">Collection %collection%</target> - <jms:reference-file line="8">web/admin/editusers_timelimit.html.twig</jms:reference-file> <jms:reference-file line="46">web/admin/editusers_quotas.html.twig</jms:reference-file> + <jms:reference-file line="8">web/admin/editusers_timelimit.html.twig</jms:reference-file> </trans-unit> <trans-unit id="915c5b033858560e7d04ae453279b9418637eade" resname="Collection empty successful" approved="yes"> <source>Collection empty successful</source> <target state="translated">Collection vidée avec succès</target> - <jms:reference-file line="131">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="132">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="898b7e63805ba2e4277ee0f4523c6376dcd0e579" resname="Collection order" approved="yes"> <source>Collection order</source> <target state="translated">Ordre des collections</target> - <jms:reference-file line="706">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="797">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f704cc39c26f37922029d5ff58c61b607d384521" resname="Color Depth" approved="yes"> <source>Color Depth</source> @@ -1846,13 +1853,13 @@ <trans-unit id="0b8cb446bc8277d5fd8242aa11ecb0054f9bbaa6" resname="Colorspace"> <source>Colorspace</source> <target state="needs-translation">Espace colorimétrique</target> - <jms:reference-file line="340">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="367">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="478443411674f0df06db3b28230d37625383f8c2" resname="Commande" approved="yes"> <source>Commande</source> <target state="translated">Commande</target> <jms:reference-file line="20">eventsmanager/notify/ordernotdelivered.php</jms:reference-file> - <jms:reference-file line="20">eventsmanager/notify/orderdeliver.php</jms:reference-file> + <jms:reference-file line="23">eventsmanager/notify/orderdeliver.php</jms:reference-file> </trans-unit> <trans-unit id="71e4baa0bd2b501d3cffecac38f650c5db86c3f4" resname="Commande du %date%" approved="yes"> <source>Commande du %date%</source> @@ -1862,14 +1869,14 @@ <trans-unit id="17275970238d7ec2311e2097df8868fb3d338585" resname="Commandes" approved="yes"> <source>Commandes</source> <target state="translated">Commandes</target> - <jms:reference-file line="119">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="120">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7a1994999d181deea68e4304b3346e78f838ecb7" resname="Company" approved="yes"> <source>Company</source> <target state="translated">Entreprise</target> - <jms:reference-file line="20">prod/User/Add.html.twig</jms:reference-file> - <jms:reference-file line="177">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="173">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="22">actions/Feedback/ListsMacros.html.twig</jms:reference-file> + <jms:reference-file line="20">prod/User/Add.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ebbde5a0aa9da74fc06083bd39398b2caecf42e5" resname="Complete the fields below to register on %instance_title%!" approved="yes"> <source>Complete the fields below to register on %instance_title%!</source> @@ -1884,10 +1891,10 @@ <trans-unit id="f7853f027e327a9ddf52dd60f8d1719ae6904333" resname="Confidentialite" approved="yes"> <source>Confidentialite</source> <target state="translated">Confidentialité</target> - <jms:reference-file line="87">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="56">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="75">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="56">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="87">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="56">Bridge/Youtube/video_modify.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6e9445beaddb548587c6f275e49da38e9fc7b785" resname="Confidentialite : privee" approved="yes"> <source>Confidentialite : privee</source> @@ -1902,7 +1909,7 @@ <trans-unit id="754164850f38c1ecdaf6b8ed894cb192bc36c5f4" resname="Configuration" approved="yes"> <source>Configuration</source> <target state="translated">Configuration</target> - <jms:reference-file line="580">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="671">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="37c3584d7b7d64dcff10d75caf719d4908e1f433" resname="Confirm new email address" approved="yes"> <source>Confirm new email address</source> @@ -1927,13 +1934,13 @@ <trans-unit id="6512ee1541e9a6c52d5bf7cf465332e8df25ea3c" resname="Connection" approved="yes"> <source>Connection</source> <target state="translated">Connexion</target> - <jms:reference-file line="74">login/oauth/login.html.twig</jms:reference-file> - <jms:reference-file line="15">login/providers/bind.html.twig</jms:reference-file> - <jms:reference-file line="73">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="15">login/providers/mapping.html.twig</jms:reference-file> <jms:reference-file line="89">login/providers/mapping.html.twig</jms:reference-file> + <jms:reference-file line="15">login/providers/bind.html.twig</jms:reference-file> + <jms:reference-file line="73">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="24">web/login/index.html.twig</jms:reference-file> - <jms:reference-file line="84">web/login/index.html.twig</jms:reference-file> + <jms:reference-file line="85">web/login/index.html.twig</jms:reference-file> + <jms:reference-file line="74">login/oauth/login.html.twig</jms:reference-file> </trans-unit> <trans-unit id="64b7896508144a1f427b5bad0d51c6b139c610f3" resname="Connection is OK but database does not exists or can not be accessed" approved="yes"> <source>Connection is OK but database does not exists or can not be accessed</source> @@ -1955,6 +1962,11 @@ <target state="translated">Consulter en ligne les prérequis et la configuration du serveur Web</target> <jms:reference-file line="311">web/setup/step2.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="33e15d008d511f3101566a2e25203ef2a3f605a0" resname="Contains" approved="yes"> + <source>Contains</source> + <target state="translated">Contient</target> + <jms:reference-file line="433">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="34326e71e2592544dedcb84077a6317dc5a5e700" resname="Continuer ?" approved="yes"> <source>Continuer ?</source> <target state="translated">Continuer ?</target> @@ -1993,7 +2005,7 @@ <trans-unit id="2d4f012e5f06719ae9bbd6de1696d7502474ba2d" resname="Could not perform request, please contact an administrator." approved="yes"> <source>Could not perform request, please contact an administrator.</source> <target state="translated">Impossible d'exécuter la requête. Veuillez contacter un administrateur.</target> - <jms:reference-file line="87">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="94">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="c183d160b24ba4d8cd1a39ffb5ceed69be38ee51" resname="Could not retrieve the file ID, please retry or contact an admin if problem persist" approved="yes"> <source>Could not retrieve the file ID, please retry or contact an admin if problem persist</source> @@ -2008,12 +2020,12 @@ <trans-unit id="7ebde54d7a6733f04781a2112a3d7548cb144e1f" resname="Couleur de selection" approved="yes"> <source>Couleur de selection</source> <target state="translated">Couleur de sélection</target> - <jms:reference-file line="674">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="765">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d523ebbd10146cdfd39dee077f04c9d08468d0bc" resname="Country" approved="yes"> <source>Country</source> <target state="translated">Pays</target> - <jms:reference-file line="183">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="179">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="36">actions/Feedback/ListsMacros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1a86d07315c59a10355c667fbd3cdd3d813aa476" resname="Create a user"> @@ -2049,9 +2061,9 @@ <trans-unit id="2bd00521d39c34d7b8a4a42573e1cf42fb319036" resname="Creer" approved="yes"> <source>Creer</source> <target state="translated">Créer</target> - <jms:reference-file line="4">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="4">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> <jms:reference-file line="4">Bridge/Dailymotion/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="4">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="4">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e0c179a64761a8abdbd1a1ef499e6aa7fd41b516" resname="Creer la tache d'ecriture des metadonnees" approved="yes"> <source>Creer la tache d'ecriture des metadonnees</source> @@ -2096,8 +2108,8 @@ <trans-unit id="6a2b9fb6f6a60bde44a1bbe5e058c013cb1004ea" resname="Creer une playlist" approved="yes"> <source>Creer une playlist</source> <target state="translated">Créer une liste de lecture</target> - <jms:reference-file line="4">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> <jms:reference-file line="4">Bridge/Dailymotion/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="4">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> </trans-unit> <trans-unit id="27c26eb5f5ded79caa39c9dd44376bf3556f6466" resname="Creez une application pour commencer a utiliser l'API Phraseanet" approved="yes"> <source>Creez une application pour commencer a utiliser l'API Phraseanet</source> @@ -2118,7 +2130,7 @@ <source>Current configuration contains some errors</source> <target state="needs-translation">La configuration contient des erreurs</target> - <jms:reference-file line="290">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="309">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="31b3c410ee3a3630f3efc08bae2fd9d06ec16ff4" resname="Current operations cannot be executed because the site is temporarily in maintenance mode. Wait a few minutes and try your request again" approved="yes"> <source>Current operations cannot be executed because the site is temporarily in maintenance mode. Wait a few minutes and try your request again</source> @@ -2216,12 +2228,12 @@ <trans-unit id="eb9a4bc1c0c153e4e4b042a79113b815b7e3021d" resname="Date" approved="yes"> <source>Date</source> <target state="translated">Date</target> - <jms:reference-file line="337">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="434">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2aafad40063bdb20757ad69b9fc9e0a06d6ca1c1" resname="Date Added" approved="yes"> <source>Date Added</source> <target state="translated">Date d'ajout</target> - <jms:reference-file line="348">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="377">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a4dde3acaa2424fe7135b962c49e37b13b1ebb43" resname="Date Creation" approved="yes"> <source>Date Creation</source> @@ -2231,7 +2243,7 @@ <trans-unit id="ae5ac088b6ef50c2a9e1ccf96d6f3c6d65cc4c05" resname="Date Updated"> <source>Date Updated</source> <target state="new">Date Updated</target> - <jms:reference-file line="351">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="380">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="910c2f8e114bda3eef68b7f17eee5e864be52dc4" resname="Date de connexion" approved="yes"> <source>Date de connexion</source> @@ -2257,6 +2269,11 @@ <jms:reference-file line="11">prod/Baskets/Reorder.html.twig</jms:reference-file> <jms:reference-file line="10">prod/Story/Reorder.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="ce084029e351b4bfa9f425ae70e8aaa14a8904e5" resname="Date(s) from field(s)" approved="yes"> + <source>Date(s) from field(s)</source> + <target state="translated">Date(s)</target> + <jms:reference-file line="459">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="6b98c9b528241fc8135fb9fd472c7db12ec14964" resname="De" approved="yes"> <source>De</source> <target state="translated">De</target> @@ -2298,7 +2315,7 @@ <trans-unit id="21cec17f6cd9c992f10804a71ea6d286a56c456a" resname="Default basket" approved="yes"> <source>Default basket</source> <target state="translated">Panier par défaut</target> - <jms:reference-file line="48">Phrasea/Helper/WorkZone.php</jms:reference-file> + <jms:reference-file line="49">Phrasea/Helper/WorkZone.php</jms:reference-file> </trans-unit> <trans-unit id="1747ef3d688685c5844db2dc7c98aafd78ce3893" resname="Default export title" approved="yes"> <source>Default export title</source> @@ -2333,7 +2350,7 @@ <trans-unit id="93603718ec74d5e4b9bc11e64f36a5d90f03f48e" resname="Defined by admin" approved="yes"> <source>Defined by admin</source> <target state="translated">Définit par l'admin</target> - <jms:reference-file line="712">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="803">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3b6bf506a535e9bf22431eace58b8f2f704dbd2a" resname="Defined in Apache configuration" approved="yes"> <source>Defined in Apache configuration</source> @@ -2353,10 +2370,15 @@ <trans-unit id="f6fdbe48dc54dd86f63097a03bd24094dedd713a" resname="Delete" approved="yes"> <source>Delete</source> <target state="translated">Supprimer</target> - <jms:reference-file line="355">prod/upload/lazaret.html.twig</jms:reference-file> - <jms:reference-file line="356">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="512">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="513">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="25">admin/task-manager/templates.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="1b5737dea168495fa0495e00ce58b4832772a492" resname="Delete account successfull" approved="yes"> + <source>Delete account successfull</source> + <target state="translated">Suppression du compte réalisée avec succès</target> + <jms:reference-file line="21">Notification/Mail/MailSuccessAccountDelete.php</jms:reference-file> + </trans-unit> <trans-unit id="7533d4121d8de10e9b2b4b9c5afa5dfbde846af1" resname="Delete all users rights" approved="yes"> <source>Delete all users rights</source> <target state="translated">Supprimer tous les droits de l'utilisateur</target> @@ -2366,7 +2388,7 @@ <trans-unit id="ddd0876d47dc58418b245cf6a3d73a97d8b09400" resname="Delete basket" approved="yes"> <source>Delete basket</source> <target state="translated">Supprimer le panier</target> - <jms:reference-file line="37">WorkZone/Browser/Results.html.twig</jms:reference-file> + <jms:reference-file line="18">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dba1d3851f7f3efec8a1956e040bae0328da98d0" resname="Delete current"> <source>Delete current</source> @@ -2381,7 +2403,7 @@ <trans-unit id="c6d08354792522fdbda121b635282d0f2c41c507" resname="Delete the selection"> <source>Delete the selection</source> <target state="new">Delete the selection</target> - <jms:reference-file line="72">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="68">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5934638eb5d7384a3c63899019365bb9b7b53aff" resname="Delete the subview ?"> <source>Delete the subview ?</source> @@ -2403,9 +2425,9 @@ <trans-unit id="57ec2e2addbd6a4117f16c1fff5f491fe3c5642c" resname="Deplacement %n_element% elements" approved="yes"> <source>Deplacement %n_element% elements</source> <target state="translated">Déplacement de %n_element% documents</target> - <jms:reference-file line="6">Bridge/Flickr/photo_moveinto_photoset.html.twig</jms:reference-file> - <jms:reference-file line="6">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> <jms:reference-file line="6">Bridge/Dailymotion/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="6">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="6">Bridge/Flickr/photo_moveinto_photoset.html.twig</jms:reference-file> </trans-unit> <trans-unit id="17c91ee147631da4f5aacabed0e198eb02955790" resname="Dernier access" approved="yes"> <source>Dernier access</source> @@ -2415,8 +2437,8 @@ <trans-unit id="821ed4c906c76220f9dc83eba5e0b861e22baa04" resname="Derniere mise a jour le %updated_on%" approved="yes"> <source>Derniere mise a jour le %updated_on%</source> <target state="translated">Dernière mise à jour le %updated_on%</target> - <jms:reference-file line="45">prod/results/entry.html.twig</jms:reference-file> <jms:reference-file line="39">prod/results/feeds_entry.html.twig</jms:reference-file> + <jms:reference-file line="45">prod/results/entry.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dcce9368ad626fe4addfa719b7a16807d464aa9b" resname="Derniers envois"> <source>Derniers envois</source> @@ -2431,39 +2453,40 @@ <trans-unit id="55f8ebc805e65b5b71ddafdae390e3be2bcd69af" resname="Description" approved="yes"> <source>Description</source> <target state="translated">Description</target> - <jms:reference-file line="19">prod/Tooltip/DCESFieldInfo.html.twig</jms:reference-file> - <jms:reference-file line="52">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="31">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> - <jms:reference-file line="24">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="44">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="24">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="31">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="43">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="31">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="24">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="44">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="31">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="24">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="52">Bridge/Flickr/upload.html.twig</jms:reference-file> + <jms:reference-file line="31">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> + <jms:reference-file line="19">prod/Tooltip/DCESFieldInfo.html.twig</jms:reference-file> <jms:reference-file line="68">web/developers/application_form.html.twig</jms:reference-file> </trans-unit> <trans-unit id="85cce1e14782f67cb830f74002ebe5603783c674" resname="Deselect all" approved="yes"> <source>Deselect all</source> <target state="translated">Tout désélectionner</target> - <jms:reference-file line="64">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="216">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="27">web/report/form_date_and_base.html.twig</jms:reference-file> + <jms:reference-file line="222">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="60">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="71">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="48">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> <trans-unit id="fd281ce85e6f98a7dad0aa31a2e493a85ef178ca" resname="Design of personalization logo section"> <source>Design of personalization logo section</source> - <target state="new">Design of personalization logo section</target> + <target state="needs-translation">Design de la section de personnalisation du logo</target> <jms:reference-file line="60">Form/Configuration/GeneralFormType.php</jms:reference-file> </trans-unit> <trans-unit id="ac930a136ebd04a19bc5f2ce1769fc065efb7bdf" resname="Detailed view URL" approved="yes"> <source>Detailed view URL</source> <target state="translated">URL de la vue détaillée</target> - <jms:reference-file line="50">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="56">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dc3decbb93847518f1a049dcf49d0d7c6560bcc6" resname="Details" approved="yes"> <source>Details</source> <target state="translated">Détails</target> - <jms:reference-file line="2">admin/collection/details.html.twig</jms:reference-file> <jms:reference-file line="2">admin/databox/details.html.twig</jms:reference-file> + <jms:reference-file line="2">admin/collection/details.html.twig</jms:reference-file> </trans-unit> <trans-unit id="426d7f1b0dc37d0fb8ebff49d28335b1fd73774e" resname="Developpeur" approved="yes"> <source>Developpeur</source> @@ -2478,9 +2501,9 @@ <trans-unit id="45e147abd920eeb1aca320340e18cf67b4c77252" resname="Dimension" approved="yes"> <source>Dimension</source> <target state="translated">Dimensions</target> + <jms:reference-file line="32">Media/Subdef/Image.php</jms:reference-file> <jms:reference-file line="32">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="32">Media/Subdef/Video.php</jms:reference-file> - <jms:reference-file line="32">Media/Subdef/Image.php</jms:reference-file> </trans-unit> <trans-unit id="8b6613d50c2d8718fd7cab023e1530ce11650736" resname="Disable document type sharing" approved="yes"> <source>Disable document type sharing</source> @@ -2500,22 +2523,22 @@ <trans-unit id="fa9fd169cd55f0433c6e7a4b5d758f90d0847411" resname="Display & action settings" approved="yes"> <source><![CDATA[Display & action settings]]></source> <target state="translated">Paramétrage d'affichage et d'action</target> - <jms:reference-file line="153">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="152">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d47165ea879fb259a5754e6c4052a1a4437dfda8" resname="Display technical data" approved="yes"> <source>Display technical data</source> <target state="translated">Affichage des informations techniques</target> - <jms:reference-file line="634">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="725">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="91ac9f9a0ff33ed65ca817be668da3693d743364" resname="Display thumbnails" approved="yes"> <source>Display thumbnails</source> <target state="translated">Afficher comme titre</target> - <jms:reference-file line="210">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="225">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f2f91f3c9d0ddbb497a99ee01c0f18a4b896bad4" resname="Do not display" approved="yes"> <source>Do not display</source> <target state="translated">Masquer les informations techniques</target> - <jms:reference-file line="645">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="736">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e3eb8417683d81ed1fb08ad9399e3c61f7054000" resname="Do not forget to restart the tasks scheduler" approved="yes"> <source>Do not forget to restart the tasks scheduler</source> @@ -2547,7 +2570,7 @@ <trans-unit id="e214b8a29923056887b7edf6635d90dcbb2abe88" resname="Document" approved="yes"> <source>Document</source> <target state="translated">Document</target> - <jms:reference-file line="297">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="322">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c5bd0e534d218eb5680d7e83804e69cef318ea3f" resname="Document Type Sharing" approved="yes"> <source>Document Type Sharing</source> @@ -2602,9 +2625,9 @@ <target state="translated">Téléchargement de documents</target> <jms:reference-file line="13">actions/Download/prepare.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="7cec77b277c557a0d7c6f62b73691b0079b37639" resname="Drag and drop the pin to move position"> + <trans-unit id="7cec77b277c557a0d7c6f62b73691b0079b37639" resname="Drag and drop the pin to move position" approved="yes"> <source>Drag and drop the pin to move position</source> - <target state="needs-translation">Glissé déposé l'icon pour modifier la position.</target> + <target state="translated">Glisser-déposer l'icône pour modifier la position</target> <jms:reference-file line="118">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> <trans-unit id="8e9069dbb48837c11e9c74fe440ccfd5d1cd6b0b" resname="Droits" approved="yes"> @@ -2630,17 +2653,17 @@ <trans-unit id="0d01e2e86669e98441ab4dce5520696c318b7098" resname="E-mail" approved="yes"> <source>E-mail</source> <target state="translated">E-mail</target> - <jms:reference-file line="37">Form/Login/PhraseaRegisterForm.php</jms:reference-file> <jms:reference-file line="23">Form/Login/PhraseaForgotPasswordForm.php</jms:reference-file> + <jms:reference-file line="37">Form/Login/PhraseaRegisterForm.php</jms:reference-file> </trans-unit> - <trans-unit id="9cf2896f8b2e9e6a28f9b151e8be31f220a5d256" resname="E-mail domain"> + <trans-unit id="9cf2896f8b2e9e6a28f9b151e8be31f220a5d256" resname="E-mail domain" approved="yes"> <source>E-mail domain</source> - <target state="new">E-mail domain</target> - <jms:reference-file line="171">actions/Feedback/list.html.twig</jms:reference-file> + <target state="translated">Domaine email</target> + <jms:reference-file line="167">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="734a78cd06d0929c433f487754d18bf073e43bf6" resname="EN"> + <trans-unit id="734a78cd06d0929c433f487754d18bf073e43bf6" resname="EN" approved="yes"> <source>EN</source> - <target state="new">EN</target> + <target state="translated">EN</target> <jms:reference-file line="37">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> <trans-unit id="a908567d2c0292366061394efd6d40b139e033c5" resname="ERREUR : La classe de subdef est necessaire et egal a "thumbnail","preview" ou "document"" approved="yes"> @@ -2658,9 +2681,9 @@ <target state="translated">ERREUR : Toutes les balises "subdefgroup" nécessitent un attribut "name"</target> <jms:reference-file line="213">lib/classes/databox.php</jms:reference-file> </trans-unit> - <trans-unit id="9debabbaa01a190fabe8324c5e6e2f2808052099" resname="ES"> + <trans-unit id="9debabbaa01a190fabe8324c5e6e2f2808052099" resname="ES" approved="yes"> <source>ES</source> - <target state="new">ES</target> + <target state="translated">ES</target> <jms:reference-file line="38">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> <trans-unit id="5301648dcf6b53cefc9ed52999aaa92d4603cae0" resname="Edit" approved="yes"> @@ -2668,9 +2691,9 @@ <target state="translated">Editer</target> <jms:reference-file line="10">admin/task-manager/templates.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="c989a5c3729db7aa928f90f4d56e107adbee954c" resname="Edit position"> + <trans-unit id="c989a5c3729db7aa928f90f4d56e107adbee954c" resname="Edit position" approved="yes"> <source>Edit position</source> - <target state="needs-translation">Modifier la position</target> + <target state="translated">Modifier la position</target> <jms:reference-file line="116">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> <trans-unit id="9d70cb368bda9b31e0c6894792a9ee58865d01d4" resname="Editer" approved="yes"> @@ -2686,9 +2709,9 @@ <trans-unit id="5184ecbec7829b91dda100c703ea3fa284c7f5e8" resname="Edition de 1 element" approved="yes"> <source>Edition de 1 element</source> <target state="translated">Edition de 1 document</target> - <jms:reference-file line="10">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> - <jms:reference-file line="10">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="10">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="10">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="10">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> </trans-unit> <trans-unit id="99ead0eb32b2089a9933db5ccc262e2fc35fd0a6" resname="Edition des droits de %display_name%" approved="yes"> <source>Edition des droits de %display_name%</source> @@ -2703,7 +2726,7 @@ <trans-unit id="92376275a970f44a04fcce0319075ec61bbac9ca" resname="Edition impossible" approved="yes"> <source>Edition impossible</source> <target state="translated">Edition impossible</target> - <jms:reference-file line="400">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="402">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c7e9fb2ea6c3b8c3ce97645eb902c348d859f36d" resname="Editor" approved="yes"> <source>Editor</source> @@ -2741,13 +2764,13 @@ <trans-unit id="84add5b2952787581cb9a8851eef63d1ec75d22b" resname="Email" approved="yes"> <source>Email</source> <target state="translated">E-mail</target> - <jms:reference-file line="140">admin/publications/fiche.html.twig</jms:reference-file> <jms:reference-file line="129">web/admin/dashboard.html.twig</jms:reference-file> + <jms:reference-file line="140">admin/publications/fiche.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4492ab77c9378c5582b87621ecd89c96fef88640" resname="Email '%email%' for login '%login%' already exists in database" approved="yes"> <source>Email '%email%' for login '%login%' already exists in database</source> <target state="translated">L'adresse e-mail '%email%' pour l'identifiant '%login%' existe déjà dans le base</target> - <jms:reference-file line="654">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="655">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="e4aaac273d3c0d793207e6b559a7b7f97d543064" resname="Email Name" approved="yes"> <source>Email Name</source> @@ -2772,14 +2795,32 @@ <trans-unit id="d8efc876746f2fe8dae7e433323dc4f22535d1ac" resname="Email successfully confirmed" approved="yes"> <source>Email successfully confirmed</source> <target state="translated">Adresse e-mail confirmée avec succès</target> - <jms:reference-file line="21">Notification/Mail/MailSuccessEmailConfirmationUnregistered.php</jms:reference-file> <jms:reference-file line="21">Notification/Mail/MailSuccessEmailConfirmationRegistered.php</jms:reference-file> + <jms:reference-file line="21">Notification/Mail/MailSuccessEmailConfirmationUnregistered.php</jms:reference-file> </trans-unit> <trans-unit id="b529e23b7676146d364266e97d9f242eac2e28b4" resname="Email test result : %email_status%" approved="yes"> <source>Email test result : %email_status%</source> <target state="translated">Résultat du test d'e-mail : %email_status%</target> <jms:reference-file line="136">web/admin/dashboard.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="c839b2905a9c9e4e611519e461c6f3e0dde4ec78" resname="Email:deletion:request:message Hello %civility% %firstName% %lastName%. We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below. If you are not at the origin of this request, please change your password as soon as possible %resetPassword% Link is valid for one hour." approved="yes"> + <source>Email:deletion:request:message Hello %civility% %firstName% %lastName%. + We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below. + If you are not at the origin of this request, please change your password as soon as possible %resetPassword% + Link is valid for one hour.</source> + <target state="translated">Bonjour %civility% %firstName% %lastName%. Nous avons reçu une demande de suppression de compte pour votre compte sur %urlInstance%, veuillez confirmer cette suppression en cliquant sur le lien ci-dessous. Si toutefois vous n'étiez pas à l'origine de cette demande, merci de modifier votre mot de passe aussi rapidement que possible. %resetPassword%. Le lien est valable pendant une heure.</target> + <jms:reference-file line="51">Notification/Mail/MailRequestAccountDelete.php</jms:reference-file> + </trans-unit> + <trans-unit id="ccbd5b5d94afa34b04935d0b084335f2656d96af" resname="Email:deletion:request:subject Delete account confirmation" approved="yes"> + <source>Email:deletion:request:subject Delete account confirmation</source> + <target state="translated">Confirmation de suppression de votre compte</target> + <jms:reference-file line="39">Notification/Mail/MailRequestAccountDelete.php</jms:reference-file> + </trans-unit> + <trans-unit id="b37c2cc6df6ff49078905d16da4e3fa3a28490e4" resname="Email:deletion:request:textButton Delete my account" approved="yes"> + <source>Email:deletion:request:textButton Delete my account</source> + <target state="translated">Supprimer mon compte</target> + <jms:reference-file line="68">Notification/Mail/MailRequestAccountDelete.php</jms:reference-file> + </trans-unit> <trans-unit id="473558393914486d8e60b9968e5443e40be433e0" resname="Emails" approved="yes"> <source>Emails</source> <target state="translated">E-mails</target> @@ -2788,7 +2829,7 @@ <trans-unit id="7884b9b422d77cabded5da8a9a56524a84481930" resname="Embed code" approved="yes"> <source>Embed code</source> <target state="translated">Code d'intégration (Embed code)</target> - <jms:reference-file line="61">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="67">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e5afbbe7023486a123b45581f49820899571c415" resname="Empty a collection" approved="yes"> <source>Empty a collection</source> @@ -2814,8 +2855,8 @@ <trans-unit id="b21b69f5882b80aa94dde1b4b588cc884758d886" resname="Empty the collection before removing" approved="yes"> <source>Empty the collection before removing</source> <target state="translated">Videz la collection avant de la supprimer</target> - <jms:reference-file line="68">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="455">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="69">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="456">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="5231158f14d4ea45584d5ad019c76e7e5e52e7ef" resname="En attente" approved="yes"> <source>En attente</source> @@ -2830,8 +2871,8 @@ <trans-unit id="0413c20ae2fd31e0a1eef73e7768c8e1c68558d9" resname="En cours d'encodage" approved="yes"> <source>En cours d'encodage</source> <target state="translated">En cours d'encodage</target> - <jms:reference-file line="531">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="495">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="531">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="56">actions/Bridge/records_list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="43494e363213dc176e0699b914ccf966ccbd994d" resname="En cours d'envoi" approved="yes"> @@ -2965,6 +3006,11 @@ <target state="translated">Envoi avec succès</target> <jms:reference-file line="445">Phrasea/Controller/LightboxController.php</jms:reference-file> </trans-unit> + <trans-unit id="09b6a6dcd3f6d4a7d3a95bceaad67a7f1800272f" resname="Equals" approved="yes"> + <source>Equals</source> + <target state="translated">Egale</target> + <jms:reference-file line="434">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="ab546c237a6685e5c75689266cfa715eeb21b7db" resname="Erreur" approved="yes"> <source>Erreur</source> <target state="translated">Erreur</target> @@ -2973,8 +3019,8 @@ <trans-unit id="fb6a263ee36a9eebf03b39221b223a2b7b2eae5f" resname="Erreur !" approved="yes"> <source>Erreur !</source> <target state="translated">Erreur</target> - <jms:reference-file line="9">web/lightbox/error.html.twig</jms:reference-file> <jms:reference-file line="15">mobile/lightbox/error.html.twig</jms:reference-file> + <jms:reference-file line="9">web/lightbox/error.html.twig</jms:reference-file> </trans-unit> <trans-unit id="90aa6d11f451da9eab381da74e349cb9d7f53647" resname="Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas" approved="yes"> <source>Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas</source> @@ -3029,9 +3075,9 @@ <trans-unit id="7f7bf810a272a035f6da919a27124160567c0b3f" resname="Erreur lors de la tentative ; errreur : %message%" approved="yes"> <source>Erreur lors de la tentative ; errreur : %message%</source> <target state="translated">Erreur lors de la tentative. Le message d'erreur est : %message%</target> - <jms:reference-file line="135">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> - <jms:reference-file line="483">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> - <jms:reference-file line="495">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> + <jms:reference-file line="139">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> + <jms:reference-file line="493">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> + <jms:reference-file line="507">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> </trans-unit> <trans-unit id="bd8b889cda696b61ee9c4d197f3d93e93c1ab8e6" resname="Erreur lors de votre authentification" approved="yes"> <source>Erreur lors de votre authentification</source> @@ -3056,7 +3102,7 @@ <trans-unit id="3bce15460cac7169ea217ebc3f887d839e28e3a8" resname="Error while creating user" approved="yes"> <source>Error while creating user</source> <target state="translated">Erreur lors de la création de l'utilisateur</target> - <jms:reference-file line="489">Controller/Prod/PushController.php</jms:reference-file> + <jms:reference-file line="494">Controller/Prod/PushController.php</jms:reference-file> </trans-unit> <trans-unit id="15059bc07c7d22747a0bf89dbefdeffe625a4776" resname="Error while saving preference" approved="yes"> <source>Error while saving preference</source> @@ -3067,8 +3113,8 @@ <trans-unit id="ef89b844df981421f3abce06ad08d28d2b31e539" resname="Error while sending the file" approved="yes"> <source>Error while sending the file</source> <target state="translated">Erreur lors de l'envoi du fichier</target> - <jms:reference-file line="59">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="38">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="60">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="cbd40a831648175ebe3f427f83956d626506dc56" resname="Error while uploading" approved="yes"> <source>Error while uploading</source> @@ -3078,8 +3124,8 @@ <trans-unit id="40019ae278d51a265b82e37738989bf1b22157b7" resname="Etendue de la publication" approved="yes"> <source>Etendue de la publication</source> <target state="translated">Etendue de la publication</target> - <jms:reference-file line="22">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="105">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="22">admin/publications/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="255f8b2705b27e25acc23428730bfd7a32d9a0db" resname="Etes vous sur de supprimer %number% photos ?" approved="yes"> <source>Etes vous sur de supprimer %number% photos ?</source> @@ -3094,14 +3140,19 @@ <trans-unit id="e7f864e2cef6464cd4342b0a0b607c6b53fd8263" resname="Etes vous sur de supprimer %number% playlists ?" approved="yes"> <source>Etes vous sur de supprimer %number% playlists ?</source> <target state="translated">Etes vous certain de vouloir supprimer %number% liste(s) de lecture ?</target> - <jms:reference-file line="13">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/playlist_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f0181b1da6f09b84ae46efce781899eb57ec74b8" resname="Etes vous sur de supprimer %number% videos ?" approved="yes"> <source>Etes vous sur de supprimer %number% videos ?</source> <target state="translated">Etes vous certain de vouloir supprimer %number% video(s )?</target> - <jms:reference-file line="13">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="46a1884f7b083976b0fd0678f10b8f00ee93cde9" resname="Ex : Paris, bleu, montagne" approved="yes"> + <source>Ex : Paris, bleu, montagne</source> + <target state="translated">Ex : Paris, bleu, montagne</target> + <jms:reference-file line="436">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a9c067c65c9f9d5a8e96791db7d189bc22eca9c1" resname="Executables externes" approved="yes"> <source>Executables externes</source> @@ -3116,9 +3167,9 @@ <trans-unit id="f3e4fadb9e370a1e2c0c622c01fc8c77daf93a2c" resname="Export" approved="yes"> <source>Export</source> <target state="translated">Exporter</target> - <jms:reference-file line="107">Controller/Prod/LanguageController.php</jms:reference-file> <jms:reference-file line="75">Controller/Prod/DoDownloadController.php</jms:reference-file> <jms:reference-file line="76">Controller/Prod/DoDownloadController.php</jms:reference-file> + <jms:reference-file line="107">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> <trans-unit id="9c26d273867dffc55d40f46e6a163067c75969f5" resname="Export ranges"> <source>Export ranges</source> @@ -3130,9 +3181,9 @@ <target state="translated">Export ajouté dans la file d'attente.</target> <jms:reference-file line="136">Controller/Prod/ExportController.php</jms:reference-file> </trans-unit> - <trans-unit id="6d2830b1e76dc7300fce6745176601827d233de8" resname="FR"> + <trans-unit id="6d2830b1e76dc7300fce6745176601827d233de8" resname="FR" approved="yes"> <source>FR</source> - <target state="new">FR</target> + <target state="translated">FR</target> <jms:reference-file line="36">Form/Configuration/CustomLinkFormType.php</jms:reference-file> </trans-unit> <trans-unit id="acb28212fba0272ee990cebd571ebe09b463312e" resname="FTP" approved="yes"> @@ -3162,7 +3213,7 @@ <jms:reference-file line="54">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="51">prod/WorkZone/Basket.html.twig</jms:reference-file> <jms:reference-file line="143">web/prod/toolbar.html.twig</jms:reference-file> - <jms:reference-file line="192">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="190">web/prod/toolbar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ffe8e99492ee9b850395d53f6c519938952fde0d" resname="Feeds" approved="yes"> <source>Feeds</source> @@ -3217,11 +3268,11 @@ <trans-unit id="aadf78d4b7c7c7341aa891adca70897c4f978cb6" resname="File is not present in quarantine anymore, please refresh" approved="yes"> <source>File is not present in quarantine anymore, please refresh</source> <target state="translated">Ce fichier n'est plus en quarantaine, rafraichissez la page</target> - <jms:reference-file line="78">Controller/Prod/LazaretController.php</jms:reference-file> - <jms:reference-file line="197">Controller/Prod/LazaretController.php</jms:reference-file> <jms:reference-file line="54">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="134">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="155">Model/Manipulator/LazaretManipulator.php</jms:reference-file> + <jms:reference-file line="78">Controller/Prod/LazaretController.php</jms:reference-file> + <jms:reference-file line="207">Controller/Prod/LazaretController.php</jms:reference-file> </trans-unit> <trans-unit id="3491d2e44dd1896af3411bb1a048847c13647feb" resname="File is too big : 64k max" approved="yes"> <source>File is too big : 64k max</source> @@ -3251,7 +3302,7 @@ <trans-unit id="a3cbb98ddf5ee976bc1c3be5221d66ce3ca2e867" resname="Filename" approved="yes"> <source>Filename</source> <target state="translated">Nom du fichier</target> - <jms:reference-file line="336">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="433">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="246a65679a39e030c98cad396903b0a3d8874dbc" resname="Fils disponibles" approved="yes"> <source>Fils disponibles</source> @@ -3264,11 +3315,6 @@ <target state="translated">Filtrer</target> <jms:reference-file line="41">web/admin/users.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="a7a02ef54f4fa28248414c42efbf3c45d2942326" resname="Filtrer" approved="yes"> - <source>Filtrer</source> - <target state="translated">Filtrer</target> - <jms:reference-file line="62">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="b6ea992aab4668311bb94778e056dd0285f27621" resname="First Name" approved="yes"> <source>First Name</source> <target state="translated">Prénom</target> @@ -3289,19 +3335,19 @@ <trans-unit id="b62482236f533b5e0f245e716211965a8774a2f2" resname="Flash" approved="yes"> <source>Flash</source> <target state="translated">Flash</target> - <jms:reference-file line="298">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="323">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="87">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2869d115faa9aa305076269dfbaf57c28cbd9fb6" resname="FlashFired"> <source>FlashFired</source> <target state="needs-translation">Avec Flash</target> - <jms:reference-file line="303">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="318">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="02893456d53323f0fdbbe9447fe5b3401f2102f7" resname="Flatten layers" approved="yes"> <source>Flatten layers</source> <target state="translated">Aplatir les calques</target> - <jms:reference-file line="35">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="35">Media/Subdef/Image.php</jms:reference-file> + <jms:reference-file line="35">Media/Subdef/Unknown.php</jms:reference-file> </trans-unit> <trans-unit id="9bd85a7d22f6cdee554e5b9e865d26dcbb4dafc9" resname="Focal length" approved="yes"> <source>Focal length</source> @@ -3311,7 +3357,7 @@ <trans-unit id="0267a34f43c33d216cc700ffcd521bf8a5ddcd0c" resname="Force authentication" approved="yes"> <source>Force authentication</source> <target state="translated">Forcer l'authentification</target> - <jms:reference-file line="168">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="169">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c7dbc1bf5eabb170eb6a0597a076723db79ec064" resname="Force sending of the document ?" approved="yes"> <source>Force sending of the document ?</source> @@ -3331,10 +3377,10 @@ <trans-unit id="4c29f7f0335807c2524d8c36d531496aee23f473" resname="Forgot password?" approved="yes"> <source>Forgot password?</source> <target state="translated">Mot de passe oublié ?</target> - <jms:reference-file line="58">login/oauth/login.html.twig</jms:reference-file> - <jms:reference-file line="58">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="74">login/providers/mapping.html.twig</jms:reference-file> + <jms:reference-file line="58">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="70">web/login/index.html.twig</jms:reference-file> + <jms:reference-file line="58">login/oauth/login.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a2f060b7363f54c9f80d62805d36636dd7ebc33c" resname="Forgot your password?" approved="yes"> <source>Forgot your password?</source> @@ -3354,7 +3400,7 @@ <trans-unit id="629fe48e7fcf628a108551add706c29832b214df" resname="FrameRate"> <source>FrameRate</source> <target state="needs-translation">Cadence</target> - <jms:reference-file line="315">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="332">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="d4947df23a237794a9ff63353bd60ebe679c830c" resname="Frequence d'echantillonage" approved="yes"> <source>Frequence d'echantillonage</source> @@ -3386,24 +3432,19 @@ <target state="translated">Paramètres généraux</target> <jms:reference-file line="87">web/admin/dashboard.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="fc45f9b7a9a6e8b48f0e28821ec1981804dd1eb6" resname="Generate" approved="yes"> - <source>Generate</source> - <target state="translated">Générer</target> - <jms:reference-file line="21">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="1738f829e68f7add441844e11cae6237acf401d1" resname="Generate dashboard" approved="yes"> - <source>Generate dashboard</source> - <target state="translated">Générer le tableau de bord</target> - <jms:reference-file line="52">web/report/report_layout_child.html.twig</jms:reference-file> + <trans-unit id="05db1e4e974fff47ae67bae1309fb4edd9b0a053" resname="Generate-cterms"> + <source>Generate-cterms</source> + <target state="new">Generate-cterms</target> + <jms:reference-file line="267">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9f1b4c9f85fcbbf355fdd3c97210173b63551aa6" resname="Generates a flexpaper flash file" approved="yes"> <source>Generates a flexpaper flash file</source> <target state="translated">Générer un fichier flexpaper flash</target> <jms:reference-file line="32">Media/Subdef/FlexPaper.php</jms:reference-file> </trans-unit> - <trans-unit id="b2af9671fd7a6a61d5dd01e3c033bcade0d9695a" resname="Generates a pdf file"> + <trans-unit id="b2af9671fd7a6a61d5dd01e3c033bcade0d9695a" resname="Generates a pdf file" approved="yes"> <source>Generates a pdf file</source> - <target state="new">Generates a pdf file</target> + <target state="translated">Générer un fichier PDF</target> <jms:reference-file line="24">Media/Subdef/Pdf.php</jms:reference-file> </trans-unit> <trans-unit id="d40d73fbcffe62e09f9430c0043ec2e7011a801b" resname="Generates a video file" approved="yes"> @@ -3419,18 +3460,18 @@ <trans-unit id="7ba409c16f96c035c4bdd4246eecf1070e8efd46" resname="Generates an audio file" approved="yes"> <source>Generates an audio file</source> <target state="translated">Générer un fichier audio</target> - <jms:reference-file line="44">Media/Subdef/Audio.php</jms:reference-file> + <jms:reference-file line="48">Media/Subdef/Audio.php</jms:reference-file> </trans-unit> <trans-unit id="d1e6306fa0e2c34c9580854b101bc70e510bc5a3" resname="Generates an image" approved="yes"> <source>Generates an image</source> <target state="translated">Generates an image</target> - <jms:reference-file line="47">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="47">Media/Subdef/Image.php</jms:reference-file> + <jms:reference-file line="47">Media/Subdef/Unknown.php</jms:reference-file> </trans-unit> - <trans-unit id="621654fc14cd9c0d5f5009ff29c1ba0db747f162" resname="Geo Search"> + <trans-unit id="621654fc14cd9c0d5f5009ff29c1ba0db747f162" resname="Geo Search" approved="yes"> <source>Geo Search</source> - <target state="needs-translation">Recherche géolocalisé</target> - <jms:reference-file line="274">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Recherche géolocalisée</target> + <jms:reference-file line="296">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="efd1f5fd46c31701d2e70555e9ab45efe27b4048" resname="Geonames server address" approved="yes"> <source>Geonames server address</source> @@ -3504,25 +3545,14 @@ </trans-unit> <trans-unit id="779f61efcfe62182d0052c9526f3910378764758" resname="Graphiste (preview au rollover)" approved="yes"> <source>Graphiste (preview au rollover)</source> - <target state="translated">Graphiste (prévisualisation au rollover)</target> - <jms:reference-file line="629">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Graphiste (prévisualisation au survol de la vignette)</target> + <jms:reference-file line="720">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="bd846adf34307e77ff7d457b28a426470fc0bad9" resname="Great" approved="yes"> <source>Great</source> <target state="translated">Excellente</target> <jms:reference-file line="153">Controller/Root/LoginController.php</jms:reference-file> </trans-unit> - <trans-unit id="325f1aa7d25c7b35a2006768bef41b1e7727d444" resname="Groupement des resultats sur le champ %name%" approved="yes"> - <source>Groupement des resultats sur le champ %name%</source> - <target state="translated">Groupement des résultats sur le champ %name%</target> - <jms:reference-file line="607">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="754">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="42c8f672af9a6da3268b6f4a99958d6e735607b1" resname="Grouper" approved="yes"> - <source>Grouper</source> - <target state="translated">Grouper</target> - <jms:reference-file line="66">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="d36ed42d18a32e092664742ba0e0879f66ff0439" resname="Groupez 2 ou plusieurs mots avec des guillemets: "Michael Jackson"" approved="yes"> <source>Groupez 2 ou plusieurs mots avec des guillemets: "Michael Jackson"</source> <target state="translated">Groupez deux ou plusieurs mots avec des guillemets : "Michael Jackson"</target> @@ -3531,8 +3561,8 @@ <trans-unit id="face83ee3014bdc8f98203cc94e2e89222452e90" resname="Guest" approved="yes"> <source>Guest</source> <target state="translated">Invité</target> - <jms:reference-file line="165">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="246">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="149">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="223">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="233f29cc242544136b94f354693299956575a9d0" resname="Guest access" approved="yes"> <source>Guest access</source> @@ -3544,6 +3574,16 @@ <target state="translated">Vous devez vous authentifier pour télécharger.</target> <jms:reference-file line="88">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="771d30c668093219776b418dc5d3475682457167" resname="Gui-editable"> + <source>Gui-editable</source> + <target state="new">Gui-editable</target> + <jms:reference-file line="196">admin/fields/templates.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="c3ccdd44c467c7149733d19a40e0068ddb00ab25" resname="Gui-visible"> + <source>Gui-visible</source> + <target state="new">Gui-visible</target> + <jms:reference-file line="204">admin/fields/templates.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="6bc9ceaf6239215199222552fbbe96c17a549705" resname="HD Download" approved="yes"> <source>HD Download</source> <target state="translated">Téléchargement HD</target> @@ -3552,14 +3592,14 @@ <trans-unit id="d0d3632efe2a20cf1235aead5d817e03308131cc" resname="Hello %username%" approved="yes"> <source>Hello %username%</source> <target state="translated">Bonjour %username%,</target> + <jms:reference-file line="62">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="45">api/auth/native_app_access_token.html.twig</jms:reference-file> <jms:reference-file line="82">api/auth/end_user_authorization.html.twig</jms:reference-file> - <jms:reference-file line="62">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c47ae15370cfe1ed2781eedc1dc2547d12d9e972" resname="Help" approved="yes"> <source>Help</source> <target state="translated">Aide</target> - <jms:reference-file line="69">login/layout/base-layout.html.twig</jms:reference-file> + <jms:reference-file line="70">login/layout/base-layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7c4fcd241b7c7436fc9380f34ad57efcb70fd49c" resname="Hi, Please log in" approved="yes"> <source>Hi, Please log in</source> @@ -3574,11 +3614,11 @@ <trans-unit id="70f8bb9a8a5393ef080507a89e4b98d139000d65" resname="Home" approved="yes"> <source>Home</source> <target state="translated">Accueil</target> - <jms:reference-file line="66">login/layout/base-layout.html.twig</jms:reference-file> - <jms:reference-file line="3">login/include/language-block.html.twig</jms:reference-file> - <jms:reference-file line="17">mobile/lightbox/feed.html.twig</jms:reference-file> <jms:reference-file line="50">mobile/lightbox/basket_element.html.twig</jms:reference-file> + <jms:reference-file line="17">mobile/lightbox/feed.html.twig</jms:reference-file> <jms:reference-file line="33">mobile/lightbox/validate.html.twig</jms:reference-file> + <jms:reference-file line="3">login/include/language-block.html.twig</jms:reference-file> + <jms:reference-file line="67">login/layout/base-layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="99f3b7dca04d6f354a9d2a3b633d9578a9ad8cac" resname="Homepage slideshow" approved="yes"> <source>Homepage slideshow</source> @@ -3601,10 +3641,10 @@ <target state="translated">Adresse IP</target> <jms:reference-file line="28">web/account/sessions.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="4f325d995b6d028ccc75771b1679537b623521c4" resname="ISO"> + <trans-unit id="4f325d995b6d028ccc75771b1679537b623521c4" resname="ISO" approved="yes"> <source>ISO</source> - <target state="new">ISO</target> - <jms:reference-file line="279">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <target state="translated">ISO</target> + <jms:reference-file line="288">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="16a5173a6d384d155354f429d72834cd0bd6bc54" resname="ISO sensibility" approved="yes"> <source>ISO sensibility</source> @@ -3613,8 +3653,8 @@ </trans-unit> <trans-unit id="e195951cb1946935a88fdd9ee6735e0f6ddc120b" resname="Iconographe (description au rollover)" approved="yes"> <source>Iconographe (description au rollover)</source> - <target state="translated">Iconographe (description au rollover)</target> - <jms:reference-file line="625">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Iconographe (fiche d'indexation au survol de la vignette)</target> + <jms:reference-file line="716">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="474ae52625b87d7628ae7b20a499329a99e07119" resname="Id" approved="yes"> <source>Id</source> @@ -3659,7 +3699,7 @@ <trans-unit id="50e19fda0d5b4b74a4a1a1d584e56578693a4ea4" resname="Image" approved="yes"> <source>Image</source> <target state="translated">Image</target> - <jms:reference-file line="294">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="319">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="57a8e563190f921afb876d6489bb40ed74f43a1a" resname="ImageMagick" approved="yes"> <source>ImageMagick</source> @@ -3669,7 +3709,7 @@ <trans-unit id="3e38a20c1629a473809ea6a14c9cdf4204d3ac3b" resname="Images par secondes" approved="yes"> <source>Images par secondes</source> <target state="translated">Images par seconde</target> - <jms:reference-file line="78">actions/Tools/videoEditor.html.twig</jms:reference-file> + <jms:reference-file line="91">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="134">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4d39de5885805135b502a3e8920ffb0b1921cb6f" resname="Imagette indisponible" approved="yes"> @@ -3685,7 +3725,7 @@ <trans-unit id="ca13920228ea59b30c40b8372f53df3bf4631520" resname="In the answer grid" approved="yes"> <source>In the answer grid</source> <target state="translated">Dans une infobulle séparée</target> - <jms:reference-file line="637">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="728">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="37ba6b0018a45c0890440d9e1cae63e046bad31d" resname="Include Business-fields in caption" approved="yes"> <source>Include Business-fields in caption</source> @@ -3697,12 +3737,12 @@ <trans-unit id="e60e6d0321b0dc4e2a47c163bdb8402df3deb18f" resname="Incorrect please try again" approved="yes"> <source>Incorrect please try again</source> <target state="translated">Incorrect. Veuillez réessayer</target> - <jms:reference-file line="19">web/common/macros.html.twig</jms:reference-file> + <jms:reference-file line="19">web/common/macro_captcha.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d8b6addd60debc77c2c9b03c90e8b626de36d170" resname="Indexable" approved="yes"> <source>Indexable</source> <target state="translated">Indexable</target> - <jms:reference-file line="181">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="180">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="85737399ad7bf8da1405c20f9984ceef5efe1ca9" resname="Indexation task" approved="yes"> <source>Indexation task</source> @@ -3717,9 +3757,9 @@ <trans-unit id="54937b3a4f8cfa4576692882d3ff7b14c90c4ce5" resname="Informations" approved="yes"> <source>Informations</source> <target state="translated">Informations</target> - <jms:reference-file line="195">admin/user/registrations.html.twig</jms:reference-file> - <jms:reference-file line="33">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="56">web/account/base.html.twig</jms:reference-file> + <jms:reference-file line="33">web/admin/dashboard.html.twig</jms:reference-file> + <jms:reference-file line="195">admin/user/registrations.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e1e0586141223b0143df16f7422dae5a43b77103" resname="Informations personnelles" approved="yes"> <source>Informations personnelles</source> @@ -3734,8 +3774,8 @@ <trans-unit id="9be51f96ff02e94d1a5108f14de0b373ef3dd675" resname="Inscription" approved="yes"> <source>Inscription</source> <target state="translated">Inscription</target> - <jms:reference-file line="14">web/login/register.html.twig</jms:reference-file> <jms:reference-file line="15">web/login/register-classic.html.twig</jms:reference-file> + <jms:reference-file line="14">web/login/register.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ff4fc2499da3e8fafdb7402dafd3b326aa0cc762" resname="Install in progess" approved="yes"> <source>Install in progess</source> @@ -3755,8 +3795,8 @@ <trans-unit id="3da203883b919e942c295aa2ebec1ac7e121c3fb" resname="Invalid file format" approved="yes"> <source>Invalid file format</source> <target state="translated">Format de fichier incorrect</target> - <jms:reference-file line="62">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="41">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="63">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="56f848f49e2a8c9efeb61b986ec48e6328cac5cc" resname="Invalid file type" approved="yes"> <source>Invalid file type</source> @@ -3767,9 +3807,9 @@ <trans-unit id="3a8b37b23cc60ea1c00e28058bfbb15cf00a547d" resname="Invalid file type, only (%supported_file_types%) file formats are supported" approved="yes"> <source>Invalid file type, only (%supported_file_types%) file formats are supported</source> <target state="translated">Type de fichier non supportés. Seuls les types de fichiers %supported_file_types% sont supportés.</target> + <jms:reference-file line="397">admin/databox/databox.html.twig</jms:reference-file> <jms:reference-file line="60">user/import/file.html.twig</jms:reference-file> <jms:reference-file line="199">admin/statusbit/edit.html.twig</jms:reference-file> - <jms:reference-file line="397">admin/databox/databox.html.twig</jms:reference-file> </trans-unit> <trans-unit id="65fd566280b15a384df25c73315b0dcbc6dacb69" resname="Invalid file type, only (%supported_file_types%) file formats are supported'" approved="yes"> <source>Invalid file type, only (%supported_file_types%) file formats are supported'</source> @@ -3779,8 +3819,8 @@ <trans-unit id="1c3a084c7a6e7e196db6c80a473d0bf0dfdd8f69" resname="Invalid labels parameter" approved="yes"> <source>Invalid labels parameter</source> <target state="translated">Paramètre de label incorrect</target> - <jms:reference-file line="574">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="134">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="575">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="d211e2ef8dd9e15443e081e455da91938085a2ff" resname="Invalid link." approved="yes"> <source>Invalid link.</source> @@ -3790,7 +3830,7 @@ <trans-unit id="8a3506d6dd32abc6a9d3651ec8b9bba513f65e81" resname="Invalid password provided" approved="yes"> <source>Invalid password provided</source> <target state="translated">Mot de passe fournis invalide.</target> - <jms:reference-file line="64">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="71">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="a1244ab057df1737a47854d003cc98ec33ad3c09" resname="Invalid target collection" approved="yes"> <source>Invalid target collection</source> @@ -3829,9 +3869,9 @@ <target state="translated">Conserver la synchronisation entre Bridge et les API clientes.</target> <jms:reference-file line="41">TaskManager/Job/BridgeJob.php</jms:reference-file> </trans-unit> - <trans-unit id="266695479a949eec44dea9db4e15fba00163f04e" resname="Keyboard shortcuts"> + <trans-unit id="266695479a949eec44dea9db4e15fba00163f04e" resname="Keyboard shortcuts" approved="yes"> <source>Keyboard shortcuts</source> - <target state="needs-translation">Raccourcis claviers</target> + <target state="translated">Raccourcis claviers</target> <jms:reference-file line="121">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> <trans-unit id="aa288d5bdc9be4c044885fa43c6f3758a1087d5a" resname="Keywords used for indexing purposes by search engines robots" approved="yes"> @@ -3853,17 +3893,17 @@ <trans-unit id="a5efbcf21fb4f967dcf3c54434390038f645d761" resname="L'utilisateur approuve ce document" approved="yes"> <source>L'utilisateur approuve ce document</source> <target state="translated">L'utilisateur approuve ce document</target> - <jms:reference-file line="361">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="391">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f1a075e09cf00ad7f6a7b13f0e7982c01f71b4db" resname="L'utilisateur desapprouve ce document" approved="yes"> <source>L'utilisateur desapprouve ce document</source> <target state="translated">L'utilisateur désapprouve ce document</target> - <jms:reference-file line="365">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="395">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d189e6ca37fc13568fa40c4e089d3c55f1bb26cf" resname="L'utilisateur n'a pas encore donne son avis sur ce document" approved="yes"> <source>L'utilisateur n'a pas encore donne son avis sur ce document</source> <target state="translated">L'utilisateur n'a pas encore donné son avis sur ce document</target> - <jms:reference-file line="363">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="393">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6f16ba73379400f5465d624690a333f732ba02a5" resname="La connection vers le serveur distant est OK" approved="yes"> <source>La connection vers le serveur distant est OK</source> @@ -3880,20 +3920,20 @@ <trans-unit id="cfa0120ab592ae2bc3198dbde15a7a87a0c792c4" resname="La taille maximale d'une video est de %duration% minutes." approved="yes"> <source>La taille maximale d'une video est de %duration% minutes.</source> <target state="translated">La durée d'une vidéo est limitée à %duration% minutes.</target> - <jms:reference-file line="900">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="1014">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="900">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="1dcfd86b957b9cf12ede165c6c2fa0acf12f3eeb" resname="La video a ete rejetee" approved="yes"> <source>La video a ete rejetee</source> <target state="translated">La vidéo a été rejetée</target> - <jms:reference-file line="527">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="491">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="527">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="653e67f152ecc63ff3ee1014e86cc630a35dfe1a" resname="La video a ete supprimee" approved="yes"> <source>La video a ete supprimee</source> <target state="translated">La vidéo a été supprimée</target> - <jms:reference-file line="525">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="489">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="525">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="da1c672d0d761ed5ac292335ed60e14ff3073265" resname="La video est restreinte" approved="yes"> <source>La video est restreinte</source> @@ -3906,10 +3946,10 @@ <jms:reference-file line="38">admin/statusbit/edit.html.twig</jms:reference-file> <jms:reference-file line="103">admin/statusbit/edit.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="89b86ab0e66f527166d98df92ddbcf5416ed58f6" resname="Language"> + <trans-unit id="89b86ab0e66f527166d98df92ddbcf5416ed58f6" resname="Language" approved="yes"> <source>Language</source> - <target state="needs-translation">Langue</target> - <jms:reference-file line="593">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Langue</target> + <jms:reference-file line="684">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="863cb39fbe7d70597076af1960b7ae4618d9e1bc" resname="Last Name" approved="yes"> <source>Last Name</source> @@ -3939,7 +3979,7 @@ <trans-unit id="73d43eca841fe44e1b9b41795ecbe13ee0772b38" resname="Last uploaded version" approved="yes"> <source>Last uploaded version</source> <target state="translated">Dernière version ajoutée</target> - <jms:reference-file line="330">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="427">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0e0925b2bb685e25d3e94442cb0faea41156392b" resname="Le bridge Dailymotion ne prend en charge que les videos" approved="yes"> <source>Le bridge Dailymotion ne prend en charge que les videos</source> @@ -3974,7 +4014,7 @@ <trans-unit id="1486ba721fa0e62d17c809eb55964a1c514f6d3f" resname="Le contenu de cet email est confidentiel, ne le divulguez pas." approved="yes"> <source>Le contenu de cet email est confidentiel, ne le divulguez pas.</source> <target state="translated">Le contenu de cet e-mail est confidentiel. Ne le divulguez pas.</target> - <jms:reference-file line="119">templates/web/email-template.html.twig</jms:reference-file> + <jms:reference-file line="125">templates/web/email-template.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8d90d64a516aa1d05e3aa4c5beb4f9e80bf77bb1" resname="Le nom de base de donnee est incorrect" approved="yes"> <source>Le nom de base de donnee est incorrect</source> @@ -3990,15 +4030,15 @@ <source>Le poids maximum d'un fichier est de %size%</source> <target state="translated">Le poids de fichier est limité à %size%</target> <jms:reference-file line="814">Bridge/Api/Flickr.php</jms:reference-file> - <jms:reference-file line="906">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="1020">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="906">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="13b9d7ef8e81663d7162d25b84cec1c24041e630" resname="Le record n'a pas de fichier physique" approved="yes"> <source>Le record n'a pas de fichier physique</source> <target state="translated">L'enregistrement n'a pas de fichier physique</target> <jms:reference-file line="808">Bridge/Api/Flickr.php</jms:reference-file> - <jms:reference-file line="896">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="1010">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="896">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="a596c989f20650068f6278338c1a966b7a8693f8" resname="Le token n'a pas encore ete genere" approved="yes"> <source>Le token n'a pas encore ete genere</source> @@ -4019,9 +4059,9 @@ <trans-unit id="e330465da3182b7f6ed1b78217993edb4e22aacb" resname="Les elements ne peuvent etre uploades (problemes de type ou de droit)" approved="yes"> <source>Les elements ne peuvent etre uploades (problemes de type ou de droit)</source> <target state="translated">Les documents ne peuvent être ajoutés (problème de type de fichiers ou de droits)</target> - <jms:reference-file line="16">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="15">Bridge/Youtube/upload.html.twig</jms:reference-file> <jms:reference-file line="15">Bridge/Dailymotion/upload.html.twig</jms:reference-file> + <jms:reference-file line="15">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="16">Bridge/Flickr/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="72d3dbec389dce620bfa531d37c5f199ca2ccfda" resname="Les indications donnees ci dessous sont a titre informatif." approved="yes"> <source>Les indications donnees ci dessous sont a titre informatif.</source> @@ -4041,18 +4081,24 @@ <trans-unit id="a733c2df9772facab04b4773c9d2bed560c25e9a" resname="Les status de certains documents ne sont pas accessibles par manque de droits" approved="yes"> <source>Les status de certains documents ne sont pas accessibles par manque de droits</source> <target state="translated">Vous ne disposez pas des droits nécessaires pour accéder aux status de certains documents</target> - <jms:reference-file line="210">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="212">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="663929297180bbb5ff977df2695f71e94c35fa5e" resname="Les termes apparaissent dans le(s) champs" approved="yes"> <source>Les termes apparaissent dans le(s) champs</source> <target state="translated">Le(s) mot(s) contenu(s) dans le(s) champ(s)</target> - <jms:reference-file line="375">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="405">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="83d5335897894b8ddd91c98ef5ba0e9cbc6a6db9" resname="Light Value" approved="yes"> <source>Light Value</source> <target state="translated">Luminance</target> <jms:reference-file line="122">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="99f6a030c5134d53253c7442cb05c1be14229565" resname="Lightbox" approved="yes"> + <source>Lightbox</source> + <target state="translated">Lightbox</target> + <jms:reference-file line="152">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="153">prod/WorkZone/Macros.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="3edfadcb908b635854afe7332087309fcd436f22" resname="Limite temporelle" approved="yes"> <source>Limite temporelle</source> <target state="translated">Liste temporelle</target> @@ -4062,7 +4108,7 @@ <trans-unit id="646afe6f18d162b8c66197f9a080bbdabe03ec82" resname="Limited vocabulary" approved="yes"> <source>Limited vocabulary</source> <target state="translated">Vocabulaire limité</target> - <jms:reference-file line="147">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="146">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c360543a2117bfc435eb3ba34f161bdcd1b6c9bf" resname="List %name% has been created" approved="yes"> <source>List %name% has been created</source> @@ -4072,12 +4118,12 @@ <trans-unit id="a925ff45a3aec48f2d2284ee9bb6868db34c1ebb" resname="List Manager" approved="yes"> <source>List Manager</source> <target state="translated">Gestionnaire de listes</target> - <jms:reference-file line="88">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="97">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="bb5453db2e4b2a0d4da46011ba58a8dbbca13cf6" resname="List Name" approved="yes"> <source>List Name</source> <target state="translated">Nom de la liste</target> - <jms:reference-file line="103">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="99">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="986d90f23c096a5e41777014cf1079b53c430cef" resname="List has been deleted" approved="yes"> <source>List has been deleted</source> @@ -4113,8 +4159,8 @@ <trans-unit id="57c9502a7d7d48fd4a86b45fefb2b163491c3ae1" resname="Lists" approved="yes"> <source>Lists</source> <target state="translated">Listes</target> + <jms:reference-file line="61">prod/actions/Push.html.twig</jms:reference-file> <jms:reference-file line="15">actions/Feedback/lists-all.html.twig</jms:reference-file> - <jms:reference-file line="62">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="309cbd8221d07b28b0bd59d151777b155d5d3d3d" resname="Live search" approved="yes"> <source>Live search</source> @@ -4136,30 +4182,30 @@ <target state="translated">Identifiant</target> <jms:reference-file line="32">Form/Login/PhraseaAuthenticationForm.php</jms:reference-file> <jms:reference-file line="8">actions/Feedback/ListsMacros.html.twig</jms:reference-file> - <jms:reference-file line="9">login/oauth/login.html.twig</jms:reference-file> - <jms:reference-file line="7">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="7">login/providers/mapping.html.twig</jms:reference-file> + <jms:reference-file line="7">login/providers/bind.html.twig</jms:reference-file> + <jms:reference-file line="9">login/oauth/login.html.twig</jms:reference-file> </trans-unit> <trans-unit id="950c019b3fdf4ee87547ab457330c0f003fdec4b" resname="Login %login% already exists in database" approved="yes"> <source>Login %login% already exists in database</source> <target state="translated">L'identifiant %login% existe déjà dans la base de données</target> - <jms:reference-file line="638">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="639">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="092417444255d19227b90cb8b6a31eb531c3e045" resname="Login %login% is already defined in the file at line %line%" approved="yes"> <source>Login %login% is already defined in the file at line %line%</source> <target state="translated">L'identifiant %login% est déjà mentionné dans le fichier à la ligne %line%</target> - <jms:reference-file line="632">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="633">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="01a1b17937851d24fabec72d491bfe7693dcbeb5" resname="Login line %line% is empty" approved="yes"> <source>Login line %line% is empty</source> <target state="translated">L'identifiant n'est pas renseigné à la ligne %line%</target> - <jms:reference-file line="630">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="631">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="9a839961790bd116cb1d19dd249a0f68170ea33d" resname="Login to link your account" approved="yes"> <source>Login to link your account</source> <target state="translated">Connectez-vous pour lier votre compte</target> - <jms:reference-file line="28">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="44">login/providers/mapping.html.twig</jms:reference-file> + <jms:reference-file line="28">login/providers/bind.html.twig</jms:reference-file> </trans-unit> <trans-unit id="126dd3b70a5ca7818e0e26ad1e008d23b0f14a53" resname="Logs" approved="yes"> <source>Logs</source> @@ -4170,12 +4216,12 @@ <trans-unit id="9769982c266077f46f2c0a0290183511ec5536fb" resname="Ma derniere question" approved="yes"> <source>Ma derniere question</source> <target state="translated">Ma dernière question</target> - <jms:reference-file line="688">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="779">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c176d759339c846576bc2937aab7e01f5404e4e3" resname="Mail line %line% is empty" approved="yes"> <source>Mail line %line% is empty</source> <target state="translated">L'adresse e-mail n'est pas renseignée à la ligne %line%</target> - <jms:reference-file line="652">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="653">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="fdb9efd7a759711741fc699549c92e54c664e38c" resname="Mail sent" approved="yes"> <source>Mail sent</source> @@ -4225,7 +4271,7 @@ <trans-unit id="4c2ea2d10dc0ede0423eff4ee1aac7300cd7cc28" resname="Mandatory" approved="yes"> <source>Mandatory</source> <target state="translated">Obligatoire</target> - <jms:reference-file line="173">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="172">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="60706a32c32fff7bad89e110e221466d30c96f37" resname="Mandatory fields" approved="yes"> <source>Mandatory fields</source> @@ -4256,12 +4302,12 @@ <source>Message</source> <target state="translated">Message</target> <jms:reference-file line="87">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="154">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="155">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cbcbdf92e7a47c81ec1719f03f00d8e6c5b5f5ef" resname="Message automatique de Phraseanet" approved="yes"> <source>Message automatique de Phraseanet</source> <target state="translated">Message automatique de Phraseanet</target> - <jms:reference-file line="128">templates/web/email-template.html.twig</jms:reference-file> + <jms:reference-file line="134">templates/web/email-template.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3f17a172513ae816fbe5f183f85cd0c465de0860" resname="Mettre a jour" approved="yes"> <source>Mettre a jour</source> @@ -4273,10 +4319,10 @@ <target state="translated">Type Mime</target> <jms:reference-file line="14">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="1bd7ccbde8d3077fec1f549017e747393223a900" resname="MimeType"> + <trans-unit id="1bd7ccbde8d3077fec1f549017e747393223a900" resname="MimeType" approved="yes"> <source>MimeType</source> - <target state="new">MimeType</target> - <jms:reference-file line="345">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <target state="translated">MimeType</target> + <jms:reference-file line="374">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="cb4f425374af2741715669ed8b541a666078b729" resname="Minimum number of letters before truncation" approved="yes"> <source>Minimum number of letters before truncation</source> @@ -4291,8 +4337,8 @@ <trans-unit id="a9b8f078d07adc678766fb9d2094292080ab3c52" resname="Missing labels parameter" approved="yes"> <source>Missing labels parameter</source> <target state="translated">Paramètre de label manquant</target> - <jms:reference-file line="571">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="131">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="572">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="b4efaf7a18aa1ca3f50081c404e78c7fec456e40" resname="Missing mandatory parameter %parameter%" approved="yes"> <source>Missing mandatory parameter %parameter%</source> @@ -4302,7 +4348,7 @@ <trans-unit id="0f0312bad12a23972edbf3999e9de2678039b079" resname="Missing name parameter" approved="yes"> <source>Missing name parameter</source> <target state="translated">Paramètre de nom manquant</target> - <jms:reference-file line="540">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="541">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="0f79e8927b12fa1faaf351996f502775b4642c2d" resname="Missing path parameter" approved="yes"> <source>Missing path parameter</source> @@ -4327,7 +4373,7 @@ <trans-unit id="e18d18d8f28fe0d795ee04013be3a7f8ce96be7b" resname="Mode de presentation" approved="yes"> <source>Mode de presentation</source> <target state="translated">Mode de présentation</target> - <jms:reference-file line="604">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="695">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f67d47fbf556ab52703a984d7b5aafcaab35735e" resname="Modele de donnees" approved="yes"> <source>Modele de donnees</source> @@ -4337,7 +4383,7 @@ <trans-unit id="f3798f81c7b6fecad2cbfec741314f8a66c0eca3" resname="Models" approved="yes"> <source>Models</source> <target state="translated">Modèles</target> - <jms:reference-file line="186">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="182">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="197">admin/user/registrations.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9fe408e12dc6ee8d44c87b38b82ff435c397a441" resname="Modify" approved="yes"> @@ -4389,7 +4435,12 @@ <trans-unit id="3bd45e2eb3d0af33531dc6ab4a45ee550ead2180" resname="Multivalued" approved="yes"> <source>Multivalued</source> <target state="translated">Multivalué</target> - <jms:reference-file line="159">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="158">admin/fields/templates.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="1b369c4651e2b82200334fa587669b3828071192" resname="My application " approved="yes"> + <source>My application </source> + <target state="translated">Mon application</target> + <jms:reference-file line="266">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9f36fd4dc42df8a92572afe51d887c5f33dda5b0" resname="My baskets" approved="yes"> <source>My baskets</source> @@ -4408,7 +4459,7 @@ <jms:reference-file line="86">Controller/Prod/LanguageController.php</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/playlist_createcontainer.html.twig</jms:reference-file> <jms:reference-file line="38">actions/Download/prepare.html.twig</jms:reference-file> - <jms:reference-file line="150">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="151">prod/templates/push.html.twig</jms:reference-file> <jms:reference-file line="50">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="994e92a6f1e83337ca0193b7fa44cf6b3e9287e5" resname="Name or email" approved="yes"> @@ -4429,8 +4480,8 @@ <trans-unit id="611ce61a8afa84c06dd4ae06d9405b50d7cadc70" resname="Ne pas autoriser" approved="yes"> <source>Ne pas autoriser</source> <target state="translated">Ne pas autoriser</target> - <jms:reference-file line="112">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="92">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="112">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f5a3032fbde245ea35d8fa654d628809a9a448fc" resname="Ne pas creer de DataBox maintenant" approved="yes"> <source>Ne pas creer de DataBox maintenant</source> @@ -4441,7 +4492,7 @@ <source>New list name ?</source> <target state="translated">Donnez un nom à la nouvelle liste de destinataires :</target> <jms:reference-file line="84">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="124">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="125">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d850ee188c7c55b64bc3624534de5c5051a57dc6" resname="New password" approved="yes"> <source>New password</source> @@ -4470,12 +4521,13 @@ <trans-unit id="816c52fd2bdd94a63cd0944823a6c0aa9384c103" resname="No" approved="yes"> <source>No</source> <target state="translated">Non</target> + <jms:reference-file line="290">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="32">web/developers/applications.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8c123d8ad43d08cc48c3d6a7676e65f71eea59df" resname="No URL available" approved="yes"> <source>No URL available</source> <target state="translated">Aucune URL de disponible</target> - <jms:reference-file line="135">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="141">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="486829367591dc8209f3fc6960814c0bdd8930d1" resname="No account yet?" approved="yes"> <source>No account yet?</source> @@ -4522,9 +4574,9 @@ <target state="translated">Aucune correspondance trouvée</target> <jms:reference-file line="8">web/geonames/city_list.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="f8ff49677b7d397b0de712de733cd8bc88ef22d3" resname="No metadata available"> + <trans-unit id="f8ff49677b7d397b0de712de733cd8bc88ef22d3" resname="No metadata available" approved="yes"> <source>No metadata available</source> - <target state="needs-translation">Pas de méta données disponible</target> + <target state="translated">Aucune métadonnée disponible</target> <jms:reference-file line="43">actions/Tools/metadata.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ee0ccefc5da5a79647ce65575ea97814db7506b7" resname="No participants specified" approved="yes"> @@ -4540,7 +4592,7 @@ <trans-unit id="3a5aa5b9e5d2494ebc5a37af09018367b4220845" resname="No preview available" approved="yes"> <source>No preview available</source> <target state="translated">Pas de prévisualisation disponible</target> - <jms:reference-file line="63">actions/Tools/videoEditor.html.twig</jms:reference-file> + <jms:reference-file line="75">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="657c9f21a7a4da0e213e67dbee089b281dce3279" resname="No receivers specified" approved="yes"> <source>No receivers specified</source> @@ -4555,8 +4607,12 @@ <trans-unit id="b993b0c537190bfc94b21360ac5abe51e56be36f" resname="No results" approved="yes"> <source>No results</source> <target state="translated">Aucun résultat</target> - <jms:reference-file line="8">WorkZone/Browser/Results.html.twig</jms:reference-file> - <jms:reference-file line="111">WorkZone/Browser/Results.html.twig</jms:reference-file> + <jms:reference-file line="87">WorkZone/Browser/Results.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="bfccc7c966ca427d629149d67548af04605eb746" resname="No thesaurus concept query" approved="yes"> + <source>No thesaurus concept query</source> + <target state="translated">Pas de recherche Thesaurus</target> + <jms:reference-file line="16">prod/results/infos.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6866c8b666718aff85382e93b25ef50cd321669b" resname="No users selected" approved="yes"> <source>No users selected</source> @@ -4592,15 +4648,15 @@ <trans-unit id="c57d307e10f641b5b496db576d0dcd69d1daf25e" resname="Non-Restreinte (publique)" approved="yes"> <source>Non-Restreinte (publique)</source> <target state="translated">Non restreinte (publique)</target> - <jms:reference-file line="25">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="108">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="25">admin/publications/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6eef6648406c333a4035cd5e60d0bf2ecf2606d7" resname="None" approved="yes"> <source>None</source> <target state="translated">Aucun</target> <jms:reference-file line="41">Form/Configuration/EmailFormType.php</jms:reference-file> - <jms:reference-file line="260">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="53">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="260">admin/user/registrations.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ece3fad87bd747a7b0b1f3ff9336645ee1a36078" resname="None of the records can be modified." approved="yes"> <source>None of the records can be modified.</source> @@ -4630,7 +4686,7 @@ <trans-unit id="a6633333760410e40ad92a50baade0b83afe8f7f" resname="Not aggregated" approved="yes"> <source>Not aggregated</source> <target state="translated">Non agrégé</target> - <jms:reference-file line="227">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="242">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cc451929f50e088ffcff10e90dfe157d2319e753" resname="Notification par email" approved="yes"> <source>Notification par email</source> @@ -4640,8 +4696,8 @@ <trans-unit id="753a22b2eb617204efee4644795034b8ace1ee14" resname="Notifications" approved="yes"> <source>Notifications</source> <target state="translated">Notifications</target> - <jms:reference-file line="156">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="229">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="214">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="286">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ac0b3b17f88b480b11c468d0b5bea6409bbd14b8" resname="Notifications globales" approved="yes"> <source>Notifications globales</source> @@ -4651,7 +4707,7 @@ <trans-unit id="18ee7ad22bf04f818fd95599481303c7f7d1b29f" resname="Notify third party application when an event occurs in Phraseanet" approved="yes"> <source>Notify third party application when an event occurs in Phraseanet</source> <target state="translated">Notifier l'application tierce lorsqu'un événement se produit dans Phraseanet</target> - <jms:reference-file line="61">TaskManager/Job/WebhookJob.php</jms:reference-file> + <jms:reference-file line="74">TaskManager/Job/WebhookJob.php</jms:reference-file> </trans-unit> <trans-unit id="3ccc3824ae2ffdfea7482564cbc8cf35de78766d" resname="Notify users about this publication" approved="yes"> <source>Notify users about this publication</source> @@ -4691,7 +4747,7 @@ <trans-unit id="39e336676dcacd1411fbc236d035878a38989667" resname="Number of records to process per batch" approved="yes"> <source>Number of records to process per batch</source> <target state="translated">Nombre d'enregistrements à traiter par lot</target> - <jms:reference-file line="39">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="42">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="997c69f6571530618bb38ac03f4cf2d236dcc15e" resname="Number of replicas" approved="yes"> <source>Number of replicas</source> @@ -4713,8 +4769,8 @@ <trans-unit id="9ce3bd4224c8c1780db56b4125ecf3f24bf748b7" resname="OK" approved="yes"> <source>OK</source> <target state="translated">OK</target> - <jms:reference-file line="535">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="499">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="535">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="b0a98216a32426b9e66a4ac1eb6df2e96e1b495c" resname="Ok" approved="yes"> <source>Ok</source> @@ -4737,6 +4793,11 @@ <target state="needs-translation">Avancer d'une image</target> <jms:reference-file line="125">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> + <trans-unit id="c15c49205663ceff94e31db82030bb5da10df870" resname="One of these conditions" approved="yes"> + <source>One of these conditions</source> + <target state="translated">Une de ces conditions</target> + <jms:reference-file line="419">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="1ae26e7b698cf33577df1bd9fd55ddd1d0771802" resname="Only %nbEditableDocuments% records can be modified." approved="yes"> <source>Only %nbEditableDocuments% records can be modified.</source> <target state="translated">Seuls %nbEditableDocuments% enregistrements peuvent être modifiés.</target> @@ -4752,17 +4813,22 @@ <target state="translated">Ouvrir l'URL dans une nouvelle fenêtre</target> <jms:reference-file line="125">Core/Provider/TwigServiceProvider.php</jms:reference-file> </trans-unit> + <trans-unit id="e72184f55cc026514b7160d78c3c5aef63c2a050" resname="Or" approved="yes"> + <source>Or</source> + <target state="translated">Ou</target> + <jms:reference-file line="35">prod/upload/upload.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="94946e4d2391ccf8ff24f984869ae8fcf9ede7c4" resname="Or login with" approved="yes"> <source>Or login with</source> <target state="translated">Ou se connecter avec</target> - <jms:reference-file line="56">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="36">web/login/register.html.twig</jms:reference-file> + <jms:reference-file line="103">web/login/index.html.twig</jms:reference-file> <jms:reference-file line="91">login/oauth/login.html.twig</jms:reference-file> - <jms:reference-file line="102">web/login/index.html.twig</jms:reference-file> + <jms:reference-file line="56">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1d75774c0f96b6ee44eb6643c9fea71b50b90ea8" resname="Order" approved="yes"> <source>Order</source> - <target state="translated">Ordre d'affichage :</target> + <target state="translated">Ordre d'affichage</target> <jms:reference-file line="82">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f982eff2494d435291fce6a44332cad26e2d63bb" resname="Order has been denied" approved="yes"> @@ -4783,17 +4849,17 @@ <source>Orders manager</source> <target state="translated">Gestionnaire des commandes</target> <jms:reference-file line="45">eventsmanager/notify/order.php</jms:reference-file> - <jms:reference-file line="117">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="118">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0bc63392df32795e16ab5cbb605be75812542d30" resname="Ordinary" approved="yes"> <source>Ordinary</source> <target state="translated">Normale</target> <jms:reference-file line="151">Controller/Root/LoginController.php</jms:reference-file> </trans-unit> - <trans-unit id="86e4e3875420cdee95d08d4472073493729a7aee" resname="Orientation"> + <trans-unit id="86e4e3875420cdee95d08d4472073493729a7aee" resname="Orientation" approved="yes"> <source>Orientation</source> - <target state="new">Orientation</target> - <jms:reference-file line="335">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <target state="translated">Orientation</target> + <jms:reference-file line="360">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="77561f3d48cb738cc40f376dec4616a77da54ee1" resname="Original name" approved="yes"> <source>Original name</source> @@ -4805,11 +4871,6 @@ <target state="translated">Un problème est survenu !</target> <jms:reference-file line="10">actions/Bridge/error.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="4e3f5ff6fef1232b4a80b35f08a3db8f776f44d0" resname="Outdated access to the following collections" approved="yes"> - <source>Outdated access to the following collections</source> - <target state="translated">Les accès aux collections suivantes ne sont pas à jour</target> - <jms:reference-file line="134">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="89ff31225c5f042fff61e92ec8cf80e417a7140c" resname="Owner" approved="yes"> <source>Owner</source> <target state="translated">Propriétaire</target> @@ -4827,32 +4888,33 @@ <jms:reference-file line="19">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="20">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="600584c2d5ccb97c0c0c424d9f32d6b102fcb040" resname="Pages"> + <trans-unit id="600584c2d5ccb97c0c0c424d9f32d6b102fcb040" resname="Pages" approved="yes"> <source>Pages</source> - <target state="new">Pages</target> + <target state="translated">Pages</target> <jms:reference-file line="90">actions/Feedback/ListsMacros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="fe42b90acc297644b70123354014701c49384489" resname="Paniers" approved="yes"> <source>Paniers</source> <target state="translated">Paniers</target> + <jms:reference-file line="50">mobile/lightbox/index.html.twig</jms:reference-file> + <jms:reference-file line="116">mobile/lightbox/index.html.twig</jms:reference-file> + <jms:reference-file line="257">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="91">web/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="127">lightbox/IE6/validate.html.twig</jms:reference-file> <jms:reference-file line="140">web/lightbox/validate.html.twig</jms:reference-file> - <jms:reference-file line="50">mobile/lightbox/index.html.twig</jms:reference-file> - <jms:reference-file line="116">mobile/lightbox/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="379c70ed96868079feece6d5c6a2b91545c2515b" resname="Par %author%" approved="yes"> <source>Par %author%</source> <target state="translated">Par %author%</target> - <jms:reference-file line="20">prod/results/entry.html.twig</jms:reference-file> - <jms:reference-file line="14">prod/results/feeds_entry.html.twig</jms:reference-file> <jms:reference-file line="25">mobile/lightbox/feed.html.twig</jms:reference-file> + <jms:reference-file line="14">prod/results/feeds_entry.html.twig</jms:reference-file> + <jms:reference-file line="20">prod/results/entry.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8be3c943b1609fffbfc51aad666d0a04adf83c9d" resname="Password" approved="yes"> <source>Password</source> <target state="translated">Mot de passe</target> - <jms:reference-file line="52">Form/Login/PhraseaRegisterForm.php</jms:reference-file> <jms:reference-file line="41">Form/Login/PhraseaAuthenticationForm.php</jms:reference-file> + <jms:reference-file line="52">Form/Login/PhraseaRegisterForm.php</jms:reference-file> <jms:reference-file line="81">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e3c007b7794e8f9fc4381136dfc7cdff5aa788a8" resname="Password (confirmation)" approved="yes"> @@ -4863,7 +4925,7 @@ <trans-unit id="6e77cc0549ad99a9d3ba5c384f7f329db24d6d0c" resname="Password is empty at line %line%" approved="yes"> <source>Password is empty at line %line%</source> <target state="translated">Le mot de passe est vide à la ligne %line%</target> - <jms:reference-file line="667">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="668">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="1dde2526f4dbbd53204d28438a85c8b30284c584" resname="Password renewal for login "%login%" has been requested" approved="yes"> <source>Password renewal for login "%login%" has been requested</source> @@ -4875,26 +4937,21 @@ <target state="translated">L'année dernière</target> <jms:reference-file line="60">WorkZone/Browser/Browser.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="519e39132bb98418cc0483cc446ccf5f3c8dcffe" resname="Path"> + <trans-unit id="519e39132bb98418cc0483cc446ccf5f3c8dcffe" resname="Path" approved="yes"> <source>Path</source> - <target state="new">Path</target> + <target state="translated">Chemin</target> <jms:reference-file line="388">web/admin/subdefs.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="781961bc81c25697841ecce5d4d9dad9f6b261c6" resname="Pause"> + <trans-unit id="781961bc81c25697841ecce5d4d9dad9f6b261c6" resname="Pause" approved="yes"> <source>Pause</source> - <target state="new">Pause</target> + <target state="translated">Pause</target> <jms:reference-file line="124">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> - <trans-unit id="2a78f0e9eeb4969ad86a55df617e6bb0373df78f" resname="Pays"> + <trans-unit id="2a78f0e9eeb4969ad86a55df617e6bb0373df78f" resname="Pays" approved="yes"> <source>Pays</source> - <target state="new">Pays</target> + <target state="translated">Pays</target> <jms:reference-file line="32">prod/User/Add.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="42dea402e91b757c7437006335c9cc8d0382f29d" resname="Pending access to the following collections" approved="yes"> - <source>Pending access to the following collections</source> - <target state="translated">Accès aux collections suivantes en attente</target> - <jms:reference-file line="84">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="3d8de900b56813bb78e97afbf22578720d473219" resname="Periodically fetches an FTP repository content locally" approved="yes"> <source>Periodically fetches an FTP repository content locally</source> <target state="translated">Récupère en local le contenu d'un répertoire FTP</target> @@ -4951,22 +5008,22 @@ <target state="translated">Phraseanet recommande fortement l'utilisation de %link_start%MariaDB%link_end% à la place de MySQL.</target> <jms:reference-file line="612">web/setup/step2.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="5d12bd53552cafc41ca6146c04870df2e1574e13" resname="Play"> + <trans-unit id="5d12bd53552cafc41ca6146c04870df2e1574e13" resname="Play" approved="yes"> <source>Play</source> - <target state="new">Play</target> + <target state="translated">Play</target> <jms:reference-file line="122">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> <trans-unit id="cd95b41f85ddc0922e3fce8844279c55e9e3cdd9" resname="Playlist" approved="yes"> <source>Playlist</source> <target state="translated">Liste de lecture</target> - <jms:reference-file line="14">Bridge/Youtube/actionelements.html.twig</jms:reference-file> <jms:reference-file line="14">Bridge/Dailymotion/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="14">Bridge/Youtube/actionelements.html.twig</jms:reference-file> </trans-unit> <trans-unit id="77b69f32c8780049ce0eec9782c3b77bb1e52bc3" resname="Playlists" approved="yes"> <source>Playlists</source> <target state="translated">Listes de lecture</target> - <jms:reference-file line="183">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="168">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="183">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="9a79729c3f4563330799d576273950579e1ba3f5" resname="Please accept the terms of use to register." approved="yes"> <source>Please accept the terms of use to register.</source> @@ -4986,12 +5043,12 @@ <trans-unit id="7d971fb22555bf3deb2da6d7820d2379b6f37d12" resname="Please consider send this push to the following users : %recommendation%" approved="yes"> <source>Please consider send this push to the following users : %recommendation%</source> <target state="translated">Peut-être devriez-vous ajouter les utilisateurs suivants dans l'envoi de votre Push : %recommendation%</target> - <jms:reference-file line="135">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="142">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="78fbf70be163b16d5c72147a659d43a1ddbe4f62" resname="Please consider send this validation to the following users : %recommendation%" approved="yes"> <source>Please consider send this validation to the following users : %recommendation%</source> <target state="translated">Cette demande de validation peut être adressée aux utilisateurs suivants : %recommendation%</target> - <jms:reference-file line="137">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="144">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cb75472a748e630791f52a7e31b275376a65b600" resname="Please enter the databox name to reset or create" approved="yes"> <source>Please enter the databox name to reset or create</source> @@ -5066,7 +5123,7 @@ <trans-unit id="cf1c85adba548e8d681255278976584a7e4a44de" resname="Position" approved="yes"> <source>Position</source> <target state="translated">Poste</target> - <jms:reference-file line="180">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="176">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="502823ab9297855805de9b08960bcb4654a235a9" resname="Pour davantage d'informations, consulter le lien suivant %lien%" approved="yes"> <source>Pour davantage d'informations, consulter le lien suivant %lien%</source> @@ -5076,7 +5133,7 @@ <trans-unit id="b7a45fd93ff9471252ff1535c56c82f2f2d93865" resname="Pour gérer l'envoi d'email automatique, connectez-vous à %link%" approved="yes"> <source>Pour gérer l'envoi d'email automatique, connectez-vous à %link%</source> <target state="translated">Pour régler les préférences de réception d'e-mails automatiques, connectez-vous à %link%</target> - <jms:reference-file line="134">templates/web/email-template.html.twig</jms:reference-file> + <jms:reference-file line="140">templates/web/email-template.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cb6a1b19177957adc64d41ef7744e5f3f2f1d220" resname="Preference saved !" approved="yes"> <source>Preference saved !</source> @@ -5087,10 +5144,10 @@ <trans-unit id="9dfd349ebee555eb8d652be20dad971cae439eca" resname="Preferences" approved="yes"> <source>Preferences</source> <target state="translated">Préférences</target> - <jms:reference-file line="249">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="250">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="477">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="576">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="253">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="256">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="568">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="667">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="40c963556bf21635f163641ae0bbc354c6f8452c" resname="Prefix for notification emails" approved="yes"> <source>Prefix for notification emails</source> @@ -5105,12 +5162,12 @@ <trans-unit id="9cafca25680cc440912450d10272214d3f3daee4" resname="Presentation de vignettes" approved="yes"> <source>Presentation de vignettes</source> <target state="translated">Présentation de vignettes</target> - <jms:reference-file line="622">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="713">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="be11dff872b14e749d330f920d6b159e107f277a" resname="Presentation de vignettes de panier" approved="yes"> <source>Presentation de vignettes de panier</source> <target state="translated">Présentation des vignettes de panier</target> - <jms:reference-file line="833">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="924">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e709e76ff5425bd59879423588e80e67d778fa57" resname="Presets"> <source>Presets</source> @@ -5132,8 +5189,8 @@ <trans-unit id="e6ad53898d609dbabefb5da33ee1b4cc04fba023" resname="Problemes de connexion ?" approved="yes"> <source>Problemes de connexion ?</source> <target state="translated">Problème de connexion ?</target> - <jms:reference-file line="74">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="54">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="74">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="376483bbeebdab912944e9b41d8d31510132abde" resname="Process the registration" approved="yes"> <source>Process the registration</source> @@ -5163,10 +5220,10 @@ <trans-unit id="0855684c1444ece44c79b3612a7f4cfac9ae6e2a" resname="Publications" approved="yes"> <source>Publications</source> <target state="translated">Publications</target> - <jms:reference-file line="694">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="785">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="2">admin/publications/wrapper.html.twig</jms:reference-file> <jms:reference-file line="58">web/admin/tree.html.twig</jms:reference-file> - <jms:reference-file line="109">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="110">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="34e6b19e8980f86ac8f2a33377c8cd669b66ac9b" resname="Publier" approved="yes"> <source>Publier</source> @@ -5176,8 +5233,8 @@ <trans-unit id="a255047b3f86eb4c0c79377f0725c89ceafe07ae" resname="Publique" approved="yes"> <source>Publique</source> <target state="translated">Publique</target> - <jms:reference-file line="40">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="123">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="40">admin/publications/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="107e7fab79b95c8f34990d625dd309e15996acba" resname="Publishers" approved="yes"> <source>Publishers</source> @@ -5203,41 +5260,41 @@ <trans-unit id="dc5a4abd4a0dd0729a7935958c49369f845aefe7" resname="Push::filter on companies" approved="yes"> <source>Push::filter on companies</source> <target state="translated">Société</target> - <jms:reference-file line="151">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="147">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="46">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0062d9a99e994aa4c343618e2236b82cf70fdf4a" resname="Push::filter on countries" approved="yes"> <source>Push::filter on countries</source> <target state="translated">Pays</target> - <jms:reference-file line="148">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="144">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="45">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3dec8278889a4c672e776c0f810f7ed4a4ff7179" resname="Push::filter on emails" approved="yes"> <source>Push::filter on emails</source> <target state="translated">E-mail</target> - <jms:reference-file line="154">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="150">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="47">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d839b546e93714294e67e04cc94c6fcd2196cb9f" resname="Push::filter on login" approved="yes"> <source>Push::filter on login</source> <target state="translated">Identifiant</target> - <jms:reference-file line="142">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="138">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="43">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="68226ba2a14991c3fc4b892b6b826868d5a093f0" resname="Push::filter on name" approved="yes"> <source>Push::filter on name</source> <target state="translated">Nom/Prénom</target> - <jms:reference-file line="145">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="141">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="df2d864dd4e6285082e77bd1c265e71d5c65645c" resname="Push::filter on templates" approved="yes"> <source>Push::filter on templates</source> <target state="translated">Dernier modèle</target> - <jms:reference-file line="157">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="153">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d2f5c0ac80b1da7a8257a2b0df31f94dc9e6b072" resname="Push::filter starts" approved="yes"> <source>Push::filter starts</source> <target state="translated">Commence par</target> - <jms:reference-file line="160">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="156">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="49">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dcf907ccbbcda0c0a828ef73ff1e6320748c1fad" resname="Push::une validation est une demande d'appreciation a d'autres personnes" approved="yes"> @@ -5245,24 +5302,24 @@ <target state="translated">La validation permet d'adresser des demandes d'appréciation de documents auprès d'utilisateurs. Ils recevront un e-mail contenant un lien lançant Phraseanet Lightbox. Cette interface les autorise à visualiser, télécharger, et à émettre des avis et commentaires sur le contenu diffusé. Pour les utilisateurs authentifiés, la demande de validation est également disponible sous la forme d'un panier reçu dans la zone de travail.</target> - <jms:reference-file line="182">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="189">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3e45857148ed08b19a425b5f4a2775e30dd346a7" resname="Push::unpush permet d'envoyer un lot d'image a des destinataires" approved="yes"> <source>Push::unpush permet d'envoyer un lot d'image a des destinataires</source> <target state="translated">Le Push permet d'adresser des documents à des utilisateurs. Ils recevront un e-mail contenant un lien lançant Phraseanet Lightbox. Cette interface les autorise à visualiser et à télécharger le contenu diffusé. Pour les utilisateurs authentifiés, un Push est également disponible sous la forme d'un panier reçu dans la zone de travail.</target> - <jms:reference-file line="180">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="187">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a60f2c73604f623449f263e78f5857849ad5e429" resname="Quality" approved="yes"> <source>Quality</source> <target state="translated">Qualité</target> - <jms:reference-file line="36">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="36">Media/Subdef/Image.php</jms:reference-file> + <jms:reference-file line="36">Media/Subdef/Unknown.php</jms:reference-file> </trans-unit> <trans-unit id="7f983c163b8d6973ad2a1aa6de868dad5be7f8e2" resname="Quarantine" approved="yes"> <source>Quarantine</source> <target state="translated">Quarantaine</target> - <jms:reference-file line="15">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="15">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="15">prod/upload/upload-flash.html.twig</jms:reference-file> </trans-unit> <trans-unit id="edd025b4ece2ab6693982ff127227d5672c7b0f1" resname="Quarantine notificaton" approved="yes"> <source>Quarantine notificaton</source> @@ -5277,80 +5334,80 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="64ef3e9b9c1030a3df3515f8837f98d76950dd3a" resname="Raccourcis claviers de la zone des paniers :" approved="yes"> <source>Raccourcis claviers de la zone des paniers :</source> <target state="translated"><![CDATA[Raccourcis de la zone des paniers & reportages]]></target> - <jms:reference-file line="536">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="627">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0fa257c61469082fe30f197cec92755b9b4fa8f0" resname="Raccourcis claviers en cours de editing :" approved="yes"> <source>Raccourcis claviers en cours de editing :</source> <target state="translated">Raccourci de la fenêtre d'édition</target> - <jms:reference-file line="544">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="635">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b9401adb809efe10b4f5c4cb884566bd566a7969" resname="Raccourcis claviers en cours de preview :" approved="yes"> <source>Raccourcis claviers en cours de preview :</source> <target state="translated">Raccourcis de la fenêtre vue détaillée</target> - <jms:reference-file line="550">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="641">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6d5b336b50c5326a4cfdaa1a9e8ac7c4bc6d7b3b" resname="Raccourcis claviers en cours de recherche :" approved="yes"> <source>Raccourcis claviers en cours de recherche :</source> <target state="translated">Raccourcis de la fenêtre principale</target> - <jms:reference-file line="524">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="615">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c53cf63d91236443a009fd132ae3728c8c8c7da0" resname="Raccourcis:: ctrl-a : tout selectionner" approved="yes"> <source>Raccourcis:: ctrl-a : tout selectionner</source> <target state="translated">ctrl-a : sélectionner tout</target> - <jms:reference-file line="526">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="538">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="617">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="629">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="812022dea00fadf2f69eeae12652173c5292a306" resname="Raccourcis:: ctrl-e : editer la selection" approved="yes"> <source>Raccourcis:: ctrl-e : editer la selection</source> <target state="translated">ctrl-e : éditer la sélection</target> - <jms:reference-file line="528">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="540">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="619">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="631">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c99e1c9838e7a805cbeac7e7f0c5268b64787ee8" resname="Raccourcis:: ctrl-p : imprimer la selection" approved="yes"> <source>Raccourcis:: ctrl-p : imprimer la selection</source> <target state="translated">ctrl-p : imprimer la sélection</target> - <jms:reference-file line="527">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="539">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="618">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="630">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4dbc2034b309af31b59245364f6f02b7f7234737" resname="Raccourcis::espace : arreter/demarrer le diaporama" approved="yes"> <source>Raccourcis::espace : arreter/demarrer le diaporama</source> <target state="translated">espace : démarrer/arrêter le diaporama</target> - <jms:reference-file line="554">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="645">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b6b7ba6a989c15ed4a35c733f02597ba34607758" resname="Raccourcis::fleche bas : scroll vertical" approved="yes"> <source>Raccourcis::fleche bas : scroll vertical</source> <target state="translated">flèche basse : défilement vers le bas</target> - <jms:reference-file line="532">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="623">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="11d9cd036e502f222ca13b3fe1cefb7a9af7189b" resname="Raccourcis::fleche droite : page suivante" approved="yes"> <source>Raccourcis::fleche droite : page suivante</source> <target state="translated">flèche droite : page suivante</target> - <jms:reference-file line="530">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="621">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f9cdc8b16bcbc46ca9a0ec80f780e584e27a5999" resname="Raccourcis::fleche gauche : en arriere" approved="yes"> <source>Raccourcis::fleche gauche : en arriere</source> <target state="translated">flèche gauche : document précédent</target> - <jms:reference-file line="553">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="644">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="500299a27b8ec15496801e637d2ffa5e9ca45c17" resname="Raccourcis::fleche gauche : en avant" approved="yes"> <source>Raccourcis::fleche gauche : en avant</source> <target state="translated">flèche droite : document suivant</target> - <jms:reference-file line="552">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="643">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3c8f969d01141d75f1a5c8cc19da3f22b17e7bb5" resname="Raccourcis::fleche gauche : page precedente" approved="yes"> <source>Raccourcis::fleche gauche : page precedente</source> <target state="translated">flèche gauche : page précédente</target> - <jms:reference-file line="529">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="620">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ea7b04fcba2b542ae05ff8bf1c2eccab32451a78" resname="Raccourcis::fleche haut : scroll vertical" approved="yes"> <source>Raccourcis::fleche haut : scroll vertical</source> <target state="translated">flèche haute : défilement vers le haut</target> - <jms:reference-file line="531">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="622">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="82c2178626ff2cdee250667a4efd09961f720dee" resname="Raccourcis::tab/shift-tab se ballade dans les champs" approved="yes"> <source>Raccourcis::tab/shift-tab se ballade dans les champs</source> <target state="translated">Tab/shift-tab : Changer de champs</target> - <jms:reference-file line="546">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="637">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4efaf5e07d4b4b4c4373d24615adeed3a0eca433" resname="Rappel : Il vous reste %number% jours pour valider %title% de %user%" approved="yes"> <source>Rappel : Il vous reste %number% jours pour valider %title% de %user%</source> @@ -5365,29 +5422,31 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="aafcf684757a5a4e1bf1630db0821e75f47a2d08" resname="Rapport de Validation" approved="yes"> <source>Rapport de Validation</source> <target state="translated">Rapport de validation</target> - <jms:reference-file line="74">eventsmanager/notify/validationdone.php</jms:reference-file> + <jms:reference-file line="80">eventsmanager/notify/validationdone.php</jms:reference-file> </trans-unit> <trans-unit id="17e7c81f42087a2439ab16806eea8693d6bcfff0" resname="Re-initialiser" approved="yes"> <source>Re-initialiser</source> <target state="translated">Ré-initialiser</target> <jms:reference-file line="8">prod/Baskets/Reorder.html.twig</jms:reference-file> - <jms:reference-file line="328">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="7">prod/Story/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="328">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ca2a6abfc98ae1a46c15a6f8bbdc5fac25531462" resname="Re-ordonner" approved="yes"> <source>Re-ordonner</source> <target state="translated">Ordonner</target> - <jms:reference-file line="181">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="182">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="248">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="252">prod/WorkZone/Macros.html.twig</jms:reference-file> <jms:reference-file line="13">prod/Baskets/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="188">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="189">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="190">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="274">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="278">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="279">prod/WorkZone/Macros.html.twig</jms:reference-file> <jms:reference-file line="12">prod/Story/Reorder.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9b19a5a212deb29444cc1b420ad81703205848be" resname="Read-only" approved="yes"> <source>Read-only</source> <target state="translated">Lecture seule</target> - <jms:reference-file line="189">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="188">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8af84354a61a59531041ee67713997b84e7657ee" resname="Recaptcha private key" approved="yes"> <source>Recaptcha private key</source> @@ -5418,27 +5477,22 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <source>Received from %user_name%</source> <target state="translated">Reçu de %user_name%</target> <jms:reference-file line="43">WorkZone/Browser/Basket.html.twig</jms:reference-file> - <jms:reference-file line="73">WorkZone/Browser/Results.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="8434c52b54f0df88fc7f845d21a20f6a6d5ff880" resname="Receiver" approved="yes"> - <source>Receiver</source> - <target state="translated">Destinataire</target> - <jms:reference-file line="595">Controller/Report/ActivityController.php</jms:reference-file> + <jms:reference-file line="50">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="da14ea4ea4ade5295d38ee6c0cd689aee3cd62ba" resname="Reception d'un rapport de validation" approved="yes"> <source>Reception d'un rapport de validation</source> <target state="translated">Réception d'un rapport de validation</target> - <jms:reference-file line="83">eventsmanager/notify/validationdone.php</jms:reference-file> + <jms:reference-file line="89">eventsmanager/notify/validationdone.php</jms:reference-file> </trans-unit> <trans-unit id="69d1feaf46a349a3e34611edbfd84d913f5cf209" resname="Reception d'une commande" approved="yes"> <source>Reception d'une commande</source> <target state="translated">Réception d'une commande</target> - <jms:reference-file line="82">eventsmanager/notify/orderdeliver.php</jms:reference-file> + <jms:reference-file line="90">eventsmanager/notify/orderdeliver.php</jms:reference-file> </trans-unit> <trans-unit id="62046e2515337958c10c5a6c4e08a3e415af005b" resname="Reception de commande" approved="yes"> <source>Reception de commande</source> <target state="translated">Réception de commande</target> - <jms:reference-file line="73">eventsmanager/notify/orderdeliver.php</jms:reference-file> + <jms:reference-file line="81">eventsmanager/notify/orderdeliver.php</jms:reference-file> </trans-unit> <trans-unit id="49f32abd3c743170b12fd28ce4e6035d5f0d1014" resname="Reception of %basket_name%" approved="yes"> <source>Reception of %basket_name%</source> @@ -5478,7 +5532,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="f5e93456bc3a36a53bbcc31ea9dc7dc18b084a3d" resname="Rechercher dans un champ date" approved="yes"> <source>Rechercher dans un champ date</source> <target state="translated">Dans un champ date</target> - <jms:reference-file line="441">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="470">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4faa65b556f68207d69cb14bcae4acb71980a036" resname="Recommendations" approved="yes"> <source>Recommendations</source> @@ -5498,7 +5552,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="3cd74928930cda94205568949be186e4cae37119" resname="Record Not Found" approved="yes"> <source>Record Not Found</source> <target state="translated">Enregistrement non trouvé</target> - <jms:reference-file line="2006">Controller/Api/V1Controller.php</jms:reference-file> + <jms:reference-file line="2048">Controller/Api/V1Controller.php</jms:reference-file> </trans-unit> <trans-unit id="ef0112aa634cbad5a586b72e4befe1ab1a39e73f" resname="Record removed from basket" approved="yes"> <source>Record removed from basket</source> @@ -5523,7 +5577,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="1361dc265b8f8d5fbfae5c59f5eb7008345b0a60" resname="Records have been successfuly moved" approved="yes"> <source>Records have been successfuly moved</source> <target state="translated">Les enregistrements ont été déplacés avec succès.</target> - <jms:reference-file line="158">Controller/Prod/MoveCollectionController.php</jms:reference-file> + <jms:reference-file line="159">Controller/Prod/MoveCollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="c5122f4f064abbc30552663cb0942faf7c7eb035" resname="Records type" approved="yes"> <source>Records type</source> @@ -5539,10 +5593,10 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="d672995a14650d0e018026b64f297663d8c71c8d" resname="Register" approved="yes"> <source>Register</source> <target state="translated">Inscription</target> - <jms:reference-file line="6">web/login/register.html.twig</jms:reference-file> <jms:reference-file line="7">web/login/register-classic.html.twig</jms:reference-file> - <jms:reference-file line="10">login/include/register-link-block.html.twig</jms:reference-file> + <jms:reference-file line="6">web/login/register.html.twig</jms:reference-file> <jms:reference-file line="6">web/login/register-provider.html.twig</jms:reference-file> + <jms:reference-file line="10">login/include/register-link-block.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9ab985702970c5012a1c1a2db7b65d95926aecaf" resname="Register approbation" approved="yes"> <source>Register approbation</source> @@ -5566,15 +5620,10 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <jms:reference-file line="117">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="30">web/admin/users.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="c3c3adf6aadb4b23c2012f0ca5904b3d8172d98a" resname="Rejected access to the following collections" approved="yes"> - <source>Rejected access to the following collections</source> - <target state="translated">Accès refusé aux collections suivantes</target> - <jms:reference-file line="57">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="dcb70f5244f8883ac49c5eceb7d1e1cdeaf82711" resname="Relevance" approved="yes"> <source>Relevance</source> <target state="translated">Pertinence</target> - <jms:reference-file line="354">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="383">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ced7b308a348567fbf21dd775ee496dd01207f24" resname="Remember me" approved="yes"> <source>Remember me</source> @@ -5589,8 +5638,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="ecd6539bc6678ec0ff3748ecac64d64cee566b8f" resname="Remove ICC Profile" approved="yes"> <source>Remove ICC Profile</source> <target state="translated">Retirer le profil ICC</target> - <jms:reference-file line="34">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="34">Media/Subdef/Image.php</jms:reference-file> + <jms:reference-file line="34">Media/Subdef/Unknown.php</jms:reference-file> </trans-unit> <trans-unit id="db7741b4a5e42acd8d4e758ae50075157a0c08b7" resname="Remove current Range"> <source>Remove current Range</source> @@ -5638,12 +5687,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="ee45c30326b750387589752c0f75e1dd87ddc7e4" resname="Report" approved="yes"> <source>Report</source> <target state="translated">Afficher dans Phraseanet Report</target> - <jms:reference-file line="205">admin/fields/templates.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="c0d6afbb9a5d52be258437c6100523c0ca890975" resname="Report generation may take a long time to generate, depending on the number of collections and the period selected." approved="yes"> - <source>Report generation may take a long time to generate, depending on the number of collections and the period selected.</source> - <target state="translated">En fonction du nombre de collections et de l'intervalle de dates, la génération du Report peut prendre du temps.</target> - <jms:reference-file line="27">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="220">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="859ca6c24228b6fe9c9010bed75d2933884d7b49" resname="Request access" approved="yes"> <source>Request access</source> @@ -5709,13 +5753,13 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="516aae52959dcf5398a9985414a78b8c24a4f0e5" resname="Resolution" approved="yes"> <source>Resolution</source> <target state="translated">Résolution</target> - <jms:reference-file line="33">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="33">Media/Subdef/Image.php</jms:reference-file> + <jms:reference-file line="33">Media/Subdef/Unknown.php</jms:reference-file> </trans-unit> <trans-unit id="8e78cff6cd2bb8595029060cb53dba7a4ba72b8a" resname="Resource URL" approved="yes"> <source>Resource URL</source> <target state="translated">URL de la ressource</target> - <jms:reference-file line="38">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="44">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2479ef7e025d9d4c6e5463dc366c2d6c79aaefbe" resname="Resquest access" approved="yes"> <source>Resquest access</source> @@ -5725,12 +5769,12 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="ce2c77f1871ac286de08f393786b2a43da8aeb60" resname="Restart the task every X records" approved="yes"> <source>Restart the task every X records</source> <target state="translated">Redémarrer la tâche tous les X enregistrements</target> - <jms:reference-file line="45">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="48">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="72f952850433b0f6e2359d47502eb500eb41ddad" resname="Restart the task if memory reaches" approved="yes"> <source>Restart the task if memory reaches</source> <target state="translated">Redémarrer la tâche si la mémoire utilisée atteint</target> - <jms:reference-file line="51">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="54">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="68135bb8f15e79ba2b97fcf79236ac3b2ba42dac" resname="Reste" approved="yes"> <source>Reste</source> @@ -5813,9 +5857,9 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <target state="translated">La colonne Password est manquante. Le script s'est arrêté.</target> <jms:reference-file line="14">user/import/file.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="1d72d3b024f99631791dcfbc8288caa16d3ff388" resname="Résultats des derniers envois effectués pour cette application"> + <trans-unit id="1d72d3b024f99631791dcfbc8288caa16d3ff388" resname="Résultats des derniers envois effectués pour cette application" approved="yes"> <source>Résultats des derniers envois effectués pour cette application</source> - <target state="new">Résultats des derniers envois effectués pour cette application</target> + <target state="translated">Résultats des derniers envois effectués pour cette application</target> <jms:reference-file line="127">web/developers/application.html.twig</jms:reference-file> </trans-unit> <trans-unit id="741cd64a01685389e2fabdb7091a3b70f6be63ee" resname="SMTP encryption" approved="yes"> @@ -5856,29 +5900,29 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="efc007a393f66cdb14d57d385822a3d9e36ef873" resname="Save" approved="yes"> <source>Save</source> <target state="translated">Sauvegarder</target> - <jms:reference-file line="112">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="108">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="45">web/account/change-password.html.twig</jms:reference-file> <jms:reference-file line="26">admin/search-engine/general-aggregation.html.twig</jms:reference-file> <jms:reference-file line="3">admin/search-engine/elastic-search.html.twig</jms:reference-file> <jms:reference-file line="75">task-manager/task-editor/task.html.twig</jms:reference-file> - <jms:reference-file line="45">web/account/change-password.html.twig</jms:reference-file> - <jms:reference-file line="41">web/login/renew-password.html.twig</jms:reference-file> <jms:reference-file line="53">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="91">web/developers/application.html.twig</jms:reference-file> + <jms:reference-file line="41">web/login/renew-password.html.twig</jms:reference-file> </trans-unit> <trans-unit id="960c9d85e9849fa58deb038c6c9bcf36ec973c99" resname="Save all changes" approved="yes"> <source>Save all changes</source> <target state="translated">Sauvegarder toutes les modifications</target> <jms:reference-file line="8">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="a68dd32b578cf2863f4df4362232db4d80a9557c" resname="Save the list"> + <trans-unit id="a68dd32b578cf2863f4df4362232db4d80a9557c" resname="Save the list" approved="yes"> <source>Save the list</source> - <target state="new">Save the list</target> - <jms:reference-file line="90">actions/Feedback/list.html.twig</jms:reference-file> + <target state="translated">Sauvegarder la liste</target> + <jms:reference-file line="86">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e5c05c39658269a025f4dc37b50af1bb5ab946ca" resname="Save this list" approved="yes"> <source>Save this list</source> <target state="translated">Sauvegarder cette liste</target> - <jms:reference-file line="241">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="247">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="fedf2439f275db3b471d35c2e773398bfff1c9eb" resname="Se connecter" approved="yes"> <source>Se connecter</source> @@ -5895,9 +5939,9 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <target state="translated">Moteur de recherche</target> <jms:reference-file line="61">Form/Configuration/MainConfigurationFormType.php</jms:reference-file> </trans-unit> - <trans-unit id="a41408e4e69d88053181c88ed06a4efe5855dc4a" resname="Search for existing user"> + <trans-unit id="a41408e4e69d88053181c88ed06a4efe5855dc4a" resname="Search for existing user" approved="yes"> <source>Search for existing user</source> - <target state="new">Search for existing user</target> + <target state="translated">Rechercher un utilisateur existant</target> <jms:reference-file line="23">actions/Feedback/List-Share.html.twig</jms:reference-file> </trans-unit> <trans-unit id="16c9aa8877f2b2a5067b5183327d5d35f0e8b5de" resname="SearchEngine settings" approved="yes"> @@ -5930,35 +5974,41 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="b945126af2994e142e712b4e6f3c2cb2dd186a76" resname="See my order" approved="yes"> <source>See my order</source> <target state="translated">Voir ma commande</target> - <jms:reference-file line="74">Notification/Mail/MailInfoOrderDelivered.php</jms:reference-file> <jms:reference-file line="75">Notification/Mail/MailInfoOrderCancelled.php</jms:reference-file> + <jms:reference-file line="74">Notification/Mail/MailInfoOrderDelivered.php</jms:reference-file> </trans-unit> <trans-unit id="369b9cb821dd6966e989359a1b8aadaf9c4db387" resname="See others" approved="yes"> <source>See others</source> <target state="translated">Voir les autres</target> <jms:reference-file line="42">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="76f0c2c4f58a932f4d61175ea0da5799c1b3c231" resname="See the list"> + <trans-unit id="76f0c2c4f58a932f4d61175ea0da5799c1b3c231" resname="See the list" approved="yes"> <source>See the list</source> - <target state="new">See the list</target> - <jms:reference-file line="138">actions/Feedback/list.html.twig</jms:reference-file> + <target state="translated">Voir la liste</target> + <jms:reference-file line="134">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7c2ce4a38c55478fb397967408b8c6d7c29fcc3b" resname="See validation results" approved="yes"> <source>See validation results</source> <target state="translated">Voir les résultats de la demande de validation</target> <jms:reference-file line="81">Notification/Mail/MailInfoValidationDone.php</jms:reference-file> </trans-unit> + <trans-unit id="fd6294adde442e65458da9640beeafed76f7f66a" resname="Select a field" approved="yes"> + <source>Select a field</source> + <target state="translated">Choisir un champ</target> + <jms:reference-file line="425">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="68679be6d90db68ca5ceebaded92d5d83de8761c" resname="Select a list on the left and edit it !" approved="yes"> <source>Select a list on the left and edit it !</source> <target state="translated">Sélectionner une liste sur la gauche puis éditez la !</target> - <jms:reference-file line="295">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="300">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="913afff1faf79724f1f685fe8b1e36a729123ca2" resname="Select all" approved="yes"> <source>Select all</source> <target state="translated">Tout sélectionner</target> - <jms:reference-file line="61">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="215">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="24">web/report/form_date_and_base.html.twig</jms:reference-file> + <jms:reference-file line="221">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="57">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="68">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="45">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7c83f0d10a0a04ab6ae1ceb098113b081e9bc4d5" resname="Select all collections" approved="yes"> <source>Select all collections</source> @@ -5968,8 +6018,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="aacba52fe3c2b562e2ef14b41fcd4abab92a0619" resname="Select files..." approved="yes"> <source>Select files...</source> <target state="translated">Sélectionner des fichiers</target> - <jms:reference-file line="202">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="31">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="202">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="160">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="185">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="210">admin/collection/collection.html.twig</jms:reference-file> @@ -5977,6 +6027,11 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <jms:reference-file line="56">admin/statusbit/edit.html.twig</jms:reference-file> <jms:reference-file line="121">admin/statusbit/edit.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="49fae2071d9672ce46d9fbadda409a3fa0cbc238" resname="Selected base(s)" approved="yes"> + <source>Selected base(s)</source> + <target state="translated">Sélectionner les Bases :</target> + <jms:reference-file line="345">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="2c418c187fb3108749d7156765e7b9b16a51215f" resname="Selected files" approved="yes"> <source>Selected files</source> <target state="translated">Fichiers sélectionnés</target> @@ -5986,12 +6041,12 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <source>Send</source> <target state="translated">Envoyer</target> <jms:reference-file line="90">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="254">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="256">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="259">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="261">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="113">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="110">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="185">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="220">prod/orders/order_item.html.twig</jms:reference-file> - <jms:reference-file line="110">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="110">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="130">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="46">web/login/forgot-password.html.twig</jms:reference-file> </trans-unit> @@ -6005,16 +6060,18 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <target state="translated">Envoyer vers Facebook</target> <jms:reference-file line="32">prod/Share/record.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="60b2d62f2951ccf92ed7fb647ee7d6ab7ecfdd5e" resname="Send to Linkedin" approved="yes"> + <source>Send to Linkedin</source> + <target state="translated">Envoyer vers LinkedIn</target> + <jms:reference-file line="37">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="38">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="39">prod/Share/record.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="29f82ee42eeecce87dfe9223d5d7ff716dc68ead" resname="Send to Twitter" approved="yes"> <source>Send to Twitter</source> <target state="translated">Envoyer vers Twitter</target> <jms:reference-file line="24">prod/Share/record.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="35f49dcfbfb2e03fdce327671e82bf173b1ccb8b" resname="Sent" approved="yes"> - <source>Sent</source> - <target state="translated">Envoyé</target> - <jms:reference-file line="199">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="31f38dffd0e514c2f0c21da7a49966442217f792" resname="Sent documents (mail)" approved="yes"> <source>Sent documents (mail)</source> <target state="translated">Documents envoyés (par e-mail)</target> @@ -6024,12 +6081,12 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <source>Sent for validation to %list_participants%</source> <target state="translated">Envoyé pour validation à %list_participants%</target> <jms:reference-file line="66">WorkZone/Browser/Basket.html.twig</jms:reference-file> - <jms:reference-file line="91">WorkZone/Browser/Results.html.twig</jms:reference-file> + <jms:reference-file line="68">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b4b289a7b76be83adf9d38e7a3ee28190349bff2" resname="Separator" approved="yes"> <source>Separator</source> <target state="translated">Séparateur de valeurs</target> - <jms:reference-file line="163">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="162">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="af8c1d265158926dfd6209077b075c5efaa5c0d2" resname="Service youtube introuvable." approved="yes"> <source>Service youtube introuvable.</source> @@ -6054,8 +6111,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="4b1933037822e34594e624b3f814726a137a71fd" resname="Set labels" approved="yes"> <source>Set labels</source> <target state="translated">Définir les labels</target> - <jms:reference-file line="100">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="96">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="100">admin/collection/collection.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9137bba9319a52102294ab278c3a7aca79d67e29" resname="Set statuses restrictions" approved="yes"> <source>Set statuses restrictions</source> @@ -6070,8 +6127,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="cdd7bb2816b7a8f88bce0e47be39943bc369516b" resname="Setup" approved="yes"> <source>Setup</source> <target state="translated">Paramétrage</target> - <jms:reference-file line="22">web/admin/tree.html.twig</jms:reference-file> <jms:reference-file line="2">web/admin/setup.html.twig</jms:reference-file> + <jms:reference-file line="22">web/admin/tree.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a6fac1ccf7f969630ff9a2226f831a093093448b" resname="Setup my password" approved="yes"> <source>Setup my password</source> @@ -6083,9 +6140,9 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <target state="translated">Partager</target> <jms:reference-file line="108">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> - <trans-unit id="ce896454ee1650a73169d33b97a59cb8f90d6e6b" resname="Share my list"> + <trans-unit id="ce896454ee1650a73169d33b97a59cb8f90d6e6b" resname="Share my list" approved="yes"> <source>Share my list</source> - <target state="new">Share my list</target> + <target state="translated">Partager ma liste</target> <jms:reference-file line="31">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3d9576616347132778bc28cffe80b27a914f9dd0" resname="Share the list" approved="yes"> @@ -6101,13 +6158,13 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="396c2137a0b503759e5d4930af8a16aa28ce3ee7" resname="Short description" approved="yes"> <source>Short description</source> <target state="translated">Description brève</target> - <jms:reference-file line="18">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="101">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="18">admin/publications/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="32e50dd99f3b67dc93272aa6c904b83d37f4f48d" resname="Shutter speed" approved="yes"> <source>Shutter speed</source> <target state="translated">Vitesse d'obturateur</target> - <jms:reference-file line="292">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="305">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> <jms:reference-file line="98">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e4538baf30d4eb324ec64e4b48c1ca424dd3b773" resname="Si cet email contient des liens non cliquables, copiez/collez ces liens dans votre navigateur." approved="yes"> @@ -6143,7 +6200,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="b7152342a267362add3c0d7f69f720f7a9c76c9e" resname="Size" approved="yes"> <source>Size</source> <target state="translated">Taille</target> - <jms:reference-file line="86">actions/Tools/videoEditor.html.twig</jms:reference-file> + <jms:reference-file line="99">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="40">actions/Download/prepare.html.twig</jms:reference-file> <jms:reference-file line="37">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> @@ -6207,8 +6264,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="8657e88f4bf4b28dd29659361c70f11dea58efa5" resname="Sous-titre" approved="yes"> <source>Sous-titre</source> <target state="translated">Sous-titre</target> - <jms:reference-file line="16">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="99">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="16">admin/publications/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="970f057325af27424f32675051fea5366873b007" resname="Space bar" approved="yes"> <source>Space bar</source> @@ -6234,7 +6291,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="2e5dd1202b7de8194a1498340953992c32738494" resname="Start by creating one by using the "add" button on the left !" approved="yes"> <source>Start by creating one by using the "add" button on the left !</source> <target state="translated">Créer une première liste en cliquant sur \"Ajouter\" à gauche de l'écran !</target> - <jms:reference-file line="291">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="296">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7ec5491e76522fe1687d799f35ab2ba39ae573fe" resname="Start validation" approved="yes"> <source>Start validation</source> @@ -6250,7 +6307,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="4e1c8377cce4ac872e1c3e8fc6bc760c5130946d" resname="Status des documents a rechercher" approved="yes"> <source>Status des documents a rechercher</source> <target state="translated">Status des documents pour la recherche</target> - <jms:reference-file line="389">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="502">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5b9261222b0e03c8cd1796d7c8adabf1bb552e4d" resname="Status edition" approved="yes"> <source>Status edition</source> @@ -6288,7 +6345,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="315bc332aafca63cad8ac042c2e2f5111544fe9d" resname="Story Not Found" approved="yes"> <source>Story Not Found</source> <target state="translated">Reportage inconnu</target> - <jms:reference-file line="2452">Controller/Api/V1Controller.php</jms:reference-file> + <jms:reference-file line="2494">Controller/Api/V1Controller.php</jms:reference-file> </trans-unit> <trans-unit id="94e347da85f4797810ed7987973c8ef79092057e" resname="Story created" approved="yes"> <source>Story created</source> @@ -6335,16 +6392,16 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <target state="translated">Sous-définition</target> <jms:reference-file line="19">admin/databox/details.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="2dacf65959849884a011f36f76a04eebea94c5ea" resname="Submit"> + <trans-unit id="2dacf65959849884a011f36f76a04eebea94c5ea" resname="Submit" approved="yes"> <source>Submit</source> - <target state="needs-translation">Envoyé</target> + <target state="translated">Envoyer</target> <jms:reference-file line="120">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> <trans-unit id="8017bd7de9961cf42f59abc587d0495a9d25c2a9" resname="Substitute" approved="yes"> <source>Substitute</source> <target state="translated">Substituer</target> - <jms:reference-file line="359">prod/upload/lazaret.html.twig</jms:reference-file> - <jms:reference-file line="360">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="516">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="517">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3d48a1d66362cef46e567ddf521b0dc3233f57a2" resname="Substitution is not possible for this kind of record" approved="yes"> <source>Substitution is not possible for this kind of record</source> @@ -6354,8 +6411,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="42a8f651d79fd005eeac0612df6442b983a01184" resname="Success" approved="yes"> <source>Success</source> <target state="translated">Succès</target> - <jms:reference-file line="508">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="9">api/auth/native_app_access_token.html.twig</jms:reference-file> + <jms:reference-file line="508">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5f7dcc16f00b622a8fb8bf4abf16dad52640a5fc" resname="Successful install" approved="yes"> <source>Successful install</source> @@ -6365,22 +6422,16 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="4b7dae46777ddbfd995aab044d4a51239c1cb2ca" resname="Successful removal" approved="yes"> <source>Successful removal</source> <target state="translated">Suppression effectuée</target> - <jms:reference-file line="185">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="225">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="266">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="460">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="99">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="394">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="186">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="226">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="267">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="461">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="6ba2cae76f3ec74086cc39f093db7b475944448b" resname="Successful update" approved="yes"> <source>Successful update</source> <target state="translated">Mise à jour réussie</target> - <jms:reference-file line="557">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="595">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="633">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="666">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="699">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="807">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="155">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="187">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="221">Controller/Admin/DataboxController.php</jms:reference-file> @@ -6388,10 +6439,16 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <jms:reference-file line="464">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="602">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="647">Controller/Admin/DataboxController.php</jms:reference-file> - <jms:reference-file line="168">actions/Tools/videoEditor.html.twig</jms:reference-file> - <jms:reference-file line="20">admin/collection/suggested_value.html.twig</jms:reference-file> - <jms:reference-file line="18">admin/collection/collection.html.twig</jms:reference-file> + <jms:reference-file line="558">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="596">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="634">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="667">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="700">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="808">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="181">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="10">web/admin/databases.html.twig</jms:reference-file> + <jms:reference-file line="18">admin/collection/collection.html.twig</jms:reference-file> + <jms:reference-file line="20">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> <trans-unit id="432156a872c392232a4f7434feca02cdf36cfbfa" resname="Successfull connection" approved="yes"> <source>Successfull connection</source> @@ -6421,14 +6478,14 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="dd631af5459e2fae291effe51fbb608d13a75163" resname="Suppression de %n_element% playlists" approved="yes"> <source>Suppression de %n_element% playlists</source> <target state="translated">Suppression de %n_element% liste(s) de lecture</target> - <jms:reference-file line="6">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="6">Bridge/Dailymotion/playlist_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="6">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> </trans-unit> <trans-unit id="299c2796a0d682b2495627623e9f228410b8a84a" resname="Suppression de %n_element% videos" approved="yes"> <source>Suppression de %n_element% videos</source> <target state="translated">Suppression de %n_element% vidéo(s)</target> - <jms:reference-file line="6">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="6">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="6">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1acfc1c7d761310db2e5e876c0cade4d522cfed2" resname="Supprimer" approved="yes"> <source>Supprimer</source> @@ -6440,11 +6497,6 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <target state="translated">Egalement supprimer les documents rattachés à ces reportages ?</target> <jms:reference-file line="39">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> - <trans-unit id="65cc662ad8bf7275ba279006da212ce5a48f4eec" resname="Suspended access to the following collections" approved="yes"> - <source>Suspended access to the following collections</source> - <target state="translated">Accès aux collections suivantes suspendu</target> - <jms:reference-file line="159">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="8f040009fef60fd317d7519f22f4fe97ee277dc0" resname="Symbolized by" approved="yes"> <source>Symbolized by</source> <target state="translated">Symbolisé par</target> @@ -6469,16 +6521,16 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="848eed0fbd5429f556b2982dec3ea87136e33e44" resname="Tags" approved="yes"> <source>Tags</source> <target state="translated">Tags</target> - <jms:reference-file line="68">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="71">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="38">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="57">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="49">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="71">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="38">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="68">Bridge/Flickr/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0e98caed82acc9fa2f1ba9edeab7789e75e49c36" resname="Target Device" approved="yes"> <source>Target Device</source> <target state="translated">Dispositif ciblé</target> - <jms:reference-file line="388">classes/databox/subdef.php</jms:reference-file> + <jms:reference-file line="392">classes/databox/subdef.php</jms:reference-file> </trans-unit> <trans-unit id="5fb2e4a63ebe9160da52c28fba2f61029c85c8d6" resname="Task Edition" approved="yes"> <source>Task Edition</source> @@ -6512,11 +6564,6 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <target state="translated">Téléchargeable</target> <jms:reference-file line="417">web/admin/subdefs.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="e7b08fafe055633f6df0d3f22da6d788f79e4d9f" resname="Temporary access to the following collections" approved="yes"> - <source>Temporary access to the following collections</source> - <target state="translated">Accès temporaire aux collections suivantes</target> - <jms:reference-file line="109">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="d32cbb0b2df6ec0df4b80910498d4ef9ce5f0bb3" resname="Terms Of Use" approved="yes"> <source>Terms Of Use</source> <target state="translated">Conditions Générales d'Utilisation</target> @@ -6538,12 +6585,12 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <target state="translated">Conditions d'utilisation</target> <jms:reference-file line="72">Controller/Prod/TOUController.php</jms:reference-file> <jms:reference-file line="141">web/admin/tree.html.twig</jms:reference-file> - <jms:reference-file line="74">login/layout/base-layout.html.twig</jms:reference-file> <jms:reference-file line="6">web/login/cgus.html.twig</jms:reference-file> + <jms:reference-file line="75">login/layout/base-layout.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="903b3a1a72b51b7b51f85ec8c81def53ed9c9b0c" resname="The Phraseanet Web API allows other web application to rely on this instance"> + <trans-unit id="903b3a1a72b51b7b51f85ec8c81def53ed9c9b0c" resname="The Phraseanet Web API allows other web application to rely on this instance" approved="yes"> <source>The Phraseanet Web API allows other web application to rely on this instance</source> - <target state="needs-translation">L'API Web Phraseanet permet à d'autres applications web de se reposer sur cette instance</target> + <target state="translated">L'API Web Phraseanet permet à d'autres applications web de se reposer sur cette instance</target> <jms:reference-file line="23">Form/Configuration/APIClientsFormType.php</jms:reference-file> </trans-unit> <trans-unit id="2558cc2c887bbe4e2444ec6ef83b4982386e871a" resname="The URL you used is out of date, please login" approved="yes"> @@ -6560,7 +6607,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <source>The application is going down for maintenance, please logout.</source> <target state="translated">L'application va être désactivée pour maintenance, merci de vous déconnecter dès que possible</target> <jms:reference-file line="85">Controller/Root/SessionController.php</jms:reference-file> - <jms:reference-file line="173">Controller/Root/SessionController.php</jms:reference-file> + <jms:reference-file line="175">Controller/Root/SessionController.php</jms:reference-file> </trans-unit> <trans-unit id="dbc7a77bb18477228fe3550ec43be9d8632599f6" resname="The authentication token specified in the Authorization header has expired." approved="yes"> <source>The authentication token specified in the Authorization header has expired.</source> @@ -6580,7 +6627,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="96d9248cb4dfd196e98cbb278169e01e69ecc41a" resname="The destination record provided is not allowed" approved="yes"> <source>The destination record provided is not allowed</source> <target state="translated">L'enregistrement de destination fourni n'est pas autorisé</target> - <jms:reference-file line="215">Controller/Prod/LazaretController.php</jms:reference-file> + <jms:reference-file line="225">Controller/Prod/LazaretController.php</jms:reference-file> </trans-unit> <trans-unit id="3814607399fa053b6054a4d7ce214f2d34034150" resname="The document %name% has been quarantined" approved="yes"> <source>The document %name% has been quarantined</source> @@ -6620,13 +6667,13 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="bed6ca36bed72a06b8787982e6c74a8fbbb7715f" resname="The file is too big" approved="yes"> <source>The file is too big</source> <target state="translated">Le fichier est trop gros</target> - <jms:reference-file line="65">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="44">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="66">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="1d5dadcdeeecd294a88baf096ba0440053ecf738" resname="The file was moved to the quarantine" approved="yes"> <source>The file was moved to the quarantine</source> <target state="translated">Le fichier a été déplacé en quarantaine</target> - <jms:reference-file line="225">Controller/Prod/UploadController.php</jms:reference-file> + <jms:reference-file line="282">Controller/Prod/UploadController.php</jms:reference-file> </trans-unit> <trans-unit id="1818502d42e14ffcb9c664fd1365fafa969971ff" resname="The following errors have been detected" approved="yes"> <source>The following errors have been detected</source> @@ -6636,13 +6683,13 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="d22c09c164965d42fcdb8d8fe2b40d7d57799a8f" resname="The publication has been stopped" approved="yes"> <source>The publication has been stopped</source> <target state="translated">La publication a été suspendue</target> - <jms:reference-file line="516">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="498">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="517">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="bae1c72ecbe1459751e4a0fee382a305bbf933b7" resname="The record was successfully created" approved="yes"> <source>The record was successfully created</source> <target state="translated">L'enregistrement a été créé</target> - <jms:reference-file line="196">Controller/Prod/UploadController.php</jms:reference-file> + <jms:reference-file line="253">Controller/Prod/UploadController.php</jms:reference-file> </trans-unit> <trans-unit id="209817489c23cec8b7a15f6b8ca3e45daf08656d" resname="The records have been properly ordered" approved="yes"> <source>The records have been properly ordered</source> @@ -6678,7 +6725,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="a797e30923ac1be590300ce6b08e63b4e6dc6688" resname="Theme" approved="yes"> <source>Theme</source> <target state="translated">Thème</target> - <jms:reference-file line="616">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="707">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="322573ed2c245ecca02a8d7e8c96d89511d99b5a" resname="There is no one to validate orders, please contact an administrator" approved="yes"> <source>There is no one to validate orders, please contact an administrator</source> @@ -6704,7 +6751,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="163fc70a23cf29331bab9896c9a8a0cb0b113bd6" resname="Thesaurus branch" approved="yes"> <source>Thesaurus branch</source> <target state="translated">Branche de thésaurus</target> - <jms:reference-file line="248">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="263">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c80f8a4f795945c822db75e5414796446ada185c" resname="Thesaurus ou CTerms invalide" approved="yes"> <source>Thesaurus ou CTerms invalide</source> @@ -6761,7 +6808,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="0845a443aa08307788a65ee5e1218a618dfcc9aa" resname="This link is valid until" approved="yes"> <source>This link is valid until</source> <target state="translated">Ce lien est valide jusqu'au</target> - <jms:reference-file line="109">templates/web/email-template.html.twig</jms:reference-file> + <jms:reference-file line="115">templates/web/email-template.html.twig</jms:reference-file> </trans-unit> <trans-unit id="58e76d1cc6a26f43783774d888c3a260970f637b" resname="This option disables the selecting of the databases on which a user can register himself, and registration is made on all granted databases." approved="yes"> <source>This option disables the selecting of the databases on which a user can register himself, and registration is made on all granted databases.</source> @@ -6771,7 +6818,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="814c3298cccd06ad65ccac8a35e4f2104a4af17e" resname="This user does not participate to the validation but is only viewer." approved="yes"> <source>This user does not participate to the validation but is only viewer.</source> <target state="translated">Cet utilisateur ne participe pas à la demande de validation</target> - <jms:reference-file line="368">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="398">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="edbc2ef60cebe2e6efe5cb9a2662e710a65615d1" resname="This user has no rights" approved="yes"> <source>This user has no rights</source> @@ -6802,24 +6849,24 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <source>Time for feedback (days)</source> <target state="translated">Durée de la validation (en jours)</target> <jms:reference-file line="88">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="138">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="139">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="eb97899aedcd5609782b5ccb4ffa390e0e66a3eb" resname="Titre" approved="yes"> <source>Titre</source> <target state="translated">Titre</target> <jms:reference-file line="9">prod/Baskets/Reorder.html.twig</jms:reference-file> - <jms:reference-file line="39">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="24">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> - <jms:reference-file line="13">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="29">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="13">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="24">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="29">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="24">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="29">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="24">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="39">Bridge/Flickr/upload.html.twig</jms:reference-file> + <jms:reference-file line="24">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> <jms:reference-file line="8">prod/Story/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="93">admin/publications/fiche.html.twig</jms:reference-file> <jms:reference-file line="9">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="54">admin/publications/list.html.twig</jms:reference-file> - <jms:reference-file line="93">admin/publications/fiche.html.twig</jms:reference-file> </trans-unit> <trans-unit id="01594f4dad04782844c8175778fdf66deabf580d" resname="Toggle loop"> <source>Toggle loop</source> @@ -6831,6 +6878,11 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <target state="translated">Jeton</target> <jms:reference-file line="109">web/developers/application.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="e894979930445d4b2bd8c947d6e2e6b816fcb0ab" resname="Token not found" approved="yes"> + <source>Token not found</source> + <target state="translated">Token non trouvé</target> + <jms:reference-file line="383">Controller/Root/AccountController.php</jms:reference-file> + </trans-unit> <trans-unit id="f97edaa0ce78a61e01095cae4169cada477d52dc" resname="Tool box" approved="yes"> <source>Tool box</source> <target state="translated">Outils</target> @@ -6839,18 +6891,18 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="b25928c69902557b0ef0a628490a3a1768d7b82f" resname="Total" approved="yes"> <source>Total</source> <target state="translated">Total</target> - <jms:reference-file line="27">admin/collection/details.html.twig</jms:reference-file> <jms:reference-file line="47">admin/databox/details.html.twig</jms:reference-file> + <jms:reference-file line="27">admin/collection/details.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b97ae3b4f9093f64a85df9e7d4338f6c62772516" resname="Tous" approved="yes"> <source>Tous</source> <target state="translated">Tous</target> - <jms:reference-file line="213">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="228">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6a5df111083f0da274d3b57d9b32183a19d33616" resname="Tout type" approved="yes"> <source>Tout type</source> <target state="translated">Tous types</target> - <jms:reference-file line="293">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="318">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="858b4e63ba1db83dde4feb9673b47c725b20a18b" resname="Toutes les publications" approved="yes"> <source>Toutes les publications</source> @@ -6870,24 +6922,18 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="9764c016bb5a296069109116fa95c49815dcba82" resname="Transmited files" approved="yes"> <source>Transmited files</source> <target state="translated">Fichiers transmis</target> + <jms:reference-file line="122">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="118">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="119">prod/upload/upload.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="a7e4c9fa228eb48d2c3526022f4fad0106db3d08" resname="Trier" approved="yes"> - <source>Trier</source> - <target state="translated">Trier</target> - <jms:reference-file line="49">web/report/generate_tab.html.twig</jms:reference-file> - <jms:reference-file line="50">web/report/generate_tab.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6e764776541fbe428a3566f42ee7956312af98b7" resname="Trier par" approved="yes"> <source>Trier par</source> <target state="translated">Trier par</target> - <jms:reference-file line="344">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="373">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f85e36f3a512d36e7e4bba99d440d389ab84ca9d" resname="Try to extract embedded thumbnails" approved="yes"> <source>Try to extract embedded thumbnails</source> <target state="translated">Essayer d'extraire les vignettes intégrées</target> - <jms:reference-file line="61">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="64">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3deb7456519697ecf4eefc455516c969a3681bae" resname="Type" approved="yes"> <source>Type</source> @@ -6907,7 +6953,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="a5ab97f65fffae645fe7e88ee89ca7ebc1e033be" resname="Type de documents" approved="yes"> <source>Type de documents</source> <target state="translated">Type de document</target> - <jms:reference-file line="650">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="741">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0264aa285ccf980bbec0969e06c2eab7e936188c" resname="Type nombre" approved="yes"> <source>Type nombre</source> @@ -6922,8 +6968,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="c2739616a133e476dda18386df0d2487d526766a" resname="URL de callback" approved="yes"> <source>URL de callback</source> <target state="translated">Url de Callback</target> - <jms:reference-file line="44">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="102">web/developers/application_form.html.twig</jms:reference-file> + <jms:reference-file line="44">web/developers/application.html.twig</jms:reference-file> </trans-unit> <trans-unit id="268f900effee1beb15231a1504d02543e8827bb3" resname="Un document commande" approved="yes"> <source>Un document commande</source> @@ -6938,8 +6984,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="d32751443628a0d2c5b31b441c1e2b3001f35dfd" resname="Unable to add file to Phraseanet" approved="yes"> <source>Unable to add file to Phraseanet</source> <target state="translated">Impossible d'ajouter des fichiers à Phraseanet</target> - <jms:reference-file line="237">Controller/Prod/UploadController.php</jms:reference-file> <jms:reference-file line="195">Controller/Admin/FeedController.php</jms:reference-file> + <jms:reference-file line="294">Controller/Prod/UploadController.php</jms:reference-file> </trans-unit> <trans-unit id="8b233593eb66b5be4da2f44ff527bd641b3a6fc1" resname="Unable to add usr to list" approved="yes"> <source>Unable to add usr to list</source> @@ -6967,12 +7013,12 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="225f62661868b2c3fb3820c94c5727f70b1e7d4c" resname="Unable to create template, the name is already used." approved="yes"> <source>Unable to create template, the name is already used.</source> <target state="translated">Impossible le créer le modèle, le nom donné est déjà utilisé.</target> - <jms:reference-file line="270">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="271">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="ac9cb56f58dc3e077f9557ed6958e993dae09e71" resname="Unable to create the user." approved="yes"> <source>Unable to create the user.</source> <target state="translated">Impossible de créer l'utilisateur.</target> - <jms:reference-file line="272">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="273">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="5660d6aac90c7a8f4df9fcad68513c061bef3298" resname="Unable to delete list" approved="yes"> <source>Unable to delete list</source> @@ -7030,7 +7076,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="c091c74374b8ad7b7018e849fd89bf14c1fe3f02" resname="Une question personnelle" approved="yes"> <source>Une question personnelle</source> <target state="translated">La question</target> - <jms:reference-file line="691">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="782">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="de1052fd7157a697a5ee7741019cc38322fc6128" resname="Une selection" approved="yes"> <source>Une selection</source> @@ -7088,16 +7134,16 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="8bdf057f91e76ae328b2a21d35f682daa08a0ec0" resname="Upload" approved="yes"> <source>Upload</source> <target state="translated">Ajouter</target> - <jms:reference-file line="6">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="83">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="16">actions/Bridge/index.html.twig</jms:reference-file> - <jms:reference-file line="5">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="101">Bridge/Youtube/upload.html.twig</jms:reference-file> <jms:reference-file line="5">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="89">Bridge/Dailymotion/upload.html.twig</jms:reference-file> - <jms:reference-file line="8">prod/upload/upload-flash.html.twig</jms:reference-file> + <jms:reference-file line="5">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="101">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="16">actions/Bridge/index.html.twig</jms:reference-file> + <jms:reference-file line="6">Bridge/Flickr/upload.html.twig</jms:reference-file> + <jms:reference-file line="83">Bridge/Flickr/upload.html.twig</jms:reference-file> <jms:reference-file line="8">prod/upload/upload.html.twig</jms:reference-file> - <jms:reference-file line="93">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="8">prod/upload/upload-flash.html.twig</jms:reference-file> + <jms:reference-file line="94">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f9ee782a49540357e87b6dc0dde09d8bec6507af" resname="Upload URL is not set, please contact an admin" approved="yes"> <source>Upload URL is not set, please contact an admin</source> @@ -7122,7 +7168,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="a8ddbae32452ce671987065bc29d7ae6685a2b17" resname="Uploaded by : %username%" approved="yes"> <source>Uploaded by : %username%</source> <target state="translated">Ajouté par : %username%</target> - <jms:reference-file line="341">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="438">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ea1fd4c4c366bf2e13d348b67b75e96039d7a1d7" resname="Use Google Chart API" approved="yes"> <source>Use Google Chart API</source> @@ -7142,7 +7188,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="d029e308808256c5e3868e24ea33f14866ab2e36" resname="Use latest search settings on Production loading" approved="yes"> <source>Use latest search settings on Production loading</source> <target state="translated">Utiliser la dernière question posée au lancement de Production</target> - <jms:reference-file line="588">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="679">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="74126bf38974fc3d5bf2d0844567be2be473e122" resname="Use my Phraseanet account" approved="yes"> <source>Use my Phraseanet account</source> @@ -7157,16 +7203,16 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="17a74b77867e7b3f4f5e5b2ad90be36cf800dfda" resname="Use the Flash uploader" approved="yes"> <source>Use the Flash uploader</source> <target state="translated">Utiliser l'uploader Flash</target> + <jms:reference-file line="53">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="146">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="132">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="50">prod/upload/upload.html.twig</jms:reference-file> - <jms:reference-file line="143">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b9473cfd4d6d6383f40de2d9be11adcca7b76ab6" resname="Use the HTML5 uploader" approved="yes"> <source>Use the HTML5 uploader</source> <target state="translated">Utiliser l'uploader HTML5</target> + <jms:reference-file line="145">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="48">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="131">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="142">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1d2b0439bd02b54c622696c45588eab8d051dfb9" resname="Use with mod_token. Attention requires the apache modules and mod_h264_streaming mod_auth_token" approved="yes"> <source>Use with mod_token. Attention requires the apache modules and mod_h264_streaming mod_auth_token</source> @@ -7197,40 +7243,40 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <source>User can download HD</source> <target state="translated">L'utilisateur peut télécharger des documents HD</target> <jms:reference-file line="103">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="107">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="109">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="213">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="215">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="254">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="256">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="108">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="110">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="214">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="216">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="255">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="257">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ae005b1ce814398e203551a75eeeb5da09f80204" resname="User can see others choices" approved="yes"> <source>User can see others choices</source> <target state="translated">L'utilisateur peut consulter les choix des autres utilisateurs</target> <jms:reference-file line="105">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="100">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="102">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="101">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="103">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9e982c7ce4a8cb5f48743cd0ca79a82ca30f7dc1" resname="User contribute to the feedback" approved="yes"> <source>User contribute to the feedback</source> <target state="translated">L'utilisateur peut participer aux demandes de validations</target> <jms:reference-file line="104">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="93">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="95">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="94">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="96">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="981305c0c2dad92d70b1afd4757a274596de6ec7" resname="User successfully created" approved="yes"> <source>User successfully created</source> <target state="translated">Utilisateur créé avec succès</target> - <jms:reference-file line="485">Controller/Prod/PushController.php</jms:reference-file> + <jms:reference-file line="490">Controller/Prod/PushController.php</jms:reference-file> </trans-unit> <trans-unit id="57f2b181d0a5e79a147ea1cdf41457f58dbbb3c9" resname="Users" approved="yes"> <source>Users</source> <target state="translated">Utilisateurs</target> <jms:reference-file line="40">Vocabulary/ControlProvider/UserProvider.php</jms:reference-file> + <jms:reference-file line="107">prod/actions/Push.html.twig</jms:reference-file> <jms:reference-file line="5">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="100">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="29">user/import/view.html.twig</jms:reference-file> <jms:reference-file line="19">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="29">user/import/view.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3482565eef4d4cd1decb5ebfad6ecfc5943d30da" resname="Users must accept Terms of Use for each export" approved="yes"> <source>Users must accept Terms of Use for each export</source> @@ -7240,11 +7286,11 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="28f4718f1cf2cd1f31d49c8bce276341ffe222bd" resname="Users suggestion" approved="yes"> <source>Users suggestion</source> <target state="translated">Suggestion d'utilisateurs</target> - <jms:reference-file line="142">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="149">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="a56fad2f92979e0171b42bbc51ff5657d17ceb91" resname="Utilisation prevue:"> + <trans-unit id="a56fad2f92979e0171b42bbc51ff5657d17ceb91" resname="Utilisation prevue:" approved="yes"> <source>Utilisation prevue:</source> - <target state="needs-translation">Utilisation prévue:</target> + <target state="translated">Utilisation prévue :</target> <jms:reference-file line="250">prod/orders/order_item.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3b3e9155f69edf73caab337bf5f64231188b1e48" resname="VALIDATION" approved="yes"> @@ -7261,11 +7307,11 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="dd74d182c641e4c78502d863b44d0aeff1575e54" resname="Validation" approved="yes"> <source>Validation</source> <target state="translated">Validation</target> + <jms:reference-file line="23">eventsmanager/notify/validationdone.php</jms:reference-file> <jms:reference-file line="20">eventsmanager/notify/validationreminder.php</jms:reference-file> <jms:reference-file line="73">eventsmanager/notify/validationreminder.php</jms:reference-file> <jms:reference-file line="20">eventsmanager/notify/validate.php</jms:reference-file> <jms:reference-file line="78">eventsmanager/notify/validate.php</jms:reference-file> - <jms:reference-file line="20">eventsmanager/notify/validationdone.php</jms:reference-file> <jms:reference-file line="86">lightbox/IE6/validate.html.twig</jms:reference-file> </trans-unit> <trans-unit id="83da6b62512e6597a104cf295a8f050cd9799a6d" resname="Validation from %user%" approved="yes"> @@ -7281,11 +7327,11 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="6c259e54dcc7188e7cfe33403eca78cda53017fc" resname="Validations" approved="yes"> <source>Validations</source> <target state="translated">Validations</target> + <jms:reference-file line="46">mobile/lightbox/index.html.twig</jms:reference-file> + <jms:reference-file line="86">mobile/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="24">web/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="119">lightbox/IE6/validate.html.twig</jms:reference-file> <jms:reference-file line="132">web/lightbox/validate.html.twig</jms:reference-file> - <jms:reference-file line="46">mobile/lightbox/index.html.twig</jms:reference-file> - <jms:reference-file line="86">mobile/lightbox/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="264cc8414ca311d9fa99c7ed66a90171dcf22dc6" resname="Validations received" approved="yes"> <source>Validations received</source> @@ -7320,7 +7366,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="bc17c1f0179a888f2a7e8389f67d4f2cf5cf4531" resname="Video" approved="yes"> <source>Video</source> <target state="translated">Vidéo</target> - <jms:reference-file line="295">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="320">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="49b431928c1ca1e514c612954a19457fadff2485" resname="Video Codec" approved="yes"> <source>Video Codec</source> @@ -7330,13 +7376,13 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="534048d6c768f47f83f67c0498e6d4ecf5cff4bb" resname="Video codec"> <source>Video codec</source> <target state="new">Video codec</target> - <jms:reference-file line="325">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="346">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="56b71e89fb1079caaadefd0889e9a22e8b0560e3" resname="Videos" approved="yes"> <source>Videos</source> <target state="translated">Vidéos</target> - <jms:reference-file line="174">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="159">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="174">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="18af7efc4ef7f30783dbb1ad1bc0b9aed857a19c" resname="View on %title%" approved="yes"> <source>View on %title%</source> @@ -7346,24 +7392,24 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="f5bd306a7ccf0851eeefd7659ac5c01c382df934" resname="Vocabulary not found" approved="yes"> <source>Vocabulary not found</source> <target state="translated">Vocabulaire non trouvé</target> - <jms:reference-file line="255">Controller/Prod/EditController.php</jms:reference-file> + <jms:reference-file line="258">Controller/Prod/EditController.php</jms:reference-file> </trans-unit> <trans-unit id="a1e3e6d2f9b416cfab10df81ce100f4fc43eb90a" resname="Vocabulary type" approved="yes"> <source>Vocabulary type</source> <target state="translated">Liste de vocabulaire</target> - <jms:reference-file line="237">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="252">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="044d95dece43b99febe25cb6bc5fab28bf212ee0" resname="Voici vos paniers" approved="yes"> <source>Voici vos paniers</source> <target state="translated">Paniers disponibles</target> - <jms:reference-file line="94">web/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="120">mobile/lightbox/index.html.twig</jms:reference-file> + <jms:reference-file line="94">web/lightbox/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c6dacfdd161fc809b7996f80fccf5c7515f82e1c" resname="Voici vos validations en cours" approved="yes"> <source>Voici vos validations en cours</source> <target state="translated">Demandes de validations en cours</target> - <jms:reference-file line="27">web/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="90">mobile/lightbox/index.html.twig</jms:reference-file> + <jms:reference-file line="27">web/lightbox/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a2fde1d3f411f4fbe13b98748bd7c18fb84e71f9" resname="Votre adresse email" approved="yes"> <source>Votre adresse email</source> @@ -7410,11 +7456,6 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <target state="translated">Vous avez reçu un nouveau panier</target> <jms:reference-file line="4">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="4d922dc119f737364189a2807ca9423a19d3fdfc" resname="Vous avez recu une demande de validation de document sur ce panier" approved="yes"> - <source>Vous avez recu une demande de validation de document sur ce panier</source> - <target state="translated">Vous avez reçu une demande de validation des documents de ce panier</target> - <jms:reference-file line="30">prod/WorkZone/Macros.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="48b0edd4b7baadecf72f020e6bc23a8a2118e83f" resname="Vous aviez envoye cette demande a %n% utilisateurs" approved="yes"> <source>Vous aviez envoye cette demande a %n% utilisateurs</source> <target state="translated">La demande avait été adressée à %n% utilisateurs</target> @@ -7493,10 +7534,10 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="12ee49ba726f4422d3dcc6bc7b92ab9de279d211" resname="Vous n'avez selectionne aucun element" approved="yes"> <source>Vous n'avez selectionne aucun element</source> <target state="translated">Aucun document sélectionné</target> - <jms:reference-file line="14">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="88">actions/Bridge/index.html.twig</jms:reference-file> - <jms:reference-file line="13">Bridge/Youtube/upload.html.twig</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/upload.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="88">actions/Bridge/index.html.twig</jms:reference-file> + <jms:reference-file line="14">Bridge/Flickr/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5e8fd52d6c7e92e6907f1148d2e458871d17c1ae" resname="Vous ne pouvez pas editer plusieurs elements simultanement" approved="yes"> <source>Vous ne pouvez pas editer plusieurs elements simultanement</source> @@ -7522,7 +7563,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="4ac570371902f3ba1babc51f8a4c030e31724b34" resname="Vous pouvez quitter la plupart des fenetres survolantes via la touche echap" approved="yes"> <source>Vous pouvez quitter la plupart des fenetres survolantes via la touche echap</source> <target state="translated">Vous pouvez fermer la plupart des fênetres en sur impression avec la touche echap</target> - <jms:reference-file line="559">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="650">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="338f05228fd3d0770eac9a4d37cc93dcc1cd7cdc" resname="Warning !" approved="yes"> <source>Warning !</source> @@ -7568,7 +7609,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="58877d4031b60c13f284719a0aecfb1e7962c59a" resname="Welcome to the ListManager !" approved="yes"> <source>Welcome to the ListManager !</source> <target state="translated">Gérer des listes de destinataires</target> - <jms:reference-file line="288">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="293">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="769bb19e615b7f8e2809e5882e2d05a18f57a531" resname="When" approved="yes"> <source>When</source> @@ -7583,8 +7624,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="ceffd5b622d10de1a19822471cb3804cb61cba28" resname="Which playlist you want to put you %number% elements into ?" approved="yes"> <source>Which playlist you want to put you %number% elements into ?</source> <target state="translated">A quelle liste de lecture souhaitez vous ajouter les %number% documents</target> - <jms:reference-file line="13">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6e2507e568a039431c507b30f44aa72cbb1ed929" resname="Whoops, looks like something went wrong." approved="yes"> <source>Whoops, looks like something went wrong.</source> @@ -7614,15 +7655,22 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <target state="translated">Ecriture des métadonnées</target> <jms:reference-file line="498">web/admin/subdefs.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="d3f8f7b810c4b08f0b4ac4e47fdf8d265a10d869" resname="YYYY-MM-DD" approved="yes"> + <source>YYYY-MM-DD</source> + <target state="translated">AAAA-MM-JJ</target> + <jms:reference-file line="10">web/report/form_date_and_base.html.twig</jms:reference-file> + <jms:reference-file line="20">web/report/form_date_and_base.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="9ebeadaf2d2237a35176827d093952ad6cc88f5e" resname="YYYY/MM/DD" approved="yes"> <source>YYYY/MM/DD</source> <target state="translated">YYYY/MM/DD</target> - <jms:reference-file line="453">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="459">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="485">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="492">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5397e0583f14f6c88de06b1ef28f460a1fb5b0ae" resname="Yes" approved="yes"> <source>Yes</source> <target state="translated">Oui</target> + <jms:reference-file line="291">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="13">user/import/view.html.twig</jms:reference-file> <jms:reference-file line="33">web/developers/applications.html.twig</jms:reference-file> </trans-unit> @@ -7634,22 +7682,22 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="d2a23a2eb3bc334253d0a4cd6541bea3e520e3d9" resname="You are about to ask for feedback for %nb_push_items% records, %nb_not_available% records can not be processed." approved="yes"> <source>You are about to ask for feedback for %nb_push_items% records, %nb_not_available% records can not be processed.</source> <target state="translated">Vous êtes sur le point d'envoyer une demande de validation pour %nb_push_items% documents, or seuls %nb_not_available% documents peuvent être pris en compte.</target> - <jms:reference-file line="209">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="215">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4614afcfbdb05da7ae2e2ce6fc7e808cd707f257" resname="You are about to ask for feedback for %nb_push_items% records." approved="yes"> <source>You are about to ask for feedback for %nb_push_items% records.</source> <target state="translated">Vous êtes sur le point d'envoyer une demande de validation pour %nb_push_items% documents.</target> - <jms:reference-file line="206">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="212">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2292a5ac48e50169c8d013bf51853ccaf69d182b" resname="You are about to push %nb_push_items% records, %nb_not_available% records can not be processed." approved="yes"> <source>You are about to push %nb_push_items% records, %nb_not_available% records can not be processed.</source> <target state="translated">Vous êtes sur le point d'adresser %nb_push_items% documents or seuls %nb_not_available% peuvent être pris en compte.</target> - <jms:reference-file line="201">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="207">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="94aec9ece3188cf70534cff6d45bc11b81f7ef4d" resname="You are about to push %nb_push_items% records." approved="yes"> <source>You are about to push %nb_push_items% records.</source> <target state="translated">Vous êtes sur le point d'adresser %nb_push_items% documents.</target> - <jms:reference-file line="198">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="204">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cf393f9867e45930f4d907a0ec4f728ea65d503b" resname="You are attempting to exceed the storage limit on your account and must delete existing entries before inserting new entries" approved="yes"> <source>You are attempting to exceed the storage limit on your account and must delete existing entries before inserting new entries</source> @@ -7716,8 +7764,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="4a67615bcd64fcc9443c499676a462d835ad841e" resname="You can not upload files" approved="yes"> <source>You can not upload files</source> <target state="translated">Vous ne pouvez ajouter des fichiers</target> + <jms:reference-file line="150">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="102">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="147">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4faca55769348dcbc9714b19438181057aa2510e" resname="You do not enough rights to update status" approved="yes"> <source>You do not enough rights to update status</source> @@ -7772,7 +7820,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="aecece60b34fa1f68f4671b168031bfb1b287d56" resname="You have not access to this basket" approved="yes"> <source>You have not access to this basket</source> <target state="translated">Vous n'avez pas accès à ce panier</target> - <jms:reference-file line="182">Model/Repositories/BasketRepository.php</jms:reference-file> + <jms:reference-file line="200">Model/Repositories/BasketRepository.php</jms:reference-file> </trans-unit> <trans-unit id="7d7596cb5bf503833487b48c95cf263b44f3e05d" resname="You have selected %nbReceivedDocuments% records." approved="yes"> <source>You have selected %nbReceivedDocuments% records.</source> @@ -7812,7 +7860,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="d48b3bc5b1daedb76e3dd7aa5240bbc34de7470e" resname="You must give a destination record" approved="yes"> <source>You must give a destination record</source> <target state="translated">Vous devez spécifier un enregistrement de destination</target> - <jms:reference-file line="188">Controller/Prod/LazaretController.php</jms:reference-file> + <jms:reference-file line="198">Controller/Prod/LazaretController.php</jms:reference-file> </trans-unit> <trans-unit id="6304d7df5d76b28a076c00dd984f87eef3dabeee" resname="You need define a model before importing a list of users" approved="yes"> <source>You need define a model before importing a list of users</source> @@ -7911,10 +7959,15 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <target state="translated">Vos documents et leurs sous-résolutions (vignettes, prévisualisation et autres sous-définitions) sont stockés dans ces répertoires</target> <jms:reference-file line="736">web/setup/step2.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="bd5a589e9bed2de0b0180ca950ea0593249f7f69" resname="Your phraseanet account on %urlInstance% has been deleted!" approved="yes"> + <source>Your phraseanet account on %urlInstance% has been deleted!</source> + <target state="translated">Votre compte Phraseanet sur %urlInstance% a été supprimé!</target> + <jms:reference-file line="29">Notification/Mail/MailSuccessAccountDelete.php</jms:reference-file> + </trans-unit> <trans-unit id="257253d658fdcbe73c4f4d02d2a3442ea8e4011d" resname="Your registration requests have been taken into account." approved="yes"> <source>Your registration requests have been taken into account.</source> <target state="translated">Les demandes d'inscription ont été prises en compte.</target> - <jms:reference-file line="329">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="426">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="e63b3e4d7c2710f8973d4371433e1a0875a02c12" resname="a propos" approved="yes"> <source>a propos</source> @@ -7925,13 +7978,15 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="93741c74decbac407e8f237c41d0235dd78a8eac" resname="action : ajouter au panier" approved="yes"> <source>action : ajouter au panier</source> <target state="translated">Ajouter au panier</target> - <jms:reference-file line="117">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="118">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="119">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="120">prod/results/record.html.twig</jms:reference-file> <jms:reference-file line="4">prod/preview/tools.html.twig</jms:reference-file> </trans-unit> <trans-unit id="162536d0e4aeccdde8b707acd6111800a25d549b" resname="action : bridge" approved="yes"> <source>action : bridge</source> <target state="translated">Bridge</target> - <jms:reference-file line="864">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="955">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3ffc763c6cf92695a7ce387f904bbe6e7a94bdbc" resname="action : collection" approved="yes"> <source>action : collection</source> @@ -7953,10 +8008,12 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <target state="translated">Exporter</target> <jms:reference-file line="7">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="6">prod/WorkZone/Basket.html.twig</jms:reference-file> - <jms:reference-file line="866">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="124">prod/results/record.html.twig</jms:reference-file> <jms:reference-file line="50">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="128">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="129">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="130">prod/results/record.html.twig</jms:reference-file> <jms:reference-file line="25">prod/preview/tools.html.twig</jms:reference-file> + <jms:reference-file line="957">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="121">web/lightbox/feed.html.twig</jms:reference-file> <jms:reference-file line="123">lightbox/IE6/feed.html.twig</jms:reference-file> <jms:reference-file line="155">lightbox/IE6/validate.html.twig</jms:reference-file> @@ -7967,15 +8024,17 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <target state="translated">Outils</target> <jms:reference-file line="70">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="67">prod/WorkZone/Basket.html.twig</jms:reference-file> - <jms:reference-file line="299">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="291">web/prod/toolbar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="71e15cbcf85fd5fe848fe7fa210fa8318a09f842" resname="action : print" approved="yes"> <source>action : print</source> <target state="translated">Imprimer</target> <jms:reference-file line="11">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="10">prod/WorkZone/Basket.html.twig</jms:reference-file> - <jms:reference-file line="131">prod/results/record.html.twig</jms:reference-file> <jms:reference-file line="58">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="138">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="139">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="140">prod/results/record.html.twig</jms:reference-file> <jms:reference-file line="20">prod/preview/tools.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d222a71a73f44cb6bdf237790f350f0b1fb9eb1f" resname="action : publier" approved="yes"> @@ -7983,9 +8042,9 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <target state="translated">Publier</target> <jms:reference-file line="63">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="60">prod/WorkZone/Basket.html.twig</jms:reference-file> - <jms:reference-file line="865">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="157">web/prod/toolbar.html.twig</jms:reference-file> - <jms:reference-file line="223">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="219">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="956">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="17948b21adfde1bf589b2a34a2c8253e2af91913" resname="action : push" approved="yes"> <source>action : push</source> @@ -7993,7 +8052,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <jms:reference-file line="47">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="44">prod/WorkZone/Basket.html.twig</jms:reference-file> <jms:reference-file line="135">web/prod/toolbar.html.twig</jms:reference-file> - <jms:reference-file line="184">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="182">web/prod/toolbar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f22184cfa5be236b7193d80d5f8407a36b108b79" resname="action : status" approved="yes"> <source>action : status</source> @@ -8005,8 +8064,9 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="24ade348bc49c69cced4d173e31f7369aa466772" resname="action : supprimer" approved="yes"> <source>action : supprimer</source> <target state="translated">Supprimer</target> - <jms:reference-file line="175">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="308">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="198">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="199">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="300">web/prod/toolbar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b88ca5fbb2e89cb79b08c981283383361be312bf" resname="action:: nouveau panier" approved="yes"> <source>action:: nouveau panier</source> @@ -8018,38 +8078,44 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="74894db9388e92ba33510dd3881626d42d29bd20" resname="action:: nouveau reportage" approved="yes"> <source>action:: nouveau reportage</source> <target state="translated">Nouveau reportage</target> - <jms:reference-file line="220">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="222">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="223">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="224">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="226">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="227">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9cd95a80cd47133cb87c6b6a55015fa9e3566d60" resname="action::Valider" approved="yes"> <source>action::Valider</source> <target state="translated">Valider</target> <jms:reference-file line="68">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="162">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="170">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="171">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="83db61ed4488bb58e40b315e67f39a6ad40e5707" resname="action::detacher" approved="yes"> <source>action::detacher</source> <target state="translated">Détacher</target> - <jms:reference-file line="242">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="267">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="268">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="896ab2ff86bda5e26adff7fa7d418c4c926c6b0c" resname="action::editer" approved="yes"> <source>action::editer</source> <target state="translated">Editer</target> - <jms:reference-file line="235">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="258">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="259">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1a99f659649e77e29efa0a391ae879ab8dc8df0e" resname="action::exporter" approved="yes"> <source>action::exporter</source> <target state="translated">Exporter</target> <jms:reference-file line="48">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="142">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="228">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="144">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="145">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="247">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="248">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4c6537a9f14dd9d59ed9c3dca8f7f04ee33ae8d2" resname="action::renommer" approved="yes"> <source>action::renommer</source> <target state="translated">Renommer</target> - <jms:reference-file line="152">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="153">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="159">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="160">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="161">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="aa878e20e09ce58233e45272b39764b5dfd4ee49" resname="actual status" approved="yes"> <source>actual status</source> @@ -8239,8 +8305,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="1f17890a6f5675a0542b997121fc105bb6bd4466" resname="admin::base:collection: Creer une collection" approved="yes"> <source>admin::base:collection: Creer une collection</source> <target state="translated">Créer une collection</target> - <jms:reference-file line="2">admin/collection/create.html.twig</jms:reference-file> <jms:reference-file line="107">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="2">admin/collection/create.html.twig</jms:reference-file> </trans-unit> <trans-unit id="68d7a4cf1ed350b4ede9c867500fe6f0f166adc2" resname="admin::base:collection: Monter une collection" approved="yes"> <source>admin::base:collection: Monter une collection</source> @@ -8256,8 +8322,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="d22d5f91dbed4fb514e0d87876206a9a85420abc" resname="admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces" approved="yes"> <source>admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces</source> <target state="translated">Copier les droits utilisateur de la collection :</target> - <jms:reference-file line="28">admin/collection/create.html.twig</jms:reference-file> <jms:reference-file line="159">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="28">admin/collection/create.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3d84e19b243dea8a79762b90a3086d96e5cc2c00" resname="admin::base:collection: activer la collection" approved="yes"> <source>admin::base:collection: activer la collection</source> @@ -8268,10 +8334,10 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="92f3414a98bf0c0d1723281930e272528ab7b6b2" resname="admin::base:collection: aucun fichier (minilogo, watermark ...)" approved="yes"> <source>admin::base:collection: aucun fichier (minilogo, watermark ...)</source> <target state="translated">Aucun fichier</target> + <jms:reference-file line="214">admin/databox/databox.html.twig</jms:reference-file> <jms:reference-file line="156">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="181">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="206">admin/collection/collection.html.twig</jms:reference-file> - <jms:reference-file line="214">admin/databox/databox.html.twig</jms:reference-file> </trans-unit> <trans-unit id="82f874797027463bcc1e0fa7222160aecdd35abb" resname="admin::base:collection: descativer la collection" approved="yes"> <source>admin::base:collection: descativer la collection</source> @@ -8332,20 +8398,20 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="a7765634e47a714273ba54690efd1f6c2a08e6de" resname="admin::base:collorder: descendre" approved="yes"> <source>admin::base:collorder: descendre</source> <target state="translated">Descendre</target> - <jms:reference-file line="92">admin/collection/suggested_value.html.twig</jms:reference-file> <jms:reference-file line="25">admin/collection/reorder.html.twig</jms:reference-file> + <jms:reference-file line="92">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> <trans-unit id="adc7e4a654ee4a660a18aa80518192eeaa24cceb" resname="admin::base:collorder: monter" approved="yes"> <source>admin::base:collorder: monter</source> <target state="translated">Monter</target> - <jms:reference-file line="91">admin/collection/suggested_value.html.twig</jms:reference-file> <jms:reference-file line="20">admin/collection/reorder.html.twig</jms:reference-file> + <jms:reference-file line="91">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> <trans-unit id="82356065e1cf79e0ea18809dde087170c41be325" resname="admin::base:collorder: reinitialiser en ordre alphabetique" approved="yes"> <source>admin::base:collorder: reinitialiser en ordre alphabetique</source> <target state="translated">Ordre alphabétique</target> - <jms:reference-file line="94">admin/collection/suggested_value.html.twig</jms:reference-file> <jms:reference-file line="28">admin/collection/reorder.html.twig</jms:reference-file> + <jms:reference-file line="94">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> <trans-unit id="59fb64701fdcfa682495e91bb1e286a9dba77848" resname="admin::colelction::presentation des elements : rien" approved="yes"> <source>admin::colelction::presentation des elements : rien</source> @@ -8400,21 +8466,21 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="df2642eaa7386518762050a368f5d2c49a3fe42a" resname="admin::compte-utilisateur activite" approved="yes"> <source>admin::compte-utilisateur activite</source> <target state="translated">Activité</target> + <jms:reference-file line="312">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="104">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="311">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="122">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="528">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="221">admin/user/registrations.html.twig</jms:reference-file> - <jms:reference-file line="122">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="10b0a44531159b40162fd9349abbe2bd21946c3e" resname="admin::compte-utilisateur adresse" approved="yes"> <source>admin::compte-utilisateur adresse</source> <target state="translated">Adresse</target> + <jms:reference-file line="304">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="69">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="303">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="87">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="487">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="225">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="363">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="87">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e922f2ca7321d1d1f403e937dbf109db04bac722" resname="admin::compte-utilisateur changer mon mot de passe" approved="yes"> <source>admin::compte-utilisateur changer mon mot de passe</source> @@ -8424,11 +8490,11 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="218d3257842bd2817f0ba7bcd02f3729c60e591d" resname="admin::compte-utilisateur code postal" approved="yes"> <source>admin::compte-utilisateur code postal</source> <target state="translated">Code postal</target> + <jms:reference-file line="306">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="76">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="305">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="94">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="495">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="370">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="94">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="bc2f858e3323d3baa8be27661724b11ce9c0a57b" resname="admin::compte-utilisateur confirmer la nouvelle adresse email" approved="yes"> <source>admin::compte-utilisateur confirmer la nouvelle adresse email</source> @@ -8448,23 +8514,23 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="d79bdc62fa5ecc611e96fe7ab9f5cf4d4debabae" resname="admin::compte-utilisateur email" approved="yes"> <source>admin::compte-utilisateur email</source> <target state="translated">E-mail</target> + <jms:reference-file line="301">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="111">Event/Subscriber/RegistrationSubscriber.php</jms:reference-file> - <jms:reference-file line="300">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="74">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="479">web/admin/editusers.html.twig</jms:reference-file> - <jms:reference-file line="215">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="109">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="215">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="22">web/admin/connected-users.html.twig</jms:reference-file> <jms:reference-file line="335">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="74">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d194728e348f759c2a443df96338ba1e2c8adfb5" resname="admin::compte-utilisateur fax" approved="yes"> <source>admin::compte-utilisateur fax</source> <target state="translated">Fax</target> + <jms:reference-file line="309">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="118">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="308">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="136">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="545">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="384">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="136">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d6e2b9ddcaf97ba5258571cb54935f1ff6b581a2" resname="admin::compte-utilisateur id utilisateur" approved="yes"> <source>admin::compte-utilisateur id utilisateur</source> @@ -8475,35 +8541,35 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <source>admin::compte-utilisateur identifiant</source> <target state="translated">Identifiant</target> <jms:reference-file line="36">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="443">web/admin/editusers.html.twig</jms:reference-file> - <jms:reference-file line="211">admin/user/registrations.html.twig</jms:reference-file> - <jms:reference-file line="94">web/admin/users.html.twig</jms:reference-file> - <jms:reference-file line="19">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="49">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="21">web/account/reset-email.html.twig</jms:reference-file> <jms:reference-file line="35">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="188">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="443">web/admin/editusers.html.twig</jms:reference-file> + <jms:reference-file line="94">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="211">admin/user/registrations.html.twig</jms:reference-file> + <jms:reference-file line="19">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f5fe48877b8b43297cc3c999ab84bbe0bd60f5af" resname="admin::compte-utilisateur mot de passe" approved="yes"> <source>admin::compte-utilisateur mot de passe</source> <target state="translated">Mot de passe</target> - <jms:reference-file line="562">web/setup/step2.html.twig</jms:reference-file> - <jms:reference-file line="25">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="50">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="562">web/setup/step2.html.twig</jms:reference-file> <jms:reference-file line="27">web/account/reset-email.html.twig</jms:reference-file> <jms:reference-file line="195">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="25">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0e2d7957bf48ebf857d73e4395e78fa73e193b5d" resname="admin::compte-utilisateur nom" approved="yes"> <source>admin::compte-utilisateur nom</source> <target state="translated">Nom</target> + <jms:reference-file line="299">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="62">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> <jms:reference-file line="109">Event/Subscriber/RegistrationSubscriber.php</jms:reference-file> - <jms:reference-file line="298">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="60">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="471">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="213">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="13">web/admin/connected-users.html.twig</jms:reference-file> <jms:reference-file line="321">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="60">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1dbac236fd2ee8bcce590e0cdc7c4a418885c52b" resname="admin::compte-utilisateur nouvelle adresse email" approved="yes"> <source>admin::compte-utilisateur nouvelle adresse email</source> @@ -8513,48 +8579,48 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="1b83f90c602146fc09f3e025507c9b11aa10772a" resname="admin::compte-utilisateur pays" approved="yes"> <source>admin::compte-utilisateur pays</source> <target state="translated">Pays</target> - <jms:reference-file line="306">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="307">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="114">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="28c517ddecdb662c767290d2e1fa53ef198307fa" resname="admin::compte-utilisateur poste" approved="yes"> <source>admin::compte-utilisateur poste</source> <target state="translated">Poste</target> + <jms:reference-file line="310">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="90">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="309">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="108">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="512">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="219">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="356">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="108">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="eadb6eaa53204a688e4059a35261b6878fda8b37" resname="admin::compte-utilisateur prenom" approved="yes"> <source>admin::compte-utilisateur prenom</source> <target state="translated">Prénom</target> + <jms:reference-file line="300">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="55">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> <jms:reference-file line="110">Event/Subscriber/RegistrationSubscriber.php</jms:reference-file> - <jms:reference-file line="299">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="67">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="463">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="213">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="328">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="67">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0ee82fdcf687c10dd1e5040a5b84d9a90d079a9a" resname="admin::compte-utilisateur sexe" approved="yes"> <source>admin::compte-utilisateur sexe</source> <target state="translated">Civilité</target> <jms:reference-file line="44">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="451">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="42">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="451">web/admin/editusers.html.twig</jms:reference-file> </trans-unit> <trans-unit id="78b65792aca82024d5f1ff60dec83a501c01e15e" resname="admin::compte-utilisateur societe" approved="yes"> <source>admin::compte-utilisateur societe</source> <target state="translated">Société</target> + <jms:reference-file line="311">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="97">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="310">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="115">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="520">web/admin/editusers.html.twig</jms:reference-file> - <jms:reference-file line="217">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="104">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="217">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="16">web/admin/connected-users.html.twig</jms:reference-file> <jms:reference-file line="349">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="115">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4d15ba95c86a58884d598415b8f8a400ab636cd9" resname="admin::compte-utilisateur tel" approved="yes"> <source>admin::compte-utilisateur tel</source> @@ -8564,31 +8630,31 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis <trans-unit id="aa3ffb658796d685813791430da4efdac145b8d9" resname="admin::compte-utilisateur telephone" approved="yes"> <source>admin::compte-utilisateur telephone</source> <target state="translated">Téléphone</target> - <jms:reference-file line="307">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="308">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="129">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="537">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="223">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="19">web/admin/connected-users.html.twig</jms:reference-file> <jms:reference-file line="342">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="129">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="29d3952c833272679cb313988c698f11cb6bbb64" resname="admin::compte-utilisateur un email de confirmation vient de vous etre envoye. Veuillez suivre les instructions contenue pour continuer" approved="yes"> <source>admin::compte-utilisateur un email de confirmation vient de vous etre envoye. Veuillez suivre les instructions contenue pour continuer</source> <target state="translated">Un e-mail de confirmation vient de vous être envoyé. Veuillez suivre les instructions contenues dans celui-ci pour continuer</target> - <jms:reference-file line="127">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="134">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="00a39eeb4e86af2189a6080e16418d249d98a12b" resname="admin::compte-utilisateur ville" approved="yes"> <source>admin::compte-utilisateur ville</source> <target state="translated">Ville</target> + <jms:reference-file line="305">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="83">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="304">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="101">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="503">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="377">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="101">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2f752312fcd370b6547b296ca173da51487a2c5d" resname="admin::compte-utilisateur: L'email a correctement ete mis a jour" approved="yes"> <source>admin::compte-utilisateur: L'email a correctement ete mis a jour</source> <target state="translated">L'adresse e-mail a été mise à jour</target> - <jms:reference-file line="151">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="158">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="65b62caf0d011a7a87ac02e39fcea79869f0d26a" resname="admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour changer mon adresse email ?" approved="yes"> <source>admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour changer mon adresse email ?</source> @@ -8609,7 +8675,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="5bea2ac2d5d9b17df772d715e4a452316e6625f6" resname="admin::compte-utilisateur: erreur lors de la mise a jour" approved="yes"> <source>admin::compte-utilisateur: erreur lors de la mise a jour</source> <target state="translated">La mise à jour a échoué</target> - <jms:reference-file line="142">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="149">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="56d75cba0bcd6dae815548d79af45f8a58c822cf" resname="admin::compte-utilisateur::securite caracteres majuscules" approved="yes"> <source>admin::compte-utilisateur::securite caracteres majuscules</source> @@ -8634,8 +8700,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="6d985c39243c51b967903e290ce6c33583b17c8a" resname="admin::compte-utilisateur:ftp: repertoire de destination ftp" approved="yes"> <source>admin::compte-utilisateur:ftp: repertoire de destination ftp</source> <target state="translated">Dossier distant</target> - <jms:reference-file line="43">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="202">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="43">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d6084018a101b645f6a3a136be17cb1b8c2a499c" resname="admin::compte-utilisateur:ftp: Activer le compte FTP" approved="yes"> <source>admin::compte-utilisateur:ftp: Activer le compte FTP</source> @@ -8645,19 +8711,19 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="d7ef5ce109bd15843f144dc60ed2e594ddd04d41" resname="admin::compte-utilisateur:ftp: Le mot de passe est errone" approved="yes"> <source>admin::compte-utilisateur:ftp: Le mot de passe est errone</source> <target state="translated">Le mot de passe est erroné</target> - <jms:reference-file line="93">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="100">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="9bf7a0391d97674b47027a4021a3fa438db12b2d" resname="admin::compte-utilisateur:ftp: Nombre d'essais max" approved="yes"> <source>admin::compte-utilisateur:ftp: Nombre d'essais max</source> <target state="translated">Nombre d'essais</target> - <jms:reference-file line="37">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="225">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="37">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7353ab4d025765f9e75cf84168059ea043b71166" resname="admin::compte-utilisateur:ftp: Utiliser le mode passif" approved="yes"> <source>admin::compte-utilisateur:ftp: Utiliser le mode passif</source> <target state="translated">Utiliser le mode passif</target> - <jms:reference-file line="31">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="218">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="31">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="58538c361989dbed251ba82a942de32f4a23b003" resname="admin::compte-utilisateur:ftp: creer un dossier" approved="yes"> <source>admin::compte-utilisateur:ftp: creer un dossier</source> @@ -8678,25 +8744,25 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <source>admin::compte-utilisateur:sexe: madame</source> <target state="translated">Mme</target> <jms:reference-file line="50">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> + <jms:reference-file line="50">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="456">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="314">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="50">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7af00728508b30971b5cd3eb769433546ad9abfa" resname="admin::compte-utilisateur:sexe: mademoiselle" approved="yes"> <source>admin::compte-utilisateur:sexe: mademoiselle</source> <target state="translated">Mlle</target> <jms:reference-file line="49">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> + <jms:reference-file line="47">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="455">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="313">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="47">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="db663dadd7bd9b045a68cafcfe2ca4e0c832e50a" resname="admin::compte-utilisateur:sexe: monsieur" approved="yes"> <source>admin::compte-utilisateur:sexe: monsieur</source> <target state="translated">M.</target> <jms:reference-file line="51">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> + <jms:reference-file line="53">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="457">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="315">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="53">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cfc904c9a87afe2d3986041a6bdb542298607880" resname="admin::monitor: bases sur lesquelles l'utilisateur est connecte :" approved="yes"> <source>admin::monitor: bases sur lesquelles l'utilisateur est connecte :</source> @@ -8724,10 +8790,10 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="9513f9700541e6a67371a6848330b051c8e9d3c2" resname="admin::monitor: module client" approved="yes"> <source>admin::monitor: module client</source> <target state="translated">Classic</target> + <jms:reference-file line="80">lib/classes/phrasea.php</jms:reference-file> <jms:reference-file line="414">classes/record/preview.php</jms:reference-file> <jms:reference-file line="521">classes/record/preview.php</jms:reference-file> <jms:reference-file line="668">classes/record/preview.php</jms:reference-file> - <jms:reference-file line="80">lib/classes/phrasea.php</jms:reference-file> <jms:reference-file line="116">Controller/Admin/ConnectedUsersController.php</jms:reference-file> <jms:reference-file line="53">web/admin/connected-users.html.twig</jms:reference-file> </trans-unit> @@ -8746,10 +8812,10 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="49d0391bab2fa680a4c2830fb4a225d48eefa425" resname="admin::monitor: module production" approved="yes"> <source>admin::monitor: module production</source> <target state="translated">Production</target> + <jms:reference-file line="79">lib/classes/phrasea.php</jms:reference-file> <jms:reference-file line="410">classes/record/preview.php</jms:reference-file> <jms:reference-file line="518">classes/record/preview.php</jms:reference-file> <jms:reference-file line="666">classes/record/preview.php</jms:reference-file> - <jms:reference-file line="79">lib/classes/phrasea.php</jms:reference-file> <jms:reference-file line="115">Controller/Admin/ConnectedUsersController.php</jms:reference-file> <jms:reference-file line="49">web/admin/connected-users.html.twig</jms:reference-file> </trans-unit> @@ -8774,16 +8840,16 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <target state="translated">Upload</target> <jms:reference-file line="86">lib/classes/phrasea.php</jms:reference-file> <jms:reference-file line="122">Controller/Admin/ConnectedUsersController.php</jms:reference-file> - <jms:reference-file line="96">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="97">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="14e4b19f7496c10dbb05e61dee0c436c0792235f" resname="admin::monitor: module validation" approved="yes"> <source>admin::monitor: module validation</source> <target state="translated">Lightbox</target> <jms:reference-file line="85">lib/classes/phrasea.php</jms:reference-file> - <jms:reference-file line="121">Controller/Admin/ConnectedUsersController.php</jms:reference-file> <jms:reference-file line="205">Phrasea/Controller/LightboxController.php</jms:reference-file> <jms:reference-file line="236">Phrasea/Controller/LightboxController.php</jms:reference-file> <jms:reference-file line="313">Phrasea/Controller/LightboxController.php</jms:reference-file> + <jms:reference-file line="121">Controller/Admin/ConnectedUsersController.php</jms:reference-file> <jms:reference-file line="78">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d3110046b5f8b6bbf171a3b97c1d1c4d75ee3b38" resname="admin::monitor: modules" approved="yes"> @@ -8862,6 +8928,31 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <target state="translated">Réglage d'agrégation</target> <jms:reference-file line="5">admin/search-engine/search-engine-settings.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="08772ff0da8ce970d5fac07a7afb6f855401d235" resname="admin::setup:personalisation_logo: download gabari" approved="yes"> + <source>admin::setup:personalisation_logo: download gabari</source> + <target state="translated">Télécharger le gabarit</target> + <jms:reference-file line="18">web/admin/personalisation_logo.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="a051f8357ca68bd96210d071cdfacfe8a54de2af" resname="admin::setup:personalisation_logo: error text dimension" approved="yes"> + <source>admin::setup:personalisation_logo: error text dimension</source> + <target state="translated">Erreur: La taille du fichier est incorrecte, merci de choisir la taille de 120 x 41 px au format .png</target> + <jms:reference-file line="44">web/admin/personalisation_logo.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="4499d392aa84b8bf806252937b820281034ffd0c" resname="admin::setup:personalisation_logo: error text file type" approved="yes"> + <source>admin::setup:personalisation_logo: error text file type</source> + <target state="translated">Erreur: Le format du fichier est incorrect, merci de choisir un fichier au format .png</target> + <jms:reference-file line="45">web/admin/personalisation_logo.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="78a276b502761ddad6d621bf315ed17362b12748" resname="admin::setup:personalisation_logo: help text" approved="yes"> + <source>admin::setup:personalisation_logo: help text</source> + <target state="translated">Importez votre logo à la taille maximale de 120 x 41 px au format .png</target> + <jms:reference-file line="16">web/admin/personalisation_logo.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="1ae037eda66d81b87705cdbdc04e4d8c0a953755" resname="admin::setup:personalisation_logo: select file" approved="yes"> + <source>admin::setup:personalisation_logo: select file</source> + <target state="translated">Sélectionnez un fichier</target> + <jms:reference-file line="31">web/admin/personalisation_logo.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="8fb48b51ad1962dc1b6a3643964f38fc48853161" resname="admin::status: case A" approved="yes"> <source>admin::status: case A</source> <target state="translated">Off</target> @@ -8975,8 +9066,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="8f1dba76b561684930a25a984046b3b4149785ca" resname="alert" approved="yes"> <source>alert</source> <target state="translated">Alerte</target> + <jms:reference-file line="177">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="244">actions/Tools/index.html.twig</jms:reference-file> - <jms:reference-file line="164">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="edde11c24ed5e6df4e416143e77248e908567faa" resname="all caches services have been flushed" approved="yes"> <source>all caches services have been flushed</source> @@ -9001,7 +9092,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="28a04a7076b48759b6dc6fc06df7676a69e415d0" resname="and %n% more peoples" approved="yes"> <source>and %n% more peoples</source> <target state="translated">and %n% autres personnes</target> - <jms:reference-file line="125">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="132">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="aacef678d2c5455205b104be7f364575db5d5b95" resname="aout" approved="yes"> <source>aout</source> @@ -9016,9 +9107,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="a06a492959ce12b3f0292406ec84177d07ae19b1" resname="audio" approved="yes"> <source>audio</source> <target state="translated">audios</target> - <jms:reference-file line="278">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> - <jms:reference-file line="25">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="302">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> <jms:reference-file line="371">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="28">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a028c8828218375b107b7b7c48664ed31e10163b" resname="avril" approved="yes"> <source>avril</source> @@ -9060,18 +9151,18 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="1d1dbbac03e2a5e30fe7e568ad75572e469a6301" resname="boutton:: selectionner aucune base" approved="yes"> <source>boutton:: selectionner aucune base</source> <target state="translated">Aucune</target> - <jms:reference-file line="320">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="352">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2fb22ccabd1651b5307698b4029b6696042ca6e2" resname="boutton:: selectionner toutes les bases" approved="yes"> <source>boutton:: selectionner toutes les bases</source> <target state="translated">Toutes</target> - <jms:reference-file line="317">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="349">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d59bc356bd632596c602560d44e1ed9cb7145699" resname="boutton::ajouter" approved="yes"> <source>boutton::ajouter</source> <target state="translated">Ajouter</target> - <jms:reference-file line="244">prod/actions/edit_default.html.twig</jms:reference-file> - <jms:reference-file line="349">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="246">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="351">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="111">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8641f76c3f062372dc5509faad531672cf3558a5" resname="boutton::annuler" approved="yes"> @@ -9079,35 +9170,35 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <target state="translated">Annuler</target> <jms:reference-file line="41">Controller/Prod/LanguageController.php</jms:reference-file> <jms:reference-file line="49">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="13">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> - <jms:reference-file line="40">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> - <jms:reference-file line="13">Bridge/Youtube/video_modify.html.twig</jms:reference-file> - <jms:reference-file line="71">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> <jms:reference-file line="71">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> - <jms:reference-file line="245">prod/actions/edit_default.html.twig</jms:reference-file> - <jms:reference-file line="364">prod/actions/edit_default.html.twig</jms:reference-file> - <jms:reference-file line="53">web/thesaurus/new-term.html.twig</jms:reference-file> - <jms:reference-file line="78">web/thesaurus/new-term.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="71">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> + <jms:reference-file line="40">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> + <jms:reference-file line="247">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="366">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="114">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> + <jms:reference-file line="590">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="989">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="1093">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="70">web/thesaurus/import-dialog.html.twig</jms:reference-file> + <jms:reference-file line="74">web/thesaurus/link-field-step2.html.twig</jms:reference-file> <jms:reference-file line="164">web/thesaurus/accept.html.twig</jms:reference-file> <jms:reference-file line="180">web/thesaurus/accept.html.twig</jms:reference-file> <jms:reference-file line="137">web/thesaurus/export-topics-dialog.html.twig</jms:reference-file> - <jms:reference-file line="74">web/thesaurus/link-field-step2.html.twig</jms:reference-file> - <jms:reference-file line="114">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> - <jms:reference-file line="582">web/thesaurus/thesaurus.html.twig</jms:reference-file> - <jms:reference-file line="981">web/thesaurus/thesaurus.html.twig</jms:reference-file> - <jms:reference-file line="1085">web/thesaurus/thesaurus.html.twig</jms:reference-file> - <jms:reference-file line="70">web/thesaurus/import-dialog.html.twig</jms:reference-file> + <jms:reference-file line="53">web/thesaurus/new-term.html.twig</jms:reference-file> + <jms:reference-file line="78">web/thesaurus/new-term.html.twig</jms:reference-file> <jms:reference-file line="61">web/thesaurus/link-field-step1.html.twig</jms:reference-file> - <jms:reference-file line="47">admin/collection/create.html.twig</jms:reference-file> + <jms:reference-file line="49">web/account/reset-email.html.twig</jms:reference-file> <jms:reference-file line="129">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="47">admin/collection/create.html.twig</jms:reference-file> <jms:reference-file line="47">web/admin/index.html.twig</jms:reference-file> <jms:reference-file line="168">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="250">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="404">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="487">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="24">web/report/all_content.html.twig</jms:reference-file> - <jms:reference-file line="49">web/account/reset-email.html.twig</jms:reference-file> + <jms:reference-file line="23">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c6f716e883e5747e4bc8a8afc7a0ec1ccf44e0b5" resname="boutton::appliquer" approved="yes"> <source>boutton::appliquer</source> @@ -9118,8 +9209,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <source>boutton::chercher</source> <target state="translated">Chercher</target> <jms:reference-file line="121">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="588">web/thesaurus/thesaurus.html.twig</jms:reference-file> - <jms:reference-file line="1091">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="596">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="1099">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="58">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4a71090794c12d5b26f62d9f0c68c0d894f7e00e" resname="boutton::choisir" approved="yes"> @@ -9142,14 +9233,14 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="32e5c3419a0a410255ee44e462fd7329f708873f" resname="boutton::demarrer" approved="yes"> <source>boutton::demarrer</source> <target state="translated">Diaporama</target> - <jms:reference-file line="9">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="9">web/lightbox/sc_options_box.html.twig</jms:reference-file> + <jms:reference-file line="9">web/lightbox/feed_options_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d49d2b52ce2f1912f7ada4a3f57ab39fd2e9904e" resname="boutton::editer" approved="yes"> <source>boutton::editer</source> <target state="translated">Editer</target> - <jms:reference-file line="27">prod/results/entry.html.twig</jms:reference-file> <jms:reference-file line="21">prod/results/feeds_entry.html.twig</jms:reference-file> + <jms:reference-file line="27">prod/results/entry.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6b126c214de4c40550d9dc32b02766809b1cac1a" resname="boutton::enregistrer" approved="yes"> <source>boutton::enregistrer</source> @@ -9176,17 +9267,17 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <source>boutton::fermer</source> <target state="translated">Fermer</target> <jms:reference-file line="57">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="383">prod/actions/edit_default.html.twig</jms:reference-file> - <jms:reference-file line="388">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="11">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="385">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="390">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="118">web/thesaurus/properties.html.twig</jms:reference-file> <jms:reference-file line="116">web/thesaurus/accept.html.twig</jms:reference-file> <jms:reference-file line="132">web/thesaurus/accept.html.twig</jms:reference-file> - <jms:reference-file line="45">web/thesaurus/link-field-step3.html.twig</jms:reference-file> <jms:reference-file line="39">web/thesaurus/export-topics.html.twig</jms:reference-file> + <jms:reference-file line="45">web/thesaurus/link-field-step3.html.twig</jms:reference-file> <jms:reference-file line="23">web/lightbox/sc_note.html.twig</jms:reference-file> <jms:reference-file line="96">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="25">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="24">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ce91bb36902944da7788997865b8c482a59e80fe" resname="boutton::generer" approved="yes"> <source>boutton::generer</source> @@ -9201,9 +9292,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="1e4c65d295605a0e884818b5c06d32a63fd692d5" resname="boutton::modifier" approved="yes"> <source>boutton::modifier</source> <target state="translated">Modifier</target> - <jms:reference-file line="1">Bridge/Flickr/actionelement.html.twig</jms:reference-file> - <jms:reference-file line="1">Bridge/Youtube/actionelement.html.twig</jms:reference-file> <jms:reference-file line="1">Bridge/Dailymotion/actionelement.html.twig</jms:reference-file> + <jms:reference-file line="1">Bridge/Youtube/actionelement.html.twig</jms:reference-file> + <jms:reference-file line="1">Bridge/Flickr/actionelement.html.twig</jms:reference-file> <jms:reference-file line="62">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ef6ccc2669466ac98a3d580bd7bab8f33d0e4bcc" resname="boutton::monter" approved="yes"> @@ -9214,8 +9305,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="a6083d9bc73ab5df12f4949b67577186f6e8c240" resname="boutton::pause" approved="yes"> <source>boutton::pause</source> <target state="translated">Pause</target> - <jms:reference-file line="12">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="12">web/lightbox/sc_options_box.html.twig</jms:reference-file> + <jms:reference-file line="12">web/lightbox/feed_options_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="28bb622fa0fe835d89deb626494ce572cbd27072" resname="boutton::precedent" approved="yes"> <source>boutton::precedent</source> @@ -9226,16 +9317,16 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <jms:reference-file line="696">web/setup/step2.html.twig</jms:reference-file> <jms:reference-file line="754">web/setup/step2.html.twig</jms:reference-file> <jms:reference-file line="866">web/setup/step2.html.twig</jms:reference-file> - <jms:reference-file line="3">web/lightbox/feed_options_box.html.twig</jms:reference-file> - <jms:reference-file line="6">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="3">web/lightbox/sc_options_box.html.twig</jms:reference-file> <jms:reference-file line="6">web/lightbox/sc_options_box.html.twig</jms:reference-file> + <jms:reference-file line="3">web/lightbox/feed_options_box.html.twig</jms:reference-file> + <jms:reference-file line="6">web/lightbox/feed_options_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5ac4cff651bd34d7b0f295259a0c0907d6af5cd1" resname="boutton::rechercher" approved="yes"> <source>boutton::rechercher</source> <target state="translated">Rechercher</target> <jms:reference-file line="51">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="277">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="299">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9d39f48fbb3a9887cf97368d39a1de32a71c3dee" resname="boutton::refresh" approved="yes"> <source>boutton::refresh</source> @@ -9250,7 +9341,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="7c93f19dc5b7cef99db6fb84975ef795e3e87102" resname="boutton::remplacer" approved="yes"> <source>boutton::remplacer</source> <target state="translated">Remplacer</target> - <jms:reference-file line="243">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="245">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6b9c19dded5ae1d0dbe62a14e2754f2c8cf65302" resname="boutton::renouveller" approved="yes"> <source>boutton::renouveller</source> @@ -9260,26 +9351,26 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="e0af1d0d7872c48928d4faef76c45567426e62f9" resname="boutton::retour" approved="yes"> <source>boutton::retour</source> <target state="translated">Retour</target> - <jms:reference-file line="20">Bridge/Flickr/photoset_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="28">Bridge/Flickr/photo_moveinto_photoset.html.twig</jms:reference-file> - <jms:reference-file line="54">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="20">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="37">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="28">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> - <jms:reference-file line="20">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="20">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="20">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="25">Bridge/Dailymotion/playlist_createcontainer.html.twig</jms:reference-file> <jms:reference-file line="28">Bridge/Dailymotion/video_moveinto_playlist.html.twig</jms:reference-file> <jms:reference-file line="20">Bridge/Dailymotion/playlist_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="20">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="44">admin/collection/details.html.twig</jms:reference-file> + <jms:reference-file line="20">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="37">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="28">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="20">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="20">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="20">Bridge/Flickr/photoset_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="28">Bridge/Flickr/photo_moveinto_photoset.html.twig</jms:reference-file> + <jms:reference-file line="54">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> <jms:reference-file line="558">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="223">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="64">admin/databox/details.html.twig</jms:reference-file> + <jms:reference-file line="44">admin/collection/details.html.twig</jms:reference-file> <jms:reference-file line="50">user/import/file.html.twig</jms:reference-file> <jms:reference-file line="162">admin/statusbit/edit.html.twig</jms:reference-file> - <jms:reference-file line="64">admin/databox/details.html.twig</jms:reference-file> - <jms:reference-file line="154">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="119">web/developers/application_form.html.twig</jms:reference-file> + <jms:reference-file line="154">web/developers/application.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a7a9651d909792bcf98f2d1e96c43cb1d3a618e4" resname="boutton::retry" approved="yes"> <source>boutton::retry</source> @@ -9295,40 +9386,40 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <jms:reference-file line="632">web/setup/step2.html.twig</jms:reference-file> <jms:reference-file line="699">web/setup/step2.html.twig</jms:reference-file> <jms:reference-file line="757">web/setup/step2.html.twig</jms:reference-file> - <jms:reference-file line="15">web/lightbox/feed_options_box.html.twig</jms:reference-file> - <jms:reference-file line="18">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="15">web/lightbox/sc_options_box.html.twig</jms:reference-file> <jms:reference-file line="18">web/lightbox/sc_options_box.html.twig</jms:reference-file> + <jms:reference-file line="15">web/lightbox/feed_options_box.html.twig</jms:reference-file> + <jms:reference-file line="18">web/lightbox/feed_options_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a83f74309cdfc79345f54eb1f4e4e2747316f820" resname="boutton::supprimer" approved="yes"> <source>boutton::supprimer</source> <target state="translated">Supprimer</target> <jms:reference-file line="42">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="125">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="30">prod/results/entry.html.twig</jms:reference-file> - <jms:reference-file line="24">prod/results/feeds_entry.html.twig</jms:reference-file> - <jms:reference-file line="21">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="35">Bridge/Flickr/actionelements.html.twig</jms:reference-file> - <jms:reference-file line="21">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="35">Bridge/Youtube/actionelements.html.twig</jms:reference-file> - <jms:reference-file line="21">Bridge/Dailymotion/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="35">Bridge/Dailymotion/actionelements.html.twig</jms:reference-file> <jms:reference-file line="26">actions/Bridge/disconnected.html.twig</jms:reference-file> + <jms:reference-file line="35">Bridge/Dailymotion/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="21">Bridge/Dailymotion/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="35">Bridge/Youtube/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="21">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="35">Bridge/Flickr/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="21">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="24">prod/results/feeds_entry.html.twig</jms:reference-file> + <jms:reference-file line="30">prod/results/entry.html.twig</jms:reference-file> + <jms:reference-file line="125">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="6">web/thesaurus/presets.html.twig</jms:reference-file> - <jms:reference-file line="93">admin/collection/suggested_value.html.twig</jms:reference-file> + <jms:reference-file line="162">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="95">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="136">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="151">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="176">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="201">admin/collection/collection.html.twig</jms:reference-file> + <jms:reference-file line="93">admin/collection/suggested_value.html.twig</jms:reference-file> <jms:reference-file line="410">web/admin/subdefs.html.twig</jms:reference-file> - <jms:reference-file line="95">admin/publications/list.html.twig</jms:reference-file> - <jms:reference-file line="162">admin/publications/fiche.html.twig</jms:reference-file> </trans-unit> <trans-unit id="68b702f13ff62025c57948bf5c4a5b47af10dee9" resname="boutton::telecharger" approved="yes"> <source>boutton::telecharger</source> <target state="translated">Télécharger</target> - <jms:reference-file line="21">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="21">web/lightbox/sc_options_box.html.twig</jms:reference-file> + <jms:reference-file line="21">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="167">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4288c5788ee74d7fa3f325987a8e752687b43023" resname="boutton::telecharger tous les documents" approved="yes"> @@ -9349,56 +9440,57 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <source>boutton::valider</source> <target state="translated">Valider</target> <jms:reference-file line="48">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="20">prod/Baskets/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="34">mobile/lightbox/note_form.html.twig</jms:reference-file> <jms:reference-file line="7">prod/Baskets/Update.html.twig</jms:reference-file> - <jms:reference-file line="701">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="20">prod/Baskets/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="19">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="24">Bridge/Dailymotion/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="27">Bridge/Dailymotion/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="70">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="19">Bridge/Dailymotion/playlist_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="19">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="36">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="27">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="70">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="19">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="19">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="19">Bridge/Flickr/photoset_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="27">Bridge/Flickr/photo_moveinto_photoset.html.twig</jms:reference-file> - <jms:reference-file line="39">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> <jms:reference-file line="53">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="19">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="36">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="70">Bridge/Youtube/video_modify.html.twig</jms:reference-file> - <jms:reference-file line="27">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> - <jms:reference-file line="19">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="19">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="24">Bridge/Dailymotion/playlist_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="70">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> - <jms:reference-file line="27">Bridge/Dailymotion/video_moveinto_playlist.html.twig</jms:reference-file> - <jms:reference-file line="19">Bridge/Dailymotion/playlist_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="19">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="341">prod/actions/edit_default.html.twig</jms:reference-file> - <jms:reference-file line="363">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="39">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> + <jms:reference-file line="343">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="365">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="20">prod/Story/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="792">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="116">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> + <jms:reference-file line="995">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="72">web/thesaurus/import-dialog.html.twig</jms:reference-file> + <jms:reference-file line="72">web/thesaurus/link-field-step2.html.twig</jms:reference-file> + <jms:reference-file line="162">web/thesaurus/accept.html.twig</jms:reference-file> + <jms:reference-file line="139">web/thesaurus/export-topics-dialog.html.twig</jms:reference-file> + <jms:reference-file line="51">web/thesaurus/index.html.twig</jms:reference-file> <jms:reference-file line="55">web/thesaurus/new-term.html.twig</jms:reference-file> <jms:reference-file line="80">web/thesaurus/new-term.html.twig</jms:reference-file> - <jms:reference-file line="162">web/thesaurus/accept.html.twig</jms:reference-file> - <jms:reference-file line="51">web/thesaurus/index.html.twig</jms:reference-file> - <jms:reference-file line="139">web/thesaurus/export-topics-dialog.html.twig</jms:reference-file> - <jms:reference-file line="72">web/thesaurus/link-field-step2.html.twig</jms:reference-file> - <jms:reference-file line="116">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> - <jms:reference-file line="987">web/thesaurus/thesaurus.html.twig</jms:reference-file> - <jms:reference-file line="72">web/thesaurus/import-dialog.html.twig</jms:reference-file> <jms:reference-file line="59">web/thesaurus/link-field-step1.html.twig</jms:reference-file> - <jms:reference-file line="130">admin/collection/suggested_value.html.twig</jms:reference-file> - <jms:reference-file line="39">admin/collection/reorder.html.twig</jms:reference-file> - <jms:reference-file line="58">admin/collection/collection.html.twig</jms:reference-file> - <jms:reference-file line="46">admin/collection/create.html.twig</jms:reference-file> - <jms:reference-file line="557">web/admin/editusers.html.twig</jms:reference-file> - <jms:reference-file line="403">web/admin/subdefs.html.twig</jms:reference-file> - <jms:reference-file line="45">admin/publications/list.html.twig</jms:reference-file> - <jms:reference-file line="128">admin/publications/fiche.html.twig</jms:reference-file> - <jms:reference-file line="34">web/admin/structure.html.twig</jms:reference-file> - <jms:reference-file line="274">admin/user/registrations.html.twig</jms:reference-file> - <jms:reference-file line="41">user/import/view.html.twig</jms:reference-file> - <jms:reference-file line="159">admin/statusbit/edit.html.twig</jms:reference-file> - <jms:reference-file line="111">web/admin/dashboard.html.twig</jms:reference-file> - <jms:reference-file line="83">web/admin/setup.html.twig</jms:reference-file> - <jms:reference-file line="22">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="75">web/account/access.html.twig</jms:reference-file> <jms:reference-file line="48">web/account/reset-email.html.twig</jms:reference-file> <jms:reference-file line="236">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="111">web/admin/dashboard.html.twig</jms:reference-file> + <jms:reference-file line="557">web/admin/editusers.html.twig</jms:reference-file> + <jms:reference-file line="128">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="45">admin/publications/list.html.twig</jms:reference-file> + <jms:reference-file line="83">web/admin/setup.html.twig</jms:reference-file> + <jms:reference-file line="46">admin/collection/create.html.twig</jms:reference-file> + <jms:reference-file line="39">admin/collection/reorder.html.twig</jms:reference-file> + <jms:reference-file line="58">admin/collection/collection.html.twig</jms:reference-file> + <jms:reference-file line="130">admin/collection/suggested_value.html.twig</jms:reference-file> + <jms:reference-file line="403">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="34">web/admin/structure.html.twig</jms:reference-file> + <jms:reference-file line="41">user/import/view.html.twig</jms:reference-file> + <jms:reference-file line="274">admin/user/registrations.html.twig</jms:reference-file> + <jms:reference-file line="159">admin/statusbit/edit.html.twig</jms:reference-file> <jms:reference-file line="115">web/developers/application_form.html.twig</jms:reference-file> - <jms:reference-file line="34">mobile/lightbox/note_form.html.twig</jms:reference-file> + <jms:reference-file line="21">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b27b98c3e0119082312d402ca0b89dd39f00f5c8" resname="boutton::vue graphique" approved="yes"> <source>boutton::vue graphique</source> @@ -9495,9 +9587,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="aa593702faaee1da7f577eb3fbd5964703051696" resname="choisir" approved="yes"> <source>choisir</source> <target state="translated">Choisir</target> - <jms:reference-file line="676">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="37">admin/collection/create.html.twig</jms:reference-file> + <jms:reference-file line="767">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="161">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="37">admin/collection/create.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7e7b33d679caaf09ae03ab03c7144e908cbbcc27" resname="classe" approved="yes"> <source>classe</source> @@ -9505,11 +9597,6 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <jms:reference-file line="433">web/admin/subdefs.html.twig</jms:reference-file> <jms:reference-file line="437">web/admin/subdefs.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="efa8808d6f8c8597743781236bd79cbe60350bfc" resname="cocher tout" approved="yes"> - <source>cocher tout</source> - <target state="translated">Tout cocher</target> - <jms:reference-file line="7">web/report/listColumn.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="6bca60e4b2d44b5623e626f9ff951ba6605e975f" resname="collection.label.unknown" approved="yes"> <source>collection.label.unknown</source> <target state="translated">Collection inconnue</target> @@ -9526,23 +9613,17 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <jms:reference-file line="101">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="296">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="0652e436f42d75f5672a8bd9ae2f398a55115d51" resname="configuration" approved="yes"> - <source>configuration</source> - <target state="translated">Configuration</target> - <jms:reference-file line="534">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="682">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> <trans-unit id="a70a59b9120185471e5b45630f8ba24d5516f590" resname="copyClipboardLabel" approved="yes"> <source>copyClipboardLabel</source> <target state="translated">Copier dans le presse-papier</target> - <jms:reference-file line="16">prod/results/infos.html.twig</jms:reference-file> - <jms:reference-file line="46">prod/Share/record.html.twig</jms:reference-file> - <jms:reference-file line="56">prod/Share/record.html.twig</jms:reference-file> - <jms:reference-file line="72">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="18">prod/results/infos.html.twig</jms:reference-file> + <jms:reference-file line="52">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="62">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="78">prod/Share/record.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="751a7df4249ede5126600fd5e11560b3300c8dd5" resname="create_subdef_button_label"> + <trans-unit id="751a7df4249ede5126600fd5e11560b3300c8dd5" resname="create_subdef_button_label" approved="yes"> <source>create_subdef_button_label</source> - <target state="needs-translation">Ajouter une sous définition</target> + <target state="translated">Ajouter une sous définition</target> <jms:reference-file line="340">web/admin/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cbfca5bce768bcbbc805fe6c760e2a2f8822cd3d" resname="create_subdef_modal_access_class" approved="yes"> @@ -9585,6 +9666,11 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <target state="new">create_subdef_modal_subdefinition_name</target> <jms:reference-file line="354">web/admin/subdefs.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="670f6628c7b72287a36ecd01262005e81428451c" resname="created_on" approved="yes"> + <source>created_on</source> + <target state="translated">créé le</target> + <jms:reference-file line="476">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="fc97186645dc71dae8e3221c8ce53c56e6d611bf" resname="dans %category%" approved="yes"> <source>dans %category%</source> <target state="translated">dans %category%</target> @@ -9593,17 +9679,17 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="dbfe8cf37a8d7b4941dd9f89e79302038b2bedef" resname="dans %feed_name%" approved="yes"> <source>dans %feed_name%</source> <target state="translated">dans %feed_name%</target> - <jms:reference-file line="52">prod/results/entry.html.twig</jms:reference-file> <jms:reference-file line="46">prod/results/feeds_entry.html.twig</jms:reference-file> + <jms:reference-file line="52">prod/results/entry.html.twig</jms:reference-file> </trans-unit> <trans-unit id="aab7fdd9c18941cbc8d78fa0c690361ffd8c50bf" resname="date dajout" approved="yes"> <source>date dajout</source> <target state="translated">Date d'ajout</target> <jms:reference-file line="141">SearchEngine/Elastic/ElasticSearchEngine.php</jms:reference-file> </trans-unit> - <trans-unit id="9422f3c3d1d722ee14182539cce3e00c003efd63" resname="date de modification"> + <trans-unit id="9422f3c3d1d722ee14182539cce3e00c003efd63" resname="date de modification" approved="yes"> <source>date de modification</source> - <target state="new">date de modification</target> + <target state="translated">date de modification</target> <jms:reference-file line="142">SearchEngine/Elastic/ElasticSearchEngine.php</jms:reference-file> </trans-unit> <trans-unit id="41c882ad92672dcb86f0ede3f789f7542bcc82fc" resname="decembre" approved="yes"> @@ -9614,7 +9700,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="9485989ff514b5106b7738850fd73c23e8c1e3f7" resname="delete" approved="yes"> <source>delete</source> <target state="translated">Supprimer</target> - <jms:reference-file line="316">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="343">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1051f820052d19c0fff9afec561c3d02607fc90d" resname="descendant" approved="yes"> <source>descendant</source> @@ -9629,10 +9715,10 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="4f8278c89ad16da05fec4fdfc61fe44798b92720" resname="document" approved="yes"> <source>document</source> <target state="translated">documents</target> - <jms:reference-file line="270">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> - <jms:reference-file line="28">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="294">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> <jms:reference-file line="372">web/admin/subdefs.html.twig</jms:reference-file> <jms:reference-file line="439">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="31">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="956c99f946a95f60d02e45468e0ed1f6fdf7fc08" resname="document original" approved="yes"> <source>document original</source> @@ -9686,7 +9772,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="8abba1c9ff44c3fcc4d30726337bc02847d67235" resname="edit::preset:: titre" approved="yes"> <source>edit::preset:: titre</source> <target state="translated">Nom du modèle</target> - <jms:reference-file line="394">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="396">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="869b2f5267c5abc112d0f6281b4201a228054f92" resname="effacer (OK) ou quitter (Annuler) ?" approved="yes"> <source>effacer (OK) ou quitter (Annuler) ?</source> @@ -9696,7 +9782,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="0536206a542dfc2d630996e79398079eb6976247" resname="element(s)" approved="yes"> <source>element(s)</source> <target state="translated">élément(s)</target> - <jms:reference-file line="54">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="55">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a04a3246075e5b6ac9d63ad46d807a1221e71321" resname="email is not valid" approved="yes"> <source>email is not valid</source> @@ -9739,7 +9825,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="40a92233bac9303de825031d1954e6b109088b38" resname="export::ftp: reglages manuels" approved="yes"> <source>export::ftp: reglages manuels</source> <target state="translated">Réglages manuels</target> - <jms:reference-file line="274">classes/set/export.php</jms:reference-file> + <jms:reference-file line="279">classes/set/export.php</jms:reference-file> </trans-unit> <trans-unit id="076c427ffe1fe647c7c158681b1bbd17cb5e2ad3" resname="export::mail: contenu du mail" approved="yes"> <source>export::mail: contenu du mail</source> @@ -9785,20 +9871,12 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <jms:reference-file line="236">Controller/Prod/ToolsController.php</jms:reference-file> <jms:reference-file line="265">Controller/Prod/ToolsController.php</jms:reference-file> </trans-unit> - <trans-unit id="f8969980f2b8fd935f45cdd92a39dca6a4010d04" resname="filtrer les resultats sur la colonne %colonne%" approved="yes"> - <source>filtrer les resultats sur la colonne %colonne%</source> - <target state="translated">filtrer les résultats sur la colonne %colonne%</target> - <jms:reference-file line="561">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="132">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="385">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="709">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> <trans-unit id="6117e45ab57f8660d866a21ca5e9d2c31dbc1945" resname="flash" approved="yes"> <source>flash</source> <target state="translated">Flash</target> - <jms:reference-file line="282">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> - <jms:reference-file line="31">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="306">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> <jms:reference-file line="373">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="34">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="530e5ec7cd0bf5af44dc8c30cf7b7a86d3c454c6" resname="for the following reasons : %reasons%" approved="yes"> <source>for the following reasons : %reasons%</source> @@ -9814,7 +9892,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="e6ae91533b29ee255483b85273eaeb74f9c1ac60" resname="forms::l'email semble invalide" approved="yes"> <source>forms::l'email semble invalide</source> <target state="translated">L'e-mail semble invalide</target> - <jms:reference-file line="99">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="106">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="3edc07eb02649e91baa490fbf402ebbedb10d2cf" resname="forms::la valeur donnee est trop courte" approved="yes"> <source>forms::la valeur donnee est trop courte</source> @@ -9845,7 +9923,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="61cc4acf7d6a30e2177360defda8d8b94eb01d53" resname="forms::les emails ne correspondent pas" approved="yes"> <source>forms::les emails ne correspondent pas</source> <target state="translated">Les e-mails ne correspondent pas</target> - <jms:reference-file line="105">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="112">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="39adae60eaec2c7664f31f59c482634f90eea3c1" resname="forms::les mots de passe ne correspondent pas" approved="yes"> <source>forms::les mots de passe ne correspondent pas</source> @@ -9862,12 +9940,6 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <target state="translated">Modifications effectuées</target> <jms:reference-file line="14">admin/databox/databox.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="0b1e95cfd9775191a7224d0a218ae79187e80c1d" resname="from" approved="yes"> - <source>from</source> - <target state="translated">De</target> - <jms:reference-file line="10">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="13">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="45b162f3c09db4eb9ecea5e048393a7ccaab4f7d" resname="help::help-section-bullet: check-spelling"> <source>help::help-section-bullet: check-spelling</source> <target state="new">help::help-section-bullet: check-spelling</target> @@ -9908,9 +9980,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <target state="translated">L'opérateur SAUF permet d’exclure un terme de la recherche</target> <jms:reference-file line="28">prod/results/help.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="f1705105cd12c7037b4a27b97b9453602ac45ebd" resname="help::help-section-bullet: use-OR-between-terms"> + <trans-unit id="f1705105cd12c7037b4a27b97b9453602ac45ebd" resname="help::help-section-bullet: use-OR-between-terms" approved="yes"> <source>help::help-section-bullet: use-OR-between-terms</source> - <target state="needs-translation">L'opérateur OU permet de rechercher plusieurs termes contenus dans les notices des médias</target> + <target state="translated">L'opérateur OU permet de rechercher plusieurs termes contenus dans les notices des médias</target> <jms:reference-file line="27">prod/results/help.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c012913adefe76f9285c687ed30146a950f95c2c" resname="help::help-section-title: search-tips" approved="yes"> @@ -9926,9 +9998,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="0e76292794888d4f1fa75fb3aff4ca27c58f56a6" resname="image" approved="yes"> <source>image</source> <target state="translated">images</target> - <jms:reference-file line="266">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> - <jms:reference-file line="19">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="290">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> <jms:reference-file line="369">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="22">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="994bebec7c4690d1953f5e2b8832a853238efd5e" resname="image rotation" approved="yes"> <source>image rotation</source> @@ -9943,42 +10015,42 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="0d25ab4ea387d19f49a120acb928c7f9500b0cf3" resname="index::advance_search: disable-facet" approved="yes"> <source>index::advance_search: disable-facet</source> <target state="translated">Ne pas afficher les facettes contenant un seul résultat (expérimental)</target> - <jms:reference-file line="750">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="841">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="16b1c68bd21754876991dfc8df38b024383fbca4" resname="index::advance_search: facet" approved="yes"> <source>index::advance_search: facet</source> <target state="translated">Préférences sur les facettes</target> - <jms:reference-file line="722">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="813">web/prod/index.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="2f830d57f4cedb2a49c7b109f9b91b0f8ba83e8b" resname="index::advance_search: facet-order"> + <trans-unit id="2f830d57f4cedb2a49c7b109f9b91b0f8ba83e8b" resname="index::advance_search: facet-order" approved="yes"> <source>index::advance_search: facet-order</source> - <target state="new">index::advance_search: facet-order</target> - <jms:reference-file line="723">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Ordre d'affichage des facettes</target> + <jms:reference-file line="814">web/prod/index.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="5a25478cdd7fe21258071c4f3a5d9920225f9356" resname="index::advance_search: facet-tech-order"> + <trans-unit id="5a25478cdd7fe21258071c4f3a5d9920225f9356" resname="index::advance_search: facet-tech-order" approved="yes"> <source>index::advance_search: facet-tech-order</source> - <target state="new">index::advance_search: facet-tech-order</target> - <jms:reference-file line="729">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Ordre par défaut</target> + <jms:reference-file line="820">web/prod/index.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="6b9516a3c46d7ad246a9fbb3df693ba6c783c986" resname="index::advance_search: facet-values-order"> + <trans-unit id="6b9516a3c46d7ad246a9fbb3df693ba6c783c986" resname="index::advance_search: facet-values-order" approved="yes"> <source>index::advance_search: facet-values-order</source> - <target state="new">index::advance_search: facet-values-order</target> - <jms:reference-file line="735">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Ordre des valeurs de facettes</target> + <jms:reference-file line="826">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dfb02fcdeb804315cd6ad8388efcfb4ccc4abf38" resname="index::advance_search: hidden-facet-values-order"> <source>index::advance_search: hidden-facet-values-order</source> <target state="needs-translation">Facettes Masquées</target> - <jms:reference-file line="752">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="843">web/prod/index.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="4a35cc75d1072f7dad99c8e91596298f55f20a54" resname="index::advance_search: order-by-hits"> + <trans-unit id="4a35cc75d1072f7dad99c8e91596298f55f20a54" resname="index::advance_search: order-by-hits" approved="yes"> <source>index::advance_search: order-by-hits</source> - <target state="needs-translation">Trier les facettes par hits</target> - <jms:reference-file line="741">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Trier les facettes par hits</target> + <jms:reference-file line="832">web/prod/index.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="1039a002699408da4c4fe74638a6b44f60499069" resname="index:advanced-preferences:: use truncation"> + <trans-unit id="1039a002699408da4c4fe74638a6b44f60499069" resname="index:advanced-preferences:: use truncation" approved="yes"> <source>index:advanced-preferences:: use truncation</source> - <target state="needs-translation">Activer la troncature</target> - <jms:reference-file line="312">web/prod/index.html.twig</jms:reference-file> + <target state="translated">Activer la troncature</target> + <jms:reference-file line="341">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="830af6e37576114c7943a0e190f35ad2f0302b4d" resname="invite:: Redirection vers la zone d'authentification, cliquez sur OK pour continuer ou annulez" approved="yes"> <source>invite:: Redirection vers la zone d'authentification, cliquez sur OK pour continuer ou annulez</source> @@ -10034,9 +10106,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="c372f7e2737372f0ec380396e5755850485ee3e9" resname="login:: Mon compte" approved="yes"> <source>login:: Mon compte</source> <target state="translated">Mon Compte</target> - <jms:reference-file line="168">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="249">web/common/menubar.html.twig</jms:reference-file> <jms:reference-file line="22">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="152">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="226">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="51813acc1a667a12d4be8e86f3f2300e369a68cf" resname="login:: Visitez le lien suivant et suivez les instructions pour continuer, sinon ignorez cet email et il ne se passera rien" approved="yes"> <source>login:: Visitez le lien suivant et suivez les instructions pour continuer, sinon ignorez cet email et il ne se passera rien</source> @@ -10067,13 +10139,13 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="5cdbff50d2a3ae92720c5af32d4cd560d1351a91" resname="login::notification: Changements enregistres" approved="yes"> <source>login::notification: Changements enregistres</source> <target state="translated">Changements confirmés</target> - <jms:reference-file line="393">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="490">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="46f7a3bb71222626147c7e64c6a59a3f4c3d8e42" resname="login::notification: Mise a jour du mot de passe avec succes" approved="yes"> <source>login::notification: Mise a jour du mot de passe avec succes</source> <target state="translated">Mise à jour du mot de passe effectuée</target> <jms:reference-file line="396">Controller/Root/LoginController.php</jms:reference-file> - <jms:reference-file line="60">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="67">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="28dd2416483329c548279196d0c60f722578632f" resname="login::notification: demande de confirmation par mail envoyee" approved="yes"> <source>login::notification: demande de confirmation par mail envoyee</source> @@ -10081,16 +10153,6 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <jms:reference-file line="240">Controller/Root/LoginController.php</jms:reference-file> <jms:reference-file line="310">Controller/Root/LoginController.php</jms:reference-file> </trans-unit> - <trans-unit id="71604a1b149b2101d8500cdd929c4d4689961cf1" resname="login::register: Faire une demande d'acces" approved="yes"> - <source>login::register: Faire une demande d'acces</source> - <target state="translated">Faire une demande d'accès</target> - <jms:reference-file line="206">web/account/access.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="26697ed6ba3b6aa626a51d008244c09f734c5a3f" resname="login::register: L'acces aux bases ci-dessous implique l'acceptation des Conditions Generales d'Utilisation (CGU) suivantes" approved="yes"> - <source>login::register: L'acces aux bases ci-dessous implique l'acceptation des Conditions Generales d'Utilisation (CGU) suivantes</source> - <target state="translated">L'accès aux collections ci-dessous implique l'acceptation des Conditions Générales d'Utilisation suivantes</target> - <jms:reference-file line="195">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="fd24fc482ff7c390471bcff193f8ed218a520ccc" resname="login::register: email confirmation email Pour valider votre inscription a la base de donnees, merci de confirmer votre e-mail en suivant le lien ci-dessous." approved="yes"> <source>login::register: email confirmation email Pour valider votre inscription a la base de donnees, merci de confirmer votre e-mail en suivant le lien ci-dessous.</source> <target state="translated">Pour valider votre inscription, merci de confirmer votre e-mail en suivant le lien ci-dessous.</target> @@ -10099,24 +10161,14 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="e0521fa8816ba827070adffaa4656fe554eec05d" resname="login::register: merci d'avoir confirme votre adresse email" approved="yes"> <source>login::register: merci d'avoir confirme votre adresse email</source> <target state="translated">Merci d'avoir confirmé votre adresse e-mail</target> - <jms:reference-file line="29">Notification/Mail/MailSuccessEmailConfirmationUnregistered.php</jms:reference-file> <jms:reference-file line="29">Notification/Mail/MailSuccessEmailConfirmationRegistered.php</jms:reference-file> + <jms:reference-file line="29">Notification/Mail/MailSuccessEmailConfirmationUnregistered.php</jms:reference-file> </trans-unit> <trans-unit id="2c92f505fbd419ecba46a9c61daf8e304fc0cd61" resname="login::register: sujet email : confirmation de votre adresse email" approved="yes"> <source>login::register: sujet email : confirmation de votre adresse email</source> <target state="translated">Confirmation de votre adresse e-mail</target> - <jms:reference-file line="21">Notification/Mail/MailRequestEmailConfirmation.php</jms:reference-file> <jms:reference-file line="21">Notification/Mail/MailRequestEmailUpdate.php</jms:reference-file> - </trans-unit> - <trans-unit id="90c4688a719d4a3f762b4d9ec0e17e5389fdf515" resname="login::register::CGU: lire les CGU" approved="yes"> - <source>login::register::CGU: lire les CGU</source> - <target state="translated">Lire les CGU</target> - <jms:reference-file line="40">web/account/access.html.twig</jms:reference-file> - <jms:reference-file line="66">web/account/access.html.twig</jms:reference-file> - <jms:reference-file line="92">web/account/access.html.twig</jms:reference-file> - <jms:reference-file line="117">web/account/access.html.twig</jms:reference-file> - <jms:reference-file line="142">web/account/access.html.twig</jms:reference-file> - <jms:reference-file line="167">web/account/access.html.twig</jms:reference-file> + <jms:reference-file line="21">Notification/Mail/MailRequestEmailConfirmation.php</jms:reference-file> </trans-unit> <trans-unit id="ef4716e235916afcf4b9458248245b4c43f42636" resname="login::register:email: Voici un compte rendu du traitement de vos demandes d'acces :" approved="yes"> <source>login::register:email: Voici un compte rendu du traitement de vos demandes d'acces :</source> @@ -10131,12 +10183,12 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="ace8a8481cf18b9b69c30aa34a65135ed2d75277" resname="login::register:email: Vous avez ete accepte sur les collections suivantes : " approved="yes"> <source>login::register:email: Vous avez ete accepte sur les collections suivantes : </source> <target state="translated">Votre accès a été validé pour les collections suivantes :</target> - <jms:reference-file line="524">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="525">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="20fc11d974588d0abed50d717ed3174eff70ac83" resname="login::register:email: Vous avez ete refuse sur les collections suivantes : " approved="yes"> <source>login::register:email: Vous avez ete refuse sur les collections suivantes : </source> <target state="translated">Votre accès a été refusé pour les collections suivantes :</target> - <jms:reference-file line="527">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="528">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="ea4440bd94714e4e85334618405679ae2e36f4f1" resname="mai" approved="yes"> <source>mai</source> @@ -10151,8 +10203,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="520593b5cc1a6e328e74717650c586fb1dbfa265" resname="maximum : %maxFileSizeReadable%" approved="yes"> <source>maximum : %maxFileSizeReadable%</source> <target state="translated">Poids maximum : %maxFileSizeReadable%</target> + <jms:reference-file line="39">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="33">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="36">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="024b6bde2b38cc102db445880d243021b5ed8509" resname="mediatype" approved="yes"> <source>mediatype</source> @@ -10182,16 +10234,16 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="fd1286353570c5703799ba76999323b7c7447b06" resname="no" approved="yes"> <source>no</source> <target state="translated">Non</target> + <jms:reference-file line="75">web/account/sessions.html.twig</jms:reference-file> <jms:reference-file line="582">web/admin/subdefs.html.twig</jms:reference-file> <jms:reference-file line="14">user/import/view.html.twig</jms:reference-file> <jms:reference-file line="91">web/common/technical_datas.html.twig</jms:reference-file> - <jms:reference-file line="75">web/account/sessions.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6c632badea2664bc707979fac5e58072b6a2feba" resname="no image selected" approved="yes"> <source>no image selected</source> <target state="translated">Aucune image sélectionnée</target> + <jms:reference-file line="178">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="245">actions/Tools/index.html.twig</jms:reference-file> - <jms:reference-file line="165">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="37031f99ac78580c9f82e04fa237d295ea10ca41" resname="non" approved="yes"> <source>non</source> @@ -10473,9 +10525,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <jms:reference-file line="117">prod/orders/order_box.html.twig</jms:reference-file> <jms:reference-file line="168">prod/orders/order_box.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="0259e4e17a1f2697d4f4f0108080276a5d7573de" resname="original logo"> + <trans-unit id="0259e4e17a1f2697d4f4f0108080276a5d7573de" resname="original logo" approved="yes"> <source>original logo</source> - <target state="new">original logo</target> + <target state="translated">Logo d'origine</target> <jms:reference-file line="23">Form/Configuration/PersonalisationLogoFormType.php</jms:reference-file> </trans-unit> <trans-unit id="5898fc860300e228dcd54c0b1045b5fa0dcda502" resname="oui" approved="yes"> @@ -10508,17 +10560,17 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="b634852764694ba6d2738c84f6696db177426f69" resname="panier:: ordre Validation ascendante" approved="yes"> <source>panier:: ordre Validation ascendante</source> <target state="translated">Mieux noté</target> - <jms:reference-file line="339">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="366">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dfd32efef3d8fa4ede00019a8337b38819a0d4de" resname="panier:: ordre Validation descendante" approved="yes"> <source>panier:: ordre Validation descendante</source> <target state="translated">Moins noté</target> - <jms:reference-file line="340">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="367">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ab89cfcdd590c720551475cb654efb414b3f3850" resname="panier:: ordre du panier" approved="yes"> <source>panier:: ordre du panier</source> <target state="translated">Ordre du panier</target> - <jms:reference-file line="338">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="365">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="255b0c1fa53afa654ef27c6cfed00c535b904679" resname="panier:: renommer le panier" approved="yes"> <source>panier:: renommer le panier</source> @@ -10566,9 +10618,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <target state="translated">par mois</target> <jms:reference-file line="62">web/admin/editusers_quotas.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="ead5a6379197deb9163d2101354822e6caaa30eb" resname="personalize logo"> + <trans-unit id="ead5a6379197deb9163d2101354822e6caaa30eb" resname="personalize logo" approved="yes"> <source>personalize logo</source> - <target state="new">personalize logo</target> + <target state="translated">Personnaliser le logo</target> <jms:reference-file line="24">Form/Configuration/PersonalisationLogoFormType.php</jms:reference-file> </trans-unit> <trans-unit id="f16110620b1971f58336063cbdb64df7e0e0c7ac" resname="pertinence" approved="yes"> @@ -10601,6 +10653,11 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <target state="translated">Monter une base provenant d'un serveur different de l'application box</target> <jms:reference-file line="103">web/admin/databases.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="6cb5c0796bbc3bf1d892ba5be804a7e53595ea1d" resname="phraseanet:: Preferences" approved="yes"> + <source>phraseanet:: Preferences</source> + <target state="translated">Préférences</target> + <jms:reference-file line="255">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="2751058550fb9a63ba3ffa07152ec68f594dec2a" resname="phraseanet:: Un email vient de vous etre envoye" approved="yes"> <source>phraseanet:: Un email vient de vous etre envoye</source> <target state="translated">Un e-mail vient de vous être envoyé</target> @@ -10609,23 +10666,28 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="eb699a47b1a213ea730879af2fd492110b3c1f4e" resname="phraseanet:: a propos" approved="yes"> <source>phraseanet:: a propos</source> <target state="translated">A propos</target> - <jms:reference-file line="198">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="293">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="190">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="255">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8039b17c124d6907eb83dc8b705888769f45d82d" resname="phraseanet:: adresse" approved="yes"> <source>phraseanet:: adresse</source> <target state="translated">Adresse</target> <jms:reference-file line="554">web/setup/step2.html.twig</jms:reference-file> + <jms:reference-file line="181">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="31">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="89">web/admin/connected-users.html.twig</jms:reference-file> <jms:reference-file line="7">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="181">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a934108e5aa19f91fafd6eb9ee20b00bc248bab9" resname="phraseanet:: aide" approved="yes"> <source>phraseanet:: aide</source> <target state="translated">Aide</target> - <jms:reference-file line="179">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="273">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="170">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="237">web/common/menubar.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="20f45a77e291b513c2fb6c389574ccca61cfb141" resname="phraseanet:: baskets"> + <source>phraseanet:: baskets</source> + <target state="new">phraseanet:: baskets</target> + <jms:reference-file line="21">web/prod/tab_headers.html.twig</jms:reference-file> </trans-unit> <trans-unit id="82f1c4ecdd310877886e675b4a6ccf848f77e34d" resname="phraseanet:: choisir" approved="yes"> <source>phraseanet:: choisir</source> @@ -10647,14 +10709,14 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <source>phraseanet:: deconnection</source> <target state="translated">Déconnexion</target> <jms:reference-file line="31">actions/Bridge/wrapper.html.twig</jms:reference-file> - <jms:reference-file line="210">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="264">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="162">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="267">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6a27e232d8975a8ea80916b303f6d1f873186429" resname="phraseanet:: details" approved="yes"> <source>phraseanet:: details</source> <target state="translated">Détails</target> - <jms:reference-file line="35">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="50">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="35">admin/collection/collection.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8e0c935881fe96023527a3196737821738f5fb44" resname="phraseanet:: hostname" approved="yes"> <source>phraseanet:: hostname</source> @@ -10676,7 +10738,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="300f5de4c2878a60aa1332e6a00574106d2bb022" resname="phraseanet:: plugin.workzone" approved="yes"> <source>phraseanet:: plugin.workzone</source> <target state="translated">Zone de travail du plugin</target> - <jms:reference-file line="27">web/prod/tab_headers.html.twig</jms:reference-file> + <jms:reference-file line="28">web/prod/tab_headers.html.twig</jms:reference-file> </trans-unit> <trans-unit id="96eedbcdec855436500199e6bb6fe9ab40858b4c" resname="phraseanet:: port" approved="yes"> <source>phraseanet:: port</source> @@ -10693,13 +10755,13 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="02e53272b6740f58947e81b6fd23e62e2ca5c301" resname="phraseanet:: presse-papier" approved="yes"> <source>phraseanet:: presse-papier</source> <target state="translated">Presse-papier</target> - <jms:reference-file line="260">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="262">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="da1f4cb9f98aef274dbb8f5992dedaf20e91ea71" resname="phraseanet:: preview" approved="yes"> <source>phraseanet:: preview</source> <target state="translated">Prévisualisation</target> + <jms:reference-file line="259">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="7">prod/actions/printer_default.html.twig</jms:reference-file> - <jms:reference-file line="257">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2baca947f8536e2ff6bab1c45c1876c04706a6a0" resname="phraseanet:: propositions" approved="yes"> <source>phraseanet:: propositions</source> @@ -10710,26 +10772,25 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="51d3e2ae2daff6825c733d3d8e2cc572fca0e0ec" resname="phraseanet:: raccourcis clavier" approved="yes"> <source>phraseanet:: raccourcis clavier</source> <target state="translated">Raccourcis</target> - <jms:reference-file line="192">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="284">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="181">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="249">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="99a70ecaddc20d59056e5d479c6fa9d0bc113a0e" resname="phraseanet:: sous definition" approved="yes"> <source>phraseanet:: sous definition</source> <target state="translated">Sous-définition</target> - <jms:reference-file line="93">module/report/filter.php</jms:reference-file> <jms:reference-file line="685">classes/module/report.php</jms:reference-file> - <jms:reference-file line="352">Controller/Report/RootController.php</jms:reference-file> + <jms:reference-file line="93">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="c33ce7e20779d5b34c1c812406e2f22b779a45d0" resname="phraseanet:: thesaurus" approved="yes"> <source>phraseanet:: thesaurus</source> <target state="translated">Thésaurus</target> - <jms:reference-file line="255">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="257">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="15">web/prod/tab_headers.html.twig</jms:reference-file> - <jms:reference-file line="5">web/thesaurus/index.html.twig</jms:reference-file> <jms:reference-file line="5">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="216">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="11">web/thesaurus/load-thesaurus.html.twig</jms:reference-file> <jms:reference-file line="12">web/thesaurus/load-thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="5">web/thesaurus/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b6022bf4291f5e9d7d7051fe6c3d6a6abbd92c1a" resname="phraseanet:: tri" approved="yes"> <source>phraseanet:: tri</source> @@ -10739,17 +10800,17 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="771634fc3ec89c0a08c7666e776fc5db3072f318" resname="phraseanet:: tri par date" approved="yes"> <source>phraseanet:: tri par date</source> <target state="translated">Tri par date</target> - <jms:reference-file line="231">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="233">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="234">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="235">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="237">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="238">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="89">web/thesaurus/export-topics-dialog.html.twig</jms:reference-file> </trans-unit> <trans-unit id="db34986ff3eb1fd0e90f897a97eaf52ea6708600" resname="phraseanet:: tri par nom" approved="yes"> <source>phraseanet:: tri par nom</source> <target state="translated">Tri alphabétique</target> - <jms:reference-file line="240">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="242">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="243">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="244">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="246">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="247">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d775557b6bf79c672ee2efea64f5e282124055a8" resname="phraseanet:: user" approved="yes"> <source>phraseanet:: user</source> @@ -10767,11 +10828,56 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <target state="translated">Ne plus afficher ce message</target> <jms:reference-file line="38">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> + <trans-unit id="245fd09d0518644a6580518f710add762804ca9a" resname="phraseanet::account The account has been deleted" approved="yes"> + <source>phraseanet::account The account has been deleted</source> + <target state="translated">Le compte a été supprimé</target> + <jms:reference-file line="552">Controller/Root/AccountController.php</jms:reference-file> + </trans-unit> + <trans-unit id="bf7028b694aea3fc9ede5014a9f8b5d617b83b6f" resname="phraseanet::account: << your account can be deleted via admin interface >> " approved="yes"> + <source><![CDATA[phraseanet::account: << your account can be deleted via admin interface >> ]]></source> + <target state="translated">Vos droits ne vous permettent pas de réaliser cette action, votre compte ne peut être supprimé que via l'interface d'Administration.</target> + <jms:reference-file line="296">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="047b7994f5960aae108105ad5deadb5bbd72c8fc" resname="phraseanet::account: A confirmation e-mail has been sent. Please follow the instructions contained to continue account deletion" approved="yes"> + <source>phraseanet::account: A confirmation e-mail has been sent. Please follow the instructions contained to continue account deletion</source> + <target state="translated">Un email de confirmation a été envoyé. Veuillez suivre les instructions pour poursuivre la procédure de suppression du compte.</target> + <jms:reference-file line="360">Controller/Root/AccountController.php</jms:reference-file> + </trans-unit> + <trans-unit id="d0ee9e2c90a05b113b00bf7accd590557bd78528" resname="phraseanet::account: Are you sure you want to delete your account?" approved="yes"> + <source>phraseanet::account: Are you sure you want to delete your account?</source> + <target state="translated">Etes-vous sûr(e) de vouloir supprimer votre compte?</target> + <jms:reference-file line="253">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="b98be91d0f8cadb22e52e6217584b7a11370fbb6" resname="phraseanet::account: Delete my account" approved="yes"> + <source>phraseanet::account: Delete my account</source> + <target state="translated">Supprimer mon compte</target> + <jms:reference-file line="244">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="b7993903466c49139bfae4c34c63446ff24b1474" resname="phraseanet::account: I am agree to delete my account" approved="yes"> + <source>phraseanet::account: I am agree to delete my account</source> + <target state="translated">Je suis d'accord pour supprimer mon compte</target> + <jms:reference-file line="285">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="1b836fda2a5c65abfd05c215d4c4dd66361e4f0f" resname="phraseanet::account: I am agree to delete my account, need confirmation on mail" approved="yes"> + <source>phraseanet::account: I am agree to delete my account, need confirmation on mail</source> + <target state="translated">Je suis d'accord pour supprimer mon compte et j'ai besoin d'une confirmation par email</target> + <jms:reference-file line="283">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="121aa945bfcb3565989acc06a1ccda5b36be6bf0" resname="phraseanet::account: List of data to be deleted" approved="yes"> + <source>phraseanet::account: List of data to be deleted</source> + <target state="translated">Liste des données à supprimer</target> + <jms:reference-file line="254">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="8d168955d9cfb26df27fbdcb4f83bbfe78654703" resname="phraseanet::account: My phraseanet account" approved="yes"> + <source>phraseanet::account: My phraseanet account</source> + <target state="translated">Mon compte Phraseanet</target> + <jms:reference-file line="274">web/account/account.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="9628f29074afd5c9bb42bb0b4c896f8bc32c192e" resname="phraseanet::chargement" approved="yes"> <source>phraseanet::chargement</source> <target state="translated">Chargement</target> <jms:reference-file line="47">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="268">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="270">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="77">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="34">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> @@ -10797,7 +10903,14 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="754677fa0aa06c7f10237a728e6f33eaea06d42b" resname="phraseanet::erreur: echec du serveur de mail" approved="yes"> <source>phraseanet::erreur: echec du serveur de mail</source> <target state="translated">Echec du serveur de mails</target> - <jms:reference-file line="116">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="123">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="344">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="541">Controller/Root/AccountController.php</jms:reference-file> + </trans-unit> + <trans-unit id="60ae97c7ab0fb3923682a785ff0348958e308d4a" resname="phraseanet::error: failed to revoke some user access"> + <source>phraseanet::error: failed to revoke some user access</source> + <target state="new">phraseanet::error: failed to revoke some user access</target> + <jms:reference-file line="530">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="2a5db6bf8928d23c54b13277fa7d5289a1f52744" resname="phraseanet::jours:: dimanche" approved="yes"> <source>phraseanet::jours:: dimanche</source> @@ -10882,12 +10995,12 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="9b218d667572510f2b87bc933b23fe2e1049da91" resname="phraseanet::time:: a" approved="yes"> <source>phraseanet::time:: a</source> <target state="translated">A</target> - <jms:reference-file line="455">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="487">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="17294973074fcca7917d08a31570996d882ae840" resname="phraseanet::time:: de" approved="yes"> <source>phraseanet::time:: de</source> <target state="translated">De</target> - <jms:reference-file line="449">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="480">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="10188a0f6e181f9c9159f315f47e1349efb5659a" resname="phraseanet::type:: audios" approved="yes"> <source>phraseanet::type:: audios</source> @@ -10897,8 +11010,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="255c1bcd520c4025c47b940d1820d1355d0b35e0" resname="phraseanet::type:: documents" approved="yes"> <source>phraseanet::type:: documents</source> <target state="translated">Documents</target> - <jms:reference-file line="283">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="28">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="306">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0846fc377cde824859cb98aacb8a3b258bae7c7c" resname="phraseanet::type:: images" approved="yes"> <source>phraseanet::type:: images</source> @@ -10908,7 +11021,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="a2dfbbcaf441131e47dcd23530fa98f1155999ff" resname="phraseanet::type:: reportages" approved="yes"> <source>phraseanet::type:: reportages</source> <target state="translated">Reportages</target> - <jms:reference-file line="287">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="311">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="866330f63ad6553c27c7c4a60fd6354d4291e2b3" resname="phraseanet::type:: videos" approved="yes"> <source>phraseanet::type:: videos</source> @@ -10924,16 +11037,6 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <source>phraseanet::utilisateurs</source> <target state="translated">Utilisateurs</target> <jms:reference-file line="66">module/report/filter.php</jms:reference-file> - <jms:reference-file line="152">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="7cf383c0af92a038f4aa629bfc8292876459b08d" resname="phrseanet:: sous definition" approved="yes"> - <source>phrseanet:: sous definition</source> - <target state="translated">Sous-définition</target> - <jms:reference-file line="282">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="34">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="52">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="273">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="281">Controller/Report/InformationController.php</jms:reference-file> </trans-unit> <trans-unit id="1aa787fe0cfb373575fc2c0f6f826e7c6dc9fd41" resname="preview" approved="yes"> <source>preview</source> @@ -10943,49 +11046,49 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="fdb5ea435d0e0d2d8e9dc7e2dc925c031406385c" resname="preview:: Description" approved="yes"> <source>preview:: Description</source> <target state="translated">Notice</target> - <jms:reference-file line="793">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="884">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="424597224c5d2322b6e8db99037234f7b2641de0" resname="preview:: Historique" approved="yes"> <source>preview:: Historique</source> <target state="translated">Historique</target> - <jms:reference-file line="794">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="885">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="74e09022ffbf0d295142654902e9d7a007f209a5" resname="preview:: Popularite" approved="yes"> <source>preview:: Popularite</source> <target state="translated">Popularité</target> - <jms:reference-file line="796">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="887">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f9c61385964471a1171066ba2ba3622a98ffb84b" resname="preview:: arreter le diaporama" approved="yes"> <source>preview:: arreter le diaporama</source> <target state="translated">Arrêter</target> <jms:reference-file line="62">prod/preview/basket_train.html.twig</jms:reference-file> - <jms:reference-file line="10">prod/preview/result_train_options.html.twig</jms:reference-file> - <jms:reference-file line="96">prod/preview/reg_train.html.twig</jms:reference-file> - <jms:reference-file line="60">prod/preview/feed_train.html.twig</jms:reference-file> <jms:reference-file line="56">prod/preview/result_train.html.twig</jms:reference-file> + <jms:reference-file line="96">prod/preview/reg_train.html.twig</jms:reference-file> + <jms:reference-file line="10">prod/preview/result_train_options.html.twig</jms:reference-file> + <jms:reference-file line="60">prod/preview/feed_train.html.twig</jms:reference-file> </trans-unit> <trans-unit id="77a36033b8fdccc947d744ae8e3120c7d8dafa46" resname="preview:: demarrer le diaporama" approved="yes"> <source>preview:: demarrer le diaporama</source> <target state="translated">Diaporama</target> <jms:reference-file line="60">prod/preview/basket_train.html.twig</jms:reference-file> - <jms:reference-file line="8">prod/preview/result_train_options.html.twig</jms:reference-file> - <jms:reference-file line="94">prod/preview/reg_train.html.twig</jms:reference-file> - <jms:reference-file line="58">prod/preview/feed_train.html.twig</jms:reference-file> <jms:reference-file line="54">prod/preview/result_train.html.twig</jms:reference-file> + <jms:reference-file line="94">prod/preview/reg_train.html.twig</jms:reference-file> + <jms:reference-file line="8">prod/preview/result_train_options.html.twig</jms:reference-file> + <jms:reference-file line="58">prod/preview/feed_train.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a5cc2b2cd9b0421d131185277e9005d8e616582c" resname="preview::date" approved="yes"> <source>preview::date</source> <target state="translated">Date</target> - <jms:reference-file line="74">prod/preview/popularity.html.twig</jms:reference-file> - <jms:reference-file line="88">prod/preview/popularity.html.twig</jms:reference-file> - <jms:reference-file line="124">prod/preview/popularity.html.twig</jms:reference-file> - <jms:reference-file line="138">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="83">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="98">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="134">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="148">prod/preview/popularity.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0cbda44654b686e66bae8ec061748385d8b13de0" resname="preview::downloads" approved="yes"> <source>preview::downloads</source> <target state="translated">Nbr Téléchargement(s)</target> - <jms:reference-file line="125">prod/preview/popularity.html.twig</jms:reference-file> - <jms:reference-file line="151">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="135">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="161">prod/preview/popularity.html.twig</jms:reference-file> </trans-unit> <trans-unit id="688566b835a97bcfbbdb83fb85b59c7c2aa5893d" resname="preview::statistiques de telechargement" approved="yes"> <source>preview::statistiques de telechargement</source> @@ -11000,15 +11103,15 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="b130a62ee72757a562af1398e01cd0fc5aad3d30" resname="preview::visualisation" approved="yes"> <source>preview::visualisation</source> <target state="translated">Nbr Visualisations</target> - <jms:reference-file line="75">prod/preview/popularity.html.twig</jms:reference-file> - <jms:reference-file line="101">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="84">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="111">prod/preview/popularity.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7ac5447a13806c0a2e2602b51644729fe8464e0e" resname="previewLinkLabel" approved="yes"> <source>previewLinkLabel</source> <target state="translated">Prévisualiser</target> - <jms:reference-file line="45">prod/Share/record.html.twig</jms:reference-file> - <jms:reference-file line="55">prod/Share/record.html.twig</jms:reference-file> - <jms:reference-file line="71">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="51">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="61">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="77">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d369ca0ef132e64f45e4cef5bfa2aaff9104a276" resname="print:: description"> <source>print:: description</source> @@ -11048,20 +11151,20 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="98ab0e2a8cf4a7c9f6952361e6c750a8009b70a5" resname="prive" approved="yes"> <source>prive</source> <target state="translated">Privé</target> - <jms:reference-file line="91">Bridge/Youtube/upload.html.twig</jms:reference-file> <jms:reference-file line="79">Bridge/Dailymotion/upload.html.twig</jms:reference-file> + <jms:reference-file line="91">Bridge/Youtube/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="039db3240f9c47314f5b8f05835c54795f45324e" resname="privé" approved="yes"> <source>privé</source> <target state="translated">Privé</target> - <jms:reference-file line="60">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="60">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="60">Bridge/Youtube/video_modify.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6dd8429cc900b9460f1e9d4be6155a6ee1b6de42" resname="processing" approved="yes"> <source>processing</source> <target state="translated">En cours...</target> + <jms:reference-file line="179">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="246">actions/Tools/index.html.twig</jms:reference-file> - <jms:reference-file line="166">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f63658cad863dee4a5876278e836472380183ade" resname="prod::Les enregistrements ne provienent pas tous de la meme base et ne peuvent donc etre traites ensemble" approved="yes"> <source>prod::Les enregistrements ne provienent pas tous de la meme base et ne peuvent donc etre traites ensemble</source> @@ -11074,6 +11177,16 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <target state="translated">Vous ne possédez pas les autorisations d'accès requises sur les documents pour effectuer cette action.</target> <jms:reference-file line="35">Controller/Prod/MoveCollectionController.php</jms:reference-file> </trans-unit> + <trans-unit id="ef27ad74061e0e15683e84dec7f5559f7797637f" resname="prod::advancesearch:tooltips:datefield_restriction_explanation" approved="yes"> + <source>prod::advancesearch:tooltips:datefield_restriction_explanation</source> + <target state="translated">Limiter la recherche des résultats à des dates</target> + <jms:reference-file line="463">web/prod/index.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="fa55093d5fb1dfe235a46f8b4fecad5d36d3f250" resname="prod::advancesearch:tooltips:field_restriction_explanation"> + <source>prod::advancesearch:tooltips:field_restriction_explanation</source> + <target state="new">prod::advancesearch:tooltips:field_restriction_explanation</target> + <jms:reference-file line="408">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="8b8698f202f815bbde691f54c7d51b691bef0263" resname="prod::collection deplacer egalement les documents rattaches a ce(s) regroupement(s)" approved="yes"> <source>prod::collection deplacer egalement les documents rattaches a ce(s) regroupement(s)</source> <target state="translated">Déplacer également les documents de ces reportages ?</target> @@ -11082,7 +11195,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="063431f63e0c593c52fffb55f390d1d9c216ee4a" resname="prod::edit: Impossible d'editer simultanement des documents provenant de bases differentes" approved="yes"> <source>prod::edit: Impossible d'editer simultanement des documents provenant de bases differentes</source> <target state="translated">Impossible d'éditer simultanément des documents provenant de bases différentes</target> - <jms:reference-file line="404">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="406">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c1978319cea9a232bb3076453e217df0781ef7a6" resname="prod::editing valeurs heterogenes, choisir 'remplacer', 'ajouter' ou 'annuler'" approved="yes"> <source>prod::editing valeurs heterogenes, choisir 'remplacer', 'ajouter' ou 'annuler'</source> @@ -11092,32 +11205,32 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="b4647a860e97f9b173747e8736ae36630631fbb4" resname="prod::editing: %not_actionable% documents ne peuvent etre edites car vos droits sont induffisants" approved="yes"> <source>prod::editing: %not_actionable% documents ne peuvent etre edites car vos droits sont induffisants</source> <target state="translated">%not_actionable% document(s) éditables, vous ne disposez pas des autorisations nécessaires</target> - <jms:reference-file line="414">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="416">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e58fe53260dcb47548d687b0aac89a231f8fd349" resname="prod::editing: 1 document ne peut etre edite car vos droits sont induffisants" approved="yes"> <source>prod::editing: 1 document ne peut etre edite car vos droits sont induffisants</source> <target state="translated">Vous ne possédez pas les autorisations d'accès requises pour éditer 1 document</target> - <jms:reference-file line="416">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="418">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d06429358cfa7814d995cffec515505b4babbdf3" resname="prod::editing: aucun documents ne peuvent etre edites car vos droits sont induffisants" approved="yes"> <source>prod::editing: aucun documents ne peuvent etre edites car vos droits sont induffisants</source> <target state="translated">Aucun document ne peut être édité car vous ne disposez pas des autorisations nécessaires</target> - <jms:reference-file line="406">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="408">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="93a5e45cf78591b66011a369a41a9faae6439da0" resname="prod::editing: modeles de fiches" approved="yes"> <source>prod::editing: modeles de fiches</source> <target state="translated">Modèles</target> - <jms:reference-file line="259">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="261">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="43cef7ae638274317ae80eeb9d2207fbd8c60889" resname="prod::editing: rechercher-remplacer" approved="yes"> <source>prod::editing: rechercher-remplacer</source> <target state="translated">Rechercher / Remplacer</target> - <jms:reference-file line="258">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="260">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1a368232d8ba90d4b168be2a328b32b2889a909c" resname="prod::editing: valider ou annuler les modifications" approved="yes"> <source>prod::editing: valider ou annuler les modifications</source> <target state="translated">Valider ou annuler les modifications</target> - <jms:reference-file line="389">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="391">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f5b80c50fa70208435fd889b73915ca753efabd3" resname="prod::editing::annulation: abandonner les modification ?" approved="yes"> <source>prod::editing::annulation: abandonner les modification ?</source> @@ -11132,108 +11245,83 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="be0abffee86e7b309d3ff31af3ab46a7e3927914" resname="prod::editing::replace: remplacer dans le champ" approved="yes"> <source>prod::editing::replace: remplacer dans le champ</source> <target state="translated">Remplacer dans le champ</target> - <jms:reference-file line="279">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="281">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5abac240c44453bcb822102437d5b2e95115dbe2" resname="prod::editing::replace: remplacer dans tous les champs" approved="yes"> <source>prod::editing::replace: remplacer dans tous les champs</source> <target state="translated">Remplacer dans tous les champs</target> - <jms:reference-file line="282">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="284">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7ba84a24ce43f7192d766a7afcda8d7de22ba760" resname="prod::editing:indexation en cours" approved="yes"> <source>prod::editing:indexation en cours</source> <target state="translated">Indexation en cours</target> - <jms:reference-file line="376">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="378">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f2dbeebb5642463cc9d946ac5fef8b54e3ef9c8d" resname="prod::editing:remplace: chaine remplacante" approved="yes"> <source>prod::editing:remplace: chaine remplacante</source> <target state="translated">Remplacer par</target> - <jms:reference-file line="296">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="298">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2d8fd9918eb060abef1aff6634ede1135c2f898a" resname="prod::editing:remplace: options de remplacement" approved="yes"> <source>prod::editing:remplace: options de remplacement</source> <target state="translated">Options</target> - <jms:reference-file line="302">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="304">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9b33f1b01e6908366fc4b3f960d1869ccf1ea6a2" resname="prod::editing:remplace::option : utiliser une expression reguliere" approved="yes"> <source>prod::editing:remplace::option : utiliser une expression reguliere</source> <target state="translated">Expression régulière</target> - <jms:reference-file line="305">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="307">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5649e43cc87b1330e3a5ad75b54c6096561e00cd" resname="prod::editing:remplace::option la valeur du cahmp doit etre exacte" approved="yes"> <source>prod::editing:remplace::option la valeur du cahmp doit etre exacte</source> <target state="translated">Champ complet</target> - <jms:reference-file line="328">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="330">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cb4a27dc95b4aaf582361724327b0937991b6884" resname="prod::editing:remplace::option la valeur est comprise dans le champ" approved="yes"> <source>prod::editing:remplace::option la valeur est comprise dans le champ</source> <target state="translated">Contenu dans le champ</target> - <jms:reference-file line="331">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="333">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5f18e2b78a5091db78a4adbd14e912959070ebd5" resname="prod::editing:remplace::option respecter la casse" approved="yes"> <source>prod::editing:remplace::option respecter la casse</source> <target state="translated">Respecter la casse</target> - <jms:reference-file line="334">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="336">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="27a3b22c9b8b1abb910147d1d3a556d038f0ab50" resname="prod::editing:remplace::option: remplacer toutes les occurences" approved="yes"> <source>prod::editing:remplace::option: remplacer toutes les occurences</source> <target state="translated">Remplacer tout</target> - <jms:reference-file line="321">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="323">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a77e26d6710709aca37c36887252c53bc238ec43" resname="prod::editing:remplace::option: rester insensible a la casse" approved="yes"> <source>prod::editing:remplace::option: rester insensible a la casse</source> <target state="translated">Insensible à la casse</target> - <jms:reference-file line="324">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="326">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dd5e4eca9dfa743d305cd038b0c53b0470c71c61" resname="prod::editing:replace: chaine a rechercher" approved="yes"> <source>prod::editing:replace: chaine a rechercher</source> <target state="translated">Rechercher</target> - <jms:reference-file line="290">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="292">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cb08c63b1c016e31a255a38795c8e4cb66b0e66e" resname="prod::facet:base_label" approved="yes"> <source>prod::facet:base_label</source> <target state="translated">Bases</target> - <jms:reference-file line="259">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="260">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="36fa870bac03b1a7c83f2b7030bf93ed4718e0a7" resname="prod::facet:collection_label" approved="yes"> <source>prod::facet:collection_label</source> <target state="translated">Collections</target> - <jms:reference-file line="264">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="267">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="12988153991e94fd6fc58934903504b0bf03c30a" resname="prod::facet:doctype_label" approved="yes"> <source>prod::facet:doctype_label</source> <target state="translated">Types de documents</target> - <jms:reference-file line="269">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="274">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="2a4d65f9a1aaeec92617d3d5dc3ef0167a019e82" resname="prod::recherche: Attention : la liste des bases selectionnees pour la recherche a ete changee." approved="yes"> <source>prod::recherche: Attention : la liste des bases selectionnees pour la recherche a ete changee.</source> <target state="translated">Attention : la liste des collections sélectionnées pour la recherche a été changée</target> <jms:reference-file line="33">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> - <trans-unit id="93e6180a1f0f64a4dfc76fd640c4dc0049be00fc" resname="prod::setup: download gabari"> - <source>prod::setup: download gabari</source> - <target state="new">prod::setup: download gabari</target> - <jms:reference-file line="10">web/admin/personalisation_logo.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="7751e538494c3f8ed3f5518422715b60b28d306a" resname="prod::setup: error text dimension"> - <source>prod::setup: error text dimension</source> - <target state="new">prod::setup: error text dimension</target> - <jms:reference-file line="41">web/admin/personalisation_logo.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="a9f8a6a629117e38936d41b34cbb3dbcc13353fa" resname="prod::setup: error text file type"> - <source>prod::setup: error text file type</source> - <target state="new">prod::setup: error text file type</target> - <jms:reference-file line="42">web/admin/personalisation_logo.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="7950ac5291b8ffafd5cfa55c429cada508a2fdd1" resname="prod::setup: help text"> - <source>prod::setup: help text</source> - <target state="new">prod::setup: help text</target> - <jms:reference-file line="16">web/admin/personalisation_logo.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="acd399272f9331ebe8c669752339051f920a4084" resname="prod::setup: select file"> - <source>prod::setup: select file</source> - <target state="new">prod::setup: select file</target> - <jms:reference-file line="29">web/admin/personalisation_logo.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="df147d680e0fab108bc7a6a1c878c55428ecd3ea" resname="prod::thesaurusTab:candidats" approved="yes"> <source>prod::thesaurusTab:candidats</source> <target state="translated">Candidats</target> @@ -11349,9 +11437,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <target state="translated">Remplacer le terme</target> <jms:reference-file line="19">web/prod/tab_thesaurus.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="556186e33fc15d5397f8b5f7a6855e822b354f9b" resname="prod::toolbar : video editor"> + <trans-unit id="556186e33fc15d5397f8b5f7a6855e822b354f9b" resname="prod::toolbar : video editor" approved="yes"> <source>prod::toolbar : video editor</source> - <target state="needs-translation">Outils video</target> + <target state="translated">Outils vidéo</target> <jms:reference-file line="72">web/prod/toolbar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6ad73c8fd370f62ccd3bf50cd9cc3563aed5273c" resname="prod::tools: document" approved="yes"> @@ -11360,14 +11448,14 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <jms:reference-file line="70">Controller/Prod/ToolsController.php</jms:reference-file> <jms:reference-file line="41">Controller/Prod/ShareController.php</jms:reference-file> </trans-unit> - <trans-unit id="501adfe6ea4c900a76df9f3c1d55834e6db5b9a9" resname="prod:app trash: also-move-record"> + <trans-unit id="501adfe6ea4c900a76df9f3c1d55834e6db5b9a9" resname="prod:app trash: also-move-record" approved="yes"> <source>prod:app trash: also-move-record</source> - <target state="needs-translation">Déplacer aussi les enregistrements</target> + <target state="translated">Déplacer à la corbeille les enregistrements liés à ces reportages</target> <jms:reference-file line="28">prod/actions/delete_records_confirm.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="9dd9daa2dc851f005bbcb2ce0ea0c8de6b86ad52" resname="prod:app trash: record-delete"> + <trans-unit id="9dd9daa2dc851f005bbcb2ce0ea0c8de6b86ad52" resname="prod:app trash: record-delete" approved="yes"> <source>prod:app trash: record-delete</source> - <target state="new">prod:app trash: record-delete</target> + <target state="translated">enregistrement(s) définitivement supprimé(s) !</target> <jms:reference-file line="40">prod/actions/delete_records_confirm.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9dcc690970b62ae5d2f6e2bf25213650f69d44ea" resname="prod:app trash: record-move-to-trash"> @@ -11428,20 +11516,15 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="a938566e7b60b6fc2e197259cf2f2b2f42656d17" resname="prod:push: delete selection"> <source>prod:push: delete selection</source> <target state="new">prod:push: delete selection</target> - <jms:reference-file line="217">prod/actions/Push.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="2b9af3311e90dc6acc56f5dbb15c859f525a4d0e" resname="prod:push:save list"> - <source>prod:push:save list</source> - <target state="new">prod:push:save list</target> - <jms:reference-file line="249">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="223">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="61c9b2b17db77a27841bbeeabff923448b0f6388" resname="public" approved="yes"> <source>public</source> <target state="translated">Public</target> - <jms:reference-file line="95">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="64">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="83">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="64">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="95">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="64">Bridge/Youtube/video_modify.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9647ab4603346566d2218fda731606baafcbe408" resname="publication : autheur" approved="yes"> <source>publication : autheur</source> @@ -11509,37 +11592,67 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="80d5c6fb17d995644a96db043efbec28278893eb" resname="raccourci :: a propos des raccourcis claviers" approved="yes"> <source>raccourci :: a propos des raccourcis claviers</source> <target state="translated">A propos des raccourcis clavier</target> - <jms:reference-file line="522">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="613">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a7b6e3e14f736db30984625d4a84be582f2f16ac" resname="raccourcis :: ne plus montrer cette aide" approved="yes"> <source>raccourcis :: ne plus montrer cette aide</source> <target state="translated">Ne plus montrer cette aide</target> - <jms:reference-file line="567">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="658">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1d740fd7fe206b5e6e57bef828e876a1bc484dd5" resname="rafraichir" approved="yes"> <source>rafraichir</source> <target state="translated">Rafraîchir</target> <jms:reference-file line="89">prod/WorkZone/Story.html.twig</jms:reference-file> - <jms:reference-file line="94">prod/WorkZone/Basket.html.twig</jms:reference-file> <jms:reference-file line="3">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="94">prod/WorkZone/Basket.html.twig</jms:reference-file> <jms:reference-file line="17">prod/results/feeds.html.twig</jms:reference-file> <jms:reference-file line="22">prod/results/feeds.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="aa9ad912bb5495802feb4738958c197a8e2de1dc" resname="rechercher dans tous les champs" approved="yes"> - <source>rechercher dans tous les champs</source> - <target state="translated">Tous les champs</target> - <jms:reference-file line="377">web/prod/index.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="0dea865dcd106d77e52ea8bffe6f87e2add0ac53" resname="recordtype" approved="yes"> <source>recordtype</source> <target state="translated">Type d'enregistrement</target> - <jms:reference-file line="16">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="19">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="df1f4db3d6016bf2b31805b0a3038df4498fc2ee" resname="regeneration of sub-definitions" approved="yes"> <source>regeneration of sub-definitions</source> <target state="translated">Régénération des sous-définitions</target> <jms:reference-file line="29">actions/Tools/index.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="c8c491587b0dfb9bab18afb7694a0bb14665e7de" resname="registration:collection.accepted"> + <source>registration:collection.accepted</source> + <target state="new">registration:collection.accepted</target> + <jms:reference-file line="64">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="8feaff2c61f3573c1aaaaa16de3df1ef8758f28f" resname="registration:collection.active"> + <source>registration:collection.active</source> + <target state="new">registration:collection.active</target> + <jms:reference-file line="52">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="9a5d8160431e85e0ecbe21dfcb2017543a8f7268" resname="registration:collection.in-time"> + <source>registration:collection.in-time</source> + <target state="new">registration:collection.in-time</target> + <jms:reference-file line="56">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="8e154460c434c2beb7dc268aac77c5b8b52c4abb" resname="registration:collection.out-dated"> + <source>registration:collection.out-dated</source> + <target state="new">registration:collection.out-dated</target> + <jms:reference-file line="58">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="ec1982774689f302e8d8549a12d99a3e41525648" resname="registration:collection.pending"> + <source>registration:collection.pending</source> + <target state="new">registration:collection.pending</target> + <jms:reference-file line="60">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="fcaffe2361d5da4c38aaf4c02d2b944c29db7da1" resname="registration:collection.registrable"> + <source>registration:collection.registrable</source> + <target state="new">registration:collection.registrable</target> + <jms:reference-file line="54">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="7abb365333a7902838022d4bfc560f41323abb7c" resname="registration:collection.rejected"> + <source>registration:collection.rejected</source> + <target state="new">registration:collection.rejected</target> + <jms:reference-file line="62">web/account/access.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="796a49ee2759063c6ffcb69cb54bc55b92020af5" resname="reponses:: %total% Resultats" approved="yes"> <source>reponses:: %total% Resultats</source> <target state="translated">%total% résultats</target> @@ -11553,22 +11666,24 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="04e3a887b050c987ecd5ed86b775e09a92ccddd6" resname="reponses:: images par pages :" approved="yes"> <source>reponses:: images par pages :</source> <target state="translated">Résultats par page</target> - <jms:reference-file line="659">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="750">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5aeb7a518f4ac89f3db531fc3e4efb7dd5e11182" resname="reponses:: mode liste" approved="yes"> <source>reponses:: mode liste</source> <target state="translated">Liste</target> - <jms:reference-file line="612">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="703">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f3f71ef37b35e713c5dcea151d066ec447e95579" resname="reponses:: mode vignettes" approved="yes"> <source>reponses:: mode vignettes</source> <target state="translated">Vignettes</target> - <jms:reference-file line="608">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="699">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cf0636b6d894370de0b8a9d6f2dceb07ad46f800" resname="reponses:: partager" approved="yes"> <source>reponses:: partager</source> <target state="translated">Partager</target> - <jms:reference-file line="140">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="150">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="151">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="152">prod/results/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4e25e3a99801b881f73fe940cac50b0fc636d6cf" resname="reponses:: selectionner rien" approved="yes"> <source>reponses:: selectionner rien</source> @@ -11583,115 +11698,55 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="d3b5a64da3a08e4a63a641fb4164844ecdb67a2f" resname="reponses:: taille des images :" approved="yes"> <source>reponses:: taille des images :</source> <target state="translated">Taille des vignettes</target> - <jms:reference-file line="666">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="757">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e32952b1a087c6ba28e13097e0ebb5395c2f2105" resname="reponses::document sans titre" approved="yes"> <source>reponses::document sans titre</source> <target state="translated">Sans titre</target> - <jms:reference-file line="934">classes/record/adapter.php</jms:reference-file> - </trans-unit> - <trans-unit id="e1fd199951b7475ef26b375b42056b7619abdfb9" resname="report :: aucun resultat trouve" approved="yes"> - <source>report :: aucun resultat trouve</source> - <target state="translated">Aucun résultat trouvé</target> - <jms:reference-file line="115">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="dde6a50f70eb651f8e8b72e4d19c826ed474f62f" resname="report :: configurer le tableau" approved="yes"> - <source>report :: configurer le tableau</source> - <target state="translated">Configurer le tableau</target> - <jms:reference-file line="15">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="4b5e07be61a6dbe3f4b635225bed3513f93472a5" resname="report :: filtrer" approved="yes"> - <source>report :: filtrer</source> - <target state="translated">Filtrer</target> - <jms:reference-file line="62">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="f9891f9435be957f4dd0901856d8cb2e49e48f9f" resname="report :: grouper" approved="yes"> - <source>report :: grouper</source> - <target state="translated">Grouper</target> - <jms:reference-file line="66">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="089ca06ac338646a81d97f218405812b04d88182" resname="report :: imprimer le tableau" approved="yes"> - <source>report :: imprimer le tableau</source> - <target state="translated">Imprimer le tableau</target> - <jms:reference-file line="18">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="1c2a928659706b02208f44cfe76294f5a3c3e788" resname="report:: (connexions) Globales" approved="yes"> - <source>report:: (connexions) Globales</source> - <target state="translated">Toutes les connexions</target> - <jms:reference-file line="87">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="daaac8fc71cfa4f27496b88c286789c66aeb104a" resname="report:: (connexions) OS et navigateurs" approved="yes"> - <source>report:: (connexions) OS et navigateurs</source> - <target state="translated">Plateformes et navigateurs</target> - <jms:reference-file line="91">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="8a190fa937cca670cc7ae51eb822dd4e7adffc03" resname="report:: (connexions) Par utilisateurs" approved="yes"> - <source>report:: (connexions) Par utilisateurs</source> - <target state="translated">Groupé par utilisateurs</target> - <jms:reference-file line="71">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="68ed1e7f53fb514c611feeb9849a396352d28fd2" resname="report:: (telechargement) Global" approved="yes"> - <source>report:: (telechargement) Global</source> - <target state="translated">Tous les téléchargements</target> - <jms:reference-file line="135">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="9f849cd5fb7a65d33e1ec022c8f0e28cd25c63d3" resname="report:: (telechargement) Par documents sur la base" approved="yes"> - <source>report:: (telechargement) Par documents sur la base</source> - <target state="translated">Par document, sur la base</target> - <jms:reference-file line="143">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="de74bbae455a47c9404da8d0883534456eddd1e5" resname="report:: (telechargement) Par jours base par base" approved="yes"> - <source>report:: (telechargement) Par jours base par base</source> - <target state="translated">Par Jour</target> - <jms:reference-file line="139">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="938">classes/record/adapter.php</jms:reference-file> </trans-unit> <trans-unit id="0e0b1a1001cc76b95ef11cd1c208c87a03743b4b" resname="report:: 1 - Periode" approved="yes"> <source>report:: 1 - Periode</source> - <target state="translated">1 - Période</target> - <jms:reference-file line="4">web/report/form_date_and_base.html.twig</jms:reference-file> + <target state="translated">Période</target> + <jms:reference-file line="3">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="dff8c22d33c5488a01a5834535dff916fe5d6487" resname="report:: 2 - Bases" approved="yes"> - <source>report:: 2 - Bases</source> - <target state="translated">2 - Bases</target> - <jms:reference-file line="19">web/report/form_date_and_base.html.twig</jms:reference-file> + <trans-unit id="87cb22fb5598f714cf44b13ef0d2fcfa0fe1e01a" resname="report:: 2 - Base" approved="yes"> + <source>report:: 2 - Base</source> + <target state="translated">Bases</target> + <jms:reference-file line="26">web/report/form_date_and_base.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="49e279e2253aaf0d8aebad389584f5c7c77e5a78" resname="report:: 3 - Collections" approved="yes"> + <source>report:: 3 - Collections</source> + <target state="translated">Collections</target> + <jms:reference-file line="39">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a807c0ef7e32813081616c65bbc134acdf30666b" resname="report:: 3 - Type de report" approved="yes"> <source>report:: 3 - Type de report</source> - <target state="translated">3 - Type de report</target> - <jms:reference-file line="67">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="115">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="171">web/report/report_layout_child.html.twig</jms:reference-file> + <target state="translated">Type de rapport</target> + <jms:reference-file line="11">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="36">web/report/report_layout_child.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="bbf54f30e0791db4dc06243d939468640ddb6cc5" resname="report:: 4 - Fields" approved="yes"> + <source>report:: 4 - Fields</source> + <target state="translated">Champs exportés</target> + <jms:reference-file line="62">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="67272ff4fb66e47f6a5e55c7171e994c69b6f162" resname="report:: Au (date)" approved="yes"> <source>report:: Au (date)</source> <target state="translated">Au</target> - <jms:reference-file line="12">web/report/form_date_and_base.html.twig</jms:reference-file> - <jms:reference-file line="9">web/report/ajax_report_dashboard.html.twig</jms:reference-file> + <jms:reference-file line="15">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> <trans-unit id="10f8b6e84219c04ef9961e1710b17e0904746fab" resname="report:: Connexion" approved="yes"> <source>report:: Connexion</source> <target state="translated">Connexions</target> <jms:reference-file line="666">classes/module/report.php</jms:reference-file> - <jms:reference-file line="8">web/report/report_layout.html.twig</jms:reference-file> - <jms:reference-file line="59">web/report/ajax_data_content.html.twig</jms:reference-file> - <jms:reference-file line="108">web/report/ajax_data_content.html.twig</jms:reference-file> - <jms:reference-file line="26">web/report/all_content.html.twig</jms:reference-file> - <jms:reference-file line="8">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="13">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="17">web/report/chart.html.twig</jms:reference-file> - <jms:reference-file line="43">web/report/chart.html.twig</jms:reference-file> + <jms:reference-file line="9">web/report/report_layout.html.twig</jms:reference-file> + <jms:reference-file line="25">web/report/all_content.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="70a2e2ecaac5729f9c103110e2f37f915c722526" resname="report:: Cumul telechargements & connexions" approved="yes"> - <source><![CDATA[report:: Cumul telechargements & connexions]]></source> - <target state="translated">Téléchargements et connexions</target> - <jms:reference-file line="25">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="6543d1226df7dd63e1df3071abb9e42be332413a" resname="report:: Dashboard" approved="yes"> - <source>report:: Dashboard</source> - <target state="translated">Tableau de bord</target> - <jms:reference-file line="7">web/report/report_layout.html.twig</jms:reference-file> - <jms:reference-file line="2">web/report/ajax_dashboard_content.html.twig</jms:reference-file> - <jms:reference-file line="21">web/report/ajax_report_dashboard.html.twig</jms:reference-file> + <trans-unit id="afa9685c95f7dff29cb2ad048da368c6e3dbadbc" resname="report:: Databox content" approved="yes"> + <source>report:: Databox content</source> + <target state="translated">Contenus</target> + <jms:reference-file line="11">web/report/report_layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="afa00f7f0e9cf982c242e1a53235360b4aac707d" resname="report:: Detail des connexions" approved="yes"> <source>report:: Detail des connexions</source> @@ -11706,30 +11761,17 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="b00438fba3b211fc47deec5e6ccae27ef9d7c216" resname="report:: Du (date)" approved="yes"> <source>report:: Du (date)</source> <target state="translated">Du</target> - <jms:reference-file line="6">web/report/form_date_and_base.html.twig</jms:reference-file> - <jms:reference-file line="5">web/report/ajax_report_dashboard.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="de563e5406946f25c4f6cb63311dbea280ef5cc5" resname="report:: Enlever le filtre" approved="yes"> - <source>report:: Enlever le filtre</source> - <target state="translated">Enlever le filtre</target> - <jms:reference-file line="5">web/report/colFilter.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="7d66db3bd34ddc505fd6721d4ffabfa19c4f005f" resname="report:: Grouper par" approved="yes"> - <source>report:: Grouper par</source> - <target state="translated">Grouper par</target> - <jms:reference-file line="76">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="119">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="5">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7f326bdbbc7dec4c7f61a0e4b22465d0479c0d64" resname="report:: Heures" approved="yes"> <source>report:: Heures</source> <target state="translated">Heures</target> - <jms:reference-file line="33">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="32">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5ae2efd275a14a59f28c95f331168286f11197cf" resname="report:: IP" approved="yes"> <source>report:: IP</source> <target state="translated">IP</target> <jms:reference-file line="72">module/report/filter.php</jms:reference-file> - <jms:reference-file line="154">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="6b4276e87d8e054cabe49ed3b9bf7ee9f6599cba" resname="report:: Information sur l'enregistrement numero %number%" approved="yes"> <source>report:: Information sur l'enregistrement numero %number%</source> @@ -11751,97 +11793,37 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <target state="translated">Information sur les utilisateurs correspondant à %critere%</target> <jms:reference-file line="415">module/report/nav.php</jms:reference-file> </trans-unit> - <trans-unit id="449ab664cb3a86585e7942d12693cfe75ca80e9b" resname="report:: Les questions les plus posees" approved="yes"> - <source>report:: Les questions les plus posees</source> - <target state="translated">Questions les plus posées</target> - <jms:reference-file line="181">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="67">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> + <trans-unit id="d61b0b1a419a5b37db8576e1072307a5503dba79" resname="report:: Phraseanet report" approved="yes"> + <source>report:: Phraseanet report</source> + <target state="translated">Phraseanet Report</target> + <jms:reference-file line="6">web/report/report_layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a5c2d01ec9cd2716cb44a02ba1851d82de40aa8a" resname="report:: Plateforme" approved="yes"> <source>report:: Plateforme</source> <target state="translated">Plateforme</target> <jms:reference-file line="160">module/report/nav.php</jms:reference-file> </trans-unit> - <trans-unit id="7745037fc8189172f2a349bed3b123b9ac4222df" resname="report:: Utilisateurs les plus actifs" approved="yes"> - <source>report:: Utilisateurs les plus actifs</source> - <target state="translated">Utilisateurs les plus actifs</target> - <jms:reference-file line="31">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="37">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="43">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="49">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="89e1f53ec411b155207ca8489388aafffe430392" resname="report:: Volumetrie des questions posees sur %home_title%" approved="yes"> - <source>report:: Volumetrie des questions posees sur %home_title%</source> - <target state="translated">Volumétrie des questions posées sur %home_title%</target> - <jms:reference-file line="41">web/report/dashboard_macro.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="0deee30b968da91f95a0daf3b988fb8613bcf4f5" resname="report:: activite" approved="yes"> <source>report:: activite</source> <target state="translated">Activité</target> <jms:reference-file line="672">classes/module/report.php</jms:reference-file> - <jms:reference-file line="217">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="286">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="285">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="80">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="123">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="b6c3ea1902c9399e1093a448712995eae208adab" resname="report:: activite document ajoute" approved="yes"> - <source>report:: activite document ajoute</source> - <target state="translated">Documents ajoutés</target> - <jms:reference-file line="17">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="0d7f08a0cf0531e4e366cc80a773e2f9ad1b5e22" resname="report:: activite document edite" approved="yes"> - <source>report:: activite document edite</source> - <target state="translated">Documents édités</target> - <jms:reference-file line="21">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="ca241fec577d1f3f2ea4f18ba45d9c0e3fba73a4" resname="report:: activite du site" approved="yes"> - <source>report:: activite du site</source> - <target state="translated">Activité du site</target> - <jms:reference-file line="189">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="10">web/report/report_layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a4bdfeb6e1b025de825e5a05e564a3c58622ffe5" resname="report:: activite par heure" approved="yes"> <source>report:: activite par heure</source> <target state="translated">Activité par heure (moyenne)</target> <jms:reference-file line="96">module/report/activity.php</jms:reference-file> - <jms:reference-file line="7">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="ea76b4d0267c77fa551c829102db6366204f4b52" resname="report:: activite par jour" approved="yes"> - <source>report:: activite par jour</source> - <target state="translated">Activité par jour</target> - <jms:reference-file line="12">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="6">web/report/chart.html.twig</jms:reference-file> - <jms:reference-file line="30">web/report/chart.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="395a5695445d90bc2b53cd146a4aeb877a473155" resname="report:: adresse" approved="yes"> - <source>report:: adresse</source> - <target state="translated">Adresse</target> - <jms:reference-file line="42">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="432">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="82c2454cb127671a7f8bfb0dd6b8140affa1d868" resname="report:: ajoute" approved="yes"> - <source>report:: ajoute</source> - <target state="translated">Ajouté</target> - <jms:reference-file line="196">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="48808e405192603e079ef1ccbbc1a1df98e317bd" resname="report:: collections" approved="yes"> <source>report:: collections</source> <target state="translated">Collections</target> - <jms:reference-file line="96">module/report/filter.php</jms:reference-file> <jms:reference-file line="665">classes/module/report.php</jms:reference-file> - <jms:reference-file line="283">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="53">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="282">Controller/Report/InformationController.php</jms:reference-file> + <jms:reference-file line="96">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="6a1193a920be0725a4560344ca10db36147ffd34" resname="report:: commentaire" approved="yes"> <source>report:: commentaire</source> <target state="translated">Commentaire</target> - <jms:reference-file line="99">module/report/filter.php</jms:reference-file> <jms:reference-file line="667">classes/module/report.php</jms:reference-file> - <jms:reference-file line="284">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="54">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="283">Controller/Report/InformationController.php</jms:reference-file> + <jms:reference-file line="99">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="51f822380b654c4fc5adb28eb0643f37aac0d89b" resname="report:: copyright" approved="yes"> <source>report:: copyright</source> @@ -11851,184 +11833,74 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="cf3a5321aa85f0706b89021206bd8cd1ad57da54" resname="report:: date" approved="yes"> <source>report:: date</source> <target state="translated">Date</target> - <jms:reference-file line="69">module/report/filter.php</jms:reference-file> <jms:reference-file line="669">classes/module/report.php</jms:reference-file> <jms:reference-file line="670">classes/module/report.php</jms:reference-file> - <jms:reference-file line="153">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="215">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="280">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="33">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="46">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="50">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="58">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="272">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="279">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="0fa74ac37777e4846a6b7521f508fe82f30fbc28" resname="report:: document" approved="yes"> - <source>report:: document</source> - <target state="translated">Documents</target> - <jms:reference-file line="31">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="270">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="292">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="193">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="56">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> + <jms:reference-file line="69">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="e125eaf6fca2110f86b6ebba60371a4875c87e03" resname="report:: document ajoute" approved="yes"> <source>report:: document ajoute</source> <target state="translated">Documents ajoutés</target> <jms:reference-file line="46">module/report/add.php</jms:reference-file> </trans-unit> - <trans-unit id="3b1da6e09ede169472dc0f7c993a2244b370f5f0" resname="report:: documents les plus telecharges" approved="yes"> - <source>report:: documents les plus telecharges</source> - <target state="translated">Documents les plus téléchargés</target> - <jms:reference-file line="55">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="562beb1d0fc9d02c136608897f50040ba8227991" resname="report:: edite" approved="yes"> - <source>report:: edite</source> - <target state="translated">Edité</target> - <jms:reference-file line="197">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="3d92b0d797813422ee66dbddda64e6f1f084b371" resname="report:: edited documents" approved="yes"> <source>report:: edited documents</source> <target state="translated">Documents édités</target> <jms:reference-file line="46">module/report/edit.php</jms:reference-file> </trans-unit> - <trans-unit id="98d23f79f60fb1e256100832301d040710dea789" resname="report:: email" approved="yes"> - <source>report:: email</source> - <target state="translated">E-mail</target> - <jms:reference-file line="41">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="431">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> <trans-unit id="fd08db9190c0edd6acd0ad385708b302e8c972ea" resname="report:: fichier" approved="yes"> <source>report:: fichier</source> <target state="translated">Fichier</target> <jms:reference-file line="681">classes/module/report.php</jms:reference-file> - <jms:reference-file line="353">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="b64c2533c7b357659df3ea9dfb02aec00e95283f" resname="report:: fonction" approved="yes"> <source>report:: fonction</source> <target state="translated">Fonction</target> <jms:reference-file line="671">classes/module/report.php</jms:reference-file> - <jms:reference-file line="216">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="285">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="284">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="78">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="121">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="7371da035f95b6a29593e199feaae2e2882ef328" resname="report:: historique des connexions" approved="yes"> - <source>report:: historique des connexions</source> - <target state="translated">Historique des connexions</target> - <jms:reference-file line="88">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="ec7fa3164a52b7983e9ca8ac683dbcf279b1ca4a" resname="report:: historique des questions" approved="yes"> - <source>report:: historique des questions</source> - <target state="translated">Historique des questions</target> - <jms:reference-file line="108">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="bb8aaa1753d6ae6e697f9ecbe83939c4c1e274f9" resname="report:: historique des telechargements" approved="yes"> - <source>report:: historique des telechargements</source> - <target state="translated">Historique des téléchargements</target> - <jms:reference-file line="98">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="400">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="8ebc8d8e0aeeb34323009f7ac75fdd9f42763ba4" resname="report:: identifiant" approved="yes"> - <source>report:: identifiant</source> - <target state="translated">Identifiant</target> - <jms:reference-file line="39">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="429">Controller/Report/InformationController.php</jms:reference-file> </trans-unit> <trans-unit id="48b9186d83e31f25e35119e7be71d4e2210c1954" resname="report:: jour" approved="yes"> <source>report:: jour</source> <target state="translated">Jour</target> - <jms:reference-file line="289">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="32">web/report/all_content.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="dc0c59066058c42d9fafce659f68c2219c40953f" resname="report:: module" approved="yes"> - <source>report:: module</source> - <target state="translated">Module</target> - <jms:reference-file line="432">Controller/Report/RootController.php</jms:reference-file> + <jms:reference-file line="31">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3aa60d109af43ca18e495aec94997a7885ce9029" resname="report:: modules" approved="yes"> <source>report:: modules</source> <target state="translated">Modules</target> <jms:reference-file line="339">module/report/nav.php</jms:reference-file> <jms:reference-file line="75">module/report/filter.php</jms:reference-file> - <jms:reference-file line="155">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="47">Controller/Report/InformationController.php</jms:reference-file> </trans-unit> <trans-unit id="639e7baf3ce4f23e399e47a2f29958adaa26f8ba" resname="report:: navigateur" approved="yes"> <source>report:: navigateur</source> <target state="translated">Navigateur</target> <jms:reference-file line="103">module/report/nav.php</jms:reference-file> - <jms:reference-file line="411">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="4f5626f82ffbe13488f3fc8a706c90e52d7845fb" resname="report:: navigateurs et plateforme" approved="yes"> <source>report:: navigateurs et plateforme</source> <target state="translated">Navigateurs et Plateformes</target> <jms:reference-file line="277">module/report/nav.php</jms:reference-file> - <jms:reference-file line="417">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="58caf40106dec978fc4988c3bd7893b38ede9d83" resname="report:: nom" approved="yes"> - <source>report:: nom</source> - <target state="translated">Nom</target> - <jms:reference-file line="40">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="430">Controller/Report/InformationController.php</jms:reference-file> </trans-unit> <trans-unit id="da20260fb0ffb7f91e8659e3ccf8feb8ee778993" resname="report:: nombre" approved="yes"> <source>report:: nombre</source> <target state="translated">Nombre</target> <jms:reference-file line="675">classes/module/report.php</jms:reference-file> - <jms:reference-file line="412">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="418">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="423">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="428">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="433">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="75">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="227">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="138">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="189">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="99117f398785adcf45e8499ad8d1443c621ca4e8" resname="report:: nombre de documents" approved="yes"> - <source>report:: nombre de documents</source> - <target state="translated">Nombre de documents</target> - <jms:reference-file line="83">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="e29ea3e14febc313f90283459d28f04a05ec19a7" resname="report:: nombre de preview" approved="yes"> - <source>report:: nombre de preview</source> - <target state="translated">Nombre de sous-définitions</target> - <jms:reference-file line="84">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="52a2c7c51c95719594e526c51995fec2cff55c9a" resname="report:: nombre de reponses" approved="yes"> - <source>report:: nombre de reponses</source> - <target state="translated">Nombre de réponses</target> - <jms:reference-file line="139">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="190">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="93456bfa01cd90120e67a0eca305d3f7a94a3842" resname="report:: nombre de vue" approved="yes"> - <source>report:: nombre de vue</source> - <target state="translated">Nombre de vues</target> - <jms:reference-file line="80">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="26d00286d5aecf7cfda0e1395c4208440409b8c0" resname="report:: non-renseigne" approved="yes"> <source>report:: non-renseigne</source> <target state="translated">Non-Renseigné</target> <jms:reference-file line="110">module/report/add.php</jms:reference-file> - <jms:reference-file line="161">module/report/download.php</jms:reference-file> - <jms:reference-file line="464">module/report/nav.php</jms:reference-file> - <jms:reference-file line="110">module/report/connexion.php</jms:reference-file> - <jms:reference-file line="118">module/report/connexion.php</jms:reference-file> - <jms:reference-file line="123">module/report/connexion.php</jms:reference-file> <jms:reference-file line="99">module/report/question.php</jms:reference-file> + <jms:reference-file line="161">module/report/download.php</jms:reference-file> <jms:reference-file line="411">module/report/activity.php</jms:reference-file> <jms:reference-file line="508">module/report/activity.php</jms:reference-file> <jms:reference-file line="520">module/report/activity.php</jms:reference-file> - <jms:reference-file line="60">module/report/filter.php</jms:reference-file> + <jms:reference-file line="110">module/report/connexion.php</jms:reference-file> + <jms:reference-file line="118">module/report/connexion.php</jms:reference-file> + <jms:reference-file line="123">module/report/connexion.php</jms:reference-file> <jms:reference-file line="117">module/report/push.php</jms:reference-file> - <jms:reference-file line="117">module/report/validate.php</jms:reference-file> - <jms:reference-file line="114">module/report/edit.php</jms:reference-file> <jms:reference-file line="117">module/report/sent.php</jms:reference-file> - <jms:reference-file line="9">web/report/colFilter.html.twig</jms:reference-file> - <jms:reference-file line="15">web/report/colFilter.html.twig</jms:reference-file> + <jms:reference-file line="117">module/report/validate.php</jms:reference-file> + <jms:reference-file line="464">module/report/nav.php</jms:reference-file> + <jms:reference-file line="114">module/report/edit.php</jms:reference-file> + <jms:reference-file line="60">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="07c06c0cac8bd3e3507a72d6cb7fa1ee23a6bf13" resname="report:: page d'accueil" approved="yes"> <source>report:: page d'accueil</source> @@ -12042,68 +11914,15 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <target state="translated">par %user_infos%</target> <jms:reference-file line="61">prod/preview/short_history.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="a3817f71ee24b8f9847baa3f3d2088e43114faff" resname="report:: par utilisateurs" approved="yes"> - <source>report:: par utilisateurs</source> - <target state="translated">Par utilisateur</target> - <jms:reference-file line="130">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="45882e1904416b4c1e53b2d47a6f192e4c0e1c14" resname="report:: pays" approved="yes"> <source>report:: pays</source> <target state="translated">Pays</target> <jms:reference-file line="673">classes/module/report.php</jms:reference-file> - <jms:reference-file line="218">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="287">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="286">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="81">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="124">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="eda7d4be8f5577170dd7f9c72b3f82d265b93637" resname="report:: plateforme" approved="yes"> - <source>report:: plateforme</source> - <target state="translated">Plateforme</target> - <jms:reference-file line="422">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="0e1edcbd4dbff06db1c2530bb1b8ea321fa6c86d" resname="report:: poids" approved="yes"> - <source>report:: poids</source> - <target state="translated">Poids</target> - <jms:reference-file line="36">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="275">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="bed7cfb242a47b51f45d31d6f7534f53e4343f66" resname="report:: poids document" approved="yes"> - <source>report:: poids document</source> - <target state="translated">Poids des documents téléchargés</target> - <jms:reference-file line="45">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="cc3a07e0f69d3e9fc7067b6053727ae59f701f76" resname="report:: poids preview" approved="yes"> - <source>report:: poids preview</source> - <target state="translated">Poids des sous-définitions téléchargées</target> - <jms:reference-file line="51">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="74">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="eb41f1fd9d2f3c6bb5ab0cb3c13b59eff29a2d99" resname="report:: pourcentage" approved="yes"> <source>report:: pourcentage</source> <target state="translated">Pourcentage</target> <jms:reference-file line="676">classes/module/report.php</jms:reference-file> - <jms:reference-file line="413">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="419">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="424">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="429">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="434">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="e8f9a2fcac1f24e878349bd855fd00cd2014dd1d" resname="report:: preview" approved="yes"> - <source>report:: preview</source> - <target state="translated">Sous-définitions</target> - <jms:reference-file line="291">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="62">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="14ea0ad72add93f38be10e87f3b4b08c58e31936" resname="report:: preview les plus telecharges" approved="yes"> - <source>report:: preview les plus telecharges</source> - <target state="translated">Sous-définitions les plus téléchargées</target> - <jms:reference-file line="61">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="59bf65358205d118e78e021aa3a14a066612beb3" resname="report:: pushe" approved="yes"> - <source>report:: pushe</source> - <target state="translated">Poussé</target> - <jms:reference-file line="195">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2fa04c59764b5ce330158195b45e3f0f71c430b1" resname="report:: pushed documents" approved="yes"> <source>report:: pushed documents</source> @@ -12113,15 +11932,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="8df95f5dffb705018ebae64a4850f1f93bafc098" resname="report:: question" approved="yes"> <source>report:: question</source> <target state="translated">Questions</target> + <jms:reference-file line="668">classes/module/report.php</jms:reference-file> <jms:reference-file line="43">module/report/question.php</jms:reference-file> <jms:reference-file line="102">module/report/filter.php</jms:reference-file> - <jms:reference-file line="668">classes/module/report.php</jms:reference-file> - <jms:reference-file line="214">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="57">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="137">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="188">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="69">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="73">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b9ef4ecd16724b3218cf46f9956b8b157498c3a1" resname="report:: questions" approved="yes"> <source>report:: questions</source> @@ -12137,55 +11950,27 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <source>report:: questions sans reponses</source> <target state="translated">Questions sans réponses</target> <jms:reference-file line="212">module/report/activity.php</jms:reference-file> - <jms:reference-file line="185">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8fb18670b89f5cefede425401428a70189f654ea" resname="report:: record id" approved="yes"> <source>report:: record id</source> <target state="translated">recordId</target> - <jms:reference-file line="90">module/report/filter.php</jms:reference-file> <jms:reference-file line="678">classes/module/report.php</jms:reference-file> - <jms:reference-file line="281">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="351">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="32">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="51">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="271">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="dafda7f4df37c3e876cc478aa3b5733e1ee72bba" resname="report:: recordid" approved="yes"> - <source>report:: recordid</source> - <target state="translated">recordId</target> - <jms:reference-file line="147">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="90">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="a11e1e1373aae28668cdf7a08486e767283bbaa2" resname="report:: resolution" approved="yes"> <source>report:: resolution</source> <target state="translated">Définition</target> <jms:reference-file line="217">module/report/nav.php</jms:reference-file> - <jms:reference-file line="427">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="c137593838c7cdfab2c2e386539151b90b4e45ed" resname="report:: site" approved="yes"> - <source>report:: site</source> - <target state="translated">Site</target> - <jms:reference-file line="79">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="4b47102c55ce755def67c13bd17568180f253c83" resname="report:: site d'ou les photo sont les plus consultees" approved="yes"> - <source>report:: site d'ou les photo sont les plus consultees</source> - <target state="translated">Site d'où les documents sont les plus consultés (Référent)</target> - <jms:reference-file line="78">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="44139fc886784bf1efa8198f67265ce6e84a286d" resname="report:: societe" approved="yes"> <source>report:: societe</source> <target state="translated">Société</target> <jms:reference-file line="674">classes/module/report.php</jms:reference-file> - <jms:reference-file line="219">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="288">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="287">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="79">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="122">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a36015011c70e326dcef4351b2aa63355e68ee38" resname="report:: taille" approved="yes"> <source>report:: taille</source> <target state="translated">Taille</target> <jms:reference-file line="683">classes/module/report.php</jms:reference-file> - <jms:reference-file line="355">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="c2382e7d59ab82111739acaea80c65d01aa5f248" resname="report:: telechargement" approved="yes"> <source>report:: telechargement</source> @@ -12196,54 +11981,17 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <source>report:: telechargements</source> <target state="translated">Téléchargements</target> <jms:reference-file line="44">module/report/download.php</jms:reference-file> - <jms:reference-file line="350">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="9">web/report/report_layout.html.twig</jms:reference-file> - <jms:reference-file line="26">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="57">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="63">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="26297a76b38e5df1ac25352f5f3063349e94992b" resname="report:: telechargements document" approved="yes"> - <source>report:: telechargements document</source> - <target state="translated">Documents téléchargés</target> - <jms:reference-file line="33">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> + <jms:reference-file line="10">web/report/report_layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="338e3b26caf39e2f5a23b29047a353b99655817d" resname="report:: telechargements par jour" approved="yes"> <source>report:: telechargements par jour</source> <target state="translated">Téléchargements par jour</target> <jms:reference-file line="269">module/report/activity.php</jms:reference-file> </trans-unit> - <trans-unit id="46b1963bc2dee84ba3e8dbe3aa1beb05e5f1bc8c" resname="report:: telechargements preview" approved="yes"> - <source>report:: telechargements preview</source> - <target state="translated">Sous-définitions téléchargées</target> - <jms:reference-file line="39">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="fdf87efee0312793d6f07abe5dfd8017a8d2cdab" resname="report:: telephone" approved="yes"> - <source>report:: telephone</source> - <target state="translated">Téléphone</target> - <jms:reference-file line="43">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="433">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="94c22d8bf4371687e036c83c828703cf00887ce8" resname="report:: titre" approved="yes"> - <source>report:: titre</source> - <target state="translated">Titre</target> - <jms:reference-file line="35">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="274">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="1d4c2c8fdf71cb515e7cff4e311e6b253e85bd64" resname="report:: total des telechargements" approved="yes"> - <source>report:: total des telechargements</source> - <target state="translated">Total des téléchargements</target> - <jms:reference-file line="290">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="f82c48bb319dc1043607f84df4058022eb8efe09" resname="report:: toutes les questions" approved="yes"> - <source>report:: toutes les questions</source> - <target state="translated">Historique des questions</target> - <jms:reference-file line="177">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="83a8ccb59af870b7f987c86298c4202245b45065" resname="report:: type" approved="yes"> <source>report:: type</source> <target state="translated">Définition</target> <jms:reference-file line="682">classes/module/report.php</jms:reference-file> - <jms:reference-file line="354">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="96383afe0eb9f0bfa7c5675c43cf4c91ba574d01" resname="report:: type d'action" approved="yes"> <source>report:: type d'action</source> @@ -12254,31 +12002,12 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <source>report:: utilisateur</source> <target state="translated">Utilisateur</target> <jms:reference-file line="664">classes/module/report.php</jms:reference-file> - <jms:reference-file line="213">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="446">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="82">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="91205c26aeb3508157493bd6061deaa0f88472c1" resname="report:: utilisateurs" approved="yes"> - <source>report:: utilisateurs</source> - <target state="translated">Utilisateurs</target> - <jms:reference-file line="279">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="280">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="32">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="38">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="44">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="50">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="68">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="891b8069620627c198fe372a8b49534f99eea2c3" resname="report:: validated documents" approved="yes"> <source>report:: validated documents</source> <target state="translated">Documents validés</target> <jms:reference-file line="46">module/report/validate.php</jms:reference-file> </trans-unit> - <trans-unit id="9eb84fccd4c8c325b4e18275f2657b48a8734355" resname="report:: valide" approved="yes"> - <source>report:: valide</source> - <target state="translated">Validé</target> - <jms:reference-file line="198">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="1d900ae5b08909338f17350122691995bf9174b9" resname="report:: visualiseur cooliris" approved="yes"> <source>report:: visualiseur cooliris</source> <target state="translated">Visualiseur Cooliris</target> @@ -12291,11 +12020,6 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <target state="translated">Changement de collection vers : %coll_name%</target> <jms:reference-file line="27">prod/preview/short_history.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="19b4d8a8be30b7ffef27c51a9821d3d6415e9f2d" resname="report::Connexion" approved="yes"> - <source>report::Connexion</source> - <target state="translated">Connexions</target> - <jms:reference-file line="27">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="419829b982162d12659c70a94a0aa6aafaa8df13" resname="report::Connexions" approved="yes"> <source>report::Connexions</source> <target state="translated">Connexions</target> @@ -12319,8 +12043,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="339f9743dbb91b02034bec976942c35a8323a473" resname="report::Heures" approved="yes"> <source>report::Heures</source> <target state="translated">Heures</target> - <jms:reference-file line="58">web/report/ajax_data_content.html.twig</jms:reference-file> - <jms:reference-file line="27">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="26">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0f6f1e90647a3d5f5d7e170268881acc65f33f59" resname="report::Impression des formats : %format%" approved="yes"> <source>report::Impression des formats : %format%</source> @@ -12335,17 +12058,17 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="04141c12be7f11b46805e97c0f399934ed84d614" resname="report::Nombre de connexions" approved="yes"> <source>report::Nombre de connexions</source> <target state="translated">Nombre de connexions</target> - <jms:reference-file line="31">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="30">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="605f8acc726fd40f1d7112e794cae6f51970b6ad" resname="report::Nombre de document ajoute" approved="yes"> <source>report::Nombre de document ajoute</source> <target state="translated">Nombre de documents ajoutés</target> - <jms:reference-file line="34">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="33">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8a138bd895ef7905fd7f338cf0854b0cbe0c8f03" resname="report::Nombre de document edite" approved="yes"> <source>report::Nombre de document edite</source> <target state="translated">Nombre de documents édités</target> - <jms:reference-file line="35">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="34">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="acce57a36feb4a2af81035dcb6c878555dc131bd" resname="report::Publication de %dest%" approved="yes"> <source>report::Publication de %dest%</source> @@ -12382,56 +12105,37 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <source>report::activite</source> <target state="translated">Activité</target> <jms:reference-file line="81">module/report/filter.php</jms:reference-file> - <jms:reference-file line="157">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="002c70f6ab109c3160dc534f93c03d56b342cf10" resname="report::ajout du documentt" approved="yes"> <source>report::ajout du documentt</source> <target state="translated">Ajout du document</target> <jms:reference-file line="53">prod/preview/short_history.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="4d3fc1f99d957aa50573f067f78ad75cd7ef9842" resname="report::aucune precision" approved="yes"> - <source>report::aucune precision</source> - <target state="translated">Aucun filtre</target> - <jms:reference-file line="145">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="de28bcec9376030978303c519bd3d5ef776ea7bd" resname="report::fonction" approved="yes"> <source>report::fonction</source> <target state="translated">Fonction</target> <jms:reference-file line="78">module/report/filter.php</jms:reference-file> - <jms:reference-file line="156">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="b04965bc5402acc4541bf683229cbd0af38dce6e" resname="report::la description contient" approved="yes"> - <source>report::la description contient</source> - <target state="translated">la description contient</target> - <jms:reference-file line="146">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="20f07835433875d2e66adcb6a4203981359500b7" resname="report::pays" approved="yes"> <source>report::pays</source> <target state="translated">Pays</target> <jms:reference-file line="84">module/report/filter.php</jms:reference-file> - <jms:reference-file line="158">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="afacc25a02d9dee7b2e85d3d86835ff4dba28822" resname="report::societe" approved="yes"> <source>report::societe</source> <target state="translated">Société</target> <jms:reference-file line="87">module/report/filter.php</jms:reference-file> - <jms:reference-file line="159">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="3fc0f2a0d459b0ae67244939abeda1868f5b1a51" resname="report::supression du document" approved="yes"> <source>report::supression du document</source> <target state="translated">Suppression du document</target> <jms:reference-file line="51">prod/preview/short_history.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="f80375b1b5a6632f3a2db88b757e1734865ad753" resname="report::version" approved="yes"> - <source>report::version</source> - <target state="translated">Version</target> - <jms:reference-file line="226">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> <trans-unit id="386c42eb4d167d87be7f7f68faf1aafce1be237e" resname="reportage" approved="yes"> <source>reportage</source> <target state="translated">Reportage</target> - <jms:reference-file line="258">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> - <jms:reference-file line="274">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> + <jms:reference-file line="282">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> + <jms:reference-file line="298">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> </trans-unit> <trans-unit id="55655edb5e7b23c00fe3fe0509be09e674138da6" resname="resultat numero %number%" approved="yes"> <source>resultat numero %number%</source> @@ -12471,7 +12175,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="584d9f9b8a0c51aa1805a1c0ed427c366d11ea5e" resname="screenshot video" approved="yes"> <source>screenshot video</source> <target state="translated">Capture d'écran vidéo</target> - <jms:reference-file line="99">actions/Tools/videoEditor.html.twig</jms:reference-file> + <jms:reference-file line="112">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="fe29f1a35e814c87a21282378424df4866529d1e" resname="select at least one user" approved="yes"> <source>select at least one user</source> @@ -12589,9 +12293,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <target state="new">setup::custom-link:title-custom-link</target> <jms:reference-file line="69">web/admin/setup.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="5107f9819cd4c0812c1d78cc07d24aff304c58fa" resname="share::share-record: advance"> + <trans-unit id="5107f9819cd4c0812c1d78cc07d24aff304c58fa" resname="share::share-record: advance" approved="yes"> <source>share::share-record: advance</source> - <target state="new">share::share-record: advance</target> + <target state="translated">Réglage avancé</target> <jms:reference-file line="9">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f51d8ca24dc67572beccf115c79671ba1c3f545a" resname="share::share-record: select-shared-def"> @@ -12663,12 +12367,12 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="5e97a32a49cefaf5c4eb26080caf50d7ac7ea102" resname="task::archive:Archivage" approved="yes"> <source>task::archive:Archivage</source> <target state="translated">Archive dans la collection</target> - <jms:reference-file line="39">TaskManager/Job/ArchiveJob.php</jms:reference-file> + <jms:reference-file line="40">TaskManager/Job/ArchiveJob.php</jms:reference-file> </trans-unit> <trans-unit id="b94199880758a342c5de52be020699d9b789a7a2" resname="task::archive:Archiving files found into a 'hotfolder'" approved="yes"> <source>task::archive:Archiving files found into a 'hotfolder'</source> <target state="translated">Archiver les fichiers déposés dans le dossier</target> - <jms:reference-file line="55">TaskManager/Job/ArchiveJob.php</jms:reference-file> + <jms:reference-file line="56">TaskManager/Job/ArchiveJob.php</jms:reference-file> </trans-unit> <trans-unit id="af67e20e5e01d46ece2e0eb262b1b0bb9df679d4" resname="task::archive:archivage sur base/collection/" approved="yes"> <source>task::archive:archivage sur base/collection/</source> @@ -12734,8 +12438,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="b8af196a1703cd1c3079eebef88a1b540ede06ea" resname="task::ftp:Status about your FTP transfert from %application% to %server%" approved="yes"> <source>task::ftp:Status about your FTP transfert from %application% to %server%</source> <target state="translated">Etat du transfert FTP depuis l'application %application% vers le serveur %server%</target> - <jms:reference-file line="40">Notification/Mail/MailSuccessFTPReceiver.php</jms:reference-file> <jms:reference-file line="40">Notification/Mail/MailSuccessFTPSender.php</jms:reference-file> + <jms:reference-file line="40">Notification/Mail/MailSuccessFTPReceiver.php</jms:reference-file> </trans-unit> <trans-unit id="3442bca4992e5cd06a67f05beebf5721383d1653" resname="task::ftp:TENTATIVE no %number%, %date%" approved="yes"> <source>task::ftp:TENTATIVE no %number%, %date%</source> @@ -12780,8 +12484,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="c8eadb101df19fb4960c791cf1afaa49d3516feb" resname="task::ftp:proxy" approved="yes"> <source>task::ftp:proxy</source> <target state="translated">Proxy</target> - <jms:reference-file line="5">task-manager/task-editor/ftp-pull.html.twig</jms:reference-file> <jms:reference-file line="5">task-manager/task-editor/ftp.html.twig</jms:reference-file> + <jms:reference-file line="5">task-manager/task-editor/ftp-pull.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d50701eb37a2e5b7dfe3358ba91ff9a1cc6f10ef" resname="task::ftp:proxy password" approved="yes"> <source>task::ftp:proxy password</source> @@ -12791,8 +12495,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="a7e5c84ff2404f76423afe64d0f5b8fbea07c024" resname="task::ftp:proxy port" approved="yes"> <source>task::ftp:proxy port</source> <target state="translated">Port</target> - <jms:reference-file line="11">task-manager/task-editor/ftp-pull.html.twig</jms:reference-file> <jms:reference-file line="11">task-manager/task-editor/ftp.html.twig</jms:reference-file> + <jms:reference-file line="11">task-manager/task-editor/ftp-pull.html.twig</jms:reference-file> </trans-unit> <trans-unit id="17d927a070b462263321072111c64cc0505c9d14" resname="task::ftp:proxy user" approved="yes"> <source>task::ftp:proxy user</source> @@ -12887,8 +12591,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="9d5da9a8f62b8053385235889e7d7994ebfc1559" resname="thesaurus:: Lier la branche de thesaurus" approved="yes"> <source>thesaurus:: Lier la branche de thesaurus</source> <target state="translated">Lier la branche</target> - <jms:reference-file line="5">web/thesaurus/link-field-step3.html.twig</jms:reference-file> <jms:reference-file line="5">web/thesaurus/link-field-step2.html.twig</jms:reference-file> + <jms:reference-file line="5">web/thesaurus/link-field-step3.html.twig</jms:reference-file> </trans-unit> <trans-unit id="416134a1966f12f8d23f9f54f3cc32ea43ef3e46" resname="thesaurus:: Lier la branche de thesaurus au champ" approved="yes"> <source>thesaurus:: Lier la branche de thesaurus au champ</source> @@ -12903,13 +12607,13 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="227338ab622537da92490cedc6709de0b9122e56" resname="thesaurus:: Nouveau synonyme" approved="yes"> <source>thesaurus:: Nouveau synonyme</source> <target state="translated">Nouveau synonyme</target> + <jms:reference-file line="985">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="5">web/thesaurus/new-term.html.twig</jms:reference-file> - <jms:reference-file line="977">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d6bec8860c3453260869cea4fb043fac543cf724" resname="thesaurus:: Nouveau terme" approved="yes"> <source>thesaurus:: Nouveau terme</source> <target state="translated">Nouveau terme</target> - <jms:reference-file line="977">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="985">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ef0a054e6da228e6ad009d469c4bdf31b1de7999" resname="thesaurus:: Nouveau terme specifique" approved="yes"> <source>thesaurus:: Nouveau terme specifique</source> @@ -12924,7 +12628,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="33df70d7fa528a31071e11d1b987b49dc947ce16" resname="thesaurus:: Supprimer cette branche ?&#10;(les termes concernes remonteront en candidats a la prochaine indexation)" approved="yes"> <source><![CDATA[thesaurus:: Supprimer cette branche ? (les termes concernes remonteront en candidats a la prochaine indexation)]]></source> <target state="translated"><![CDATA[Supprimer cette branche ? (les termes concernés remonteront en candidats à la prochaine indexation)]]></target> - <jms:reference-file line="474">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="482">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="660310a4372167fced06ac64d118d8019c456c02" resname="thesaurus:: Vous n'avez acces a aucune base" approved="yes"> <source>thesaurus:: Vous n'avez acces a aucune base</source> @@ -12980,14 +12684,14 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="ac2f261b9d9226594280e898802a6fdac51360d3" resname="thesaurus:: corbeille" approved="yes"> <source>thesaurus:: corbeille</source> <target state="translated">Stock</target> - <jms:reference-file line="1667">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> - <jms:reference-file line="1813">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> - <jms:reference-file line="2906">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> + <jms:reference-file line="1677">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> + <jms:reference-file line="1823">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> + <jms:reference-file line="2916">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> </trans-unit> <trans-unit id="69ec558773af262994d835080fd77f22b284b64f" resname="thesaurus:: deplacer le terme dans la corbeille ?" approved="yes"> <source>thesaurus:: deplacer le terme dans la corbeille ?</source> <target state="translated">Déplacer le terme dans le stock ?</target> - <jms:reference-file line="1037">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="1045">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="33c36f4c7ae4c9ec55d1e58c0939946c8d894958" resname="thesaurus:: enregistrement de la liste modifiee des mots candidats." approved="yes"> <source>thesaurus:: enregistrement de la liste modifiee des mots candidats.</source> @@ -13042,9 +12746,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="5fbcdef1a0e5fb7cf0b19a61ff3a18ebe2a5bdbe" resname="thesaurus:: export au format texte" approved="yes"> <source>thesaurus:: export au format texte</source> <target state="translated">Texte</target> - <jms:reference-file line="5">web/thesaurus/export-text.html.twig</jms:reference-file> <jms:reference-file line="5">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> <jms:reference-file line="81">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> + <jms:reference-file line="5">web/thesaurus/export-text.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c8ec3584a75e01816472150b1c24268c9612dd51" resname="thesaurus:: export en topics" approved="yes"> <source>thesaurus:: export en topics</source> @@ -13252,7 +12956,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="1744e93c8cf4d32cb0c0418ae320f5d8438f6f76" resname="thesaurus:: synonyme" approved="yes"> <source>thesaurus:: synonyme</source> <target state="translated">Synonyme</target> - <jms:reference-file line="975">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="983">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b6cbc7152d76db92327425399da711a905e1d7b6" resname="thesaurus:: synonymes" approved="yes"> <source>thesaurus:: synonymes</source> @@ -13262,7 +12966,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="8658e2ff0b9ff5e3492109790a09066c1467804f" resname="thesaurus:: terme" approved="yes"> <source>thesaurus:: terme</source> <target state="translated">Terme</target> - <jms:reference-file line="975">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="983">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2369cc70d9c4cca830a6fdd9f652c1703a2a0d3b" resname="thesaurus:: tout deployer - refermable" approved="yes"> <source>thesaurus:: tout deployer - refermable</source> @@ -13342,19 +13046,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="1118f7e206d8ec4d92392f3e8c2804b156b3a082" resname="thumbnail validation" approved="yes"> <source>thumbnail validation</source> <target state="translated">Validation de la vignette</target> + <jms:reference-file line="180">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="247">actions/Tools/index.html.twig</jms:reference-file> - <jms:reference-file line="167">actions/Tools/videoEditor.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="4374aaee247fb237ce6c97d5c8d64bbe474d16de" resname="to" approved="yes"> - <source>to</source> - <target state="translated">to</target> - <jms:reference-file line="15">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="19">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="14a21e497a8468e9df7f078d92c8c97420f0bf60" resname="tout decocher" approved="yes"> - <source>tout decocher</source> - <target state="translated">Tout décocher</target> - <jms:reference-file line="11">web/report/listColumn.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7e96ed809b61066d6ea96ba9afc8747a042b361a" resname="tout le monde" approved="yes"> <source>tout le monde</source> @@ -13369,7 +13062,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="50d8b4a941c26b89482c94ab324b5a274f9ced66" resname="unknown" approved="yes"> <source>unknown</source> <target state="translated">Inconnu</target> - <jms:reference-file line="34">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="37">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9f273e321a1d1ea40251ab0a45f8ca8cbdd135da" resname="untitled" approved="yes"> <source>untitled</source> @@ -13386,17 +13079,23 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <target state="translated">Votre version est à jour :</target> <jms:reference-file line="53">web/admin/databases.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="cde2aa1e33b0a816e8539ae4669b9575a8c83762" resname="updated_on" approved="yes"> + <source>updated_on</source> + <target state="translated">mis à jour le</target> + <jms:reference-file line="475">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="bc34ae0ecd7020a2f3f57afaf84d3fea6c3e9c0f" resname="upload:: Destination (collection) :" approved="yes"> <source>upload:: Destination (collection) :</source> <target state="translated">Destination</target> + <jms:reference-file line="60">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="55">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="57">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="39e4890a2d75f483b1cb2131b2d19f8cf96a502b" resname="upload:: Status :" approved="yes"> <source>upload:: Status :</source> <target state="translated">Appliquer les status</target> + <jms:reference-file line="80">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="75">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="77">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="457">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4fea0574cc81b5fd40ab0537b0905cc4c3806039" resname="users rights have been reseted" approved="yes"> <source>users rights have been reseted</source> @@ -13406,23 +13105,23 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="e204d28a2874f6123747650d3e4003d4357d75eb" resname="validate" approved="yes"> <source>validate</source> <target state="translated">Valider</target> + <jms:reference-file line="143">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="88">actions/Tools/index.html.twig</jms:reference-file> <jms:reference-file line="116">actions/Tools/index.html.twig</jms:reference-file> <jms:reference-file line="156">actions/Tools/index.html.twig</jms:reference-file> <jms:reference-file line="182">actions/Tools/index.html.twig</jms:reference-file> - <jms:reference-file line="130">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c02a2db6d6cdf30d37962e221624cc7661f4b892" resname="validation:: NON" approved="yes"> <source>validation:: NON</source> <target state="translated">Non</target> - <jms:reference-file line="45">web/lightbox/agreement_box.html.twig</jms:reference-file> <jms:reference-file line="75">mobile/lightbox/basket_element.html.twig</jms:reference-file> + <jms:reference-file line="45">web/lightbox/agreement_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="07a1dc6df9fd47db2dc80e671f68bbd2525a789b" resname="validation:: OUI" approved="yes"> <source>validation:: OUI</source> <target state="translated">Oui</target> - <jms:reference-file line="40">web/lightbox/agreement_box.html.twig</jms:reference-file> <jms:reference-file line="72">mobile/lightbox/basket_element.html.twig</jms:reference-file> + <jms:reference-file line="40">web/lightbox/agreement_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="724c4836afe058eefd1dbc9c19d0f813f9ad0d31" resname="validation:: editer ma note" approved="yes"> <source>validation:: editer ma note</source> @@ -13442,10 +13141,10 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="276c62d9460692fb7b96721bea12a028339dd99c" resname="validation::envoyer mon rapport" approved="yes"> <source>validation::envoyer mon rapport</source> <target state="translated">Envoyer mon rapport</target> - <jms:reference-file line="2">web/lightbox/basket_options.html.twig</jms:reference-file> - <jms:reference-file line="4">web/lightbox/basket_options.html.twig</jms:reference-file> <jms:reference-file line="58">mobile/lightbox/validate.html.twig</jms:reference-file> <jms:reference-file line="59">mobile/lightbox/validate.html.twig</jms:reference-file> + <jms:reference-file line="2">web/lightbox/basket_options.html.twig</jms:reference-file> + <jms:reference-file line="4">web/lightbox/basket_options.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c692273deb2772da307ffe37041fef77bf4baa97" resname="version" approved="yes"> <source>version</source> @@ -13455,13 +13154,13 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="8cef9b3ae10c5c43c4b77c568586122212a052e3" resname="veuillez choisir au minimum une collection" approved="yes"> <source>veuillez choisir au minimum une collection</source> <target state="translated">Veuillez choisir au moins une collection</target> - <jms:reference-file line="23">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="22">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ffbaf58f1231628f9ac2a583f038b51719006ec6" resname="video" approved="yes"> <source>video</source> <target state="translated">vidéo</target> - <jms:reference-file line="22">task-manager/task-editor/subdefs.html.twig</jms:reference-file> <jms:reference-file line="370">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="25">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="51ca3cfa60e4d9ce2c7cd07b0b96fc84c4adb59f" resname="video range extractor"> <source>video range extractor</source> @@ -13476,9 +13175,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le <trans-unit id="fb360f9c09ac8c5edb2f18be5de4e80ea4c430d0" resname="yes" approved="yes"> <source>yes</source> <target state="translated">Oui</target> + <jms:reference-file line="76">web/account/sessions.html.twig</jms:reference-file> <jms:reference-file line="580">web/admin/subdefs.html.twig</jms:reference-file> <jms:reference-file line="89">web/common/technical_datas.html.twig</jms:reference-file> - <jms:reference-file line="76">web/account/sessions.html.twig</jms:reference-file> </trans-unit> <trans-unit id="646b0ebbe9829e44e9e99e9ab991a526f758001d" resname="you are about to change the representation thumbnail of your video" approved="yes"> <source>you are about to change the representation thumbnail of your video</source> diff --git a/resources/locales/messages.nl.xlf b/resources/locales/messages.nl.xlf index 671acd080e..6fbc835166 100644 --- a/resources/locales/messages.nl.xlf +++ b/resources/locales/messages.nl.xlf @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2"> - <file date="2018-09-17T13:18:41Z" source-language="en" target-language="nl" datatype="plaintext" original="not.available"> + <file date="2019-11-15T08:03:50Z" source-language="en" target-language="nl" datatype="plaintext" original="not.available"> <header> <tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/> <note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note> @@ -9,8 +9,8 @@ <trans-unit id="da39a3ee5e6b4b0d3255bfef95601890afd80709" resname=""> <source></source> <target state="new"></target> - <jms:reference-file line="47">Form/Configuration/EmailFormType.php</jms:reference-file> <jms:reference-file line="60">Form/Login/PhraseaAuthenticationForm.php</jms:reference-file> + <jms:reference-file line="47">Form/Configuration/EmailFormType.php</jms:reference-file> </trans-unit> <trans-unit id="c03e9a1b443b7d9ac9a84e4d2cf55ebc016a9c5b" resname=" Add"> <source> Add</source> @@ -28,7 +28,14 @@ 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. </target> - <jms:reference-file line="174">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="175">prod/templates/push.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="2dda59c67dea4da116191fe9603dcf80cb3c8c3d" resname=" {0} No results|{1} Result|]1,Inf[ Results "> + <source> {0} No results|{1} Result|]1,Inf[ Results + </source> + <target state="new"> {0} No results|{1} Result|]1,Inf[ Results + </target> + <jms:reference-file line="7">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="17b36ba11b9598e1ca72638a17637c71db031f8b" resname="#3567c6"> <source>#3567c6</source> @@ -109,15 +116,14 @@ <trans-unit id="5c0c6d2fb4202111af321f54b5a3942bda803eb8" resname="%Total% results" approved="yes"> <source>%Total% results</source> <target state="translated">%Total% resultaten</target> - <jms:reference-file line="12">WorkZone/Browser/Results.html.twig</jms:reference-file> - <jms:reference-file line="115">WorkZone/Browser/Results.html.twig</jms:reference-file> + <jms:reference-file line="91">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="21a4ac34dfdf249b5e2e3b3fde7061b354080f4b" resname="%basket_length% documents" approved="yes"> <source>%basket_length% documents</source> <target state="translated">%basket_length% documenten</target> + <jms:reference-file line="39">mobile/lightbox/validate.html.twig</jms:reference-file> <jms:reference-file line="65">web/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="123">web/lightbox/index.html.twig</jms:reference-file> - <jms:reference-file line="39">mobile/lightbox/validate.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b444b30c762b94c468daf384f731e5ffc3ae998d" resname="%countable% documents can not be modified." approved="yes"> <source>%countable% documents can not be modified.</source> @@ -158,7 +164,7 @@ <source>%length% peoples</source> <target state="translated">%length% personen</target> <jms:reference-file line="42">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="107">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="103">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="65779fe6ac99437fb7d81ba645a989e7745e6a29" resname="%n_elements% elements ne peuvent etre uploades" approved="yes"> <source>%n_elements% elements ne peuvent etre uploades</source> @@ -196,21 +202,21 @@ <trans-unit id="e39dc3a90b0674916ef22f19912638564f33e518" resname="%nb_view% vue" approved="yes"> <source>%nb_view% vue</source> <target state="translated">%nb_view% weergave</target> - <jms:reference-file line="5">Bridge/Flickr/element_informations.html.twig</jms:reference-file> - <jms:reference-file line="5">Bridge/Youtube/element_informations.html.twig</jms:reference-file> <jms:reference-file line="5">Bridge/Dailymotion/element_informations.html.twig</jms:reference-file> + <jms:reference-file line="5">Bridge/Youtube/element_informations.html.twig</jms:reference-file> + <jms:reference-file line="5">Bridge/Flickr/element_informations.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ae7480d89dfd1ca0d1732014aee13f9958836bf8" resname="%nb_view% vues" approved="yes"> <source>%nb_view% vues</source> <target state="translated">%nb_view% weergaven</target> - <jms:reference-file line="7">Bridge/Flickr/element_informations.html.twig</jms:reference-file> - <jms:reference-file line="7">Bridge/Youtube/element_informations.html.twig</jms:reference-file> <jms:reference-file line="7">Bridge/Dailymotion/element_informations.html.twig</jms:reference-file> + <jms:reference-file line="7">Bridge/Youtube/element_informations.html.twig</jms:reference-file> + <jms:reference-file line="7">Bridge/Flickr/element_informations.html.twig</jms:reference-file> </trans-unit> <trans-unit id="de0804eb70c10b14d71df74292e45c6daa13d672" resname="%number% documents<br/>selectionnes"> <source><![CDATA[%number% documents<br/>selectionnes]]></source> <target state="new"><![CDATA[%number% documents<br/>selectionnes]]></target> - <jms:reference-file line="246">Controller/Prod/QueryController.php</jms:reference-file> + <jms:reference-file line="271">Controller/Prod/QueryController.php</jms:reference-file> </trans-unit> <trans-unit id="ac5c6fe2979cfa2496c95dcb218f135fd916040d" resname="%quantity% Stories attached to the WorkZone"> <source>%quantity% Stories attached to the WorkZone</source> @@ -261,7 +267,7 @@ <trans-unit id="d7c38bf41291d1f920c6e0b56a1c4a1cfc0b6743" resname="%quantity% selected files"> <source>%quantity% selected files</source> <target state="new">%quantity% selected files</target> - <jms:reference-file line="108">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="111">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="eae910e840fe7df8ef8211d587e72af74ab69463" resname="%quantity_records% records have been sent for validation to %quantity_users% users"> <source>%quantity_records% records have been sent for validation to %quantity_users% users</source> @@ -276,7 +282,7 @@ <trans-unit id="4d90df6ce9691d4bc172b9129250a5af4bef4b7f" resname="%record_count% records match the unique identifier :" approved="yes"> <source>%record_count% records match the unique identifier :</source> <target state="translated">%record_count% records zijn gelijk aan de unieke id :</target> - <jms:reference-file line="379">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="585">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1d847e60f4e92e438c94f0eb3176ce96113c63e5" resname="%s field has been created with success." approved="yes"> <source>%s field has been created with success.</source> @@ -291,17 +297,12 @@ <trans-unit id="f9b19aa0c7cf7aab245692450b473acff6a077e4" resname="%total% reponses"> <source>%total% reponses</source> <target state="new">%total% reponses</target> - <jms:reference-file line="294">Controller/Prod/QueryController.php</jms:reference-file> - </trans-unit> - <trans-unit id="3d850bddc9385d23589a2204c4583dcc0d62ffe5" resname="%total_count% results" approved="yes"> - <source>%total_count% results</source> - <target state="translated">%total_count% resultaten</target> - <jms:reference-file line="35">web/report/generate_tab.html.twig</jms:reference-file> + <jms:reference-file line="319">Controller/Prod/QueryController.php</jms:reference-file> </trans-unit> <trans-unit id="99d2e1a7e8d0ba4a7132282b53b15e503b91c2cb" resname="%user% a envoye son rapport de validation de %title%"> <source>%user% a envoye son rapport de validation de %title%</source> <target state="new">%user% a envoye son rapport de validation de %title%</target> - <jms:reference-file line="58">eventsmanager/notify/validationdone.php</jms:reference-file> + <jms:reference-file line="65">eventsmanager/notify/validationdone.php</jms:reference-file> </trans-unit> <trans-unit id="762e4f2823b111e8a3c45176a1376312afeb014e" resname="%user% a passe une %opening_link% commande %end_link%"> <source>%user% a passe une %opening_link% commande %end_link%</source> @@ -351,7 +352,7 @@ <trans-unit id="578411bc3eda63423c62f54431d62591422c6e5f" resname="%user% vous a delivre %quantity% document(s) pour votre commande %title%"> <source>%user% vous a delivre %quantity% document(s) pour votre commande %title%</source> <target state="new">%user% vous a delivre %quantity% document(s) pour votre commande %title%</target> - <jms:reference-file line="58">eventsmanager/notify/orderdeliver.php</jms:reference-file> + <jms:reference-file line="66">eventsmanager/notify/orderdeliver.php</jms:reference-file> </trans-unit> <trans-unit id="991c3d22c945eab4d10ee5974ff3d12e0c165185" resname="%user% vous a delivre votre commande, consultez la en ligne a l'adresse suivante"> <source>%user% vous a delivre votre commande, consultez la en ligne a l'adresse suivante</source> @@ -411,9 +412,7 @@ <trans-unit id="4e633811d5f61e7ef626265d09c454908f56df17" resname="1 result" approved="yes"> <source>1 result</source> <target state="translated">1 resultaat</target> - <jms:reference-file line="10">WorkZone/Browser/Results.html.twig</jms:reference-file> - <jms:reference-file line="113">WorkZone/Browser/Results.html.twig</jms:reference-file> - <jms:reference-file line="33">web/report/generate_tab.html.twig</jms:reference-file> + <jms:reference-file line="89">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="fbe42fc27804535bb12503b7990343d52141318c" resname="10 tags maximum" approved="yes"> <source>10 tags maximum</source> @@ -494,7 +493,7 @@ <trans-unit id="e6558cad562de9eeae699e5f7fc7c8ae076d38c8" resname="A record matches the unique identifier :" approved="yes"> <source>A record matches the unique identifier :</source> <target state="translated">Een record is gelijk aan de unieke id :</target> - <jms:reference-file line="377">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="583">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b73e8cb42d796f56db9989972e41942d9135c2cc" resname="A required field is missing or has an empty value" approved="yes"> <source>A required field is missing or has an empty value</source> @@ -509,7 +508,7 @@ <trans-unit id="2966d9d14e339b1aa59cd4591bbb616f2af1f070" resname="A task has been creted, please run it to complete empty collection" approved="yes"> <source>A task has been creted, please run it to complete empty collection</source> <target state="translated">Een taak werd gemaakt, gelieve deze op een volledig lege collectie uit te voeren</target> - <jms:reference-file line="134">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="135">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="1745c0ee532c1592e3751ef7ef48c382df74c457" resname="A third-party application is a product developed apart from Phraseanet and that would access Phraseanet data." approved="yes"> <source>A third-party application is a product developed apart from Phraseanet and that would access Phraseanet data.</source> @@ -534,7 +533,7 @@ <trans-unit id="123328affd9ccbf569617c058422eb0104017f47" resname="API Webhook"> <source>API Webhook</source> <target state="new">API Webhook</target> - <jms:reference-file line="45">TaskManager/Job/WebhookJob.php</jms:reference-file> + <jms:reference-file line="58">TaskManager/Job/WebhookJob.php</jms:reference-file> </trans-unit> <trans-unit id="62a3ad0fef668c4e2a220f6982de94942fbf1d1e" resname="AR"> <source>AR</source> @@ -590,7 +589,7 @@ <trans-unit id="322d1ea01506ec9e0344d8cd25dd10808d427343" resname="Access to the above bases constitutes acceptance of the following Terms of Use (TOU)."> <source>Access to the above bases constitutes acceptance of the following Terms of Use (TOU).</source> <target state="new">Access to the above bases constitutes acceptance of the following Terms of Use (TOU).</target> - <jms:reference-file line="185">web/account/access.html.twig</jms:reference-file> + <jms:reference-file line="19">web/account/access.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9db7fb32c517586a4123d511613b492d910aecaa" resname="Access user have readonly access" approved="yes"> <source>Access user have readonly access</source> @@ -622,7 +621,7 @@ <source>Accuse de reception</source> <target state="translated">Ontvangstbevestiging</target> <jms:reference-file line="91">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="160">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="161">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="589db073670b88b4b42b9f60b53d87e049fa5e3f" resname="Accuse de reception indisponible, vous n'avez pas declare d'adresse email" approved="yes"> <source>Accuse de reception indisponible, vous n'avez pas declare d'adresse email</source> @@ -637,12 +636,12 @@ <trans-unit id="c3cd636a585b20c40ac2df5ffb403e83cb2eef51" resname="Actions" approved="yes"> <source>Actions</source> <target state="translated">Acties</target> - <jms:reference-file line="12">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="26">Bridge/Flickr/actionelements.html.twig</jms:reference-file> - <jms:reference-file line="12">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="26">Bridge/Youtube/actionelements.html.twig</jms:reference-file> - <jms:reference-file line="12">Bridge/Dailymotion/actioncontainers.html.twig</jms:reference-file> <jms:reference-file line="26">Bridge/Dailymotion/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="12">Bridge/Dailymotion/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="26">Bridge/Youtube/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="12">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="26">Bridge/Flickr/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="12">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c4a4f00323184bd750ee72b5c05e6e17d1584bfd" resname="Activate highlight"> <source>Activate highlight</source> @@ -658,9 +657,9 @@ <trans-unit id="b96fa78d63e470aece8873de8f36bc6d07d0ce1e" resname="Activer" approved="yes"> <source>Activer</source> <target state="translated">Activeren</target> + <jms:reference-file line="192">admin/databox/databox.html.twig</jms:reference-file> <jms:reference-file line="19">web/admin/editusers_timelimit.html.twig</jms:reference-file> <jms:reference-file line="15">web/admin/editusers_timelimit_sbas.html.twig</jms:reference-file> - <jms:reference-file line="192">admin/databox/databox.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2ad25a56545b3378229ca9165351fb4cb528c722" resname="Activer le grant_type de type password pour votre application" approved="yes"> <source>Activer le grant_type de type password pour votre application</source> @@ -675,15 +674,15 @@ <trans-unit id="81c0d915fa6d82fd30661c5e66e204cea52bb2b5" resname="Activity"> <source>Activity</source> <target state="new">Activity</target> - <jms:reference-file line="174">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="170">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="61cc55aa0453184734c3fa0b621eda6fa874bd83" resname="Add" approved="yes"> <source>Add</source> <target state="translated">Toevoegen</target> + <jms:reference-file line="161">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="509">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="510">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="39">prod/User/Add.html.twig</jms:reference-file> - <jms:reference-file line="154">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="352">prod/upload/lazaret.html.twig</jms:reference-file> - <jms:reference-file line="353">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="983c5aed52d2f74bf36e97dc34dbce97fdd43f5b" resname="Add a new field"> <source>Add a @@ -727,11 +726,16 @@ <target state="new">Add new range</target> <jms:reference-file line="138">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> + <trans-unit id="1b27740ce4d6bea2dd21cee1c12fa73206c1444a" resname="Add this url"> + <source>Add this url</source> + <target state="new">Add this url</target> + <jms:reference-file line="36">prod/upload/upload.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="f347a8ddd22508ed0310a2f9d8cf43dd96be34b1" resname="Add user" approved="yes"> <source>Add user</source> <target state="translated">Gebruiker toevoegen</target> - <jms:reference-file line="167">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="172">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="174">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="179">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="001c0aa88aab8441b8835c947c94c7290eadf779" resname="Additionnal modules" approved="yes"> <source>Additionnal modules</source> @@ -761,12 +765,13 @@ <trans-unit id="f38d53519197909c91536558af4b561b0b38c32f" resname="Advanced Search" approved="yes"> <source>Advanced Search</source> <target state="translated">Geavanceerd zoeken</target> - <jms:reference-file line="270">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="281">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="292">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="36ee3c1fd529ba9fd031d157e04c6fecb356591c" resname="Advanced mode"> <source>Advanced mode</source> <target state="new">Advanced mode</target> - <jms:reference-file line="53">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="49">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2e8bbf396d28ec55f8a6987f31422f44b693a08c" resname="Advanced settings"> <source>Advanced settings</source> @@ -776,66 +781,66 @@ <trans-unit id="bc8f3ed663adc3f670da96cfd59f14ca2d063439" resname="Affichage" approved="yes"> <source>Affichage</source> <target state="translated">Tonen</target> - <jms:reference-file line="579">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="670">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1f9a8a4181e8f3f461180be54e1a63f70d9bce77" resname="Affichage au demarrage" approved="yes"> <source>Affichage au demarrage</source> <target state="translated">Tonen bij opstart</target> - <jms:reference-file line="683">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="774">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a810fdb68ba89818cce5c607021256e40cf14170" resname="Afficher la fiche descriptive" approved="yes"> <source>Afficher la fiche descriptive</source> <target state="translated">De beschrijvingsfiche tonen</target> - <jms:reference-file line="849">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="940">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="946bf37a064ede9145bd8e3c7ce50e8608885518" resname="Afficher le titre" approved="yes"> <source>Afficher le titre</source> <target state="translated">De titel tonen</target> - <jms:reference-file line="858">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="949">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7627cf7574df870b584ab3bd8a67d62d7ab4a18b" resname="Afficher les status" approved="yes"> <source>Afficher les status</source> <target state="translated">De statussen tonen</target> - <jms:reference-file line="840">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="931">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="47743dc906e82db1978c23daf01e4d5e727702bd" resname="Afficher une icone" approved="yes"> <source>Afficher une icone</source> <target state="translated">Pictogram tonen</target> - <jms:reference-file line="653">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="744">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="53c62ab422733fc26fc4d0b64a7da7548588ae8b" resname="After metadata"> <source>After metadata</source> <target state="new">After metadata</target> - <jms:reference-file line="641">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="732">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b9ba037c0e4c06d192c83e08070b15787f07daaa" resname="Aggregation"> <source>Aggregation</source> <target state="new">Aggregation</target> - <jms:reference-file line="223">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="238">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="40a1dd8272b48953d037ba565c6189e9ef5cd06b" resname="Aide" approved="yes"> <source>Aide</source> <target state="translated">Help</target> - <jms:reference-file line="697">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="788">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c26a1a41764983bc03456d418ee43e732e5f513e" resname="Aide sur les expressions regulieres" approved="yes"> <source>Aide sur les expressions regulieres</source> <target state="translated">Help over reguliere expressies</target> - <jms:reference-file line="315">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="317">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5e8a35671080dba23a7f84416dcf97fd975a33e6" resname="Ajouter a" approved="yes"> <source>Ajouter a</source> <target state="translated">Toevoegen aan</target> - <jms:reference-file line="5">Bridge/Flickr/actionelements.html.twig</jms:reference-file> - <jms:reference-file line="5">Bridge/Youtube/actionelements.html.twig</jms:reference-file> <jms:reference-file line="5">Bridge/Dailymotion/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="5">Bridge/Youtube/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="5">Bridge/Flickr/actionelements.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6be348e8c91127640dc04e94dca7d5503ddb6c7d" resname="Ajouter ma selection courrante" approved="yes"> <source>Ajouter ma selection courrante</source> <target state="translated">Voeg mijn huidige selectie toe</target> <jms:reference-file line="10">prod/Baskets/Create.html.twig</jms:reference-file> - <jms:reference-file line="22">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="15">prod/Story/Create.html.twig</jms:reference-file> + <jms:reference-file line="22">prod/orders/order_item.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8d391a678bc6acf01f3f67c57b07853c5a588171" resname="Ajouter un nouvel utilisateur" approved="yes"> <source>Ajouter un nouvel utilisateur</source> @@ -857,17 +862,23 @@ <target state="translated">Alle</target> <jms:reference-file line="35">Form/Configuration/CustomLinkFormType.php</jms:reference-file> <jms:reference-file line="13">WorkZone/Browser/Browser.html.twig</jms:reference-file> - <jms:reference-file line="193">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="203">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="213">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="223">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="233">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="243">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="189">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="199">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="209">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="219">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="229">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="239">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="8">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="cff1e86ef3cd4771d8b9a289d1e75a465d5b48a7" resname="All these conditions"> + <source>All these conditions</source> + <target state="new">All these conditions</target> + <jms:reference-file line="414">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4f5920cee28837f31429fd82f7bc5a335272a436" resname="All values"> <source>All values</source> <target state="new">All values</target> - <jms:reference-file line="232">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="247">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="bc5595b574bc9e623a22a54ae40ae0cef6c28e80" resname="Aller a" approved="yes"> <source>Aller a</source> @@ -884,11 +895,6 @@ <target state="translated">Toegestaan</target> <jms:reference-file line="37">web/account/authorized_apps.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="38bee8bd21d8a303b49f881d977af44c493ad168" resname="Allowed access to the following collections"> - <source>Allowed access to the following collections</source> - <target state="new">Allowed access to the following collections</target> - <jms:reference-file line="30">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="c264a7efdbe0e0af2a6fe69e2bc9a89b90c5ec0e" resname="Allowed to access report" approved="yes"> <source>Allowed to access report</source> <target state="translated">Toegestaan ​​om rapport te openen</target> @@ -937,14 +943,14 @@ <trans-unit id="f2daa38baf15cf880ed52b7ce074c1d24f9fd58a" resname="Alphabetic asc"> <source>Alphabetic asc</source> <target state="new">Alphabetic asc</target> - <jms:reference-file line="714">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="731">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="743">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="805">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="822">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="834">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e7029550f725d4758c662974089acb89c467d221" resname="Alphabetic desc"> <source>Alphabetic desc</source> <target state="new">Alphabetic desc</target> - <jms:reference-file line="716">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="807">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ebd447ea09611b090d7b8a12835ffaf79ea17e47" resname="Also delete records that rely on groupings." approved="yes"> <source>Also delete records that rely on groupings.</source> @@ -954,23 +960,8 @@ <trans-unit id="f0cf9a47c6b420dda55c973a12840600fc19b7fb" resname="An error occured" approved="yes"> <source>An error occured</source> <target state="translated">Er is een fout opgetreden</target> - <jms:reference-file line="173">Controller/Prod/BasketController.php</jms:reference-file> - <jms:reference-file line="163">Controller/Prod/MoveCollectionController.php</jms:reference-file> - <jms:reference-file line="214">Controller/Prod/StoryController.php</jms:reference-file> - <jms:reference-file line="243">Controller/Prod/LazaretController.php</jms:reference-file> - <jms:reference-file line="170">Controller/Prod/ToolsController.php</jms:reference-file> - <jms:reference-file line="185">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="225">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="266">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="449">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="517">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="557">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="595">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="633">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="666">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="699">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="807">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="71">Controller/Admin/DataboxesController.php</jms:reference-file> + <jms:reference-file line="118">Model/Manipulator/LazaretManipulator.php</jms:reference-file> + <jms:reference-file line="233">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="82">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="155">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="187">Controller/Admin/DataboxController.php</jms:reference-file> @@ -981,14 +972,34 @@ <jms:reference-file line="499">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="581">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="647">Controller/Admin/DataboxController.php</jms:reference-file> - <jms:reference-file line="118">Model/Manipulator/LazaretManipulator.php</jms:reference-file> - <jms:reference-file line="231">Model/Manipulator/LazaretManipulator.php</jms:reference-file> - <jms:reference-file line="25">admin/collection/suggested_value.html.twig</jms:reference-file> - <jms:reference-file line="23">admin/collection/collection.html.twig</jms:reference-file> - <jms:reference-file line="194">task-manager/task-editor/task.html.twig</jms:reference-file> - <jms:reference-file line="19">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="71">Controller/Admin/DataboxesController.php</jms:reference-file> + <jms:reference-file line="186">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="226">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="267">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="450">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="518">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="558">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="596">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="634">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="667">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="700">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="808">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="173">Controller/Prod/BasketController.php</jms:reference-file> + <jms:reference-file line="170">Controller/Prod/ToolsController.php</jms:reference-file> + <jms:reference-file line="257">Controller/Prod/LazaretController.php</jms:reference-file> + <jms:reference-file line="164">Controller/Prod/MoveCollectionController.php</jms:reference-file> + <jms:reference-file line="214">Controller/Prod/StoryController.php</jms:reference-file> <jms:reference-file line="653">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="19">admin/databox/databox.html.twig</jms:reference-file> <jms:reference-file line="15">web/admin/databases.html.twig</jms:reference-file> + <jms:reference-file line="23">admin/collection/collection.html.twig</jms:reference-file> + <jms:reference-file line="25">admin/collection/suggested_value.html.twig</jms:reference-file> + <jms:reference-file line="194">task-manager/task-editor/task.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="a16a3255c311eccbe2471bfc5b5cd92f3b907654" resname="An error occured when wanting to change status!"> + <source>An error occured when wanting to change status!</source> + <target state="new">An error occured when wanting to change status!</target> + <jms:reference-file line="136">Controller/Prod/LazaretController.php</jms:reference-file> </trans-unit> <trans-unit id="a518072a2c5c91cdd2591c1b8d79777664df1ea4" resname="An error occured while denying, please retry or contact an admin if problem persists" approved="yes"> <source>An error occured while denying, please retry or contact an admin if problem persists</source> @@ -1025,12 +1036,12 @@ <source>An error occurred</source> <target state="translated">Er is een fout opgetreden</target> <jms:reference-file line="77">Order/Controller/ProdOrderController.php</jms:reference-file> - <jms:reference-file line="145">Controller/Prod/BasketController.php</jms:reference-file> - <jms:reference-file line="125">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="521">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="108">Controller/Admin/SearchEngineController.php</jms:reference-file> - <jms:reference-file line="2008">Controller/Api/V1Controller.php</jms:reference-file> - <jms:reference-file line="2454">Controller/Api/V1Controller.php</jms:reference-file> + <jms:reference-file line="126">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="145">Controller/Prod/BasketController.php</jms:reference-file> + <jms:reference-file line="2050">Controller/Api/V1Controller.php</jms:reference-file> + <jms:reference-file line="2496">Controller/Api/V1Controller.php</jms:reference-file> <jms:reference-file line="81">web/admin/statusbit.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7e861f79c8744b5cb0b59ce4f0100603952751b1" resname="An error occurred reading this file" approved="yes"> @@ -1061,7 +1072,7 @@ <trans-unit id="aae1263383b96270870516a4097020921912df74" resname="Aperture" approved="yes"> <source>Aperture</source> <target state="translated">Diafragma</target> - <jms:reference-file line="284">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="295">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> <jms:reference-file line="104">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="013cf62916a339608ae3c498d34b9e55afa46dc1" resname="Apparait aussi dans ces paniers" approved="yes"> @@ -1128,8 +1139,8 @@ <trans-unit id="b8fb717785e899f8e3bacfd74a395da7a434af9e" resname="Apply changes" approved="yes"> <source>Apply changes</source> <target state="translated">Wijzigingen toepassen</target> - <jms:reference-file line="113">actions/Property/index.html.twig</jms:reference-file> <jms:reference-file line="49">actions/Property/type.html.twig</jms:reference-file> + <jms:reference-file line="113">actions/Property/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0e585e139fb6fc86d30e02ba78bdbb4dff6ac6b9" resname="Apply status on story children." approved="yes"> <source>Apply status on story children.</source> @@ -1149,7 +1160,8 @@ <trans-unit id="2621c6fd51a58e1d1d5c491aac71488647b20224" resname="Archive" approved="yes"> <source>Archive</source> <target state="translated">Archief</target> - <jms:reference-file line="170">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="180">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="181">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6e8fd96e9e2759d3e405608bfb1a064d3338b4dd" resname="Are you sure you want delete users rights ?" approved="yes"> <source>Are you sure you want delete users rights ?</source> @@ -1165,7 +1177,7 @@ <source>Are you sure you want to delete this list ?</source> <target state="translated">Bent u zeker deze lijst te verwijderen ?</target> <jms:reference-file line="83">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="131">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="132">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0ad86fda5d367a9ff74a9c278344f3bb8f75c223" resname="Are you sure you want to rebuild the sub-definitions of selected records?"> <source>Are you sure you want to rebuild the sub-definitions of selected records?</source> @@ -1201,7 +1213,7 @@ <trans-unit id="b2ed82f1bf1c30916cde300ded82176c2ff0300a" resname="Aucun" approved="yes"> <source>Aucun</source> <target state="translated">Geen enkele</target> - <jms:reference-file line="214">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="229">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3f9f7ad2bc75b4c34160ea51aeff9a273da06c1f" resname="Aucun bridge disponible. Veuillez contacter un administrateur." approved="yes"> <source>Aucun bridge disponible. Veuillez contacter un administrateur.</source> @@ -1216,7 +1228,7 @@ <trans-unit id="5c4eb810a8d51375a0e76c76d183446905d39d3a" resname="Aucun statut editable" approved="yes"> <source>Aucun statut editable</source> <target state="translated">Geen enkele bewerkbare status</target> - <jms:reference-file line="207">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="209">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e8f882731020de75c4168f82456175a386828cd1" resname="Aucune" approved="yes"> <source>Aucune</source> @@ -1257,33 +1269,38 @@ <trans-unit id="acdac205f5e24cb75113c4b281a2c13f08b75159" resname="Audio"> <source>Audio</source> <target>Audio</target> - <jms:reference-file line="296">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="321">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8074d6bbaaca47f35831923ebfd25c58be4b1cee" resname="Audio Birate"> <source>Audio Birate</source> <target>Audio Birate</target> - <jms:reference-file line="32">Media/Subdef/Audio.php</jms:reference-file> + <jms:reference-file line="35">Media/Subdef/Audio.php</jms:reference-file> </trans-unit> <trans-unit id="d6caeca6303e9c722c929fbb58744a013a7ba7db" resname="Audio Codec"> <source>Audio Codec</source> <target>Audio Codec</target> + <jms:reference-file line="37">Media/Subdef/Audio.php</jms:reference-file> <jms:reference-file line="36">Media/Subdef/Video.php</jms:reference-file> - <jms:reference-file line="34">Media/Subdef/Audio.php</jms:reference-file> </trans-unit> <trans-unit id="a80232c45008d73666e95544f7c9c8c0896536af" resname="Audio Samplerate"> <source>Audio Samplerate</source> <target state="new">Audio Samplerate</target> - <jms:reference-file line="320">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="339">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + </trans-unit> + <trans-unit id="31afcc88a7f552bfd4d330c2c70d8fafd7b8e0f9" resname="Audio channel"> + <source>Audio channel</source> + <target state="new">Audio channel</target> + <jms:reference-file line="38">Media/Subdef/Audio.php</jms:reference-file> </trans-unit> <trans-unit id="bdeea21f6257f434dcfcffb4f0470a042a1b5c17" resname="Audio codec"> <source>Audio codec</source> <target state="new">Audio codec</target> - <jms:reference-file line="330">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="353">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="27be4ad944410219f1a8dd01cc5e216a09c16646" resname="AudioSamplerate"> <source>AudioSamplerate</source> <target>AudioSamplerate</target> - <jms:reference-file line="33">Media/Subdef/Audio.php</jms:reference-file> + <jms:reference-file line="36">Media/Subdef/Audio.php</jms:reference-file> </trans-unit> <trans-unit id="9e761dfcff90efcb07867accd3e8b109762fc596" resname="Auth_token directory path" approved="yes"> <source>Auth_token directory path</source> @@ -1354,20 +1371,20 @@ <trans-unit id="11d4e8a639615510da9cd75da3031e91f4f551bb" resname="Autorisation d'acces"> <source>Autorisation d'acces</source> <target state="new">Autorisation d'acces</target> - <jms:reference-file line="89">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="69">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="89">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ff83984310dc25c919f046ccac2c300469efa084" resname="Autoriser" approved="yes"> <source>Autoriser</source> <target state="translated">Toestaan</target> - <jms:reference-file line="105">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="85">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="105">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b0f9d3132d4759c2fd88c394935503435cebbc79" resname="Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ?"> <source>Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ?</source> <target state="new">Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ?</target> - <jms:reference-file line="94">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="74">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="94">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="45fc87c2d0ade465c57c00f7aa434a4d0bebe106" resname="Available in multi-export tab" approved="yes"> <source>Available in multi-export tab</source> @@ -1391,12 +1408,12 @@ <trans-unit id="738444fb7badaeb28467562ed8af8e1311e42eac" resname="Back to Feedback" approved="yes"> <source>Back to Feedback</source> <target state="translated">Terug naar Feedback</target> - <jms:reference-file line="275">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="280">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6b61d67b7d0f7a7548068655adbd7f0a91a2eb8d" resname="Back to Push" approved="yes"> <source>Back to Push</source> <target state="translated">Terug naar Push</target> - <jms:reference-file line="271">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="276">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ba753fe34fb03869657d308ee16ef7bc8cc695f9" resname="Back to basket list" approved="yes"> <source>Back to basket list</source> @@ -1406,10 +1423,10 @@ <trans-unit id="ae1378dc6a6f7df2435c398db9e6eac71646092b" resname="Bad request format, only JSON is allowed" approved="yes"> <source>Bad request format, only JSON is allowed</source> <target state="translated">Slecht verzoek formaat, enkel JSON is toegestaan</target> + <jms:reference-file line="187">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="573">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="58">Controller/Admin/RootController.php</jms:reference-file> <jms:reference-file line="220">Controller/Admin/RootController.php</jms:reference-file> - <jms:reference-file line="573">Controller/Admin/DataboxController.php</jms:reference-file> - <jms:reference-file line="180">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="fa0d7d2cb29f1ca72b4108bfaa0bf5686d3910ff" resname="Bad request, please contact an admin" approved="yes"> <source>Bad request, please contact an admin</source> @@ -1424,8 +1441,8 @@ <trans-unit id="3e06b5206dcaf1dca9ccaab68e3fbb918b450113" resname="Base %base%" approved="yes"> <source>Base %base%</source> <target state="translated">Database %base%</target> - <jms:reference-file line="4">web/admin/editusers_timelimit.html.twig</jms:reference-file> <jms:reference-file line="42">web/admin/editusers_quotas.html.twig</jms:reference-file> + <jms:reference-file line="4">web/admin/editusers_timelimit.html.twig</jms:reference-file> <jms:reference-file line="4">web/admin/editusers_timelimit_sbas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="65a99419ccf90ea10839c45a87a109f3b8c581a9" resname="Base could not be created" approved="yes"> @@ -1466,7 +1483,7 @@ <trans-unit id="83602366c2bc77de4a17181cf566da428eaee78e" resname="Basket is not found"> <source>Basket is not found</source> <target state="new">Basket is not found</target> - <jms:reference-file line="166">Model/Repositories/BasketRepository.php</jms:reference-file> + <jms:reference-file line="184">Model/Repositories/BasketRepository.php</jms:reference-file> </trans-unit> <trans-unit id="f149359beace4d242ac47578384e4cb7e001b9e7" resname="Basket updated" approved="yes"> <source>Basket updated</source> @@ -1506,9 +1523,9 @@ <trans-unit id="38481c2ad1ad4de56004cc8e542ad04652002add" resname="Browse Baskets" approved="yes"> <source>Browse Baskets</source> <target state="translated">Mandjes doorbladeren</target> - <jms:reference-file line="211">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="213">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="214">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="215">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="216">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="54a2cf5e634dbba0be2bf8a55f79252f5c790bdb" resname="Browser"> <source>Browser</source> @@ -1518,7 +1535,7 @@ <trans-unit id="2d90cbe9431fb9e8d6013b651c2fb46a598de9eb" resname="Business Fields" approved="yes"> <source>Business Fields</source> <target state="translated">Zakelijke velden</target> - <jms:reference-file line="197">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="212">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7985544ae054430f8b4416a883fa9d0b084ee0cf" resname="By checking this box, you accept %beginning_link% Terms of Use %end_link%" approved="yes"> <source>By checking this box, you accept %beginning_link% Terms of Use %end_link%</source> @@ -1536,32 +1553,27 @@ <trans-unit id="2a8e6c2695279fb4760d299974903123f751b3bf" resname="By field"> <source>By field</source> <target state="new">By field</target> - <jms:reference-file line="355">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="384">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="48bf97f55c15fa2acb0a283e3a7e3f4f738b781d" resname="CHAMPS" approved="yes"> <source>CHAMPS</source> <target state="translated">VELDEN</target> <jms:reference-file line="123">web/admin/tree.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="23cb1ba2135af54bb7f9dc4ac628c8c16b1274c8" resname="CSV export"> - <source>CSV export</source> - <target state="new">CSV export</target> - <jms:reference-file line="22">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="07d75a5073e3247c7ac54d3a797d3f777b421863" resname="Camera Model" approved="yes"> <source>Camera Model</source> <target state="translated">Cameramodel</target> - <jms:reference-file line="274">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="281">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> <jms:reference-file line="56">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="77dfd2135f4db726c47299bb55be26f7f4525a46" resname="Cancel" approved="yes"> <source>Cancel</source> <target state="translated">Annuleren</target> <jms:reference-file line="119">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="38">prod/User/Add.html.twig</jms:reference-file> <jms:reference-file line="52">prod/actions/delete_records_confirm.html.twig</jms:reference-file> - <jms:reference-file line="115">actions/Property/index.html.twig</jms:reference-file> <jms:reference-file line="50">actions/Property/type.html.twig</jms:reference-file> + <jms:reference-file line="115">actions/Property/index.html.twig</jms:reference-file> + <jms:reference-file line="38">prod/User/Add.html.twig</jms:reference-file> <jms:reference-file line="77">task-manager/task-editor/task.html.twig</jms:reference-file> <jms:reference-file line="42">user/import/view.html.twig</jms:reference-file> <jms:reference-file line="68">admin/fields/templates.html.twig</jms:reference-file> @@ -1569,8 +1581,8 @@ <trans-unit id="ae1f9ef7dc1cee4760e7f208f36c225e3ab1aa1f" resname="Cancel all" approved="yes"> <source>Cancel all</source> <target state="translated">Annuleer alles</target> + <jms:reference-file line="131">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="121">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="128">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="82695f04e6097106923a58949a9e1b0fadd1a989" resname="Cannot upload Zero Byte files" approved="yes"> <source>Cannot upload Zero Byte files</source> @@ -1590,9 +1602,9 @@ <trans-unit id="790d9876f3745353f60eb4d5232b26bb597ca5a3" resname="Categorie"> <source>Categorie</source> <target>Categorie</target> + <jms:reference-file line="38">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> <jms:reference-file line="58">Bridge/Youtube/upload.html.twig</jms:reference-file> <jms:reference-file line="45">Bridge/Youtube/video_modify.html.twig</jms:reference-file> - <jms:reference-file line="38">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> </trans-unit> <trans-unit id="bf1584669680e7841bf069b9495ea2f012bff60b" resname="Ce champ est decrit comme element du %DublinCoreElementSet%" approved="yes"> <source>Ce champ est decrit comme element du %DublinCoreElementSet%</source> @@ -1624,12 +1636,12 @@ <target state="translated">Dit veld is verplicht</target> <jms:reference-file line="691">Bridge/Api/Flickr.php</jms:reference-file> <jms:reference-file line="713">Bridge/Api/Flickr.php</jms:reference-file> - <jms:reference-file line="798">Bridge/Api/Dailymotion.php</jms:reference-file> - <jms:reference-file line="823">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="905">Bridge/Api/Youtube.php</jms:reference-file> <jms:reference-file line="908">Bridge/Api/Youtube.php</jms:reference-file> <jms:reference-file line="931">Bridge/Api/Youtube.php</jms:reference-file> <jms:reference-file line="934">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="798">Bridge/Api/Dailymotion.php</jms:reference-file> + <jms:reference-file line="823">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="e821f6f0c9613624f82ae880c01573ab0c0a0eac" resname="Ce champ est relie a une branche de thesaurus" approved="yes"> <source>Ce champ est relie a une branche de thesaurus</source> @@ -1652,10 +1664,10 @@ <target state="new">Ce champ est trop long %length% caracteres max</target> <jms:reference-file line="694">Bridge/Api/Flickr.php</jms:reference-file> <jms:reference-file line="716">Bridge/Api/Flickr.php</jms:reference-file> - <jms:reference-file line="801">Bridge/Api/Dailymotion.php</jms:reference-file> - <jms:reference-file line="826">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="911">Bridge/Api/Youtube.php</jms:reference-file> <jms:reference-file line="937">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="801">Bridge/Api/Dailymotion.php</jms:reference-file> + <jms:reference-file line="826">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="6a436b2b01f08a63284006c23ac3b38c9a699cbd" resname="Ce champ est utilise en titre a l'affichage" approved="yes"> <source>Ce champ est utilise en titre a l'affichage</source> @@ -1772,8 +1784,8 @@ <trans-unit id="7135ee5eaed0e404c4fcf48d6eb7d2808f8e55f2" resname="Clear list" approved="yes"> <source>Clear list</source> <target state="translated">Lijst wissen</target> + <jms:reference-file line="112">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="109">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="109">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0fcdb8c5215c8bd73769c3492e47d86ec3f6837e" resname="Client application" approved="yes"> <source>Client application</source> @@ -1795,11 +1807,6 @@ <target state="translated">Verberg de hele kolom</target> <jms:reference-file line="43">web/admin/index.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="9f6dde6e53de78e748cd510d4dcd153b38a0b855" resname="Cochez les cases correspondantes aux colonnes que vous desirez voire apparaitre dans le report" approved="yes"> - <source>Cochez les cases correspondantes aux colonnes que vous desirez voire apparaitre dans le report</source> - <target state="translated">Schakel de selectievakjes die overeenkomen met de kolommen die u wilt of zelfs opgenomen zijn het rapport uit</target> - <jms:reference-file line="4">web/report/listColumn.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="3db8c513d71fe9dd08684c52c36e0a9d5bc591c5" resname="Code d'acces" approved="yes"> <source>Code d'acces</source> <target state="translated">Toegangs code</target> @@ -1808,7 +1815,7 @@ <trans-unit id="397cd77cd56f7d480a93a17770e90f2d8a1ac032" resname="Codec Audio" approved="yes"> <source>Codec Audio</source> <target state="translated">Audio Codec</target> - <jms:reference-file line="83">actions/Tools/videoEditor.html.twig</jms:reference-file> + <jms:reference-file line="96">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="140">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="672e654e54323537399e2353680dd144c0b9af32" resname="Codec Video" approved="yes"> @@ -1820,24 +1827,24 @@ <source>Collection</source> <target state="translated">Collectie</target> <jms:reference-file line="3">prod/Story/Create.html.twig</jms:reference-file> - <jms:reference-file line="344">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="441">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="12">admin/databox/details.html.twig</jms:reference-file> </trans-unit> <trans-unit id="814cd4d896d0d93eac2f4d71dc24c91a46cd5e28" resname="Collection %collection%" approved="yes"> <source>Collection %collection%</source> <target state="translated">Collectie %collection%</target> - <jms:reference-file line="8">web/admin/editusers_timelimit.html.twig</jms:reference-file> <jms:reference-file line="46">web/admin/editusers_quotas.html.twig</jms:reference-file> + <jms:reference-file line="8">web/admin/editusers_timelimit.html.twig</jms:reference-file> </trans-unit> <trans-unit id="915c5b033858560e7d04ae453279b9418637eade" resname="Collection empty successful" approved="yes"> <source>Collection empty successful</source> <target state="translated">Collectie met succes geledigd</target> - <jms:reference-file line="131">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="132">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="898b7e63805ba2e4277ee0f4523c6376dcd0e579" resname="Collection order"> <source>Collection order</source> <target state="new">Collection order</target> - <jms:reference-file line="706">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="797">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f704cc39c26f37922029d5ff58c61b607d384521" resname="Color Depth" approved="yes"> <source>Color Depth</source> @@ -1852,13 +1859,13 @@ <trans-unit id="0b8cb446bc8277d5fd8242aa11ecb0054f9bbaa6" resname="Colorspace"> <source>Colorspace</source> <target state="new">Colorspace</target> - <jms:reference-file line="340">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="367">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="478443411674f0df06db3b28230d37625383f8c2" resname="Commande" approved="yes"> <source>Commande</source> <target state="translated">Bestelling</target> <jms:reference-file line="20">eventsmanager/notify/ordernotdelivered.php</jms:reference-file> - <jms:reference-file line="20">eventsmanager/notify/orderdeliver.php</jms:reference-file> + <jms:reference-file line="23">eventsmanager/notify/orderdeliver.php</jms:reference-file> </trans-unit> <trans-unit id="71e4baa0bd2b501d3cffecac38f650c5db86c3f4" resname="Commande du %date%"> <source>Commande du %date%</source> @@ -1868,14 +1875,14 @@ <trans-unit id="17275970238d7ec2311e2097df8868fb3d338585" resname="Commandes" approved="yes"> <source>Commandes</source> <target state="translated">Commandos</target> - <jms:reference-file line="119">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="120">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7a1994999d181deea68e4304b3346e78f838ecb7" resname="Company" approved="yes"> <source>Company</source> <target state="translated">Bedrijf</target> - <jms:reference-file line="20">prod/User/Add.html.twig</jms:reference-file> - <jms:reference-file line="177">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="173">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="22">actions/Feedback/ListsMacros.html.twig</jms:reference-file> + <jms:reference-file line="20">prod/User/Add.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ebbde5a0aa9da74fc06083bd39398b2caecf42e5" resname="Complete the fields below to register on %instance_title%!" approved="yes"> <source>Complete the fields below to register on %instance_title%!</source> @@ -1890,10 +1897,10 @@ <trans-unit id="f7853f027e327a9ddf52dd60f8d1719ae6904333" resname="Confidentialite" approved="yes"> <source>Confidentialite</source> <target state="translated">Vertrouwelijk</target> - <jms:reference-file line="87">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="56">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="75">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="56">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="87">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="56">Bridge/Youtube/video_modify.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6e9445beaddb548587c6f275e49da38e9fc7b785" resname="Confidentialite : privee" approved="yes"> <source>Confidentialite : privee</source> @@ -1908,7 +1915,7 @@ <trans-unit id="754164850f38c1ecdaf6b8ed894cb192bc36c5f4" resname="Configuration" approved="yes"> <source>Configuration</source> <target state="translated">Configuratie</target> - <jms:reference-file line="580">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="671">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="37c3584d7b7d64dcff10d75caf719d4908e1f433" resname="Confirm new email address" approved="yes"> <source>Confirm new email address</source> @@ -1933,13 +1940,13 @@ <trans-unit id="6512ee1541e9a6c52d5bf7cf465332e8df25ea3c" resname="Connection" approved="yes"> <source>Connection</source> <target state="translated">Verbinding</target> - <jms:reference-file line="74">login/oauth/login.html.twig</jms:reference-file> - <jms:reference-file line="15">login/providers/bind.html.twig</jms:reference-file> - <jms:reference-file line="73">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="15">login/providers/mapping.html.twig</jms:reference-file> <jms:reference-file line="89">login/providers/mapping.html.twig</jms:reference-file> + <jms:reference-file line="15">login/providers/bind.html.twig</jms:reference-file> + <jms:reference-file line="73">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="24">web/login/index.html.twig</jms:reference-file> - <jms:reference-file line="84">web/login/index.html.twig</jms:reference-file> + <jms:reference-file line="85">web/login/index.html.twig</jms:reference-file> + <jms:reference-file line="74">login/oauth/login.html.twig</jms:reference-file> </trans-unit> <trans-unit id="64b7896508144a1f427b5bad0d51c6b139c610f3" resname="Connection is OK but database does not exists or can not be accessed" approved="yes"> <source>Connection is OK but database does not exists or can not be accessed</source> @@ -1961,6 +1968,11 @@ <target state="translated">Raadpleeg online de voorwaarden en de configuratie van de webserver</target> <jms:reference-file line="311">web/setup/step2.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="33e15d008d511f3101566a2e25203ef2a3f605a0" resname="Contains"> + <source>Contains</source> + <target state="new">Contains</target> + <jms:reference-file line="433">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="34326e71e2592544dedcb84077a6317dc5a5e700" resname="Continuer ?" approved="yes"> <source>Continuer ?</source> <target state="translated">Doorgaan ?</target> @@ -1999,7 +2011,7 @@ <trans-unit id="2d4f012e5f06719ae9bbd6de1696d7502474ba2d" resname="Could not perform request, please contact an administrator." approved="yes"> <source>Could not perform request, please contact an administrator.</source> <target state="translated">Kon uw aanvraag niet behandelen, gelieve contact op te nemen met een beheerder</target> - <jms:reference-file line="87">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="94">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="c183d160b24ba4d8cd1a39ffb5ceed69be38ee51" resname="Could not retrieve the file ID, please retry or contact an admin if problem persist" approved="yes"> <source>Could not retrieve the file ID, please retry or contact an admin if problem persist</source> @@ -2014,12 +2026,12 @@ <trans-unit id="7ebde54d7a6733f04781a2112a3d7548cb144e1f" resname="Couleur de selection" approved="yes"> <source>Couleur de selection</source> <target state="translated">Kleur van de selectie</target> - <jms:reference-file line="674">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="765">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d523ebbd10146cdfd39dee077f04c9d08468d0bc" resname="Country" approved="yes"> <source>Country</source> <target state="translated">Land</target> - <jms:reference-file line="183">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="179">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="36">actions/Feedback/ListsMacros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1a86d07315c59a10355c667fbd3cdd3d813aa476" resname="Create a user"> @@ -2055,9 +2067,9 @@ <trans-unit id="2bd00521d39c34d7b8a4a42573e1cf42fb319036" resname="Creer" approved="yes"> <source>Creer</source> <target state="translated">Maken</target> - <jms:reference-file line="4">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="4">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> <jms:reference-file line="4">Bridge/Dailymotion/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="4">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="4">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e0c179a64761a8abdbd1a1ef499e6aa7fd41b516" resname="Creer la tache d'ecriture des metadonnees" approved="yes"> <source>Creer la tache d'ecriture des metadonnees</source> @@ -2102,8 +2114,8 @@ <trans-unit id="6a2b9fb6f6a60bde44a1bbe5e058c013cb1004ea" resname="Creer une playlist" approved="yes"> <source>Creer une playlist</source> <target state="translated">Maak een playlist</target> - <jms:reference-file line="4">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> <jms:reference-file line="4">Bridge/Dailymotion/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="4">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> </trans-unit> <trans-unit id="27c26eb5f5ded79caa39c9dd44376bf3556f6466" resname="Creez une application pour commencer a utiliser l'API Phraseanet" approved="yes"> <source>Creez une application pour commencer a utiliser l'API Phraseanet</source> @@ -2125,7 +2137,7 @@ errors</source> <target state="new">Current configuration contains some errors</target> - <jms:reference-file line="290">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="309">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="31b3c410ee3a3630f3efc08bae2fd9d06ec16ff4" resname="Current operations cannot be executed because the site is temporarily in maintenance mode. Wait a few minutes and try your request again" approved="yes"> <source>Current operations cannot be executed because the site is temporarily in maintenance mode. Wait a few minutes and try your request again</source> @@ -2223,12 +2235,12 @@ <trans-unit id="eb9a4bc1c0c153e4e4b042a79113b815b7e3021d" resname="Date" approved="yes"> <source>Date</source> <target state="translated">Datum</target> - <jms:reference-file line="337">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="434">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2aafad40063bdb20757ad69b9fc9e0a06d6ca1c1" resname="Date Added"> <source>Date Added</source> <target state="new">Date Added</target> - <jms:reference-file line="348">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="377">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a4dde3acaa2424fe7135b962c49e37b13b1ebb43" resname="Date Creation" approved="yes"> <source>Date Creation</source> @@ -2238,7 +2250,7 @@ <trans-unit id="ae5ac088b6ef50c2a9e1ccf96d6f3c6d65cc4c05" resname="Date Updated"> <source>Date Updated</source> <target state="new">Date Updated</target> - <jms:reference-file line="351">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="380">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="910c2f8e114bda3eef68b7f17eee5e864be52dc4" resname="Date de connexion" approved="yes"> <source>Date de connexion</source> @@ -2264,6 +2276,11 @@ <jms:reference-file line="11">prod/Baskets/Reorder.html.twig</jms:reference-file> <jms:reference-file line="10">prod/Story/Reorder.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="ce084029e351b4bfa9f425ae70e8aaa14a8904e5" resname="Date(s) from field(s)"> + <source>Date(s) from field(s)</source> + <target state="new">Date(s) from field(s)</target> + <jms:reference-file line="459">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="6b98c9b528241fc8135fb9fd472c7db12ec14964" resname="De"> <source>De</source> <target>De</target> @@ -2305,7 +2322,7 @@ <trans-unit id="21cec17f6cd9c992f10804a71ea6d286a56c456a" resname="Default basket" approved="yes"> <source>Default basket</source> <target state="translated">Standaard mandje</target> - <jms:reference-file line="48">Phrasea/Helper/WorkZone.php</jms:reference-file> + <jms:reference-file line="49">Phrasea/Helper/WorkZone.php</jms:reference-file> </trans-unit> <trans-unit id="1747ef3d688685c5844db2dc7c98aafd78ce3893" resname="Default export title" approved="yes"> <source>Default export title</source> @@ -2340,7 +2357,7 @@ <trans-unit id="93603718ec74d5e4b9bc11e64f36a5d90f03f48e" resname="Defined by admin"> <source>Defined by admin</source> <target state="new">Defined by admin</target> - <jms:reference-file line="712">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="803">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3b6bf506a535e9bf22431eace58b8f2f704dbd2a" resname="Defined in Apache configuration" approved="yes"> <source>Defined in Apache configuration</source> @@ -2360,10 +2377,15 @@ <trans-unit id="f6fdbe48dc54dd86f63097a03bd24094dedd713a" resname="Delete" approved="yes"> <source>Delete</source> <target state="translated">Verwijder</target> - <jms:reference-file line="355">prod/upload/lazaret.html.twig</jms:reference-file> - <jms:reference-file line="356">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="512">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="513">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="25">admin/task-manager/templates.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="1b5737dea168495fa0495e00ce58b4832772a492" resname="Delete account successfull"> + <source>Delete account successfull</source> + <target state="new">Delete account successfull</target> + <jms:reference-file line="21">Notification/Mail/MailSuccessAccountDelete.php</jms:reference-file> + </trans-unit> <trans-unit id="7533d4121d8de10e9b2b4b9c5afa5dfbde846af1" resname="Delete all users rights" approved="yes"> <source>Delete all users rights</source> <target state="translated">Verwijder alle gebruikersrechten</target> @@ -2373,7 +2395,7 @@ <trans-unit id="ddd0876d47dc58418b245cf6a3d73a97d8b09400" resname="Delete basket" approved="yes"> <source>Delete basket</source> <target state="translated">Verwijder mandje</target> - <jms:reference-file line="37">WorkZone/Browser/Results.html.twig</jms:reference-file> + <jms:reference-file line="18">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dba1d3851f7f3efec8a1956e040bae0328da98d0" resname="Delete current"> <source>Delete current</source> @@ -2388,7 +2410,7 @@ <trans-unit id="c6d08354792522fdbda121b635282d0f2c41c507" resname="Delete the selection"> <source>Delete the selection</source> <target state="new">Delete the selection</target> - <jms:reference-file line="72">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="68">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5934638eb5d7384a3c63899019365bb9b7b53aff" resname="Delete the subview ?"> <source>Delete the subview ?</source> @@ -2410,9 +2432,9 @@ <trans-unit id="57ec2e2addbd6a4117f16c1fff5f491fe3c5642c" resname="Deplacement %n_element% elements" approved="yes"> <source>Deplacement %n_element% elements</source> <target state="translated">%n_element% elementen verplaatsen</target> - <jms:reference-file line="6">Bridge/Flickr/photo_moveinto_photoset.html.twig</jms:reference-file> - <jms:reference-file line="6">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> <jms:reference-file line="6">Bridge/Dailymotion/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="6">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="6">Bridge/Flickr/photo_moveinto_photoset.html.twig</jms:reference-file> </trans-unit> <trans-unit id="17c91ee147631da4f5aacabed0e198eb02955790" resname="Dernier access" approved="yes"> <source>Dernier access</source> @@ -2422,8 +2444,8 @@ <trans-unit id="821ed4c906c76220f9dc83eba5e0b861e22baa04" resname="Derniere mise a jour le %updated_on%" approved="yes"> <source>Derniere mise a jour le %updated_on%</source> <target state="translated">Laatste update %updated_on%</target> - <jms:reference-file line="45">prod/results/entry.html.twig</jms:reference-file> <jms:reference-file line="39">prod/results/feeds_entry.html.twig</jms:reference-file> + <jms:reference-file line="45">prod/results/entry.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dcce9368ad626fe4addfa719b7a16807d464aa9b" resname="Derniers envois"> <source>Derniers envois</source> @@ -2438,23 +2460,24 @@ <trans-unit id="55f8ebc805e65b5b71ddafdae390e3be2bcd69af" resname="Description" approved="yes"> <source>Description</source> <target state="translated">Beschrijving</target> - <jms:reference-file line="19">prod/Tooltip/DCESFieldInfo.html.twig</jms:reference-file> - <jms:reference-file line="52">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="31">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> - <jms:reference-file line="24">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="44">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="24">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="31">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="43">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="31">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="24">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="44">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="31">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="24">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="52">Bridge/Flickr/upload.html.twig</jms:reference-file> + <jms:reference-file line="31">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> + <jms:reference-file line="19">prod/Tooltip/DCESFieldInfo.html.twig</jms:reference-file> <jms:reference-file line="68">web/developers/application_form.html.twig</jms:reference-file> </trans-unit> <trans-unit id="85cce1e14782f67cb830f74002ebe5603783c674" resname="Deselect all" approved="yes"> <source>Deselect all</source> <target state="translated">Alles deselecteren</target> - <jms:reference-file line="64">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="216">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="27">web/report/form_date_and_base.html.twig</jms:reference-file> + <jms:reference-file line="222">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="60">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="71">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="48">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> <trans-unit id="fd281ce85e6f98a7dad0aa31a2e493a85ef178ca" resname="Design of personalization logo section"> <source>Design of personalization logo section</source> @@ -2464,13 +2487,13 @@ <trans-unit id="ac930a136ebd04a19bc5f2ce1769fc065efb7bdf" resname="Detailed view URL" approved="yes"> <source>Detailed view URL</source> <target state="translated">Gedetailleerde weergave URL</target> - <jms:reference-file line="50">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="56">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dc3decbb93847518f1a049dcf49d0d7c6560bcc6" resname="Details"> <source>Details</source> <target>Details</target> - <jms:reference-file line="2">admin/collection/details.html.twig</jms:reference-file> <jms:reference-file line="2">admin/databox/details.html.twig</jms:reference-file> + <jms:reference-file line="2">admin/collection/details.html.twig</jms:reference-file> </trans-unit> <trans-unit id="426d7f1b0dc37d0fb8ebff49d28335b1fd73774e" resname="Developpeur" approved="yes"> <source>Developpeur</source> @@ -2485,9 +2508,9 @@ <trans-unit id="45e147abd920eeb1aca320340e18cf67b4c77252" resname="Dimension" approved="yes"> <source>Dimension</source> <target state="translated">Afmeting</target> + <jms:reference-file line="32">Media/Subdef/Image.php</jms:reference-file> <jms:reference-file line="32">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="32">Media/Subdef/Video.php</jms:reference-file> - <jms:reference-file line="32">Media/Subdef/Image.php</jms:reference-file> </trans-unit> <trans-unit id="8b6613d50c2d8718fd7cab023e1530ce11650736" resname="Disable document type sharing"> <source>Disable document type sharing</source> @@ -2507,22 +2530,22 @@ <trans-unit id="fa9fd169cd55f0433c6e7a4b5d758f90d0847411" resname="Display & action settings" approved="yes"> <source><![CDATA[Display & action settings]]></source> <target state="translated"><![CDATA[Instellingen voor weergave & acties]]></target> - <jms:reference-file line="153">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="152">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d47165ea879fb259a5754e6c4052a1a4437dfda8" resname="Display technical data"> <source>Display technical data</source> <target state="new">Display technical data</target> - <jms:reference-file line="634">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="725">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="91ac9f9a0ff33ed65ca817be668da3693d743364" resname="Display thumbnails" approved="yes"> <source>Display thumbnails</source> <target state="translated">Toon thumbnails</target> - <jms:reference-file line="210">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="225">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f2f91f3c9d0ddbb497a99ee01c0f18a4b896bad4" resname="Do not display"> <source>Do not display</source> <target state="new">Do not display</target> - <jms:reference-file line="645">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="736">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e3eb8417683d81ed1fb08ad9399e3c61f7054000" resname="Do not forget to restart the tasks scheduler" approved="yes"> <source>Do not forget to restart the tasks scheduler</source> @@ -2554,7 +2577,7 @@ <trans-unit id="e214b8a29923056887b7edf6635d90dcbb2abe88" resname="Document"> <source>Document</source> <target>Document</target> - <jms:reference-file line="297">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="322">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c5bd0e534d218eb5680d7e83804e69cef318ea3f" resname="Document Type Sharing"> <source>Document Type Sharing</source> @@ -2637,13 +2660,13 @@ <trans-unit id="0d01e2e86669e98441ab4dce5520696c318b7098" resname="E-mail" approved="yes"> <source>E-mail</source> <target state="translated">Email</target> - <jms:reference-file line="37">Form/Login/PhraseaRegisterForm.php</jms:reference-file> <jms:reference-file line="23">Form/Login/PhraseaForgotPasswordForm.php</jms:reference-file> + <jms:reference-file line="37">Form/Login/PhraseaRegisterForm.php</jms:reference-file> </trans-unit> <trans-unit id="9cf2896f8b2e9e6a28f9b151e8be31f220a5d256" resname="E-mail domain"> <source>E-mail domain</source> <target state="new">E-mail domain</target> - <jms:reference-file line="171">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="167">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="734a78cd06d0929c433f487754d18bf073e43bf6" resname="EN"> <source>EN</source> @@ -2693,9 +2716,9 @@ <trans-unit id="5184ecbec7829b91dda100c703ea3fa284c7f5e8" resname="Edition de 1 element" approved="yes"> <source>Edition de 1 element</source> <target state="translated">Editie van het 1 element</target> - <jms:reference-file line="10">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> - <jms:reference-file line="10">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="10">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="10">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="10">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> </trans-unit> <trans-unit id="99ead0eb32b2089a9933db5ccc262e2fc35fd0a6" resname="Edition des droits de %display_name%" approved="yes"> <source>Edition des droits de %display_name%</source> @@ -2710,7 +2733,7 @@ <trans-unit id="92376275a970f44a04fcce0319075ec61bbac9ca" resname="Edition impossible" approved="yes"> <source>Edition impossible</source> <target state="translated">Kan niet worden bewerkt</target> - <jms:reference-file line="400">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="402">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c7e9fb2ea6c3b8c3ce97645eb902c348d859f36d" resname="Editor"> <source>Editor</source> @@ -2748,13 +2771,13 @@ <trans-unit id="84add5b2952787581cb9a8851eef63d1ec75d22b" resname="Email"> <source>Email</source> <target>Email</target> - <jms:reference-file line="140">admin/publications/fiche.html.twig</jms:reference-file> <jms:reference-file line="129">web/admin/dashboard.html.twig</jms:reference-file> + <jms:reference-file line="140">admin/publications/fiche.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4492ab77c9378c5582b87621ecd89c96fef88640" resname="Email '%email%' for login '%login%' already exists in database"> <source>Email '%email%' for login '%login%' already exists in database</source> <target state="new">Email '%email%' for login '%login%' already exists in database</target> - <jms:reference-file line="654">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="655">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="e4aaac273d3c0d793207e6b559a7b7f97d543064" resname="Email Name" approved="yes"> <source>Email Name</source> @@ -2779,14 +2802,35 @@ <trans-unit id="d8efc876746f2fe8dae7e433323dc4f22535d1ac" resname="Email successfully confirmed" approved="yes"> <source>Email successfully confirmed</source> <target state="translated">Email met succes bevestigd</target> - <jms:reference-file line="21">Notification/Mail/MailSuccessEmailConfirmationUnregistered.php</jms:reference-file> <jms:reference-file line="21">Notification/Mail/MailSuccessEmailConfirmationRegistered.php</jms:reference-file> + <jms:reference-file line="21">Notification/Mail/MailSuccessEmailConfirmationUnregistered.php</jms:reference-file> </trans-unit> <trans-unit id="b529e23b7676146d364266e97d9f242eac2e28b4" resname="Email test result : %email_status%" approved="yes"> <source>Email test result : %email_status%</source> <target state="translated">Email test resultaat : %email_status%</target> <jms:reference-file line="136">web/admin/dashboard.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="c839b2905a9c9e4e611519e461c6f3e0dde4ec78" resname="Email:deletion:request:message Hello %civility% %firstName% %lastName%. We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below. If you are not at the origin of this request, please change your password as soon as possible %resetPassword% Link is valid for one hour."> + <source>Email:deletion:request:message Hello %civility% %firstName% %lastName%. + We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below. + If you are not at the origin of this request, please change your password as soon as possible %resetPassword% + Link is valid for one hour.</source> + <target state="new">Email:deletion:request:message Hello %civility% %firstName% %lastName%. + We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below. + If you are not at the origin of this request, please change your password as soon as possible %resetPassword% + Link is valid for one hour.</target> + <jms:reference-file line="51">Notification/Mail/MailRequestAccountDelete.php</jms:reference-file> + </trans-unit> + <trans-unit id="ccbd5b5d94afa34b04935d0b084335f2656d96af" resname="Email:deletion:request:subject Delete account confirmation"> + <source>Email:deletion:request:subject Delete account confirmation</source> + <target state="new">Email:deletion:request:subject Delete account confirmation</target> + <jms:reference-file line="39">Notification/Mail/MailRequestAccountDelete.php</jms:reference-file> + </trans-unit> + <trans-unit id="b37c2cc6df6ff49078905d16da4e3fa3a28490e4" resname="Email:deletion:request:textButton Delete my account"> + <source>Email:deletion:request:textButton Delete my account</source> + <target state="new">Email:deletion:request:textButton Delete my account</target> + <jms:reference-file line="68">Notification/Mail/MailRequestAccountDelete.php</jms:reference-file> + </trans-unit> <trans-unit id="473558393914486d8e60b9968e5443e40be433e0" resname="Emails"> <source>Emails</source> <target>Emails</target> @@ -2795,7 +2839,7 @@ <trans-unit id="7884b9b422d77cabded5da8a9a56524a84481930" resname="Embed code" approved="yes"> <source>Embed code</source> <target state="translated">Sluit de code in</target> - <jms:reference-file line="61">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="67">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e5afbbe7023486a123b45581f49820899571c415" resname="Empty a collection"> <source>Empty a collection</source> @@ -2821,8 +2865,8 @@ <trans-unit id="b21b69f5882b80aa94dde1b4b588cc884758d886" resname="Empty the collection before removing" approved="yes"> <source>Empty the collection before removing</source> <target state="translated">Maak eerst de collectie leeg alvorens te verwijderen</target> - <jms:reference-file line="68">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="455">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="69">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="456">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="5231158f14d4ea45584d5ad019c76e7e5e52e7ef" resname="En attente" approved="yes"> <source>En attente</source> @@ -2837,8 +2881,8 @@ <trans-unit id="0413c20ae2fd31e0a1eef73e7768c8e1c68558d9" resname="En cours d'encodage" approved="yes"> <source>En cours d'encodage</source> <target state="translated">Bezig met coderen</target> - <jms:reference-file line="531">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="495">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="531">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="56">actions/Bridge/records_list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="43494e363213dc176e0699b914ccf966ccbd994d" resname="En cours d'envoi" approved="yes"> @@ -2972,6 +3016,11 @@ <target state="translated">Met succes verstuurd</target> <jms:reference-file line="445">Phrasea/Controller/LightboxController.php</jms:reference-file> </trans-unit> + <trans-unit id="09b6a6dcd3f6d4a7d3a95bceaad67a7f1800272f" resname="Equals"> + <source>Equals</source> + <target state="new">Equals</target> + <jms:reference-file line="434">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="ab546c237a6685e5c75689266cfa715eeb21b7db" resname="Erreur" approved="yes"> <source>Erreur</source> <target state="translated">Fout</target> @@ -2980,8 +3029,8 @@ <trans-unit id="fb6a263ee36a9eebf03b39221b223a2b7b2eae5f" resname="Erreur !" approved="yes"> <source>Erreur !</source> <target state="translated">Fout !</target> - <jms:reference-file line="9">web/lightbox/error.html.twig</jms:reference-file> <jms:reference-file line="15">mobile/lightbox/error.html.twig</jms:reference-file> + <jms:reference-file line="9">web/lightbox/error.html.twig</jms:reference-file> </trans-unit> <trans-unit id="90aa6d11f451da9eab381da74e349cb9d7f53647" resname="Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas" approved="yes"> <source>Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas</source> @@ -3036,9 +3085,9 @@ <trans-unit id="7f7bf810a272a035f6da919a27124160567c0b3f" resname="Erreur lors de la tentative ; errreur : %message%"> <source>Erreur lors de la tentative ; errreur : %message%</source> <target state="new">Erreur lors de la tentative ; errreur : %message%</target> - <jms:reference-file line="135">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> - <jms:reference-file line="483">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> - <jms:reference-file line="495">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> + <jms:reference-file line="139">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> + <jms:reference-file line="493">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> + <jms:reference-file line="507">Core/Database/DatabaseMaintenanceService.php</jms:reference-file> </trans-unit> <trans-unit id="bd8b889cda696b61ee9c4d197f3d93e93c1ab8e6" resname="Erreur lors de votre authentification" approved="yes"> <source>Erreur lors de votre authentification</source> @@ -3063,7 +3112,7 @@ <trans-unit id="3bce15460cac7169ea217ebc3f887d839e28e3a8" resname="Error while creating user" approved="yes"> <source>Error while creating user</source> <target state="translated">Fout tijdens het aanmaken van gebruiker</target> - <jms:reference-file line="489">Controller/Prod/PushController.php</jms:reference-file> + <jms:reference-file line="494">Controller/Prod/PushController.php</jms:reference-file> </trans-unit> <trans-unit id="15059bc07c7d22747a0bf89dbefdeffe625a4776" resname="Error while saving preference" approved="yes"> <source>Error while saving preference</source> @@ -3074,8 +3123,8 @@ <trans-unit id="ef89b844df981421f3abce06ad08d28d2b31e539" resname="Error while sending the file" approved="yes"> <source>Error while sending the file</source> <target state="translated">Fout bij het versturen van het bestaan</target> - <jms:reference-file line="59">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="38">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="60">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="cbd40a831648175ebe3f427f83956d626506dc56" resname="Error while uploading" approved="yes"> <source>Error while uploading</source> @@ -3085,8 +3134,8 @@ <trans-unit id="40019ae278d51a265b82e37738989bf1b22157b7" resname="Etendue de la publication" approved="yes"> <source>Etendue de la publication</source> <target state="translated">Omvang van de publicatie</target> - <jms:reference-file line="22">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="105">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="22">admin/publications/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="255f8b2705b27e25acc23428730bfd7a32d9a0db" resname="Etes vous sur de supprimer %number% photos ?" approved="yes"> <source>Etes vous sur de supprimer %number% photos ?</source> @@ -3101,14 +3150,19 @@ <trans-unit id="e7f864e2cef6464cd4342b0a0b607c6b53fd8263" resname="Etes vous sur de supprimer %number% playlists ?" approved="yes"> <source>Etes vous sur de supprimer %number% playlists ?</source> <target state="translated">Bent u zeker om %number% playlists te verwijderen ?</target> - <jms:reference-file line="13">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/playlist_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f0181b1da6f09b84ae46efce781899eb57ec74b8" resname="Etes vous sur de supprimer %number% videos ?" approved="yes"> <source>Etes vous sur de supprimer %number% videos ?</source> <target state="translated">Bent u zeker om %number% videos te verwijderen ?</target> - <jms:reference-file line="13">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="46a1884f7b083976b0fd0678f10b8f00ee93cde9" resname="Ex : Paris, bleu, montagne"> + <source>Ex : Paris, bleu, montagne</source> + <target state="new">Ex : Paris, bleu, montagne</target> + <jms:reference-file line="436">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a9c067c65c9f9d5a8e96791db7d189bc22eca9c1" resname="Executables externes" approved="yes"> <source>Executables externes</source> @@ -3123,9 +3177,9 @@ <trans-unit id="f3e4fadb9e370a1e2c0c622c01fc8c77daf93a2c" resname="Export" approved="yes"> <source>Export</source> <target state="translated">Exporteer</target> - <jms:reference-file line="107">Controller/Prod/LanguageController.php</jms:reference-file> <jms:reference-file line="75">Controller/Prod/DoDownloadController.php</jms:reference-file> <jms:reference-file line="76">Controller/Prod/DoDownloadController.php</jms:reference-file> + <jms:reference-file line="107">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> <trans-unit id="9c26d273867dffc55d40f46e6a163067c75969f5" resname="Export ranges"> <source>Export ranges</source> @@ -3169,7 +3223,7 @@ <jms:reference-file line="54">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="51">prod/WorkZone/Basket.html.twig</jms:reference-file> <jms:reference-file line="143">web/prod/toolbar.html.twig</jms:reference-file> - <jms:reference-file line="192">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="190">web/prod/toolbar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ffe8e99492ee9b850395d53f6c519938952fde0d" resname="Feeds"> <source>Feeds</source> @@ -3224,11 +3278,11 @@ <trans-unit id="aadf78d4b7c7c7341aa891adca70897c4f978cb6" resname="File is not present in quarantine anymore, please refresh" approved="yes"> <source>File is not present in quarantine anymore, please refresh</source> <target state="translated">Bestand is niet meer in de quarantiane aanwezig, gelieve te vernieuwen</target> - <jms:reference-file line="78">Controller/Prod/LazaretController.php</jms:reference-file> - <jms:reference-file line="197">Controller/Prod/LazaretController.php</jms:reference-file> <jms:reference-file line="54">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="134">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="155">Model/Manipulator/LazaretManipulator.php</jms:reference-file> + <jms:reference-file line="78">Controller/Prod/LazaretController.php</jms:reference-file> + <jms:reference-file line="207">Controller/Prod/LazaretController.php</jms:reference-file> </trans-unit> <trans-unit id="3491d2e44dd1896af3411bb1a048847c13647feb" resname="File is too big : 64k max" approved="yes"> <source>File is too big : 64k max</source> @@ -3258,7 +3312,7 @@ <trans-unit id="a3cbb98ddf5ee976bc1c3be5221d66ce3ca2e867" resname="Filename" approved="yes"> <source>Filename</source> <target state="translated">Bestandsnaam</target> - <jms:reference-file line="336">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="433">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="246a65679a39e030c98cad396903b0a3d8874dbc" resname="Fils disponibles" approved="yes"> <source>Fils disponibles</source> @@ -3271,11 +3325,6 @@ <target>Filter</target> <jms:reference-file line="41">web/admin/users.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="a7a02ef54f4fa28248414c42efbf3c45d2942326" resname="Filtrer" approved="yes"> - <source>Filtrer</source> - <target state="translated">Filteren</target> - <jms:reference-file line="62">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="b6ea992aab4668311bb94778e056dd0285f27621" resname="First Name" approved="yes"> <source>First Name</source> <target state="translated">Voornaam</target> @@ -3296,19 +3345,19 @@ <trans-unit id="b62482236f533b5e0f245e716211965a8774a2f2" resname="Flash"> <source>Flash</source> <target>Flash</target> - <jms:reference-file line="298">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="323">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="87">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2869d115faa9aa305076269dfbaf57c28cbd9fb6" resname="FlashFired"> <source>FlashFired</source> <target state="new">FlashFired</target> - <jms:reference-file line="303">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="318">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="02893456d53323f0fdbbe9447fe5b3401f2102f7" resname="Flatten layers"> <source>Flatten layers</source> <target state="new">Flatten layers</target> - <jms:reference-file line="35">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="35">Media/Subdef/Image.php</jms:reference-file> + <jms:reference-file line="35">Media/Subdef/Unknown.php</jms:reference-file> </trans-unit> <trans-unit id="9bd85a7d22f6cdee554e5b9e865d26dcbb4dafc9" resname="Focal length" approved="yes"> <source>Focal length</source> @@ -3318,7 +3367,7 @@ <trans-unit id="0267a34f43c33d216cc700ffcd521bf8a5ddcd0c" resname="Force authentication"> <source>Force authentication</source> <target state="new">Force authentication</target> - <jms:reference-file line="168">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="169">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c7dbc1bf5eabb170eb6a0597a076723db79ec064" resname="Force sending of the document ?" approved="yes"> <source>Force sending of the document ?</source> @@ -3338,10 +3387,10 @@ <trans-unit id="4c29f7f0335807c2524d8c36d531496aee23f473" resname="Forgot password?" approved="yes"> <source>Forgot password?</source> <target state="translated">Wachtwoord vergeten?</target> - <jms:reference-file line="58">login/oauth/login.html.twig</jms:reference-file> - <jms:reference-file line="58">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="74">login/providers/mapping.html.twig</jms:reference-file> + <jms:reference-file line="58">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="70">web/login/index.html.twig</jms:reference-file> + <jms:reference-file line="58">login/oauth/login.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a2f060b7363f54c9f80d62805d36636dd7ebc33c" resname="Forgot your password?" approved="yes"> <source>Forgot your password?</source> @@ -3361,7 +3410,7 @@ <trans-unit id="629fe48e7fcf628a108551add706c29832b214df" resname="FrameRate"> <source>FrameRate</source> <target state="new">FrameRate</target> - <jms:reference-file line="315">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="332">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="d4947df23a237794a9ff63353bd60ebe679c830c" resname="Frequence d'echantillonage" approved="yes"> <source>Frequence d'echantillonage</source> @@ -3393,15 +3442,10 @@ <target state="translated">Algemene instellingen</target> <jms:reference-file line="87">web/admin/dashboard.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="fc45f9b7a9a6e8b48f0e28821ec1981804dd1eb6" resname="Generate"> - <source>Generate</source> - <target state="new">Generate</target> - <jms:reference-file line="21">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="1738f829e68f7add441844e11cae6237acf401d1" resname="Generate dashboard"> - <source>Generate dashboard</source> - <target state="new">Generate dashboard</target> - <jms:reference-file line="52">web/report/report_layout_child.html.twig</jms:reference-file> + <trans-unit id="05db1e4e974fff47ae67bae1309fb4edd9b0a053" resname="Generate-cterms"> + <source>Generate-cterms</source> + <target state="new">Generate-cterms</target> + <jms:reference-file line="267">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9f1b4c9f85fcbbf355fdd3c97210173b63551aa6" resname="Generates a flexpaper flash file" approved="yes"> <source>Generates a flexpaper flash file</source> @@ -3426,18 +3470,18 @@ <trans-unit id="7ba409c16f96c035c4bdd4246eecf1070e8efd46" resname="Generates an audio file" approved="yes"> <source>Generates an audio file</source> <target state="translated">Genereerd een audio file</target> - <jms:reference-file line="44">Media/Subdef/Audio.php</jms:reference-file> + <jms:reference-file line="48">Media/Subdef/Audio.php</jms:reference-file> </trans-unit> <trans-unit id="d1e6306fa0e2c34c9580854b101bc70e510bc5a3" resname="Generates an image"> <source>Generates an image</source> <target state="new">Generates an image</target> - <jms:reference-file line="47">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="47">Media/Subdef/Image.php</jms:reference-file> + <jms:reference-file line="47">Media/Subdef/Unknown.php</jms:reference-file> </trans-unit> <trans-unit id="621654fc14cd9c0d5f5009ff29c1ba0db747f162" resname="Geo Search"> <source>Geo Search</source> <target state="new">Geo Search</target> - <jms:reference-file line="274">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="296">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="efd1f5fd46c31701d2e70555e9ab45efe27b4048" resname="Geonames server address" approved="yes"> <source>Geonames server address</source> @@ -3512,24 +3556,13 @@ <trans-unit id="779f61efcfe62182d0052c9526f3910378764758" resname="Graphiste (preview au rollover)" approved="yes"> <source>Graphiste (preview au rollover)</source> <target state="translated">Graficus (preview au rollover)</target> - <jms:reference-file line="629">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="720">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="bd846adf34307e77ff7d457b28a426470fc0bad9" resname="Great" approved="yes"> <source>Great</source> <target state="translated">Uitstekend</target> <jms:reference-file line="153">Controller/Root/LoginController.php</jms:reference-file> </trans-unit> - <trans-unit id="325f1aa7d25c7b35a2006768bef41b1e7727d444" resname="Groupement des resultats sur le champ %name%"> - <source>Groupement des resultats sur le champ %name%</source> - <target state="new">Groupement des resultats sur le champ %name%</target> - <jms:reference-file line="607">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="754">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="42c8f672af9a6da3268b6f4a99958d6e735607b1" resname="Grouper" approved="yes"> - <source>Grouper</source> - <target state="translated">Groeperen</target> - <jms:reference-file line="66">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="d36ed42d18a32e092664742ba0e0879f66ff0439" resname="Groupez 2 ou plusieurs mots avec des guillemets: "Michael Jackson""> <source>Groupez 2 ou plusieurs mots avec des guillemets: "Michael Jackson"</source> <target state="new">Groupez 2 ou plusieurs mots avec des guillemets: "Michael Jackson"</target> @@ -3538,8 +3571,8 @@ <trans-unit id="face83ee3014bdc8f98203cc94e2e89222452e90" resname="Guest" approved="yes"> <source>Guest</source> <target state="translated">Gast</target> - <jms:reference-file line="165">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="246">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="149">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="223">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="233f29cc242544136b94f354693299956575a9d0" resname="Guest access" approved="yes"> <source>Guest access</source> @@ -3551,6 +3584,16 @@ <target state="new">Guest, you must be authenticated to have the right to download.</target> <jms:reference-file line="88">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="771d30c668093219776b418dc5d3475682457167" resname="Gui-editable"> + <source>Gui-editable</source> + <target state="new">Gui-editable</target> + <jms:reference-file line="196">admin/fields/templates.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="c3ccdd44c467c7149733d19a40e0068ddb00ab25" resname="Gui-visible"> + <source>Gui-visible</source> + <target state="new">Gui-visible</target> + <jms:reference-file line="204">admin/fields/templates.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="6bc9ceaf6239215199222552fbbe96c17a549705" resname="HD Download"> <source>HD Download</source> <target>HD Download</target> @@ -3559,14 +3602,14 @@ <trans-unit id="d0d3632efe2a20cf1235aead5d817e03308131cc" resname="Hello %username%" approved="yes"> <source>Hello %username%</source> <target state="translated">Hallo %username%</target> + <jms:reference-file line="62">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="45">api/auth/native_app_access_token.html.twig</jms:reference-file> <jms:reference-file line="82">api/auth/end_user_authorization.html.twig</jms:reference-file> - <jms:reference-file line="62">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c47ae15370cfe1ed2781eedc1dc2547d12d9e972" resname="Help"> <source>Help</source> <target>Help</target> - <jms:reference-file line="69">login/layout/base-layout.html.twig</jms:reference-file> + <jms:reference-file line="70">login/layout/base-layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7c4fcd241b7c7436fc9380f34ad57efcb70fd49c" resname="Hi, Please log in" approved="yes"> <source>Hi, Please log in</source> @@ -3581,11 +3624,11 @@ <trans-unit id="70f8bb9a8a5393ef080507a89e4b98d139000d65" resname="Home" approved="yes"> <source>Home</source> <target state="translated">Startpagina</target> - <jms:reference-file line="66">login/layout/base-layout.html.twig</jms:reference-file> - <jms:reference-file line="3">login/include/language-block.html.twig</jms:reference-file> - <jms:reference-file line="17">mobile/lightbox/feed.html.twig</jms:reference-file> <jms:reference-file line="50">mobile/lightbox/basket_element.html.twig</jms:reference-file> + <jms:reference-file line="17">mobile/lightbox/feed.html.twig</jms:reference-file> <jms:reference-file line="33">mobile/lightbox/validate.html.twig</jms:reference-file> + <jms:reference-file line="3">login/include/language-block.html.twig</jms:reference-file> + <jms:reference-file line="67">login/layout/base-layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="99f3b7dca04d6f354a9d2a3b633d9578a9ad8cac" resname="Homepage slideshow" approved="yes"> <source>Homepage slideshow</source> @@ -3611,7 +3654,7 @@ <trans-unit id="4f325d995b6d028ccc75771b1679537b623521c4" resname="ISO"> <source>ISO</source> <target state="new">ISO</target> - <jms:reference-file line="279">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="288">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="16a5173a6d384d155354f429d72834cd0bd6bc54" resname="ISO sensibility" approved="yes"> <source>ISO sensibility</source> @@ -3621,7 +3664,7 @@ <trans-unit id="e195951cb1946935a88fdd9ee6735e0f6ddc120b" resname="Iconographe (description au rollover)" approved="yes"> <source>Iconographe (description au rollover)</source> <target state="translated">Iconographe (beschrijving bij de rollover)</target> - <jms:reference-file line="625">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="716">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="474ae52625b87d7628ae7b20a499329a99e07119" resname="Id"> <source>Id</source> @@ -3666,7 +3709,7 @@ <trans-unit id="50e19fda0d5b4b74a4a1a1d584e56578693a4ea4" resname="Image" approved="yes"> <source>Image</source> <target state="translated">Beeld</target> - <jms:reference-file line="294">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="319">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="57a8e563190f921afb876d6489bb40ed74f43a1a" resname="ImageMagick"> <source>ImageMagick</source> @@ -3676,7 +3719,7 @@ <trans-unit id="3e38a20c1629a473809ea6a14c9cdf4204d3ac3b" resname="Images par secondes" approved="yes"> <source>Images par secondes</source> <target state="translated">Beelden per seconde</target> - <jms:reference-file line="78">actions/Tools/videoEditor.html.twig</jms:reference-file> + <jms:reference-file line="91">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="134">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4d39de5885805135b502a3e8920ffb0b1921cb6f" resname="Imagette indisponible" approved="yes"> @@ -3692,7 +3735,7 @@ <trans-unit id="ca13920228ea59b30c40b8372f53df3bf4631520" resname="In the answer grid"> <source>In the answer grid</source> <target state="new">In the answer grid</target> - <jms:reference-file line="637">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="728">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="37ba6b0018a45c0890440d9e1cae63e046bad31d" resname="Include Business-fields in caption" approved="yes"> <source>Include Business-fields in caption</source> @@ -3704,12 +3747,12 @@ <trans-unit id="e60e6d0321b0dc4e2a47c163bdb8402df3deb18f" resname="Incorrect please try again" approved="yes"> <source>Incorrect please try again</source> <target state="translated">Fout gelieve opnieuw te proberen</target> - <jms:reference-file line="19">web/common/macros.html.twig</jms:reference-file> + <jms:reference-file line="19">web/common/macro_captcha.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d8b6addd60debc77c2c9b03c90e8b626de36d170" resname="Indexable" approved="yes"> <source>Indexable</source> <target state="translated">Indexeerbaar</target> - <jms:reference-file line="181">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="180">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="85737399ad7bf8da1405c20f9984ceef5efe1ca9" resname="Indexation task"> <source>Indexation task</source> @@ -3724,9 +3767,9 @@ <trans-unit id="54937b3a4f8cfa4576692882d3ff7b14c90c4ce5" resname="Informations" approved="yes"> <source>Informations</source> <target state="translated">Informatie</target> - <jms:reference-file line="195">admin/user/registrations.html.twig</jms:reference-file> - <jms:reference-file line="33">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="56">web/account/base.html.twig</jms:reference-file> + <jms:reference-file line="33">web/admin/dashboard.html.twig</jms:reference-file> + <jms:reference-file line="195">admin/user/registrations.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e1e0586141223b0143df16f7422dae5a43b77103" resname="Informations personnelles" approved="yes"> <source>Informations personnelles</source> @@ -3741,8 +3784,8 @@ <trans-unit id="9be51f96ff02e94d1a5108f14de0b373ef3dd675" resname="Inscription" approved="yes"> <source>Inscription</source> <target state="translated">Inschrijving</target> - <jms:reference-file line="14">web/login/register.html.twig</jms:reference-file> <jms:reference-file line="15">web/login/register-classic.html.twig</jms:reference-file> + <jms:reference-file line="14">web/login/register.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ff4fc2499da3e8fafdb7402dafd3b326aa0cc762" resname="Install in progess" approved="yes"> <source>Install in progess</source> @@ -3762,8 +3805,8 @@ <trans-unit id="3da203883b919e942c295aa2ebec1ac7e121c3fb" resname="Invalid file format" approved="yes"> <source>Invalid file format</source> <target state="translated">Ongeldige bestandsindeling</target> - <jms:reference-file line="62">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="41">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="63">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="56f848f49e2a8c9efeb61b986ec48e6328cac5cc" resname="Invalid file type" approved="yes"> <source>Invalid file type</source> @@ -3774,9 +3817,9 @@ <trans-unit id="3a8b37b23cc60ea1c00e28058bfbb15cf00a547d" resname="Invalid file type, only (%supported_file_types%) file formats are supported" approved="yes"> <source>Invalid file type, only (%supported_file_types%) file formats are supported</source> <target state="translated">Ongeldig bestandsformaat, enkel (%supported_file_types%) bestandsformaten worden ondersteund</target> + <jms:reference-file line="397">admin/databox/databox.html.twig</jms:reference-file> <jms:reference-file line="60">user/import/file.html.twig</jms:reference-file> <jms:reference-file line="199">admin/statusbit/edit.html.twig</jms:reference-file> - <jms:reference-file line="397">admin/databox/databox.html.twig</jms:reference-file> </trans-unit> <trans-unit id="65fd566280b15a384df25c73315b0dcbc6dacb69" resname="Invalid file type, only (%supported_file_types%) file formats are supported'"> <source>Invalid file type, only (%supported_file_types%) file formats are supported'</source> @@ -3786,8 +3829,8 @@ <trans-unit id="1c3a084c7a6e7e196db6c80a473d0bf0dfdd8f69" resname="Invalid labels parameter" approved="yes"> <source>Invalid labels parameter</source> <target state="translated">Ongeldige parameter voor labels</target> - <jms:reference-file line="574">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="134">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="575">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="d211e2ef8dd9e15443e081e455da91938085a2ff" resname="Invalid link." approved="yes"> <source>Invalid link.</source> @@ -3797,7 +3840,7 @@ <trans-unit id="8a3506d6dd32abc6a9d3651ec8b9bba513f65e81" resname="Invalid password provided" approved="yes"> <source>Invalid password provided</source> <target state="translated">Ongeldig wachtwoord opgegeven</target> - <jms:reference-file line="64">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="71">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="a1244ab057df1737a47854d003cc98ec33ad3c09" resname="Invalid target collection" approved="yes"> <source>Invalid target collection</source> @@ -3860,17 +3903,17 @@ <trans-unit id="a5efbcf21fb4f967dcf3c54434390038f645d761" resname="L'utilisateur approuve ce document" approved="yes"> <source>L'utilisateur approuve ce document</source> <target state="translated">De gebruiker keurt dit document goed</target> - <jms:reference-file line="361">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="391">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f1a075e09cf00ad7f6a7b13f0e7982c01f71b4db" resname="L'utilisateur desapprouve ce document" approved="yes"> <source>L'utilisateur desapprouve ce document</source> <target state="translated">De gebruiker keurt dit document af</target> - <jms:reference-file line="365">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="395">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d189e6ca37fc13568fa40c4e089d3c55f1bb26cf" resname="L'utilisateur n'a pas encore donne son avis sur ce document" approved="yes"> <source>L'utilisateur n'a pas encore donne son avis sur ce document</source> <target state="translated">De gebruiker heeft nog zijn mening niet gegeven over dit document</target> - <jms:reference-file line="363">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="393">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6f16ba73379400f5465d624690a333f732ba02a5" resname="La connection vers le serveur distant est OK" approved="yes"> <source>La connection vers le serveur distant est OK</source> @@ -3887,20 +3930,20 @@ <trans-unit id="cfa0120ab592ae2bc3198dbde15a7a87a0c792c4" resname="La taille maximale d'une video est de %duration% minutes."> <source>La taille maximale d'une video est de %duration% minutes.</source> <target state="new">La taille maximale d'une video est de %duration% minutes.</target> - <jms:reference-file line="900">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="1014">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="900">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="1dcfd86b957b9cf12ede165c6c2fa0acf12f3eeb" resname="La video a ete rejetee" approved="yes"> <source>La video a ete rejetee</source> <target state="translated">De video werd verworpen</target> - <jms:reference-file line="527">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="491">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="527">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="653e67f152ecc63ff3ee1014e86cc630a35dfe1a" resname="La video a ete supprimee" approved="yes"> <source>La video a ete supprimee</source> <target state="translated">De video werd verwijderd</target> - <jms:reference-file line="525">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="489">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="525">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="da1c672d0d761ed5ac292335ed60e14ff3073265" resname="La video est restreinte" approved="yes"> <source>La video est restreinte</source> @@ -3916,7 +3959,7 @@ <trans-unit id="89b86ab0e66f527166d98df92ddbcf5416ed58f6" resname="Language"> <source>Language</source> <target state="new">Language</target> - <jms:reference-file line="593">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="684">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="863cb39fbe7d70597076af1960b7ae4618d9e1bc" resname="Last Name" approved="yes"> <source>Last Name</source> @@ -3946,7 +3989,7 @@ <trans-unit id="73d43eca841fe44e1b9b41795ecbe13ee0772b38" resname="Last uploaded version" approved="yes"> <source>Last uploaded version</source> <target state="translated">Laatst opgeladen versie</target> - <jms:reference-file line="330">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="427">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0e0925b2bb685e25d3e94442cb0faea41156392b" resname="Le bridge Dailymotion ne prend en charge que les videos" approved="yes"> <source>Le bridge Dailymotion ne prend en charge que les videos</source> @@ -3981,7 +4024,7 @@ <trans-unit id="1486ba721fa0e62d17c809eb55964a1c514f6d3f" resname="Le contenu de cet email est confidentiel, ne le divulguez pas." approved="yes"> <source>Le contenu de cet email est confidentiel, ne le divulguez pas.</source> <target state="translated">De inhoud van deze mail is confidentieel, geef hem niet vrij.</target> - <jms:reference-file line="119">templates/web/email-template.html.twig</jms:reference-file> + <jms:reference-file line="125">templates/web/email-template.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8d90d64a516aa1d05e3aa4c5beb4f9e80bf77bb1" resname="Le nom de base de donnee est incorrect" approved="yes"> <source>Le nom de base de donnee est incorrect</source> @@ -3997,15 +4040,15 @@ <source>Le poids maximum d'un fichier est de %size%</source> <target state="new">Le poids maximum d'un fichier est de %size%</target> <jms:reference-file line="814">Bridge/Api/Flickr.php</jms:reference-file> - <jms:reference-file line="906">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="1020">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="906">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="13b9d7ef8e81663d7162d25b84cec1c24041e630" resname="Le record n'a pas de fichier physique" approved="yes"> <source>Le record n'a pas de fichier physique</source> <target state="translated">Het record heeft geen fisieke documenten</target> <jms:reference-file line="808">Bridge/Api/Flickr.php</jms:reference-file> - <jms:reference-file line="896">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="1010">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="896">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="a596c989f20650068f6278338c1a966b7a8693f8" resname="Le token n'a pas encore ete genere" approved="yes"> <source>Le token n'a pas encore ete genere</source> @@ -4026,9 +4069,9 @@ <trans-unit id="e330465da3182b7f6ed1b78217993edb4e22aacb" resname="Les elements ne peuvent etre uploades (problemes de type ou de droit)" approved="yes"> <source>Les elements ne peuvent etre uploades (problemes de type ou de droit)</source> <target state="translated">De elementen kunnen niet worden geuploaded (problemen met het type of met de rechten)</target> - <jms:reference-file line="16">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="15">Bridge/Youtube/upload.html.twig</jms:reference-file> <jms:reference-file line="15">Bridge/Dailymotion/upload.html.twig</jms:reference-file> + <jms:reference-file line="15">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="16">Bridge/Flickr/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="72d3dbec389dce620bfa531d37c5f199ca2ccfda" resname="Les indications donnees ci dessous sont a titre informatif." approved="yes"> <source>Les indications donnees ci dessous sont a titre informatif.</source> @@ -4048,18 +4091,24 @@ <trans-unit id="a733c2df9772facab04b4773c9d2bed560c25e9a" resname="Les status de certains documents ne sont pas accessibles par manque de droits" approved="yes"> <source>Les status de certains documents ne sont pas accessibles par manque de droits</source> <target state="translated">De status van bepaalde documenten is niet toegestaan omwille van gebrek aan rechten.</target> - <jms:reference-file line="210">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="212">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="663929297180bbb5ff977df2695f71e94c35fa5e" resname="Les termes apparaissent dans le(s) champs" approved="yes"> <source>Les termes apparaissent dans le(s) champs</source> <target state="translated">De termen verschijnen in de veld(en)</target> - <jms:reference-file line="375">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="405">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="83d5335897894b8ddd91c98ef5ba0e9cbc6a6db9" resname="Light Value" approved="yes"> <source>Light Value</source> <target state="translated">Lichtwaarde</target> <jms:reference-file line="122">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="99f6a030c5134d53253c7442cb05c1be14229565" resname="Lightbox"> + <source>Lightbox</source> + <target state="new">Lightbox</target> + <jms:reference-file line="152">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="153">prod/WorkZone/Macros.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="3edfadcb908b635854afe7332087309fcd436f22" resname="Limite temporelle" approved="yes"> <source>Limite temporelle</source> <target state="translated">Tijdelijk limiet</target> @@ -4069,7 +4118,7 @@ <trans-unit id="646afe6f18d162b8c66197f9a080bbdabe03ec82" resname="Limited vocabulary" approved="yes"> <source>Limited vocabulary</source> <target state="translated">Beperkte vocabulair</target> - <jms:reference-file line="147">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="146">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c360543a2117bfc435eb3ba34f161bdcd1b6c9bf" resname="List %name% has been created"> <source>List %name% has been created</source> @@ -4079,12 +4128,12 @@ <trans-unit id="a925ff45a3aec48f2d2284ee9bb6868db34c1ebb" resname="List Manager" approved="yes"> <source>List Manager</source> <target state="translated">Lijstbeheerder</target> - <jms:reference-file line="88">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="97">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="bb5453db2e4b2a0d4da46011ba58a8dbbca13cf6" resname="List Name" approved="yes"> <source>List Name</source> <target state="translated">Namen lijst</target> - <jms:reference-file line="103">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="99">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="986d90f23c096a5e41777014cf1079b53c430cef" resname="List has been deleted" approved="yes"> <source>List has been deleted</source> @@ -4120,8 +4169,8 @@ <trans-unit id="57c9502a7d7d48fd4a86b45fefb2b163491c3ae1" resname="Lists" approved="yes"> <source>Lists</source> <target state="translated">Lijsten</target> + <jms:reference-file line="61">prod/actions/Push.html.twig</jms:reference-file> <jms:reference-file line="15">actions/Feedback/lists-all.html.twig</jms:reference-file> - <jms:reference-file line="62">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="309cbd8221d07b28b0bd59d151777b155d5d3d3d" resname="Live search" approved="yes"> <source>Live search</source> @@ -4143,30 +4192,30 @@ <target>Login</target> <jms:reference-file line="32">Form/Login/PhraseaAuthenticationForm.php</jms:reference-file> <jms:reference-file line="8">actions/Feedback/ListsMacros.html.twig</jms:reference-file> - <jms:reference-file line="9">login/oauth/login.html.twig</jms:reference-file> - <jms:reference-file line="7">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="7">login/providers/mapping.html.twig</jms:reference-file> + <jms:reference-file line="7">login/providers/bind.html.twig</jms:reference-file> + <jms:reference-file line="9">login/oauth/login.html.twig</jms:reference-file> </trans-unit> <trans-unit id="950c019b3fdf4ee87547ab457330c0f003fdec4b" resname="Login %login% already exists in database"> <source>Login %login% already exists in database</source> <target state="new">Login %login% already exists in database</target> - <jms:reference-file line="638">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="639">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="092417444255d19227b90cb8b6a31eb531c3e045" resname="Login %login% is already defined in the file at line %line%"> <source>Login %login% is already defined in the file at line %line%</source> <target state="new">Login %login% is already defined in the file at line %line%</target> - <jms:reference-file line="632">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="633">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="01a1b17937851d24fabec72d491bfe7693dcbeb5" resname="Login line %line% is empty"> <source>Login line %line% is empty</source> <target state="new">Login line %line% is empty</target> - <jms:reference-file line="630">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="631">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="9a839961790bd116cb1d19dd249a0f68170ea33d" resname="Login to link your account" approved="yes"> <source>Login to link your account</source> <target state="translated">Login om uw gebruiker te linken</target> - <jms:reference-file line="28">login/providers/bind.html.twig</jms:reference-file> <jms:reference-file line="44">login/providers/mapping.html.twig</jms:reference-file> + <jms:reference-file line="28">login/providers/bind.html.twig</jms:reference-file> </trans-unit> <trans-unit id="126dd3b70a5ca7818e0e26ad1e008d23b0f14a53" resname="Logs"> <source>Logs</source> @@ -4177,12 +4226,12 @@ <trans-unit id="9769982c266077f46f2c0a0290183511ec5536fb" resname="Ma derniere question" approved="yes"> <source>Ma derniere question</source> <target state="translated">Mijn laatste vraag</target> - <jms:reference-file line="688">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="779">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c176d759339c846576bc2937aab7e01f5404e4e3" resname="Mail line %line% is empty"> <source>Mail line %line% is empty</source> <target state="new">Mail line %line% is empty</target> - <jms:reference-file line="652">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="653">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="fdb9efd7a759711741fc699549c92e54c664e38c" resname="Mail sent" approved="yes"> <source>Mail sent</source> @@ -4232,7 +4281,7 @@ <trans-unit id="4c2ea2d10dc0ede0423eff4ee1aac7300cd7cc28" resname="Mandatory" approved="yes"> <source>Mandatory</source> <target state="translated">Verplicht</target> - <jms:reference-file line="173">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="172">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="60706a32c32fff7bad89e110e221466d30c96f37" resname="Mandatory fields" approved="yes"> <source>Mandatory fields</source> @@ -4263,12 +4312,12 @@ <source>Message</source> <target state="translated">Bericht</target> <jms:reference-file line="87">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="154">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="155">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cbcbdf92e7a47c81ec1719f03f00d8e6c5b5f5ef" resname="Message automatique de Phraseanet" approved="yes"> <source>Message automatique de Phraseanet</source> <target state="translated">Automatishe melding van Phraseanet</target> - <jms:reference-file line="128">templates/web/email-template.html.twig</jms:reference-file> + <jms:reference-file line="134">templates/web/email-template.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3f17a172513ae816fbe5f183f85cd0c465de0860" resname="Mettre a jour" approved="yes"> <source>Mettre a jour</source> @@ -4283,7 +4332,7 @@ <trans-unit id="1bd7ccbde8d3077fec1f549017e747393223a900" resname="MimeType"> <source>MimeType</source> <target state="new">MimeType</target> - <jms:reference-file line="345">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="374">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="cb4f425374af2741715669ed8b541a666078b729" resname="Minimum number of letters before truncation" approved="yes"> <source>Minimum number of letters before truncation</source> @@ -4298,8 +4347,8 @@ <trans-unit id="a9b8f078d07adc678766fb9d2094292080ab3c52" resname="Missing labels parameter" approved="yes"> <source>Missing labels parameter</source> <target state="translated">Ontbrekende parameter voor labels</target> - <jms:reference-file line="571">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="131">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="572">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="b4efaf7a18aa1ca3f50081c404e78c7fec456e40" resname="Missing mandatory parameter %parameter%"> <source>Missing mandatory parameter %parameter%</source> @@ -4309,7 +4358,7 @@ <trans-unit id="0f0312bad12a23972edbf3999e9de2678039b079" resname="Missing name parameter" approved="yes"> <source>Missing name parameter</source> <target state="translated">Ontbrekende parameter voor naam</target> - <jms:reference-file line="540">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="541">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="0f79e8927b12fa1faaf351996f502775b4642c2d" resname="Missing path parameter" approved="yes"> <source>Missing path parameter</source> @@ -4334,7 +4383,7 @@ <trans-unit id="e18d18d8f28fe0d795ee04013be3a7f8ce96be7b" resname="Mode de presentation" approved="yes"> <source>Mode de presentation</source> <target state="translated">Presentatie mode</target> - <jms:reference-file line="604">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="695">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f67d47fbf556ab52703a984d7b5aafcaab35735e" resname="Modele de donnees" approved="yes"> <source>Modele de donnees</source> @@ -4344,7 +4393,7 @@ <trans-unit id="f3798f81c7b6fecad2cbfec741314f8a66c0eca3" resname="Models" approved="yes"> <source>Models</source> <target state="translated">Modellen</target> - <jms:reference-file line="186">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="182">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="197">admin/user/registrations.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9fe408e12dc6ee8d44c87b38b82ff435c397a441" resname="Modify" approved="yes"> @@ -4396,7 +4445,12 @@ <trans-unit id="3bd45e2eb3d0af33531dc6ab4a45ee550ead2180" resname="Multivalued" approved="yes"> <source>Multivalued</source> <target state="translated">Meerde waarden</target> - <jms:reference-file line="159">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="158">admin/fields/templates.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="1b369c4651e2b82200334fa587669b3828071192" resname="My application "> + <source>My application </source> + <target state="new">My application </target> + <jms:reference-file line="266">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9f36fd4dc42df8a92572afe51d887c5f33dda5b0" resname="My baskets" approved="yes"> <source>My baskets</source> @@ -4415,7 +4469,7 @@ <jms:reference-file line="86">Controller/Prod/LanguageController.php</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/playlist_createcontainer.html.twig</jms:reference-file> <jms:reference-file line="38">actions/Download/prepare.html.twig</jms:reference-file> - <jms:reference-file line="150">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="151">prod/templates/push.html.twig</jms:reference-file> <jms:reference-file line="50">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="994e92a6f1e83337ca0193b7fa44cf6b3e9287e5" resname="Name or email" approved="yes"> @@ -4436,8 +4490,8 @@ <trans-unit id="611ce61a8afa84c06dd4ae06d9405b50d7cadc70" resname="Ne pas autoriser" approved="yes"> <source>Ne pas autoriser</source> <target state="translated">Niet toestaan</target> - <jms:reference-file line="112">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="92">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="112">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f5a3032fbde245ea35d8fa654d628809a9a448fc" resname="Ne pas creer de DataBox maintenant" approved="yes"> <source>Ne pas creer de DataBox maintenant</source> @@ -4448,7 +4502,7 @@ <source>New list name ?</source> <target state="translated">Nieuwe lijstnaam ?</target> <jms:reference-file line="84">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="124">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="125">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d850ee188c7c55b64bc3624534de5c5051a57dc6" resname="New password" approved="yes"> <source>New password</source> @@ -4477,12 +4531,13 @@ <trans-unit id="816c52fd2bdd94a63cd0944823a6c0aa9384c103" resname="No" approved="yes"> <source>No</source> <target state="translated">Nee</target> + <jms:reference-file line="290">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="32">web/developers/applications.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8c123d8ad43d08cc48c3d6a7676e65f71eea59df" resname="No URL available" approved="yes"> <source>No URL available</source> <target state="translated">Geen URL beschikbaar</target> - <jms:reference-file line="135">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="141">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="486829367591dc8209f3fc6960814c0bdd8930d1" resname="No account yet?" approved="yes"> <source>No account yet?</source> @@ -4547,7 +4602,7 @@ <trans-unit id="3a5aa5b9e5d2494ebc5a37af09018367b4220845" resname="No preview available" approved="yes"> <source>No preview available</source> <target state="translated">Geen voorvertoning beschikbaar</target> - <jms:reference-file line="63">actions/Tools/videoEditor.html.twig</jms:reference-file> + <jms:reference-file line="75">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="657c9f21a7a4da0e213e67dbee089b281dce3279" resname="No receivers specified" approved="yes"> <source>No receivers specified</source> @@ -4562,8 +4617,12 @@ <trans-unit id="b993b0c537190bfc94b21360ac5abe51e56be36f" resname="No results" approved="yes"> <source>No results</source> <target state="translated">Geen resultaten</target> - <jms:reference-file line="8">WorkZone/Browser/Results.html.twig</jms:reference-file> - <jms:reference-file line="111">WorkZone/Browser/Results.html.twig</jms:reference-file> + <jms:reference-file line="87">WorkZone/Browser/Results.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="bfccc7c966ca427d629149d67548af04605eb746" resname="No thesaurus concept query"> + <source>No thesaurus concept query</source> + <target state="new">No thesaurus concept query</target> + <jms:reference-file line="16">prod/results/infos.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6866c8b666718aff85382e93b25ef50cd321669b" resname="No users selected" approved="yes"> <source>No users selected</source> @@ -4599,15 +4658,15 @@ <trans-unit id="c57d307e10f641b5b496db576d0dcd69d1daf25e" resname="Non-Restreinte (publique)" approved="yes"> <source>Non-Restreinte (publique)</source> <target state="translated">Niet beperkt (publiek)</target> - <jms:reference-file line="25">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="108">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="25">admin/publications/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6eef6648406c333a4035cd5e60d0bf2ecf2606d7" resname="None" approved="yes"> <source>None</source> <target state="translated">Geen</target> <jms:reference-file line="41">Form/Configuration/EmailFormType.php</jms:reference-file> - <jms:reference-file line="260">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="53">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="260">admin/user/registrations.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ece3fad87bd747a7b0b1f3ff9336645ee1a36078" resname="None of the records can be modified." approved="yes"> <source>None of the records can be modified.</source> @@ -4637,7 +4696,7 @@ <trans-unit id="a6633333760410e40ad92a50baade0b83afe8f7f" resname="Not aggregated"> <source>Not aggregated</source> <target state="new">Not aggregated</target> - <jms:reference-file line="227">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="242">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cc451929f50e088ffcff10e90dfe157d2319e753" resname="Notification par email" approved="yes"> <source>Notification par email</source> @@ -4647,8 +4706,8 @@ <trans-unit id="753a22b2eb617204efee4644795034b8ace1ee14" resname="Notifications" approved="yes"> <source>Notifications</source> <target state="translated">Mededelingen</target> - <jms:reference-file line="156">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="229">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="214">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="286">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ac0b3b17f88b480b11c468d0b5bea6409bbd14b8" resname="Notifications globales" approved="yes"> <source>Notifications globales</source> @@ -4658,7 +4717,7 @@ <trans-unit id="18ee7ad22bf04f818fd95599481303c7f7d1b29f" resname="Notify third party application when an event occurs in Phraseanet"> <source>Notify third party application when an event occurs in Phraseanet</source> <target state="new">Notify third party application when an event occurs in Phraseanet</target> - <jms:reference-file line="61">TaskManager/Job/WebhookJob.php</jms:reference-file> + <jms:reference-file line="74">TaskManager/Job/WebhookJob.php</jms:reference-file> </trans-unit> <trans-unit id="3ccc3824ae2ffdfea7482564cbc8cf35de78766d" resname="Notify users about this publication" approved="yes"> <source>Notify users about this publication</source> @@ -4698,7 +4757,7 @@ <trans-unit id="39e336676dcacd1411fbc236d035878a38989667" resname="Number of records to process per batch"> <source>Number of records to process per batch</source> <target state="new">Number of records to process per batch</target> - <jms:reference-file line="39">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="42">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="997c69f6571530618bb38ac03f4cf2d236dcc15e" resname="Number of replicas"> <source>Number of replicas</source> @@ -4720,8 +4779,8 @@ <trans-unit id="9ce3bd4224c8c1780db56b4125ecf3f24bf748b7" resname="OK"> <source>OK</source> <target>OK</target> - <jms:reference-file line="535">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="499">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="535">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="b0a98216a32426b9e66a4ac1eb6df2e96e1b495c" resname="Ok"> <source>Ok</source> @@ -4744,6 +4803,11 @@ <target state="new">One frame forward</target> <jms:reference-file line="125">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> + <trans-unit id="c15c49205663ceff94e31db82030bb5da10df870" resname="One of these conditions"> + <source>One of these conditions</source> + <target state="new">One of these conditions</target> + <jms:reference-file line="419">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="1ae26e7b698cf33577df1bd9fd55ddd1d0771802" resname="Only %nbEditableDocuments% records can be modified." approved="yes"> <source>Only %nbEditableDocuments% records can be modified.</source> <target state="translated">Enkel %nbEditableDocuments% records kunnen worden aangepast.</target> @@ -4759,13 +4823,18 @@ <target state="new">Open the URL in a new window</target> <jms:reference-file line="125">Core/Provider/TwigServiceProvider.php</jms:reference-file> </trans-unit> + <trans-unit id="e72184f55cc026514b7160d78c3c5aef63c2a050" resname="Or"> + <source>Or</source> + <target state="new">Or</target> + <jms:reference-file line="35">prod/upload/upload.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="94946e4d2391ccf8ff24f984869ae8fcf9ede7c4" resname="Or login with" approved="yes"> <source>Or login with</source> <target state="translated">Of meld aan met</target> - <jms:reference-file line="56">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="36">web/login/register.html.twig</jms:reference-file> + <jms:reference-file line="103">web/login/index.html.twig</jms:reference-file> <jms:reference-file line="91">login/oauth/login.html.twig</jms:reference-file> - <jms:reference-file line="102">web/login/index.html.twig</jms:reference-file> + <jms:reference-file line="56">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1d75774c0f96b6ee44eb6643c9fea71b50b90ea8" resname="Order" approved="yes"> <source>Order</source> @@ -4790,7 +4859,7 @@ <source>Orders manager</source> <target state="translated">Beheerder bestellingen</target> <jms:reference-file line="45">eventsmanager/notify/order.php</jms:reference-file> - <jms:reference-file line="117">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="118">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0bc63392df32795e16ab5cbb605be75812542d30" resname="Ordinary" approved="yes"> <source>Ordinary</source> @@ -4800,7 +4869,7 @@ <trans-unit id="86e4e3875420cdee95d08d4472073493729a7aee" resname="Orientation"> <source>Orientation</source> <target state="new">Orientation</target> - <jms:reference-file line="335">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="360">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="77561f3d48cb738cc40f376dec4616a77da54ee1" resname="Original name" approved="yes"> <source>Original name</source> @@ -4812,11 +4881,6 @@ <target state="translated">Oeps ! Er ging iest verkeerd !</target> <jms:reference-file line="10">actions/Bridge/error.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="4e3f5ff6fef1232b4a80b35f08a3db8f776f44d0" resname="Outdated access to the following collections"> - <source>Outdated access to the following collections</source> - <target state="new">Outdated access to the following collections</target> - <jms:reference-file line="134">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="89ff31225c5f042fff61e92ec8cf80e417a7140c" resname="Owner" approved="yes"> <source>Owner</source> <target state="translated">Eigenaar</target> @@ -4842,24 +4906,25 @@ <trans-unit id="fe42b90acc297644b70123354014701c49384489" resname="Paniers" approved="yes"> <source>Paniers</source> <target state="translated">Mandjes</target> + <jms:reference-file line="50">mobile/lightbox/index.html.twig</jms:reference-file> + <jms:reference-file line="116">mobile/lightbox/index.html.twig</jms:reference-file> + <jms:reference-file line="257">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="91">web/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="127">lightbox/IE6/validate.html.twig</jms:reference-file> <jms:reference-file line="140">web/lightbox/validate.html.twig</jms:reference-file> - <jms:reference-file line="50">mobile/lightbox/index.html.twig</jms:reference-file> - <jms:reference-file line="116">mobile/lightbox/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="379c70ed96868079feece6d5c6a2b91545c2515b" resname="Par %author%" approved="yes"> <source>Par %author%</source> <target state="translated">Per %author%</target> - <jms:reference-file line="20">prod/results/entry.html.twig</jms:reference-file> - <jms:reference-file line="14">prod/results/feeds_entry.html.twig</jms:reference-file> <jms:reference-file line="25">mobile/lightbox/feed.html.twig</jms:reference-file> + <jms:reference-file line="14">prod/results/feeds_entry.html.twig</jms:reference-file> + <jms:reference-file line="20">prod/results/entry.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8be3c943b1609fffbfc51aad666d0a04adf83c9d" resname="Password" approved="yes"> <source>Password</source> <target state="translated">Wachtwoord</target> - <jms:reference-file line="52">Form/Login/PhraseaRegisterForm.php</jms:reference-file> <jms:reference-file line="41">Form/Login/PhraseaAuthenticationForm.php</jms:reference-file> + <jms:reference-file line="52">Form/Login/PhraseaRegisterForm.php</jms:reference-file> <jms:reference-file line="81">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e3c007b7794e8f9fc4381136dfc7cdff5aa788a8" resname="Password (confirmation)" approved="yes"> @@ -4870,7 +4935,7 @@ <trans-unit id="6e77cc0549ad99a9d3ba5c384f7f329db24d6d0c" resname="Password is empty at line %line%"> <source>Password is empty at line %line%</source> <target state="new">Password is empty at line %line%</target> - <jms:reference-file line="667">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="668">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="1dde2526f4dbbd53204d28438a85c8b30284c584" resname="Password renewal for login "%login%" has been requested"> <source>Password renewal for login "%login%" has been requested</source> @@ -4897,11 +4962,6 @@ <target state="new">Pays</target> <jms:reference-file line="32">prod/User/Add.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="42dea402e91b757c7437006335c9cc8d0382f29d" resname="Pending access to the following collections"> - <source>Pending access to the following collections</source> - <target state="new">Pending access to the following collections</target> - <jms:reference-file line="84">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="3d8de900b56813bb78e97afbf22578720d473219" resname="Periodically fetches an FTP repository content locally"> <source>Periodically fetches an FTP repository content locally</source> <target state="new">Periodically fetches an FTP repository content locally</target> @@ -4966,14 +5026,14 @@ <trans-unit id="cd95b41f85ddc0922e3fce8844279c55e9e3cdd9" resname="Playlist" approved="yes"> <source>Playlist</source> <target state="translated">Afspeellijst</target> - <jms:reference-file line="14">Bridge/Youtube/actionelements.html.twig</jms:reference-file> <jms:reference-file line="14">Bridge/Dailymotion/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="14">Bridge/Youtube/actionelements.html.twig</jms:reference-file> </trans-unit> <trans-unit id="77b69f32c8780049ce0eec9782c3b77bb1e52bc3" resname="Playlists" approved="yes"> <source>Playlists</source> <target state="translated">Afspeellijsten</target> - <jms:reference-file line="183">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="168">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="183">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="9a79729c3f4563330799d576273950579e1ba3f5" resname="Please accept the terms of use to register." approved="yes"> <source>Please accept the terms of use to register.</source> @@ -4993,12 +5053,12 @@ <trans-unit id="7d971fb22555bf3deb2da6d7820d2379b6f37d12" resname="Please consider send this push to the following users : %recommendation%" approved="yes"> <source>Please consider send this push to the following users : %recommendation%</source> <target state="translated">Overweeg om deze push naar de volgende gebruikers te sturen : %recommendation%</target> - <jms:reference-file line="135">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="142">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="78fbf70be163b16d5c72147a659d43a1ddbe4f62" resname="Please consider send this validation to the following users : %recommendation%" approved="yes"> <source>Please consider send this validation to the following users : %recommendation%</source> <target state="translated">Overweeg om deze goedkeuring naar de volgende gebruikers te sturen : %recommendation%</target> - <jms:reference-file line="137">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="144">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cb75472a748e630791f52a7e31b275376a65b600" resname="Please enter the databox name to reset or create"> <source>Please enter the databox name to reset or create</source> @@ -5073,7 +5133,7 @@ <trans-unit id="cf1c85adba548e8d681255278976584a7e4a44de" resname="Position" approved="yes"> <source>Position</source> <target state="translated">Functie</target> - <jms:reference-file line="180">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="176">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="502823ab9297855805de9b08960bcb4654a235a9" resname="Pour davantage d'informations, consulter le lien suivant %lien%" approved="yes"> <source>Pour davantage d'informations, consulter le lien suivant %lien%</source> @@ -5083,7 +5143,7 @@ <trans-unit id="b7a45fd93ff9471252ff1535c56c82f2f2d93865" resname="Pour gérer l'envoi d'email automatique, connectez-vous à %link%" approved="yes"> <source>Pour gérer l'envoi d'email automatique, connectez-vous à %link%</source> <target state="translated">Om het automatisch verzenden van mails, meld u dan aan à %link%</target> - <jms:reference-file line="134">templates/web/email-template.html.twig</jms:reference-file> + <jms:reference-file line="140">templates/web/email-template.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cb6a1b19177957adc64d41ef7744e5f3f2f1d220" resname="Preference saved !" approved="yes"> <source>Preference saved !</source> @@ -5094,10 +5154,10 @@ <trans-unit id="9dfd349ebee555eb8d652be20dad971cae439eca" resname="Preferences" approved="yes"> <source>Preferences</source> <target state="translated">Voorkeuren</target> - <jms:reference-file line="249">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="250">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="477">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="576">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="253">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="256">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="568">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="667">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="40c963556bf21635f163641ae0bbc354c6f8452c" resname="Prefix for notification emails" approved="yes"> <source>Prefix for notification emails</source> @@ -5112,12 +5172,12 @@ <trans-unit id="9cafca25680cc440912450d10272214d3f3daee4" resname="Presentation de vignettes" approved="yes"> <source>Presentation de vignettes</source> <target state="translated">Presentatie van de thumbnails</target> - <jms:reference-file line="622">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="713">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="be11dff872b14e749d330f920d6b159e107f277a" resname="Presentation de vignettes de panier" approved="yes"> <source>Presentation de vignettes de panier</source> <target state="translated">Presentatie van de thumbnails in het mandje</target> - <jms:reference-file line="833">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="924">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e709e76ff5425bd59879423588e80e67d778fa57" resname="Presets"> <source>Presets</source> @@ -5139,8 +5199,8 @@ <trans-unit id="e6ad53898d609dbabefb5da33ee1b4cc04fba023" resname="Problemes de connexion ?"> <source>Problemes de connexion ?</source> <target state="new">Problemes de connexion ?</target> - <jms:reference-file line="74">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="54">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="74">api/auth/end_user_authorization.html.twig</jms:reference-file> </trans-unit> <trans-unit id="376483bbeebdab912944e9b41d8d31510132abde" resname="Process the registration" approved="yes"> <source>Process the registration</source> @@ -5170,10 +5230,10 @@ <trans-unit id="0855684c1444ece44c79b3612a7f4cfac9ae6e2a" resname="Publications" approved="yes"> <source>Publications</source> <target state="translated">Publicaties</target> - <jms:reference-file line="694">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="785">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="2">admin/publications/wrapper.html.twig</jms:reference-file> <jms:reference-file line="58">web/admin/tree.html.twig</jms:reference-file> - <jms:reference-file line="109">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="110">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="34e6b19e8980f86ac8f2a33377c8cd669b66ac9b" resname="Publier"> <source>Publier</source> @@ -5183,8 +5243,8 @@ <trans-unit id="a255047b3f86eb4c0c79377f0725c89ceafe07ae" resname="Publique" approved="yes"> <source>Publique</source> <target state="translated">Publiek</target> - <jms:reference-file line="40">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="123">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="40">admin/publications/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="107e7fab79b95c8f34990d625dd309e15996acba" resname="Publishers" approved="yes"> <source>Publishers</source> @@ -5210,64 +5270,64 @@ <trans-unit id="dc5a4abd4a0dd0729a7935958c49369f845aefe7" resname="Push::filter on companies" approved="yes"> <source>Push::filter on companies</source> <target state="translated">filter op bedrijven</target> - <jms:reference-file line="151">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="147">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="46">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0062d9a99e994aa4c343618e2236b82cf70fdf4a" resname="Push::filter on countries" approved="yes"> <source>Push::filter on countries</source> <target state="translated">filter op landen</target> - <jms:reference-file line="148">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="144">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="45">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3dec8278889a4c672e776c0f810f7ed4a4ff7179" resname="Push::filter on emails" approved="yes"> <source>Push::filter on emails</source> <target state="translated">filter op emails</target> - <jms:reference-file line="154">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="150">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="47">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d839b546e93714294e67e04cc94c6fcd2196cb9f" resname="Push::filter on login" approved="yes"> <source>Push::filter on login</source> <target state="translated">filter bij login</target> - <jms:reference-file line="142">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="138">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="43">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="68226ba2a14991c3fc4b892b6b826868d5a093f0" resname="Push::filter on name" approved="yes"> <source>Push::filter on name</source> <target state="translated">filter op naam</target> - <jms:reference-file line="145">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="141">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="df2d864dd4e6285082e77bd1c265e71d5c65645c" resname="Push::filter on templates" approved="yes"> <source>Push::filter on templates</source> <target state="translated">filter op templates</target> - <jms:reference-file line="157">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="153">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d2f5c0ac80b1da7a8257a2b0df31f94dc9e6b072" resname="Push::filter starts" approved="yes"> <source>Push::filter starts</source> <target state="translated">filter starts</target> - <jms:reference-file line="160">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="156">actions/Feedback/list.html.twig</jms:reference-file> <jms:reference-file line="49">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dcf907ccbbcda0c0a828ef73ff1e6320748c1fad" resname="Push::une validation est une demande d'appreciation a d'autres personnes" approved="yes"> <source>Push::une validation est une demande d'appreciation a d'autres personnes</source> <target state="translated">Een goedkeuring is een aanvraag van waardering aan andere personen</target> - <jms:reference-file line="182">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="189">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3e45857148ed08b19a425b5f4a2775e30dd346a7" resname="Push::unpush permet d'envoyer un lot d'image a des destinataires" approved="yes"> <source>Push::unpush permet d'envoyer un lot d'image a des destinataires</source> <target state="translated">Un push laat toe om een set van beelden te sturen naar ontvangers</target> - <jms:reference-file line="180">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="187">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a60f2c73604f623449f263e78f5857849ad5e429" resname="Quality" approved="yes"> <source>Quality</source> <target state="translated">Kwaliteit</target> - <jms:reference-file line="36">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="36">Media/Subdef/Image.php</jms:reference-file> + <jms:reference-file line="36">Media/Subdef/Unknown.php</jms:reference-file> </trans-unit> <trans-unit id="7f983c163b8d6973ad2a1aa6de868dad5be7f8e2" resname="Quarantine" approved="yes"> <source>Quarantine</source> <target state="translated">Quarantaine</target> - <jms:reference-file line="15">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="15">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="15">prod/upload/upload-flash.html.twig</jms:reference-file> </trans-unit> <trans-unit id="edd025b4ece2ab6693982ff127227d5672c7b0f1" resname="Quarantine notificaton" approved="yes"> <source>Quarantine notificaton</source> @@ -5282,80 +5342,80 @@ <trans-unit id="64ef3e9b9c1030a3df3515f8837f98d76950dd3a" resname="Raccourcis claviers de la zone des paniers :" approved="yes"> <source>Raccourcis claviers de la zone des paniers :</source> <target state="translated">Sneltoetsen in de mandjes zone :</target> - <jms:reference-file line="536">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="627">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0fa257c61469082fe30f197cec92755b9b4fa8f0" resname="Raccourcis claviers en cours de editing :" approved="yes"> <source>Raccourcis claviers en cours de editing :</source> <target state="translated">Sneltoetsen tijdens het bewerken :</target> - <jms:reference-file line="544">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="635">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b9401adb809efe10b4f5c4cb884566bd566a7969" resname="Raccourcis claviers en cours de preview :" approved="yes"> <source>Raccourcis claviers en cours de preview :</source> <target state="translated">Sneltoetsen tijdens de voorvertoning :</target> - <jms:reference-file line="550">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="641">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6d5b336b50c5326a4cfdaa1a9e8ac7c4bc6d7b3b" resname="Raccourcis claviers en cours de recherche :" approved="yes"> <source>Raccourcis claviers en cours de recherche :</source> <target state="translated">Sneltoetsen tijdens het zoeken :</target> - <jms:reference-file line="524">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="615">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c53cf63d91236443a009fd132ae3728c8c8c7da0" resname="Raccourcis:: ctrl-a : tout selectionner" approved="yes"> <source>Raccourcis:: ctrl-a : tout selectionner</source> <target state="translated">ctrl-a : alles selecteren</target> - <jms:reference-file line="526">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="538">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="617">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="629">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="812022dea00fadf2f69eeae12652173c5292a306" resname="Raccourcis:: ctrl-e : editer la selection" approved="yes"> <source>Raccourcis:: ctrl-e : editer la selection</source> <target state="translated">ctrl-e : bewerk de selectie</target> - <jms:reference-file line="528">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="540">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="619">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="631">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c99e1c9838e7a805cbeac7e7f0c5268b64787ee8" resname="Raccourcis:: ctrl-p : imprimer la selection" approved="yes"> <source>Raccourcis:: ctrl-p : imprimer la selection</source> <target state="translated">ctrl-p : print de selectie</target> - <jms:reference-file line="527">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="539">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="618">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="630">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4dbc2034b309af31b59245364f6f02b7f7234737" resname="Raccourcis::espace : arreter/demarrer le diaporama" approved="yes"> <source>Raccourcis::espace : arreter/demarrer le diaporama</source> <target state="translated">espace : start/stop de slideshow</target> - <jms:reference-file line="554">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="645">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b6b7ba6a989c15ed4a35c733f02597ba34607758" resname="Raccourcis::fleche bas : scroll vertical" approved="yes"> <source>Raccourcis::fleche bas : scroll vertical</source> <target state="translated">pijl onder : verticale scroll</target> - <jms:reference-file line="532">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="623">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="11d9cd036e502f222ca13b3fe1cefb7a9af7189b" resname="Raccourcis::fleche droite : page suivante" approved="yes"> <source>Raccourcis::fleche droite : page suivante</source> <target state="translated">pijl rechts : volgende pagina</target> - <jms:reference-file line="530">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="621">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f9cdc8b16bcbc46ca9a0ec80f780e584e27a5999" resname="Raccourcis::fleche gauche : en arriere" approved="yes"> <source>Raccourcis::fleche gauche : en arriere</source> <target state="translated">pijl links : achterwaarts</target> - <jms:reference-file line="553">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="644">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="500299a27b8ec15496801e637d2ffa5e9ca45c17" resname="Raccourcis::fleche gauche : en avant" approved="yes"> <source>Raccourcis::fleche gauche : en avant</source> <target state="translated">pijl rechts : voorwaarts</target> - <jms:reference-file line="552">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="643">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3c8f969d01141d75f1a5c8cc19da3f22b17e7bb5" resname="Raccourcis::fleche gauche : page precedente" approved="yes"> <source>Raccourcis::fleche gauche : page precedente</source> <target state="translated">pijl links : vorige pagina</target> - <jms:reference-file line="529">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="620">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ea7b04fcba2b542ae05ff8bf1c2eccab32451a78" resname="Raccourcis::fleche haut : scroll vertical" approved="yes"> <source>Raccourcis::fleche haut : scroll vertical</source> <target state="translated">pijl boven : verticale scroll</target> - <jms:reference-file line="531">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="622">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="82c2178626ff2cdee250667a4efd09961f720dee" resname="Raccourcis::tab/shift-tab se ballade dans les champs" approved="yes"> <source>Raccourcis::tab/shift-tab se ballade dans les champs</source> <target state="translated">tab/shift-tab verspringt tussen de velden</target> - <jms:reference-file line="546">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="637">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4efaf5e07d4b4b4c4373d24615adeed3a0eca433" resname="Rappel : Il vous reste %number% jours pour valider %title% de %user%"> <source>Rappel : Il vous reste %number% jours pour valider %title% de %user%</source> @@ -5370,29 +5430,31 @@ <trans-unit id="aafcf684757a5a4e1bf1630db0821e75f47a2d08" resname="Rapport de Validation" approved="yes"> <source>Rapport de Validation</source> <target state="translated">Rapport van goedkeuring</target> - <jms:reference-file line="74">eventsmanager/notify/validationdone.php</jms:reference-file> + <jms:reference-file line="80">eventsmanager/notify/validationdone.php</jms:reference-file> </trans-unit> <trans-unit id="17e7c81f42087a2439ab16806eea8693d6bcfff0" resname="Re-initialiser" approved="yes"> <source>Re-initialiser</source> <target state="translated">Herinitialiseren</target> <jms:reference-file line="8">prod/Baskets/Reorder.html.twig</jms:reference-file> - <jms:reference-file line="328">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="7">prod/Story/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="328">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ca2a6abfc98ae1a46c15a6f8bbdc5fac25531462" resname="Re-ordonner" approved="yes"> <source>Re-ordonner</source> <target state="translated">Hersorteren</target> - <jms:reference-file line="181">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="182">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="248">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="252">prod/WorkZone/Macros.html.twig</jms:reference-file> <jms:reference-file line="13">prod/Baskets/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="188">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="189">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="190">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="274">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="278">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="279">prod/WorkZone/Macros.html.twig</jms:reference-file> <jms:reference-file line="12">prod/Story/Reorder.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9b19a5a212deb29444cc1b420ad81703205848be" resname="Read-only" approved="yes"> <source>Read-only</source> <target state="translated">Alleen lezen</target> - <jms:reference-file line="189">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="188">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8af84354a61a59531041ee67713997b84e7657ee" resname="Recaptcha private key" approved="yes"> <source>Recaptcha private key</source> @@ -5423,27 +5485,22 @@ <source>Received from %user_name%</source> <target state="translated">Ontvangen van %user_name%</target> <jms:reference-file line="43">WorkZone/Browser/Basket.html.twig</jms:reference-file> - <jms:reference-file line="73">WorkZone/Browser/Results.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="8434c52b54f0df88fc7f845d21a20f6a6d5ff880" resname="Receiver" approved="yes"> - <source>Receiver</source> - <target state="translated">Ontvanger</target> - <jms:reference-file line="595">Controller/Report/ActivityController.php</jms:reference-file> + <jms:reference-file line="50">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="da14ea4ea4ade5295d38ee6c0cd689aee3cd62ba" resname="Reception d'un rapport de validation" approved="yes"> <source>Reception d'un rapport de validation</source> <target state="translated">Ontvangst van een goedkeuringsrapport</target> - <jms:reference-file line="83">eventsmanager/notify/validationdone.php</jms:reference-file> + <jms:reference-file line="89">eventsmanager/notify/validationdone.php</jms:reference-file> </trans-unit> <trans-unit id="69d1feaf46a349a3e34611edbfd84d913f5cf209" resname="Reception d'une commande" approved="yes"> <source>Reception d'une commande</source> <target state="translated">Ontvangen van een bestelling</target> - <jms:reference-file line="82">eventsmanager/notify/orderdeliver.php</jms:reference-file> + <jms:reference-file line="90">eventsmanager/notify/orderdeliver.php</jms:reference-file> </trans-unit> <trans-unit id="62046e2515337958c10c5a6c4e08a3e415af005b" resname="Reception de commande" approved="yes"> <source>Reception de commande</source> <target state="translated">Ontvangen van de bestelling</target> - <jms:reference-file line="73">eventsmanager/notify/orderdeliver.php</jms:reference-file> + <jms:reference-file line="81">eventsmanager/notify/orderdeliver.php</jms:reference-file> </trans-unit> <trans-unit id="49f32abd3c743170b12fd28ce4e6035d5f0d1014" resname="Reception of %basket_name%"> <source>Reception of %basket_name%</source> @@ -5483,7 +5540,7 @@ <trans-unit id="f5e93456bc3a36a53bbcc31ea9dc7dc18b084a3d" resname="Rechercher dans un champ date" approved="yes"> <source>Rechercher dans un champ date</source> <target state="translated">Zoeken in een datum veld</target> - <jms:reference-file line="441">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="470">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4faa65b556f68207d69cb14bcae4acb71980a036" resname="Recommendations" approved="yes"> <source>Recommendations</source> @@ -5503,7 +5560,7 @@ <trans-unit id="3cd74928930cda94205568949be186e4cae37119" resname="Record Not Found" approved="yes"> <source>Record Not Found</source> <target state="translated">Document niet gevonden</target> - <jms:reference-file line="2006">Controller/Api/V1Controller.php</jms:reference-file> + <jms:reference-file line="2048">Controller/Api/V1Controller.php</jms:reference-file> </trans-unit> <trans-unit id="ef0112aa634cbad5a586b72e4befe1ab1a39e73f" resname="Record removed from basket" approved="yes"> <source>Record removed from basket</source> @@ -5528,7 +5585,7 @@ <trans-unit id="1361dc265b8f8d5fbfae5c59f5eb7008345b0a60" resname="Records have been successfuly moved" approved="yes"> <source>Records have been successfuly moved</source> <target state="translated">Records werden met succes verplaatst</target> - <jms:reference-file line="158">Controller/Prod/MoveCollectionController.php</jms:reference-file> + <jms:reference-file line="159">Controller/Prod/MoveCollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="c5122f4f064abbc30552663cb0942faf7c7eb035" resname="Records type" approved="yes"> <source>Records type</source> @@ -5544,10 +5601,10 @@ <trans-unit id="d672995a14650d0e018026b64f297663d8c71c8d" resname="Register" approved="yes"> <source>Register</source> <target state="translated">Aanmelden</target> - <jms:reference-file line="6">web/login/register.html.twig</jms:reference-file> <jms:reference-file line="7">web/login/register-classic.html.twig</jms:reference-file> - <jms:reference-file line="10">login/include/register-link-block.html.twig</jms:reference-file> + <jms:reference-file line="6">web/login/register.html.twig</jms:reference-file> <jms:reference-file line="6">web/login/register-provider.html.twig</jms:reference-file> + <jms:reference-file line="10">login/include/register-link-block.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9ab985702970c5012a1c1a2db7b65d95926aecaf" resname="Register approbation" approved="yes"> <source>Register approbation</source> @@ -5571,15 +5628,10 @@ <jms:reference-file line="117">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="30">web/admin/users.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="c3c3adf6aadb4b23c2012f0ca5904b3d8172d98a" resname="Rejected access to the following collections"> - <source>Rejected access to the following collections</source> - <target state="new">Rejected access to the following collections</target> - <jms:reference-file line="57">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="dcb70f5244f8883ac49c5eceb7d1e1cdeaf82711" resname="Relevance"> <source>Relevance</source> <target state="new">Relevance</target> - <jms:reference-file line="354">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="383">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ced7b308a348567fbf21dd775ee496dd01207f24" resname="Remember me" approved="yes"> <source>Remember me</source> @@ -5594,8 +5646,8 @@ <trans-unit id="ecd6539bc6678ec0ff3748ecac64d64cee566b8f" resname="Remove ICC Profile" approved="yes"> <source>Remove ICC Profile</source> <target state="translated">Verwijder ICC Profiel</target> - <jms:reference-file line="34">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="34">Media/Subdef/Image.php</jms:reference-file> + <jms:reference-file line="34">Media/Subdef/Unknown.php</jms:reference-file> </trans-unit> <trans-unit id="db7741b4a5e42acd8d4e758ae50075157a0c08b7" resname="Remove current Range"> <source>Remove current Range</source> @@ -5643,12 +5695,7 @@ <trans-unit id="ee45c30326b750387589752c0f75e1dd87ddc7e4" resname="Report" approved="yes"> <source>Report</source> <target state="translated">Overzicht</target> - <jms:reference-file line="205">admin/fields/templates.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="c0d6afbb9a5d52be258437c6100523c0ca890975" resname="Report generation may take a long time to generate, depending on the number of collections and the period selected."> - <source>Report generation may take a long time to generate, depending on the number of collections and the period selected.</source> - <target state="new">Report generation may take a long time to generate, depending on the number of collections and the period selected.</target> - <jms:reference-file line="27">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="220">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="859ca6c24228b6fe9c9010bed75d2933884d7b49" resname="Request access" approved="yes"> <source>Request access</source> @@ -5714,13 +5761,13 @@ <trans-unit id="516aae52959dcf5398a9985414a78b8c24a4f0e5" resname="Resolution" approved="yes"> <source>Resolution</source> <target state="translated">Resolutie</target> - <jms:reference-file line="33">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="33">Media/Subdef/Image.php</jms:reference-file> + <jms:reference-file line="33">Media/Subdef/Unknown.php</jms:reference-file> </trans-unit> <trans-unit id="8e78cff6cd2bb8595029060cb53dba7a4ba72b8a" resname="Resource URL" approved="yes"> <source>Resource URL</source> <target state="translated">Bron URL</target> - <jms:reference-file line="38">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="44">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2479ef7e025d9d4c6e5463dc366c2d6c79aaefbe" resname="Resquest access" approved="yes"> <source>Resquest access</source> @@ -5730,12 +5777,12 @@ <trans-unit id="ce2c77f1871ac286de08f393786b2a43da8aeb60" resname="Restart the task every X records"> <source>Restart the task every X records</source> <target state="new">Restart the task every X records</target> - <jms:reference-file line="45">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="48">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="72f952850433b0f6e2359d47502eb500eb41ddad" resname="Restart the task if memory reaches"> <source>Restart the task if memory reaches</source> <target state="new">Restart the task if memory reaches</target> - <jms:reference-file line="51">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="54">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="68135bb8f15e79ba2b97fcf79236ac3b2ba42dac" resname="Reste" approved="yes"> <source>Reste</source> @@ -5861,14 +5908,14 @@ <trans-unit id="efc007a393f66cdb14d57d385822a3d9e36ef873" resname="Save" approved="yes"> <source>Save</source> <target state="translated">Opslaan</target> - <jms:reference-file line="112">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="108">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="45">web/account/change-password.html.twig</jms:reference-file> <jms:reference-file line="26">admin/search-engine/general-aggregation.html.twig</jms:reference-file> <jms:reference-file line="3">admin/search-engine/elastic-search.html.twig</jms:reference-file> <jms:reference-file line="75">task-manager/task-editor/task.html.twig</jms:reference-file> - <jms:reference-file line="45">web/account/change-password.html.twig</jms:reference-file> - <jms:reference-file line="41">web/login/renew-password.html.twig</jms:reference-file> <jms:reference-file line="53">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="91">web/developers/application.html.twig</jms:reference-file> + <jms:reference-file line="41">web/login/renew-password.html.twig</jms:reference-file> </trans-unit> <trans-unit id="960c9d85e9849fa58deb038c6c9bcf36ec973c99" resname="Save all changes" approved="yes"> <source>Save all changes</source> @@ -5878,12 +5925,12 @@ <trans-unit id="a68dd32b578cf2863f4df4362232db4d80a9557c" resname="Save the list"> <source>Save the list</source> <target state="new">Save the list</target> - <jms:reference-file line="90">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="86">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e5c05c39658269a025f4dc37b50af1bb5ab946ca" resname="Save this list" approved="yes"> <source>Save this list</source> <target state="translated">Bewaar deze lijst</target> - <jms:reference-file line="241">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="247">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="fedf2439f275db3b471d35c2e773398bfff1c9eb" resname="Se connecter" approved="yes"> <source>Se connecter</source> @@ -5935,8 +5982,8 @@ <trans-unit id="b945126af2994e142e712b4e6f3c2cb2dd186a76" resname="See my order" approved="yes"> <source>See my order</source> <target state="translated">Bekijk mijn opdracht</target> - <jms:reference-file line="74">Notification/Mail/MailInfoOrderDelivered.php</jms:reference-file> <jms:reference-file line="75">Notification/Mail/MailInfoOrderCancelled.php</jms:reference-file> + <jms:reference-file line="74">Notification/Mail/MailInfoOrderDelivered.php</jms:reference-file> </trans-unit> <trans-unit id="369b9cb821dd6966e989359a1b8aadaf9c4db387" resname="See others" approved="yes"> <source>See others</source> @@ -5946,24 +5993,30 @@ <trans-unit id="76f0c2c4f58a932f4d61175ea0da5799c1b3c231" resname="See the list"> <source>See the list</source> <target state="new">See the list</target> - <jms:reference-file line="138">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="134">actions/Feedback/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7c2ce4a38c55478fb397967408b8c6d7c29fcc3b" resname="See validation results" approved="yes"> <source>See validation results</source> <target state="translated">Bekijk de goedkeuringsresultaten</target> <jms:reference-file line="81">Notification/Mail/MailInfoValidationDone.php</jms:reference-file> </trans-unit> + <trans-unit id="fd6294adde442e65458da9640beeafed76f7f66a" resname="Select a field"> + <source>Select a field</source> + <target state="new">Select a field</target> + <jms:reference-file line="425">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="68679be6d90db68ca5ceebaded92d5d83de8761c" resname="Select a list on the left and edit it !" approved="yes"> <source>Select a list on the left and edit it !</source> <target state="translated">Selecteer links een lijst en bewerk hem !</target> - <jms:reference-file line="295">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="300">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="913afff1faf79724f1f685fe8b1e36a729123ca2" resname="Select all" approved="yes"> <source>Select all</source> <target state="translated">Alles selecteren</target> - <jms:reference-file line="61">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="215">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="24">web/report/form_date_and_base.html.twig</jms:reference-file> + <jms:reference-file line="221">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="57">actions/Feedback/list.html.twig</jms:reference-file> + <jms:reference-file line="68">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="45">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7c83f0d10a0a04ab6ae1ceb098113b081e9bc4d5" resname="Select all collections" approved="yes"> <source>Select all collections</source> @@ -5973,8 +6026,8 @@ <trans-unit id="aacba52fe3c2b562e2ef14b41fcd4abab92a0619" resname="Select files..." approved="yes"> <source>Select files...</source> <target state="translated">Selecteer files...</target> - <jms:reference-file line="202">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="31">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="202">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="160">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="185">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="210">admin/collection/collection.html.twig</jms:reference-file> @@ -5982,6 +6035,11 @@ <jms:reference-file line="56">admin/statusbit/edit.html.twig</jms:reference-file> <jms:reference-file line="121">admin/statusbit/edit.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="49fae2071d9672ce46d9fbadda409a3fa0cbc238" resname="Selected base(s)"> + <source>Selected base(s)</source> + <target state="new">Selected base(s)</target> + <jms:reference-file line="345">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="2c418c187fb3108749d7156765e7b9b16a51215f" resname="Selected files" approved="yes"> <source>Selected files</source> <target state="translated">Geselecteerde files</target> @@ -5991,12 +6049,12 @@ <source>Send</source> <target state="translated">Versturen</target> <jms:reference-file line="90">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="254">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="256">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="259">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="261">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="113">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="110">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="185">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="220">prod/orders/order_item.html.twig</jms:reference-file> - <jms:reference-file line="110">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="110">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="130">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="46">web/login/forgot-password.html.twig</jms:reference-file> </trans-unit> @@ -6010,16 +6068,18 @@ <target state="translated">Verstuur naar Facebook</target> <jms:reference-file line="32">prod/Share/record.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="60b2d62f2951ccf92ed7fb647ee7d6ab7ecfdd5e" resname="Send to Linkedin"> + <source>Send to Linkedin</source> + <target state="new">Send to Linkedin</target> + <jms:reference-file line="37">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="38">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="39">prod/Share/record.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="29f82ee42eeecce87dfe9223d5d7ff716dc68ead" resname="Send to Twitter" approved="yes"> <source>Send to Twitter</source> <target state="translated">Verstuur naar Twitter</target> <jms:reference-file line="24">prod/Share/record.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="35f49dcfbfb2e03fdce327671e82bf173b1ccb8b" resname="Sent" approved="yes"> - <source>Sent</source> - <target state="translated">Verstuurd</target> - <jms:reference-file line="199">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="31f38dffd0e514c2f0c21da7a49966442217f792" resname="Sent documents (mail)" approved="yes"> <source>Sent documents (mail)</source> <target state="translated">Verstuurde documenten (mail)</target> @@ -6029,12 +6089,12 @@ <source>Sent for validation to %list_participants%</source> <target state="translated">Voor goedkeuring verstuurd naar %list_participants%</target> <jms:reference-file line="66">WorkZone/Browser/Basket.html.twig</jms:reference-file> - <jms:reference-file line="91">WorkZone/Browser/Results.html.twig</jms:reference-file> + <jms:reference-file line="68">WorkZone/Browser/Results.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b4b289a7b76be83adf9d38e7a3ee28190349bff2" resname="Separator" approved="yes"> <source>Separator</source> <target state="translated">Scheidingsteken</target> - <jms:reference-file line="163">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="162">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="af8c1d265158926dfd6209077b075c5efaa5c0d2" resname="Service youtube introuvable." approved="yes"> <source>Service youtube introuvable.</source> @@ -6059,8 +6119,8 @@ <trans-unit id="4b1933037822e34594e624b3f814726a137a71fd" resname="Set labels" approved="yes"> <source>Set labels</source> <target state="translated">Zet labels</target> - <jms:reference-file line="100">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="96">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="100">admin/collection/collection.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9137bba9319a52102294ab278c3a7aca79d67e29" resname="Set statuses restrictions" approved="yes"> <source>Set statuses restrictions</source> @@ -6075,8 +6135,8 @@ <trans-unit id="cdd7bb2816b7a8f88bce0e47be39943bc369516b" resname="Setup" approved="yes"> <source>Setup</source> <target state="translated">Instellingen</target> - <jms:reference-file line="22">web/admin/tree.html.twig</jms:reference-file> <jms:reference-file line="2">web/admin/setup.html.twig</jms:reference-file> + <jms:reference-file line="22">web/admin/tree.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a6fac1ccf7f969630ff9a2226f831a093093448b" resname="Setup my password" approved="yes"> <source>Setup my password</source> @@ -6106,13 +6166,13 @@ <trans-unit id="396c2137a0b503759e5d4930af8a16aa28ce3ee7" resname="Short description" approved="yes"> <source>Short description</source> <target state="translated">Korte beschrijving</target> - <jms:reference-file line="18">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="101">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="18">admin/publications/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="32e50dd99f3b67dc93272aa6c904b83d37f4f48d" resname="Shutter speed" approved="yes"> <source>Shutter speed</source> <target state="translated">Sluitersnelheid</target> - <jms:reference-file line="292">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="305">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> <jms:reference-file line="98">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e4538baf30d4eb324ec64e4b48c1ca424dd3b773" resname="Si cet email contient des liens non cliquables, copiez/collez ces liens dans votre navigateur." approved="yes"> @@ -6148,7 +6208,7 @@ <trans-unit id="b7152342a267362add3c0d7f69f720f7a9c76c9e" resname="Size" approved="yes"> <source>Size</source> <target state="translated">Grootte</target> - <jms:reference-file line="86">actions/Tools/videoEditor.html.twig</jms:reference-file> + <jms:reference-file line="99">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="40">actions/Download/prepare.html.twig</jms:reference-file> <jms:reference-file line="37">web/common/technical_datas.html.twig</jms:reference-file> </trans-unit> @@ -6212,8 +6272,8 @@ <trans-unit id="8657e88f4bf4b28dd29659361c70f11dea58efa5" resname="Sous-titre" approved="yes"> <source>Sous-titre</source> <target state="translated">Onder titel</target> - <jms:reference-file line="16">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="99">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="16">admin/publications/list.html.twig</jms:reference-file> </trans-unit> <trans-unit id="970f057325af27424f32675051fea5366873b007" resname="Space bar"> <source>Space bar</source> @@ -6239,7 +6299,7 @@ <trans-unit id="2e5dd1202b7de8194a1498340953992c32738494" resname="Start by creating one by using the "add" button on the left !"> <source>Start by creating one by using the "add" button on the left !</source> <target state="new">Start by creating one by using the "add" button on the left !</target> - <jms:reference-file line="291">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="296">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7ec5491e76522fe1687d799f35ab2ba39ae573fe" resname="Start validation" approved="yes"> <source>Start validation</source> @@ -6255,7 +6315,7 @@ <trans-unit id="4e1c8377cce4ac872e1c3e8fc6bc760c5130946d" resname="Status des documents a rechercher" approved="yes"> <source>Status des documents a rechercher</source> <target state="translated">Status van de te zoeken documenten</target> - <jms:reference-file line="389">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="502">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5b9261222b0e03c8cd1796d7c8adabf1bb552e4d" resname="Status edition"> <source>Status edition</source> @@ -6293,7 +6353,7 @@ <trans-unit id="315bc332aafca63cad8ac042c2e2f5111544fe9d" resname="Story Not Found" approved="yes"> <source>Story Not Found</source> <target state="translated">Artikel niet gevonden</target> - <jms:reference-file line="2452">Controller/Api/V1Controller.php</jms:reference-file> + <jms:reference-file line="2494">Controller/Api/V1Controller.php</jms:reference-file> </trans-unit> <trans-unit id="94e347da85f4797810ed7987973c8ef79092057e" resname="Story created" approved="yes"> <source>Story created</source> @@ -6348,8 +6408,8 @@ <trans-unit id="8017bd7de9961cf42f59abc587d0495a9d25c2a9" resname="Substitute" approved="yes"> <source>Substitute</source> <target state="translated">Vervangen</target> - <jms:reference-file line="359">prod/upload/lazaret.html.twig</jms:reference-file> - <jms:reference-file line="360">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="516">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="517">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3d48a1d66362cef46e567ddf521b0dc3233f57a2" resname="Substitution is not possible for this kind of record" approved="yes"> <source>Substitution is not possible for this kind of record</source> @@ -6359,8 +6419,8 @@ <trans-unit id="42a8f651d79fd005eeac0612df6442b983a01184" resname="Success" approved="yes"> <source>Success</source> <target state="translated">Gelukt</target> - <jms:reference-file line="508">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="9">api/auth/native_app_access_token.html.twig</jms:reference-file> + <jms:reference-file line="508">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5f7dcc16f00b622a8fb8bf4abf16dad52640a5fc" resname="Successful install" approved="yes"> <source>Successful install</source> @@ -6370,22 +6430,16 @@ <trans-unit id="4b7dae46777ddbfd995aab044d4a51239c1cb2ca" resname="Successful removal" approved="yes"> <source>Successful removal</source> <target state="translated">Met succes verwijderd</target> - <jms:reference-file line="185">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="225">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="266">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="460">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="99">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="394">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="186">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="226">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="267">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="461">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="6ba2cae76f3ec74086cc39f093db7b475944448b" resname="Successful update" approved="yes"> <source>Successful update</source> <target state="translated">Geslaagde update</target> - <jms:reference-file line="557">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="595">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="633">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="666">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="699">Controller/Admin/CollectionController.php</jms:reference-file> - <jms:reference-file line="807">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="155">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="187">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="221">Controller/Admin/DataboxController.php</jms:reference-file> @@ -6393,10 +6447,16 @@ <jms:reference-file line="464">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="602">Controller/Admin/DataboxController.php</jms:reference-file> <jms:reference-file line="647">Controller/Admin/DataboxController.php</jms:reference-file> - <jms:reference-file line="168">actions/Tools/videoEditor.html.twig</jms:reference-file> - <jms:reference-file line="20">admin/collection/suggested_value.html.twig</jms:reference-file> - <jms:reference-file line="18">admin/collection/collection.html.twig</jms:reference-file> + <jms:reference-file line="558">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="596">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="634">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="667">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="700">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="808">Controller/Admin/CollectionController.php</jms:reference-file> + <jms:reference-file line="181">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="10">web/admin/databases.html.twig</jms:reference-file> + <jms:reference-file line="18">admin/collection/collection.html.twig</jms:reference-file> + <jms:reference-file line="20">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> <trans-unit id="432156a872c392232a4f7434feca02cdf36cfbfa" resname="Successfull connection" approved="yes"> <source>Successfull connection</source> @@ -6426,14 +6486,14 @@ <trans-unit id="dd631af5459e2fae291effe51fbb608d13a75163" resname="Suppression de %n_element% playlists" approved="yes"> <source>Suppression de %n_element% playlists</source> <target state="translated">%n_element% playlists verwijderen</target> - <jms:reference-file line="6">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="6">Bridge/Dailymotion/playlist_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="6">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> </trans-unit> <trans-unit id="299c2796a0d682b2495627623e9f228410b8a84a" resname="Suppression de %n_element% videos" approved="yes"> <source>Suppression de %n_element% videos</source> <target state="translated">%n_element% video verwijderen</target> - <jms:reference-file line="6">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="6">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="6">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1acfc1c7d761310db2e5e876c0cade4d522cfed2" resname="Supprimer" approved="yes"> <source>Supprimer</source> @@ -6445,11 +6505,6 @@ <target state="translated">Verwijder ook de documenten gerelateerd aan deze clusters</target> <jms:reference-file line="39">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> - <trans-unit id="65cc662ad8bf7275ba279006da212ce5a48f4eec" resname="Suspended access to the following collections"> - <source>Suspended access to the following collections</source> - <target state="new">Suspended access to the following collections</target> - <jms:reference-file line="159">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="8f040009fef60fd317d7519f22f4fe97ee277dc0" resname="Symbolized by" approved="yes"> <source>Symbolized by</source> <target state="translated">Gesymboliseerd door</target> @@ -6474,16 +6529,16 @@ <trans-unit id="848eed0fbd5429f556b2982dec3ea87136e33e44" resname="Tags" approved="yes"> <source>Tags</source> <target state="translated">Trefwoorden</target> - <jms:reference-file line="68">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="71">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="38">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="57">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="49">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="71">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="38">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="68">Bridge/Flickr/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0e98caed82acc9fa2f1ba9edeab7789e75e49c36" resname="Target Device" approved="yes"> <source>Target Device</source> <target state="translated">Doelapparaat</target> - <jms:reference-file line="388">classes/databox/subdef.php</jms:reference-file> + <jms:reference-file line="392">classes/databox/subdef.php</jms:reference-file> </trans-unit> <trans-unit id="5fb2e4a63ebe9160da52c28fba2f61029c85c8d6" resname="Task Edition"> <source>Task Edition</source> @@ -6517,11 +6572,6 @@ <target state="translated">Downloadable</target> <jms:reference-file line="417">web/admin/subdefs.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="e7b08fafe055633f6df0d3f22da6d788f79e4d9f" resname="Temporary access to the following collections"> - <source>Temporary access to the following collections</source> - <target state="new">Temporary access to the following collections</target> - <jms:reference-file line="109">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="d32cbb0b2df6ec0df4b80910498d4ef9ce5f0bb3" resname="Terms Of Use" approved="yes"> <source>Terms Of Use</source> <target state="translated">Gebruiksvoorwaarden</target> @@ -6543,8 +6593,8 @@ <target state="translated">Gebruikersvoorwaarden</target> <jms:reference-file line="72">Controller/Prod/TOUController.php</jms:reference-file> <jms:reference-file line="141">web/admin/tree.html.twig</jms:reference-file> - <jms:reference-file line="74">login/layout/base-layout.html.twig</jms:reference-file> <jms:reference-file line="6">web/login/cgus.html.twig</jms:reference-file> + <jms:reference-file line="75">login/layout/base-layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="903b3a1a72b51b7b51f85ec8c81def53ed9c9b0c" resname="The Phraseanet Web API allows other web application to rely on this instance"> <source>The Phraseanet Web API allows other web application to rely on this instance</source> @@ -6565,7 +6615,7 @@ <source>The application is going down for maintenance, please logout.</source> <target state="translated">Het programma sluit af voor onderhoud, gelieve uit te loggen.</target> <jms:reference-file line="85">Controller/Root/SessionController.php</jms:reference-file> - <jms:reference-file line="173">Controller/Root/SessionController.php</jms:reference-file> + <jms:reference-file line="175">Controller/Root/SessionController.php</jms:reference-file> </trans-unit> <trans-unit id="dbc7a77bb18477228fe3550ec43be9d8632599f6" resname="The authentication token specified in the Authorization header has expired." approved="yes"> <source>The authentication token specified in the Authorization header has expired.</source> @@ -6585,7 +6635,7 @@ <trans-unit id="96d9248cb4dfd196e98cbb278169e01e69ecc41a" resname="The destination record provided is not allowed" approved="yes"> <source>The destination record provided is not allowed</source> <target state="translated">De opgegeven bestemmingsrecord is niet toegestaan</target> - <jms:reference-file line="215">Controller/Prod/LazaretController.php</jms:reference-file> + <jms:reference-file line="225">Controller/Prod/LazaretController.php</jms:reference-file> </trans-unit> <trans-unit id="3814607399fa053b6054a4d7ce214f2d34034150" resname="The document %name% has been quarantined"> <source>The document %name% has been quarantined</source> @@ -6625,13 +6675,13 @@ <trans-unit id="bed6ca36bed72a06b8787982e6c74a8fbbb7715f" resname="The file is too big" approved="yes"> <source>The file is too big</source> <target state="translated">Het bestand is te groot</target> - <jms:reference-file line="65">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="44">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="66">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="1d5dadcdeeecd294a88baf096ba0440053ecf738" resname="The file was moved to the quarantine" approved="yes"> <source>The file was moved to the quarantine</source> <target state="translated">De file werd naar de quarantaine verplaatst</target> - <jms:reference-file line="225">Controller/Prod/UploadController.php</jms:reference-file> + <jms:reference-file line="282">Controller/Prod/UploadController.php</jms:reference-file> </trans-unit> <trans-unit id="1818502d42e14ffcb9c664fd1365fafa969971ff" resname="The following errors have been detected" approved="yes"> <source>The following errors have been detected</source> @@ -6641,13 +6691,13 @@ <trans-unit id="d22c09c164965d42fcdb8d8fe2b40d7d57799a8f" resname="The publication has been stopped" approved="yes"> <source>The publication has been stopped</source> <target state="translated">Het programma is gestopt</target> - <jms:reference-file line="516">Controller/Admin/CollectionController.php</jms:reference-file> <jms:reference-file line="498">Controller/Admin/DataboxController.php</jms:reference-file> + <jms:reference-file line="517">Controller/Admin/CollectionController.php</jms:reference-file> </trans-unit> <trans-unit id="bae1c72ecbe1459751e4a0fee382a305bbf933b7" resname="The record was successfully created" approved="yes"> <source>The record was successfully created</source> <target state="translated">De record werd met succes gemaakt</target> - <jms:reference-file line="196">Controller/Prod/UploadController.php</jms:reference-file> + <jms:reference-file line="253">Controller/Prod/UploadController.php</jms:reference-file> </trans-unit> <trans-unit id="209817489c23cec8b7a15f6b8ca3e45daf08656d" resname="The records have been properly ordered" approved="yes"> <source>The records have been properly ordered</source> @@ -6683,7 +6733,7 @@ <trans-unit id="a797e30923ac1be590300ce6b08e63b4e6dc6688" resname="Theme" approved="yes"> <source>Theme</source> <target state="translated">Thema</target> - <jms:reference-file line="616">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="707">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="322573ed2c245ecca02a8d7e8c96d89511d99b5a" resname="There is no one to validate orders, please contact an administrator" approved="yes"> <source>There is no one to validate orders, please contact an administrator</source> @@ -6709,7 +6759,7 @@ <trans-unit id="163fc70a23cf29331bab9896c9a8a0cb0b113bd6" resname="Thesaurus branch" approved="yes"> <source>Thesaurus branch</source> <target state="translated">Thesaurus tak</target> - <jms:reference-file line="248">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="263">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c80f8a4f795945c822db75e5414796446ada185c" resname="Thesaurus ou CTerms invalide"> <source>Thesaurus ou CTerms invalide</source> @@ -6766,7 +6816,7 @@ <trans-unit id="0845a443aa08307788a65ee5e1218a618dfcc9aa" resname="This link is valid until"> <source>This link is valid until</source> <target state="new">This link is valid until</target> - <jms:reference-file line="109">templates/web/email-template.html.twig</jms:reference-file> + <jms:reference-file line="115">templates/web/email-template.html.twig</jms:reference-file> </trans-unit> <trans-unit id="58e76d1cc6a26f43783774d888c3a260970f637b" resname="This option disables the selecting of the databases on which a user can register himself, and registration is made on all granted databases." approved="yes"> <source>This option disables the selecting of the databases on which a user can register himself, and registration is made on all granted databases.</source> @@ -6776,7 +6826,7 @@ <trans-unit id="814c3298cccd06ad65ccac8a35e4f2104a4af17e" resname="This user does not participate to the validation but is only viewer." approved="yes"> <source>This user does not participate to the validation but is only viewer.</source> <target state="translated">Deze gebruiker maakt geen deel uit van de goedkeuring maar is enkel een bezoeker.</target> - <jms:reference-file line="368">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="398">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="edbc2ef60cebe2e6efe5cb9a2662e710a65615d1" resname="This user has no rights" approved="yes"> <source>This user has no rights</source> @@ -6807,24 +6857,24 @@ <source>Time for feedback (days)</source> <target state="translated">Tijd voor feedback (dagen)</target> <jms:reference-file line="88">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="138">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="139">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="eb97899aedcd5609782b5ccb4ffa390e0e66a3eb" resname="Titre" approved="yes"> <source>Titre</source> <target state="translated">Titel</target> <jms:reference-file line="9">prod/Baskets/Reorder.html.twig</jms:reference-file> - <jms:reference-file line="39">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="24">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> - <jms:reference-file line="13">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="29">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="13">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="24">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="29">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="24">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="29">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="24">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="39">Bridge/Flickr/upload.html.twig</jms:reference-file> + <jms:reference-file line="24">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> <jms:reference-file line="8">prod/Story/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="93">admin/publications/fiche.html.twig</jms:reference-file> <jms:reference-file line="9">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="54">admin/publications/list.html.twig</jms:reference-file> - <jms:reference-file line="93">admin/publications/fiche.html.twig</jms:reference-file> </trans-unit> <trans-unit id="01594f4dad04782844c8175778fdf66deabf580d" resname="Toggle loop"> <source>Toggle loop</source> @@ -6836,6 +6886,11 @@ <target>Token</target> <jms:reference-file line="109">web/developers/application.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="e894979930445d4b2bd8c947d6e2e6b816fcb0ab" resname="Token not found"> + <source>Token not found</source> + <target state="new">Token not found</target> + <jms:reference-file line="383">Controller/Root/AccountController.php</jms:reference-file> + </trans-unit> <trans-unit id="f97edaa0ce78a61e01095cae4169cada477d52dc" resname="Tool box" approved="yes"> <source>Tool box</source> <target state="translated">Gereedschappen</target> @@ -6844,18 +6899,18 @@ <trans-unit id="b25928c69902557b0ef0a628490a3a1768d7b82f" resname="Total" approved="yes"> <source>Total</source> <target state="translated">Totaal</target> - <jms:reference-file line="27">admin/collection/details.html.twig</jms:reference-file> <jms:reference-file line="47">admin/databox/details.html.twig</jms:reference-file> + <jms:reference-file line="27">admin/collection/details.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b97ae3b4f9093f64a85df9e7d4338f6c62772516" resname="Tous" approved="yes"> <source>Tous</source> <target state="translated">Alle</target> - <jms:reference-file line="213">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="228">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6a5df111083f0da274d3b57d9b32183a19d33616" resname="Tout type" approved="yes"> <source>Tout type</source> <target state="translated">Alle type</target> - <jms:reference-file line="293">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="318">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="858b4e63ba1db83dde4feb9673b47c725b20a18b" resname="Toutes les publications" approved="yes"> <source>Toutes les publications</source> @@ -6875,24 +6930,18 @@ <trans-unit id="9764c016bb5a296069109116fa95c49815dcba82" resname="Transmited files" approved="yes"> <source>Transmited files</source> <target state="translated">Verzonden bestanden</target> + <jms:reference-file line="122">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="118">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="119">prod/upload/upload.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="a7e4c9fa228eb48d2c3526022f4fad0106db3d08" resname="Trier" approved="yes"> - <source>Trier</source> - <target state="translated">Sorteren</target> - <jms:reference-file line="49">web/report/generate_tab.html.twig</jms:reference-file> - <jms:reference-file line="50">web/report/generate_tab.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6e764776541fbe428a3566f42ee7956312af98b7" resname="Trier par" approved="yes"> <source>Trier par</source> <target state="translated">Sorteren op</target> - <jms:reference-file line="344">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="373">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f85e36f3a512d36e7e4bba99d440d389ab84ca9d" resname="Try to extract embedded thumbnails" approved="yes"> <source>Try to extract embedded thumbnails</source> <target state="translated">Probeer om de ingesloten thumbnails te extraheren</target> - <jms:reference-file line="61">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="64">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3deb7456519697ecf4eefc455516c969a3681bae" resname="Type"> <source>Type</source> @@ -6912,7 +6961,7 @@ <trans-unit id="a5ab97f65fffae645fe7e88ee89ca7ebc1e033be" resname="Type de documents" approved="yes"> <source>Type de documents</source> <target state="translated">Type van de documenten</target> - <jms:reference-file line="650">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="741">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0264aa285ccf980bbec0969e06c2eab7e936188c" resname="Type nombre" approved="yes"> <source>Type nombre</source> @@ -6927,8 +6976,8 @@ <trans-unit id="c2739616a133e476dda18386df0d2487d526766a" resname="URL de callback" approved="yes"> <source>URL de callback</source> <target state="translated">callback URL</target> - <jms:reference-file line="44">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="102">web/developers/application_form.html.twig</jms:reference-file> + <jms:reference-file line="44">web/developers/application.html.twig</jms:reference-file> </trans-unit> <trans-unit id="268f900effee1beb15231a1504d02543e8827bb3" resname="Un document commande" approved="yes"> <source>Un document commande</source> @@ -6943,8 +6992,8 @@ <trans-unit id="d32751443628a0d2c5b31b441c1e2b3001f35dfd" resname="Unable to add file to Phraseanet" approved="yes"> <source>Unable to add file to Phraseanet</source> <target state="translated">Onmogelijk om een bestand aan Phraseanet toe te voegen</target> - <jms:reference-file line="237">Controller/Prod/UploadController.php</jms:reference-file> <jms:reference-file line="195">Controller/Admin/FeedController.php</jms:reference-file> + <jms:reference-file line="294">Controller/Prod/UploadController.php</jms:reference-file> </trans-unit> <trans-unit id="8b233593eb66b5be4da2f44ff527bd641b3a6fc1" resname="Unable to add usr to list" approved="yes"> <source>Unable to add usr to list</source> @@ -6972,12 +7021,12 @@ <trans-unit id="225f62661868b2c3fb3820c94c5727f70b1e7d4c" resname="Unable to create template, the name is already used."> <source>Unable to create template, the name is already used.</source> <target state="new">Unable to create template, the name is already used.</target> - <jms:reference-file line="270">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="271">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="ac9cb56f58dc3e077f9557ed6958e993dae09e71" resname="Unable to create the user."> <source>Unable to create the user.</source> <target state="new">Unable to create the user.</target> - <jms:reference-file line="272">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="273">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="5660d6aac90c7a8f4df9fcad68513c061bef3298" resname="Unable to delete list" approved="yes"> <source>Unable to delete list</source> @@ -7035,7 +7084,7 @@ <trans-unit id="c091c74374b8ad7b7018e849fd89bf14c1fe3f02" resname="Une question personnelle" approved="yes"> <source>Une question personnelle</source> <target state="translated">Een persoonlijke vraag</target> - <jms:reference-file line="691">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="782">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="de1052fd7157a697a5ee7741019cc38322fc6128" resname="Une selection" approved="yes"> <source>Une selection</source> @@ -7093,16 +7142,16 @@ <trans-unit id="8bdf057f91e76ae328b2a21d35f682daa08a0ec0" resname="Upload"> <source>Upload</source> <target>Upload</target> - <jms:reference-file line="6">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="83">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="16">actions/Bridge/index.html.twig</jms:reference-file> - <jms:reference-file line="5">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="101">Bridge/Youtube/upload.html.twig</jms:reference-file> <jms:reference-file line="5">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="89">Bridge/Dailymotion/upload.html.twig</jms:reference-file> - <jms:reference-file line="8">prod/upload/upload-flash.html.twig</jms:reference-file> + <jms:reference-file line="5">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="101">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="16">actions/Bridge/index.html.twig</jms:reference-file> + <jms:reference-file line="6">Bridge/Flickr/upload.html.twig</jms:reference-file> + <jms:reference-file line="83">Bridge/Flickr/upload.html.twig</jms:reference-file> <jms:reference-file line="8">prod/upload/upload.html.twig</jms:reference-file> - <jms:reference-file line="93">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="8">prod/upload/upload-flash.html.twig</jms:reference-file> + <jms:reference-file line="94">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f9ee782a49540357e87b6dc0dde09d8bec6507af" resname="Upload URL is not set, please contact an admin" approved="yes"> <source>Upload URL is not set, please contact an admin</source> @@ -7127,7 +7176,7 @@ <trans-unit id="a8ddbae32452ce671987065bc29d7ae6685a2b17" resname="Uploaded by : %username%" approved="yes"> <source>Uploaded by : %username%</source> <target state="translated">Opgeladen door : %username%</target> - <jms:reference-file line="341">prod/upload/lazaret.html.twig</jms:reference-file> + <jms:reference-file line="438">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ea1fd4c4c366bf2e13d348b67b75e96039d7a1d7" resname="Use Google Chart API"> <source>Use Google Chart API</source> @@ -7147,7 +7196,7 @@ <trans-unit id="d029e308808256c5e3868e24ea33f14866ab2e36" resname="Use latest search settings on Production loading"> <source>Use latest search settings on Production loading</source> <target state="new">Use latest search settings on Production loading</target> - <jms:reference-file line="588">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="679">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="74126bf38974fc3d5bf2d0844567be2be473e122" resname="Use my Phraseanet account" approved="yes"> <source>Use my Phraseanet account</source> @@ -7162,16 +7211,16 @@ <trans-unit id="17a74b77867e7b3f4f5e5b2ad90be36cf800dfda" resname="Use the Flash uploader" approved="yes"> <source>Use the Flash uploader</source> <target state="translated">Gebruik Flash uploader</target> + <jms:reference-file line="53">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="146">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="132">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="50">prod/upload/upload.html.twig</jms:reference-file> - <jms:reference-file line="143">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b9473cfd4d6d6383f40de2d9be11adcca7b76ab6" resname="Use the HTML5 uploader" approved="yes"> <source>Use the HTML5 uploader</source> <target state="translated">Gebruik de HTML5 uploader</target> + <jms:reference-file line="145">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="48">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="131">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="142">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1d2b0439bd02b54c622696c45588eab8d051dfb9" resname="Use with mod_token. Attention requires the apache modules and mod_h264_streaming mod_auth_token" approved="yes"> <source>Use with mod_token. Attention requires the apache modules and mod_h264_streaming mod_auth_token</source> @@ -7202,40 +7251,40 @@ <source>User can download HD</source> <target state="translated">Gebruiker kan HD downloaden</target> <jms:reference-file line="103">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="107">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="109">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="213">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="215">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="254">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="256">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="108">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="110">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="214">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="216">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="255">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="257">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ae005b1ce814398e203551a75eeeb5da09f80204" resname="User can see others choices" approved="yes"> <source>User can see others choices</source> <target state="translated">Gebruiker kan andere keuzes zien</target> <jms:reference-file line="105">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="100">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="102">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="101">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="103">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9e982c7ce4a8cb5f48743cd0ca79a82ca30f7dc1" resname="User contribute to the feedback" approved="yes"> <source>User contribute to the feedback</source> <target state="translated">Gebruiker bijdrage aan de feedback</target> <jms:reference-file line="104">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="93">prod/templates/push.html.twig</jms:reference-file> - <jms:reference-file line="95">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="94">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="96">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="981305c0c2dad92d70b1afd4757a274596de6ec7" resname="User successfully created" approved="yes"> <source>User successfully created</source> <target state="translated">Gebruiker met succes aangemaakt</target> - <jms:reference-file line="485">Controller/Prod/PushController.php</jms:reference-file> + <jms:reference-file line="490">Controller/Prod/PushController.php</jms:reference-file> </trans-unit> <trans-unit id="57f2b181d0a5e79a147ea1cdf41457f58dbbb3c9" resname="Users" approved="yes"> <source>Users</source> <target state="translated">Gebruikers</target> <jms:reference-file line="40">Vocabulary/ControlProvider/UserProvider.php</jms:reference-file> + <jms:reference-file line="107">prod/actions/Push.html.twig</jms:reference-file> <jms:reference-file line="5">actions/Feedback/list.html.twig</jms:reference-file> - <jms:reference-file line="100">prod/actions/Push.html.twig</jms:reference-file> - <jms:reference-file line="29">user/import/view.html.twig</jms:reference-file> <jms:reference-file line="19">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="29">user/import/view.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3482565eef4d4cd1decb5ebfad6ecfc5943d30da" resname="Users must accept Terms of Use for each export" approved="yes"> <source>Users must accept Terms of Use for each export</source> @@ -7245,7 +7294,7 @@ <trans-unit id="28f4718f1cf2cd1f31d49c8bce276341ffe222bd" resname="Users suggestion" approved="yes"> <source>Users suggestion</source> <target state="translated">Gebruikers suggestie</target> - <jms:reference-file line="142">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="149">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a56fad2f92979e0171b42bbc51ff5657d17ceb91" resname="Utilisation prevue:"> <source>Utilisation prevue:</source> @@ -7266,11 +7315,11 @@ <trans-unit id="dd74d182c641e4c78502d863b44d0aeff1575e54" resname="Validation" approved="yes"> <source>Validation</source> <target state="translated">Goedkeuring</target> + <jms:reference-file line="23">eventsmanager/notify/validationdone.php</jms:reference-file> <jms:reference-file line="20">eventsmanager/notify/validationreminder.php</jms:reference-file> <jms:reference-file line="73">eventsmanager/notify/validationreminder.php</jms:reference-file> <jms:reference-file line="20">eventsmanager/notify/validate.php</jms:reference-file> <jms:reference-file line="78">eventsmanager/notify/validate.php</jms:reference-file> - <jms:reference-file line="20">eventsmanager/notify/validationdone.php</jms:reference-file> <jms:reference-file line="86">lightbox/IE6/validate.html.twig</jms:reference-file> </trans-unit> <trans-unit id="83da6b62512e6597a104cf295a8f050cd9799a6d" resname="Validation from %user%"> @@ -7286,11 +7335,11 @@ <trans-unit id="6c259e54dcc7188e7cfe33403eca78cda53017fc" resname="Validations" approved="yes"> <source>Validations</source> <target state="translated">Controles</target> + <jms:reference-file line="46">mobile/lightbox/index.html.twig</jms:reference-file> + <jms:reference-file line="86">mobile/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="24">web/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="119">lightbox/IE6/validate.html.twig</jms:reference-file> <jms:reference-file line="132">web/lightbox/validate.html.twig</jms:reference-file> - <jms:reference-file line="46">mobile/lightbox/index.html.twig</jms:reference-file> - <jms:reference-file line="86">mobile/lightbox/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="264cc8414ca311d9fa99c7ed66a90171dcf22dc6" resname="Validations received" approved="yes"> <source>Validations received</source> @@ -7325,7 +7374,7 @@ <trans-unit id="bc17c1f0179a888f2a7e8389f67d4f2cf5cf4531" resname="Video"> <source>Video</source> <target>Video</target> - <jms:reference-file line="295">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="320">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="49b431928c1ca1e514c612954a19457fadff2485" resname="Video Codec"> <source>Video Codec</source> @@ -7335,13 +7384,13 @@ <trans-unit id="534048d6c768f47f83f67c0498e6d4ecf5cff4bb" resname="Video codec"> <source>Video codec</source> <target state="new">Video codec</target> - <jms:reference-file line="325">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="346">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="56b71e89fb1079caaadefd0889e9a22e8b0560e3" resname="Videos" approved="yes"> <source>Videos</source> <target state="translated">Video's</target> - <jms:reference-file line="174">Bridge/Api/Dailymotion.php</jms:reference-file> <jms:reference-file line="159">Bridge/Api/Youtube.php</jms:reference-file> + <jms:reference-file line="174">Bridge/Api/Dailymotion.php</jms:reference-file> </trans-unit> <trans-unit id="18af7efc4ef7f30783dbb1ad1bc0b9aed857a19c" resname="View on %title%"> <source>View on %title%</source> @@ -7351,24 +7400,24 @@ <trans-unit id="f5bd306a7ccf0851eeefd7659ac5c01c382df934" resname="Vocabulary not found" approved="yes"> <source>Vocabulary not found</source> <target state="translated">Vocabulary niet gevonden</target> - <jms:reference-file line="255">Controller/Prod/EditController.php</jms:reference-file> + <jms:reference-file line="258">Controller/Prod/EditController.php</jms:reference-file> </trans-unit> <trans-unit id="a1e3e6d2f9b416cfab10df81ce100f4fc43eb90a" resname="Vocabulary type" approved="yes"> <source>Vocabulary type</source> <target state="translated">Type van de vocabulair</target> - <jms:reference-file line="237">admin/fields/templates.html.twig</jms:reference-file> + <jms:reference-file line="252">admin/fields/templates.html.twig</jms:reference-file> </trans-unit> <trans-unit id="044d95dece43b99febe25cb6bc5fab28bf212ee0" resname="Voici vos paniers" approved="yes"> <source>Voici vos paniers</source> <target state="translated">Uw mandjes</target> - <jms:reference-file line="94">web/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="120">mobile/lightbox/index.html.twig</jms:reference-file> + <jms:reference-file line="94">web/lightbox/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c6dacfdd161fc809b7996f80fccf5c7515f82e1c" resname="Voici vos validations en cours" approved="yes"> <source>Voici vos validations en cours</source> <target state="translated">Een controle in proces</target> - <jms:reference-file line="27">web/lightbox/index.html.twig</jms:reference-file> <jms:reference-file line="90">mobile/lightbox/index.html.twig</jms:reference-file> + <jms:reference-file line="27">web/lightbox/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a2fde1d3f411f4fbe13b98748bd7c18fb84e71f9" resname="Votre adresse email" approved="yes"> <source>Votre adresse email</source> @@ -7415,11 +7464,6 @@ <target state="translated">U hebt een nieuw mandje ontvangen</target> <jms:reference-file line="4">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="4d922dc119f737364189a2807ca9423a19d3fdfc" resname="Vous avez recu une demande de validation de document sur ce panier" approved="yes"> - <source>Vous avez recu une demande de validation de document sur ce panier</source> - <target state="translated">U hebt een aanvraag tot goedkeuring van documenten in dit mandje ontvangen</target> - <jms:reference-file line="30">prod/WorkZone/Macros.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="48b0edd4b7baadecf72f020e6bc23a8a2118e83f" resname="Vous aviez envoye cette demande a %n% utilisateurs"> <source>Vous aviez envoye cette demande a %n% utilisateurs</source> <target state="new">Vous aviez envoye cette demande a %n% utilisateurs</target> @@ -7498,10 +7542,10 @@ <trans-unit id="12ee49ba726f4422d3dcc6bc7b92ab9de279d211" resname="Vous n'avez selectionne aucun element" approved="yes"> <source>Vous n'avez selectionne aucun element</source> <target state="translated">U hebt geen enkel element geselecteerd</target> - <jms:reference-file line="14">Bridge/Flickr/upload.html.twig</jms:reference-file> - <jms:reference-file line="88">actions/Bridge/index.html.twig</jms:reference-file> - <jms:reference-file line="13">Bridge/Youtube/upload.html.twig</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/upload.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="88">actions/Bridge/index.html.twig</jms:reference-file> + <jms:reference-file line="14">Bridge/Flickr/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5e8fd52d6c7e92e6907f1148d2e458871d17c1ae" resname="Vous ne pouvez pas editer plusieurs elements simultanement" approved="yes"> <source>Vous ne pouvez pas editer plusieurs elements simultanement</source> @@ -7527,7 +7571,7 @@ <trans-unit id="4ac570371902f3ba1babc51f8a4c030e31724b34" resname="Vous pouvez quitter la plupart des fenetres survolantes via la touche echap" approved="yes"> <source>Vous pouvez quitter la plupart des fenetres survolantes via la touche echap</source> <target state="translated">U kunt het grootste deel van de bovenliggende vensters sluiten met de escape toets</target> - <jms:reference-file line="559">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="650">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="338f05228fd3d0770eac9a4d37cc93dcc1cd7cdc" resname="Warning !" approved="yes"> <source>Warning !</source> @@ -7573,7 +7617,7 @@ <trans-unit id="58877d4031b60c13f284719a0aecfb1e7962c59a" resname="Welcome to the ListManager !" approved="yes"> <source>Welcome to the ListManager !</source> <target state="translated">Welkom bij de ListManager !</target> - <jms:reference-file line="288">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="293">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="769bb19e615b7f8e2809e5882e2d05a18f57a531" resname="When" approved="yes"> <source>When</source> @@ -7588,8 +7632,8 @@ <trans-unit id="ceffd5b622d10de1a19822471cb3804cb61cba28" resname="Which playlist you want to put you %number% elements into ?" approved="yes"> <source>Which playlist you want to put you %number% elements into ?</source> <target state="translated">In welke playlist wilt u %number% items plaatsen ?</target> - <jms:reference-file line="13">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6e2507e568a039431c507b30f44aa72cbb1ed929" resname="Whoops, looks like something went wrong." approved="yes"> <source>Whoops, looks like something went wrong.</source> @@ -7619,15 +7663,22 @@ <target state="translated">Schrijf Metas</target> <jms:reference-file line="498">web/admin/subdefs.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="d3f8f7b810c4b08f0b4ac4e47fdf8d265a10d869" resname="YYYY-MM-DD"> + <source>YYYY-MM-DD</source> + <target state="new">YYYY-MM-DD</target> + <jms:reference-file line="10">web/report/form_date_and_base.html.twig</jms:reference-file> + <jms:reference-file line="20">web/report/form_date_and_base.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="9ebeadaf2d2237a35176827d093952ad6cc88f5e" resname="YYYY/MM/DD"> <source>YYYY/MM/DD</source> <target state="new">YYYY/MM/DD</target> - <jms:reference-file line="453">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="459">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="485">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="492">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5397e0583f14f6c88de06b1ef28f460a1fb5b0ae" resname="Yes" approved="yes"> <source>Yes</source> <target state="translated">Ja</target> + <jms:reference-file line="291">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="13">user/import/view.html.twig</jms:reference-file> <jms:reference-file line="33">web/developers/applications.html.twig</jms:reference-file> </trans-unit> @@ -7639,22 +7690,22 @@ <trans-unit id="d2a23a2eb3bc334253d0a4cd6541bea3e520e3d9" resname="You are about to ask for feedback for %nb_push_items% records, %nb_not_available% records can not be processed." approved="yes"> <source>You are about to ask for feedback for %nb_push_items% records, %nb_not_available% records can not be processed.</source> <target state="translated">U staat op het punt om feedback te vragen voor %nb_push_items% records, records kunnen niet worden uitgevoerd.</target> - <jms:reference-file line="209">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="215">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4614afcfbdb05da7ae2e2ce6fc7e808cd707f257" resname="You are about to ask for feedback for %nb_push_items% records." approved="yes"> <source>You are about to ask for feedback for %nb_push_items% records.</source> <target state="translated">U staat op het punt om feedback te vragen voor %nb_push_items% records.</target> - <jms:reference-file line="206">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="212">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2292a5ac48e50169c8d013bf51853ccaf69d182b" resname="You are about to push %nb_push_items% records, %nb_not_available% records can not be processed." approved="yes"> <source>You are about to push %nb_push_items% records, %nb_not_available% records can not be processed.</source> <target state="translated">U staat op het punt om %nb_push_items% records door te sturen, %nb_not_available% records kunnen niet worden uitgevoerd.</target> - <jms:reference-file line="201">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="207">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="94aec9ece3188cf70534cff6d45bc11b81f7ef4d" resname="You are about to push %nb_push_items% records." approved="yes"> <source>You are about to push %nb_push_items% records.</source> <target state="translated">U staat op het punt om %nb_push_items% records door te sturen.</target> - <jms:reference-file line="198">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="204">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cf393f9867e45930f4d907a0ec4f728ea65d503b" resname="You are attempting to exceed the storage limit on your account and must delete existing entries before inserting new entries" approved="yes"> <source>You are attempting to exceed the storage limit on your account and must delete existing entries before inserting new entries</source> @@ -7721,8 +7772,8 @@ <trans-unit id="4a67615bcd64fcc9443c499676a462d835ad841e" resname="You can not upload files" approved="yes"> <source>You can not upload files</source> <target state="translated">U kunt geen files uploaden</target> + <jms:reference-file line="150">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="102">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="147">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4faca55769348dcbc9714b19438181057aa2510e" resname="You do not enough rights to update status" approved="yes"> <source>You do not enough rights to update status</source> @@ -7777,7 +7828,7 @@ <trans-unit id="aecece60b34fa1f68f4671b168031bfb1b287d56" resname="You have not access to this basket"> <source>You have not access to this basket</source> <target state="new">You have not access to this basket</target> - <jms:reference-file line="182">Model/Repositories/BasketRepository.php</jms:reference-file> + <jms:reference-file line="200">Model/Repositories/BasketRepository.php</jms:reference-file> </trans-unit> <trans-unit id="7d7596cb5bf503833487b48c95cf263b44f3e05d" resname="You have selected %nbReceivedDocuments% records." approved="yes"> <source>You have selected %nbReceivedDocuments% records.</source> @@ -7817,7 +7868,7 @@ <trans-unit id="d48b3bc5b1daedb76e3dd7aa5240bbc34de7470e" resname="You must give a destination record" approved="yes"> <source>You must give a destination record</source> <target state="translated">U moet een bestemmingsrecord opgeven</target> - <jms:reference-file line="188">Controller/Prod/LazaretController.php</jms:reference-file> + <jms:reference-file line="198">Controller/Prod/LazaretController.php</jms:reference-file> </trans-unit> <trans-unit id="6304d7df5d76b28a076c00dd984f87eef3dabeee" resname="You need define a model before importing a list of users" approved="yes"> <source>You need define a model before importing a list of users</source> @@ -7916,10 +7967,15 @@ <target state="translated">Uw media en hun thumbnails (voorvertoningen, thumbnails..) worden in deze mappen opgeslagen.</target> <jms:reference-file line="736">web/setup/step2.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="bd5a589e9bed2de0b0180ca950ea0593249f7f69" resname="Your phraseanet account on %urlInstance% has been deleted!"> + <source>Your phraseanet account on %urlInstance% has been deleted!</source> + <target state="new">Your phraseanet account on %urlInstance% has been deleted!</target> + <jms:reference-file line="29">Notification/Mail/MailSuccessAccountDelete.php</jms:reference-file> + </trans-unit> <trans-unit id="257253d658fdcbe73c4f4d02d2a3442ea8e4011d" resname="Your registration requests have been taken into account."> <source>Your registration requests have been taken into account.</source> <target state="new">Your registration requests have been taken into account.</target> - <jms:reference-file line="329">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="426">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="e63b3e4d7c2710f8973d4371433e1a0875a02c12" resname="a propos" approved="yes"> <source>a propos</source> @@ -7930,13 +7986,15 @@ <trans-unit id="93741c74decbac407e8f237c41d0235dd78a8eac" resname="action : ajouter au panier" approved="yes"> <source>action : ajouter au panier</source> <target state="translated">aan mandje toevoegen</target> - <jms:reference-file line="117">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="118">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="119">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="120">prod/results/record.html.twig</jms:reference-file> <jms:reference-file line="4">prod/preview/tools.html.twig</jms:reference-file> </trans-unit> <trans-unit id="162536d0e4aeccdde8b707acd6111800a25d549b" resname="action : bridge" approved="yes"> <source>action : bridge</source> <target state="translated">Bridge</target> - <jms:reference-file line="864">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="955">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3ffc763c6cf92695a7ce387f904bbe6e7a94bdbc" resname="action : collection" approved="yes"> <source>action : collection</source> @@ -7958,10 +8016,12 @@ <target state="translated">Exporteer</target> <jms:reference-file line="7">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="6">prod/WorkZone/Basket.html.twig</jms:reference-file> - <jms:reference-file line="866">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="124">prod/results/record.html.twig</jms:reference-file> <jms:reference-file line="50">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="128">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="129">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="130">prod/results/record.html.twig</jms:reference-file> <jms:reference-file line="25">prod/preview/tools.html.twig</jms:reference-file> + <jms:reference-file line="957">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="121">web/lightbox/feed.html.twig</jms:reference-file> <jms:reference-file line="123">lightbox/IE6/feed.html.twig</jms:reference-file> <jms:reference-file line="155">lightbox/IE6/validate.html.twig</jms:reference-file> @@ -7972,15 +8032,17 @@ <target state="translated">Gereedschappen</target> <jms:reference-file line="70">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="67">prod/WorkZone/Basket.html.twig</jms:reference-file> - <jms:reference-file line="299">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="291">web/prod/toolbar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="71e15cbcf85fd5fe848fe7fa210fa8318a09f842" resname="action : print" approved="yes"> <source>action : print</source> <target state="translated">Print</target> <jms:reference-file line="11">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="10">prod/WorkZone/Basket.html.twig</jms:reference-file> - <jms:reference-file line="131">prod/results/record.html.twig</jms:reference-file> <jms:reference-file line="58">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="138">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="139">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="140">prod/results/record.html.twig</jms:reference-file> <jms:reference-file line="20">prod/preview/tools.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d222a71a73f44cb6bdf237790f350f0b1fb9eb1f" resname="action : publier" approved="yes"> @@ -7988,9 +8050,9 @@ <target state="translated">Publiceren</target> <jms:reference-file line="63">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="60">prod/WorkZone/Basket.html.twig</jms:reference-file> - <jms:reference-file line="865">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="157">web/prod/toolbar.html.twig</jms:reference-file> - <jms:reference-file line="223">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="219">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="956">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="17948b21adfde1bf589b2a34a2c8253e2af91913" resname="action : push" approved="yes"> <source>action : push</source> @@ -7998,7 +8060,7 @@ <jms:reference-file line="47">prod/WorkZone/Story.html.twig</jms:reference-file> <jms:reference-file line="44">prod/WorkZone/Basket.html.twig</jms:reference-file> <jms:reference-file line="135">web/prod/toolbar.html.twig</jms:reference-file> - <jms:reference-file line="184">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="182">web/prod/toolbar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f22184cfa5be236b7193d80d5f8407a36b108b79" resname="action : status" approved="yes"> <source>action : status</source> @@ -8010,8 +8072,9 @@ <trans-unit id="24ade348bc49c69cced4d173e31f7369aa466772" resname="action : supprimer" approved="yes"> <source>action : supprimer</source> <target state="translated">Verwijderen</target> - <jms:reference-file line="175">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="308">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="198">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="199">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="300">web/prod/toolbar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b88ca5fbb2e89cb79b08c981283383361be312bf" resname="action:: nouveau panier" approved="yes"> <source>action:: nouveau panier</source> @@ -8023,38 +8086,44 @@ <trans-unit id="74894db9388e92ba33510dd3881626d42d29bd20" resname="action:: nouveau reportage" approved="yes"> <source>action:: nouveau reportage</source> <target state="translated">Nieuwe reportage</target> - <jms:reference-file line="220">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="222">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="223">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="224">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="226">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="227">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9cd95a80cd47133cb87c6b6a55015fa9e3566d60" resname="action::Valider" approved="yes"> <source>action::Valider</source> <target state="translated">Valideren</target> <jms:reference-file line="68">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="162">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="170">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="171">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="83db61ed4488bb58e40b315e67f39a6ad40e5707" resname="action::detacher" approved="yes"> <source>action::detacher</source> <target state="translated">Ontkoppelen</target> - <jms:reference-file line="242">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="267">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="268">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="896ab2ff86bda5e26adff7fa7d418c4c926c6b0c" resname="action::editer" approved="yes"> <source>action::editer</source> <target state="translated">Aanpassen</target> - <jms:reference-file line="235">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="258">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="259">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1a99f659649e77e29efa0a391ae879ab8dc8df0e" resname="action::exporter" approved="yes"> <source>action::exporter</source> <target state="translated">Exporteren</target> <jms:reference-file line="48">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="142">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="228">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="144">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="145">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="247">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="248">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4c6537a9f14dd9d59ed9c3dca8f7f04ee33ae8d2" resname="action::renommer" approved="yes"> <source>action::renommer</source> <target state="translated">Hernoemen</target> - <jms:reference-file line="152">prod/WorkZone/Macros.html.twig</jms:reference-file> - <jms:reference-file line="153">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="159">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="160">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="161">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="aa878e20e09ce58233e45272b39764b5dfd4ee49" resname="actual status"> <source>actual status</source> @@ -8244,8 +8313,8 @@ <trans-unit id="1f17890a6f5675a0542b997121fc105bb6bd4466" resname="admin::base:collection: Creer une collection" approved="yes"> <source>admin::base:collection: Creer une collection</source> <target state="translated">Maak een collectie</target> - <jms:reference-file line="2">admin/collection/create.html.twig</jms:reference-file> <jms:reference-file line="107">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="2">admin/collection/create.html.twig</jms:reference-file> </trans-unit> <trans-unit id="68d7a4cf1ed350b4ede9c867500fe6f0f166adc2" resname="admin::base:collection: Monter une collection" approved="yes"> <source>admin::base:collection: Monter une collection</source> @@ -8261,8 +8330,8 @@ <trans-unit id="d22d5f91dbed4fb514e0d87876206a9a85420abc" resname="admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces" approved="yes"> <source>admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces</source> <target state="translated">U kan een standaard collectie kiezen voor toegang te verlenen</target> - <jms:reference-file line="28">admin/collection/create.html.twig</jms:reference-file> <jms:reference-file line="159">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="28">admin/collection/create.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3d84e19b243dea8a79762b90a3086d96e5cc2c00" resname="admin::base:collection: activer la collection" approved="yes"> <source>admin::base:collection: activer la collection</source> @@ -8273,10 +8342,10 @@ <trans-unit id="92f3414a98bf0c0d1723281930e272528ab7b6b2" resname="admin::base:collection: aucun fichier (minilogo, watermark ...)" approved="yes"> <source>admin::base:collection: aucun fichier (minilogo, watermark ...)</source> <target state="translated">Geen enkel bestand (minilogo, watermerk ...)</target> + <jms:reference-file line="214">admin/databox/databox.html.twig</jms:reference-file> <jms:reference-file line="156">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="181">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="206">admin/collection/collection.html.twig</jms:reference-file> - <jms:reference-file line="214">admin/databox/databox.html.twig</jms:reference-file> </trans-unit> <trans-unit id="82f874797027463bcc1e0fa7222160aecdd35abb" resname="admin::base:collection: descativer la collection" approved="yes"> <source>admin::base:collection: descativer la collection</source> @@ -8337,20 +8406,20 @@ <trans-unit id="a7765634e47a714273ba54690efd1f6c2a08e6de" resname="admin::base:collorder: descendre" approved="yes"> <source>admin::base:collorder: descendre</source> <target state="translated">Afdalen</target> - <jms:reference-file line="92">admin/collection/suggested_value.html.twig</jms:reference-file> <jms:reference-file line="25">admin/collection/reorder.html.twig</jms:reference-file> + <jms:reference-file line="92">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> <trans-unit id="adc7e4a654ee4a660a18aa80518192eeaa24cceb" resname="admin::base:collorder: monter" approved="yes"> <source>admin::base:collorder: monter</source> <target state="translated">Laden</target> - <jms:reference-file line="91">admin/collection/suggested_value.html.twig</jms:reference-file> <jms:reference-file line="20">admin/collection/reorder.html.twig</jms:reference-file> + <jms:reference-file line="91">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> <trans-unit id="82356065e1cf79e0ea18809dde087170c41be325" resname="admin::base:collorder: reinitialiser en ordre alphabetique" approved="yes"> <source>admin::base:collorder: reinitialiser en ordre alphabetique</source> <target state="translated">Herinitialiseren in alfabetische volgorde</target> - <jms:reference-file line="94">admin/collection/suggested_value.html.twig</jms:reference-file> <jms:reference-file line="28">admin/collection/reorder.html.twig</jms:reference-file> + <jms:reference-file line="94">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> <trans-unit id="59fb64701fdcfa682495e91bb1e286a9dba77848" resname="admin::colelction::presentation des elements : rien" approved="yes"> <source>admin::colelction::presentation des elements : rien</source> @@ -8405,21 +8474,21 @@ <trans-unit id="df2642eaa7386518762050a368f5d2c49a3fe42a" resname="admin::compte-utilisateur activite" approved="yes"> <source>admin::compte-utilisateur activite</source> <target state="translated">Activiteit</target> + <jms:reference-file line="312">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="104">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="311">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="122">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="528">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="221">admin/user/registrations.html.twig</jms:reference-file> - <jms:reference-file line="122">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="10b0a44531159b40162fd9349abbe2bd21946c3e" resname="admin::compte-utilisateur adresse" approved="yes"> <source>admin::compte-utilisateur adresse</source> <target state="translated">Adres</target> + <jms:reference-file line="304">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="69">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="303">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="87">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="487">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="225">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="363">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="87">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e922f2ca7321d1d1f403e937dbf109db04bac722" resname="admin::compte-utilisateur changer mon mot de passe" approved="yes"> <source>admin::compte-utilisateur changer mon mot de passe</source> @@ -8429,11 +8498,11 @@ <trans-unit id="218d3257842bd2817f0ba7bcd02f3729c60e591d" resname="admin::compte-utilisateur code postal" approved="yes"> <source>admin::compte-utilisateur code postal</source> <target state="translated">Postcode</target> + <jms:reference-file line="306">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="76">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="305">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="94">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="495">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="370">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="94">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="bc2f858e3323d3baa8be27661724b11ce9c0a57b" resname="admin::compte-utilisateur confirmer la nouvelle adresse email" approved="yes"> <source>admin::compte-utilisateur confirmer la nouvelle adresse email</source> @@ -8453,23 +8522,23 @@ <trans-unit id="d79bdc62fa5ecc611e96fe7ab9f5cf4d4debabae" resname="admin::compte-utilisateur email" approved="yes"> <source>admin::compte-utilisateur email</source> <target state="translated">Email</target> + <jms:reference-file line="301">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="111">Event/Subscriber/RegistrationSubscriber.php</jms:reference-file> - <jms:reference-file line="300">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="74">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="479">web/admin/editusers.html.twig</jms:reference-file> - <jms:reference-file line="215">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="109">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="215">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="22">web/admin/connected-users.html.twig</jms:reference-file> <jms:reference-file line="335">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="74">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d194728e348f759c2a443df96338ba1e2c8adfb5" resname="admin::compte-utilisateur fax" approved="yes"> <source>admin::compte-utilisateur fax</source> <target state="translated">Fax</target> + <jms:reference-file line="309">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="118">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="308">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="136">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="545">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="384">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="136">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d6e2b9ddcaf97ba5258571cb54935f1ff6b581a2" resname="admin::compte-utilisateur id utilisateur" approved="yes"> <source>admin::compte-utilisateur id utilisateur</source> @@ -8480,35 +8549,35 @@ <source>admin::compte-utilisateur identifiant</source> <target state="translated">Identificatie</target> <jms:reference-file line="36">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="443">web/admin/editusers.html.twig</jms:reference-file> - <jms:reference-file line="211">admin/user/registrations.html.twig</jms:reference-file> - <jms:reference-file line="94">web/admin/users.html.twig</jms:reference-file> - <jms:reference-file line="19">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="49">api/auth/end_user_authorization.html.twig</jms:reference-file> <jms:reference-file line="21">web/account/reset-email.html.twig</jms:reference-file> <jms:reference-file line="35">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="188">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="443">web/admin/editusers.html.twig</jms:reference-file> + <jms:reference-file line="94">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="211">admin/user/registrations.html.twig</jms:reference-file> + <jms:reference-file line="19">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f5fe48877b8b43297cc3c999ab84bbe0bd60f5af" resname="admin::compte-utilisateur mot de passe" approved="yes"> <source>admin::compte-utilisateur mot de passe</source> <target state="translated">Paswoord</target> - <jms:reference-file line="562">web/setup/step2.html.twig</jms:reference-file> - <jms:reference-file line="25">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="50">api/auth/end_user_authorization.html.twig</jms:reference-file> + <jms:reference-file line="562">web/setup/step2.html.twig</jms:reference-file> <jms:reference-file line="27">web/account/reset-email.html.twig</jms:reference-file> <jms:reference-file line="195">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="25">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0e2d7957bf48ebf857d73e4395e78fa73e193b5d" resname="admin::compte-utilisateur nom" approved="yes"> <source>admin::compte-utilisateur nom</source> <target state="translated">Naam</target> + <jms:reference-file line="299">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="62">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> <jms:reference-file line="109">Event/Subscriber/RegistrationSubscriber.php</jms:reference-file> - <jms:reference-file line="298">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="60">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="471">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="213">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="13">web/admin/connected-users.html.twig</jms:reference-file> <jms:reference-file line="321">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="60">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1dbac236fd2ee8bcce590e0cdc7c4a418885c52b" resname="admin::compte-utilisateur nouvelle adresse email" approved="yes"> <source>admin::compte-utilisateur nouvelle adresse email</source> @@ -8518,48 +8587,48 @@ <trans-unit id="1b83f90c602146fc09f3e025507c9b11aa10772a" resname="admin::compte-utilisateur pays" approved="yes"> <source>admin::compte-utilisateur pays</source> <target state="translated">Land</target> - <jms:reference-file line="306">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="307">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="114">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="28c517ddecdb662c767290d2e1fa53ef198307fa" resname="admin::compte-utilisateur poste" approved="yes"> <source>admin::compte-utilisateur poste</source> <target state="translated">Postcode</target> + <jms:reference-file line="310">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="90">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="309">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="108">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="512">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="219">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="356">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="108">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="eadb6eaa53204a688e4059a35261b6878fda8b37" resname="admin::compte-utilisateur prenom" approved="yes"> <source>admin::compte-utilisateur prenom</source> <target state="translated">Voornaam</target> + <jms:reference-file line="300">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="55">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> <jms:reference-file line="110">Event/Subscriber/RegistrationSubscriber.php</jms:reference-file> - <jms:reference-file line="299">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="67">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="463">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="213">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="328">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="67">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0ee82fdcf687c10dd1e5040a5b84d9a90d079a9a" resname="admin::compte-utilisateur sexe" approved="yes"> <source>admin::compte-utilisateur sexe</source> <target state="translated">Geslacht</target> <jms:reference-file line="44">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="451">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="42">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="451">web/admin/editusers.html.twig</jms:reference-file> </trans-unit> <trans-unit id="78b65792aca82024d5f1ff60dec83a501c01e15e" resname="admin::compte-utilisateur societe" approved="yes"> <source>admin::compte-utilisateur societe</source> <target state="translated">Bedrijf</target> + <jms:reference-file line="311">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="97">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="310">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="115">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="520">web/admin/editusers.html.twig</jms:reference-file> - <jms:reference-file line="217">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="104">web/admin/users.html.twig</jms:reference-file> + <jms:reference-file line="217">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="16">web/admin/connected-users.html.twig</jms:reference-file> <jms:reference-file line="349">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="115">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4d15ba95c86a58884d598415b8f8a400ab636cd9" resname="admin::compte-utilisateur tel" approved="yes"> <source>admin::compte-utilisateur tel</source> @@ -8569,31 +8638,31 @@ <trans-unit id="aa3ffb658796d685813791430da4efdac145b8d9" resname="admin::compte-utilisateur telephone" approved="yes"> <source>admin::compte-utilisateur telephone</source> <target state="translated">Telefoon</target> - <jms:reference-file line="307">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="308">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="129">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="537">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="223">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="19">web/admin/connected-users.html.twig</jms:reference-file> <jms:reference-file line="342">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="129">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="29d3952c833272679cb313988c698f11cb6bbb64" resname="admin::compte-utilisateur un email de confirmation vient de vous etre envoye. Veuillez suivre les instructions contenue pour continuer" approved="yes"> <source>admin::compte-utilisateur un email de confirmation vient de vous etre envoye. Veuillez suivre les instructions contenue pour continuer</source> <target state="translated">Een bevestigingsemail werd u gestuurd. Om verder te gaan gelieve de instructies van deze mail te volgen</target> - <jms:reference-file line="127">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="134">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="00a39eeb4e86af2189a6080e16418d249d98a12b" resname="admin::compte-utilisateur ville" approved="yes"> <source>admin::compte-utilisateur ville</source> <target state="translated">Star</target> + <jms:reference-file line="305">Controller/Admin/UserController.php</jms:reference-file> <jms:reference-file line="83">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> - <jms:reference-file line="304">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="101">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="503">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="377">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="101">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2f752312fcd370b6547b296ca173da51487a2c5d" resname="admin::compte-utilisateur: L'email a correctement ete mis a jour" approved="yes"> <source>admin::compte-utilisateur: L'email a correctement ete mis a jour</source> <target state="translated">Het email adres werd met succes up to date gezet</target> - <jms:reference-file line="151">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="158">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="65b62caf0d011a7a87ac02e39fcea79869f0d26a" resname="admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour changer mon adresse email ?" approved="yes"> <source>admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour changer mon adresse email ?</source> @@ -8613,7 +8682,7 @@ <trans-unit id="5bea2ac2d5d9b17df772d715e4a452316e6625f6" resname="admin::compte-utilisateur: erreur lors de la mise a jour" approved="yes"> <source>admin::compte-utilisateur: erreur lors de la mise a jour</source> <target state="translated">Fout tijdens de update</target> - <jms:reference-file line="142">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="149">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="56d75cba0bcd6dae815548d79af45f8a58c822cf" resname="admin::compte-utilisateur::securite caracteres majuscules" approved="yes"> <source>admin::compte-utilisateur::securite caracteres majuscules</source> @@ -8638,8 +8707,8 @@ <trans-unit id="6d985c39243c51b967903e290ce6c33583b17c8a" resname="admin::compte-utilisateur:ftp: repertoire de destination ftp" approved="yes"> <source>admin::compte-utilisateur:ftp: repertoire de destination ftp</source> <target state="translated">Bestemmings ftp-map</target> - <jms:reference-file line="43">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="202">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="43">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d6084018a101b645f6a3a136be17cb1b8c2a499c" resname="admin::compte-utilisateur:ftp: Activer le compte FTP" approved="yes"> <source>admin::compte-utilisateur:ftp: Activer le compte FTP</source> @@ -8649,19 +8718,19 @@ <trans-unit id="d7ef5ce109bd15843f144dc60ed2e594ddd04d41" resname="admin::compte-utilisateur:ftp: Le mot de passe est errone" approved="yes"> <source>admin::compte-utilisateur:ftp: Le mot de passe est errone</source> <target state="translated">Het paswoord is onjuist</target> - <jms:reference-file line="93">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="100">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="9bf7a0391d97674b47027a4021a3fa438db12b2d" resname="admin::compte-utilisateur:ftp: Nombre d'essais max" approved="yes"> <source>admin::compte-utilisateur:ftp: Nombre d'essais max</source> <target state="translated">Aantal max probeersels</target> - <jms:reference-file line="37">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="225">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="37">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7353ab4d025765f9e75cf84168059ea043b71166" resname="admin::compte-utilisateur:ftp: Utiliser le mode passif" approved="yes"> <source>admin::compte-utilisateur:ftp: Utiliser le mode passif</source> <target state="translated">Gebruik de passive mode</target> - <jms:reference-file line="31">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="218">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="31">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="58538c361989dbed251ba82a942de32f4a23b003" resname="admin::compte-utilisateur:ftp: creer un dossier" approved="yes"> <source>admin::compte-utilisateur:ftp: creer un dossier</source> @@ -8682,25 +8751,25 @@ <source>admin::compte-utilisateur:sexe: madame</source> <target state="translated">Mevrouw</target> <jms:reference-file line="50">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> + <jms:reference-file line="50">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="456">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="314">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="50">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7af00728508b30971b5cd3eb769433546ad9abfa" resname="admin::compte-utilisateur:sexe: mademoiselle" approved="yes"> <source>admin::compte-utilisateur:sexe: mademoiselle</source> <target state="translated">Jufrouw</target> <jms:reference-file line="49">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> + <jms:reference-file line="47">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="455">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="313">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="47">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="db663dadd7bd9b045a68cafcfe2ca4e0c832e50a" resname="admin::compte-utilisateur:sexe: monsieur" approved="yes"> <source>admin::compte-utilisateur:sexe: monsieur</source> <target state="translated">De heer</target> <jms:reference-file line="51">Core/Provider/RegistrationServiceProvider.php</jms:reference-file> + <jms:reference-file line="53">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="457">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="315">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="53">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cfc904c9a87afe2d3986041a6bdb542298607880" resname="admin::monitor: bases sur lesquelles l'utilisateur est connecte :" approved="yes"> <source>admin::monitor: bases sur lesquelles l'utilisateur est connecte :</source> @@ -8728,10 +8797,10 @@ <trans-unit id="9513f9700541e6a67371a6848330b051c8e9d3c2" resname="admin::monitor: module client" approved="yes"> <source>admin::monitor: module client</source> <target state="translated">Klant module</target> + <jms:reference-file line="80">lib/classes/phrasea.php</jms:reference-file> <jms:reference-file line="414">classes/record/preview.php</jms:reference-file> <jms:reference-file line="521">classes/record/preview.php</jms:reference-file> <jms:reference-file line="668">classes/record/preview.php</jms:reference-file> - <jms:reference-file line="80">lib/classes/phrasea.php</jms:reference-file> <jms:reference-file line="116">Controller/Admin/ConnectedUsersController.php</jms:reference-file> <jms:reference-file line="53">web/admin/connected-users.html.twig</jms:reference-file> </trans-unit> @@ -8750,10 +8819,10 @@ <trans-unit id="49d0391bab2fa680a4c2830fb4a225d48eefa425" resname="admin::monitor: module production" approved="yes"> <source>admin::monitor: module production</source> <target state="translated">Productie</target> + <jms:reference-file line="79">lib/classes/phrasea.php</jms:reference-file> <jms:reference-file line="410">classes/record/preview.php</jms:reference-file> <jms:reference-file line="518">classes/record/preview.php</jms:reference-file> <jms:reference-file line="666">classes/record/preview.php</jms:reference-file> - <jms:reference-file line="79">lib/classes/phrasea.php</jms:reference-file> <jms:reference-file line="115">Controller/Admin/ConnectedUsersController.php</jms:reference-file> <jms:reference-file line="49">web/admin/connected-users.html.twig</jms:reference-file> </trans-unit> @@ -8778,16 +8847,16 @@ <target state="translated">Upload</target> <jms:reference-file line="86">lib/classes/phrasea.php</jms:reference-file> <jms:reference-file line="122">Controller/Admin/ConnectedUsersController.php</jms:reference-file> - <jms:reference-file line="96">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="97">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="14e4b19f7496c10dbb05e61dee0c436c0792235f" resname="admin::monitor: module validation" approved="yes"> <source>admin::monitor: module validation</source> <target state="translated">Lightbox</target> <jms:reference-file line="85">lib/classes/phrasea.php</jms:reference-file> - <jms:reference-file line="121">Controller/Admin/ConnectedUsersController.php</jms:reference-file> <jms:reference-file line="205">Phrasea/Controller/LightboxController.php</jms:reference-file> <jms:reference-file line="236">Phrasea/Controller/LightboxController.php</jms:reference-file> <jms:reference-file line="313">Phrasea/Controller/LightboxController.php</jms:reference-file> + <jms:reference-file line="121">Controller/Admin/ConnectedUsersController.php</jms:reference-file> <jms:reference-file line="78">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d3110046b5f8b6bbf171a3b97c1d1c4d75ee3b38" resname="admin::monitor: modules" approved="yes"> @@ -8866,6 +8935,31 @@ <target state="new">admin::search-engine: general-aggregation</target> <jms:reference-file line="5">admin/search-engine/search-engine-settings.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="08772ff0da8ce970d5fac07a7afb6f855401d235" resname="admin::setup:personalisation_logo: download gabari"> + <source>admin::setup:personalisation_logo: download gabari</source> + <target state="new">admin::setup:personalisation_logo: download gabari</target> + <jms:reference-file line="18">web/admin/personalisation_logo.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="a051f8357ca68bd96210d071cdfacfe8a54de2af" resname="admin::setup:personalisation_logo: error text dimension"> + <source>admin::setup:personalisation_logo: error text dimension</source> + <target state="new">admin::setup:personalisation_logo: error text dimension</target> + <jms:reference-file line="44">web/admin/personalisation_logo.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="4499d392aa84b8bf806252937b820281034ffd0c" resname="admin::setup:personalisation_logo: error text file type"> + <source>admin::setup:personalisation_logo: error text file type</source> + <target state="new">admin::setup:personalisation_logo: error text file type</target> + <jms:reference-file line="45">web/admin/personalisation_logo.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="78a276b502761ddad6d621bf315ed17362b12748" resname="admin::setup:personalisation_logo: help text"> + <source>admin::setup:personalisation_logo: help text</source> + <target state="new">admin::setup:personalisation_logo: help text</target> + <jms:reference-file line="16">web/admin/personalisation_logo.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="1ae037eda66d81b87705cdbdc04e4d8c0a953755" resname="admin::setup:personalisation_logo: select file"> + <source>admin::setup:personalisation_logo: select file</source> + <target state="new">admin::setup:personalisation_logo: select file</target> + <jms:reference-file line="31">web/admin/personalisation_logo.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="8fb48b51ad1962dc1b6a3643964f38fc48853161" resname="admin::status: case A" approved="yes"> <source>admin::status: case A</source> <target state="translated">Case A</target> @@ -8979,8 +9073,8 @@ <trans-unit id="8f1dba76b561684930a25a984046b3b4149785ca" resname="alert"> <source>alert</source> <target>alert</target> + <jms:reference-file line="177">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="244">actions/Tools/index.html.twig</jms:reference-file> - <jms:reference-file line="164">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="edde11c24ed5e6df4e416143e77248e908567faa" resname="all caches services have been flushed" approved="yes"> <source>all caches services have been flushed</source> @@ -9005,7 +9099,7 @@ <trans-unit id="28a04a7076b48759b6dc6fc06df7676a69e415d0" resname="and %n% more peoples" approved="yes"> <source>and %n% more peoples</source> <target state="translated">en %n% meerdere personen</target> - <jms:reference-file line="125">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="132">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="aacef678d2c5455205b104be7f364575db5d5b95" resname="aout" approved="yes"> <source>aout</source> @@ -9020,9 +9114,9 @@ <trans-unit id="a06a492959ce12b3f0292406ec84177d07ae19b1" resname="audio" approved="yes"> <source>audio</source> <target state="translated">Audio</target> - <jms:reference-file line="278">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> - <jms:reference-file line="25">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="302">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> <jms:reference-file line="371">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="28">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a028c8828218375b107b7b7c48664ed31e10163b" resname="avril" approved="yes"> <source>avril</source> @@ -9064,18 +9158,18 @@ <trans-unit id="1d1dbbac03e2a5e30fe7e568ad75572e469a6301" resname="boutton:: selectionner aucune base" approved="yes"> <source>boutton:: selectionner aucune base</source> <target state="translated">Selecteer geen enkele database</target> - <jms:reference-file line="320">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="352">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2fb22ccabd1651b5307698b4029b6696042ca6e2" resname="boutton:: selectionner toutes les bases" approved="yes"> <source>boutton:: selectionner toutes les bases</source> <target state="translated">Selecteer alle databases</target> - <jms:reference-file line="317">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="349">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d59bc356bd632596c602560d44e1ed9cb7145699" resname="boutton::ajouter" approved="yes"> <source>boutton::ajouter</source> <target state="translated">Toevoegen</target> - <jms:reference-file line="244">prod/actions/edit_default.html.twig</jms:reference-file> - <jms:reference-file line="349">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="246">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="351">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="111">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8641f76c3f062372dc5509faad531672cf3558a5" resname="boutton::annuler" approved="yes"> @@ -9083,35 +9177,35 @@ <target state="translated">Annuleer</target> <jms:reference-file line="41">Controller/Prod/LanguageController.php</jms:reference-file> <jms:reference-file line="49">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="13">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> - <jms:reference-file line="40">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> - <jms:reference-file line="13">Bridge/Youtube/video_modify.html.twig</jms:reference-file> - <jms:reference-file line="71">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="13">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> <jms:reference-file line="71">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> - <jms:reference-file line="245">prod/actions/edit_default.html.twig</jms:reference-file> - <jms:reference-file line="364">prod/actions/edit_default.html.twig</jms:reference-file> - <jms:reference-file line="53">web/thesaurus/new-term.html.twig</jms:reference-file> - <jms:reference-file line="78">web/thesaurus/new-term.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="71">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="13">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> + <jms:reference-file line="40">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> + <jms:reference-file line="247">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="366">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="114">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> + <jms:reference-file line="590">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="989">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="1093">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="70">web/thesaurus/import-dialog.html.twig</jms:reference-file> + <jms:reference-file line="74">web/thesaurus/link-field-step2.html.twig</jms:reference-file> <jms:reference-file line="164">web/thesaurus/accept.html.twig</jms:reference-file> <jms:reference-file line="180">web/thesaurus/accept.html.twig</jms:reference-file> <jms:reference-file line="137">web/thesaurus/export-topics-dialog.html.twig</jms:reference-file> - <jms:reference-file line="74">web/thesaurus/link-field-step2.html.twig</jms:reference-file> - <jms:reference-file line="114">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> - <jms:reference-file line="582">web/thesaurus/thesaurus.html.twig</jms:reference-file> - <jms:reference-file line="981">web/thesaurus/thesaurus.html.twig</jms:reference-file> - <jms:reference-file line="1085">web/thesaurus/thesaurus.html.twig</jms:reference-file> - <jms:reference-file line="70">web/thesaurus/import-dialog.html.twig</jms:reference-file> + <jms:reference-file line="53">web/thesaurus/new-term.html.twig</jms:reference-file> + <jms:reference-file line="78">web/thesaurus/new-term.html.twig</jms:reference-file> <jms:reference-file line="61">web/thesaurus/link-field-step1.html.twig</jms:reference-file> - <jms:reference-file line="47">admin/collection/create.html.twig</jms:reference-file> + <jms:reference-file line="49">web/account/reset-email.html.twig</jms:reference-file> <jms:reference-file line="129">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="47">admin/collection/create.html.twig</jms:reference-file> <jms:reference-file line="47">web/admin/index.html.twig</jms:reference-file> <jms:reference-file line="168">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="250">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="404">web/common/dialog_export.html.twig</jms:reference-file> <jms:reference-file line="487">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="24">web/report/all_content.html.twig</jms:reference-file> - <jms:reference-file line="49">web/account/reset-email.html.twig</jms:reference-file> + <jms:reference-file line="23">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c6f716e883e5747e4bc8a8afc7a0ec1ccf44e0b5" resname="boutton::appliquer" approved="yes"> <source>boutton::appliquer</source> @@ -9122,8 +9216,8 @@ <source>boutton::chercher</source> <target state="translated">zoeken</target> <jms:reference-file line="121">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="588">web/thesaurus/thesaurus.html.twig</jms:reference-file> - <jms:reference-file line="1091">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="596">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="1099">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="58">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4a71090794c12d5b26f62d9f0c68c0d894f7e00e" resname="boutton::choisir" approved="yes"> @@ -9146,14 +9240,14 @@ <trans-unit id="32e5c3419a0a410255ee44e462fd7329f708873f" resname="boutton::demarrer" approved="yes"> <source>boutton::demarrer</source> <target state="translated">Starten</target> - <jms:reference-file line="9">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="9">web/lightbox/sc_options_box.html.twig</jms:reference-file> + <jms:reference-file line="9">web/lightbox/feed_options_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d49d2b52ce2f1912f7ada4a3f57ab39fd2e9904e" resname="boutton::editer" approved="yes"> <source>boutton::editer</source> <target state="translated">Bewerken</target> - <jms:reference-file line="27">prod/results/entry.html.twig</jms:reference-file> <jms:reference-file line="21">prod/results/feeds_entry.html.twig</jms:reference-file> + <jms:reference-file line="27">prod/results/entry.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6b126c214de4c40550d9dc32b02766809b1cac1a" resname="boutton::enregistrer" approved="yes"> <source>boutton::enregistrer</source> @@ -9180,17 +9274,17 @@ <source>boutton::fermer</source> <target state="translated">Sluiten</target> <jms:reference-file line="57">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="383">prod/actions/edit_default.html.twig</jms:reference-file> - <jms:reference-file line="388">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="11">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="385">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="390">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="118">web/thesaurus/properties.html.twig</jms:reference-file> <jms:reference-file line="116">web/thesaurus/accept.html.twig</jms:reference-file> <jms:reference-file line="132">web/thesaurus/accept.html.twig</jms:reference-file> - <jms:reference-file line="45">web/thesaurus/link-field-step3.html.twig</jms:reference-file> <jms:reference-file line="39">web/thesaurus/export-topics.html.twig</jms:reference-file> + <jms:reference-file line="45">web/thesaurus/link-field-step3.html.twig</jms:reference-file> <jms:reference-file line="23">web/lightbox/sc_note.html.twig</jms:reference-file> <jms:reference-file line="96">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="25">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="24">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ce91bb36902944da7788997865b8c482a59e80fe" resname="boutton::generer" approved="yes"> <source>boutton::generer</source> @@ -9205,9 +9299,9 @@ <trans-unit id="1e4c65d295605a0e884818b5c06d32a63fd692d5" resname="boutton::modifier" approved="yes"> <source>boutton::modifier</source> <target state="translated">bewerken</target> - <jms:reference-file line="1">Bridge/Flickr/actionelement.html.twig</jms:reference-file> - <jms:reference-file line="1">Bridge/Youtube/actionelement.html.twig</jms:reference-file> <jms:reference-file line="1">Bridge/Dailymotion/actionelement.html.twig</jms:reference-file> + <jms:reference-file line="1">Bridge/Youtube/actionelement.html.twig</jms:reference-file> + <jms:reference-file line="1">Bridge/Flickr/actionelement.html.twig</jms:reference-file> <jms:reference-file line="62">web/admin/users.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ef6ccc2669466ac98a3d580bd7bab8f33d0e4bcc" resname="boutton::monter" approved="yes"> @@ -9218,8 +9312,8 @@ <trans-unit id="a6083d9bc73ab5df12f4949b67577186f6e8c240" resname="boutton::pause" approved="yes"> <source>boutton::pause</source> <target state="translated">Pauze</target> - <jms:reference-file line="12">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="12">web/lightbox/sc_options_box.html.twig</jms:reference-file> + <jms:reference-file line="12">web/lightbox/feed_options_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="28bb622fa0fe835d89deb626494ce572cbd27072" resname="boutton::precedent" approved="yes"> <source>boutton::precedent</source> @@ -9230,16 +9324,16 @@ <jms:reference-file line="696">web/setup/step2.html.twig</jms:reference-file> <jms:reference-file line="754">web/setup/step2.html.twig</jms:reference-file> <jms:reference-file line="866">web/setup/step2.html.twig</jms:reference-file> - <jms:reference-file line="3">web/lightbox/feed_options_box.html.twig</jms:reference-file> - <jms:reference-file line="6">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="3">web/lightbox/sc_options_box.html.twig</jms:reference-file> <jms:reference-file line="6">web/lightbox/sc_options_box.html.twig</jms:reference-file> + <jms:reference-file line="3">web/lightbox/feed_options_box.html.twig</jms:reference-file> + <jms:reference-file line="6">web/lightbox/feed_options_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5ac4cff651bd34d7b0f295259a0c0907d6af5cd1" resname="boutton::rechercher" approved="yes"> <source>boutton::rechercher</source> <target state="translated">zoeken</target> <jms:reference-file line="51">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="277">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="299">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9d39f48fbb3a9887cf97368d39a1de32a71c3dee" resname="boutton::refresh" approved="yes"> <source>boutton::refresh</source> @@ -9254,7 +9348,7 @@ <trans-unit id="7c93f19dc5b7cef99db6fb84975ef795e3e87102" resname="boutton::remplacer" approved="yes"> <source>boutton::remplacer</source> <target state="translated">Vervangen</target> - <jms:reference-file line="243">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="245">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6b9c19dded5ae1d0dbe62a14e2754f2c8cf65302" resname="boutton::renouveller" approved="yes"> <source>boutton::renouveller</source> @@ -9264,26 +9358,26 @@ <trans-unit id="e0af1d0d7872c48928d4faef76c45567426e62f9" resname="boutton::retour" approved="yes"> <source>boutton::retour</source> <target state="translated">terug</target> - <jms:reference-file line="20">Bridge/Flickr/photoset_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="28">Bridge/Flickr/photo_moveinto_photoset.html.twig</jms:reference-file> - <jms:reference-file line="54">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="20">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="37">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="28">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> - <jms:reference-file line="20">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="20">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="20">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="25">Bridge/Dailymotion/playlist_createcontainer.html.twig</jms:reference-file> <jms:reference-file line="28">Bridge/Dailymotion/video_moveinto_playlist.html.twig</jms:reference-file> <jms:reference-file line="20">Bridge/Dailymotion/playlist_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="20">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="44">admin/collection/details.html.twig</jms:reference-file> + <jms:reference-file line="20">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="37">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="28">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="20">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="20">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="20">Bridge/Flickr/photoset_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="28">Bridge/Flickr/photo_moveinto_photoset.html.twig</jms:reference-file> + <jms:reference-file line="54">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> <jms:reference-file line="558">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="223">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="64">admin/databox/details.html.twig</jms:reference-file> + <jms:reference-file line="44">admin/collection/details.html.twig</jms:reference-file> <jms:reference-file line="50">user/import/file.html.twig</jms:reference-file> <jms:reference-file line="162">admin/statusbit/edit.html.twig</jms:reference-file> - <jms:reference-file line="64">admin/databox/details.html.twig</jms:reference-file> - <jms:reference-file line="154">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="119">web/developers/application_form.html.twig</jms:reference-file> + <jms:reference-file line="154">web/developers/application.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a7a9651d909792bcf98f2d1e96c43cb1d3a618e4" resname="boutton::retry" approved="yes"> <source>boutton::retry</source> @@ -9299,40 +9393,40 @@ <jms:reference-file line="632">web/setup/step2.html.twig</jms:reference-file> <jms:reference-file line="699">web/setup/step2.html.twig</jms:reference-file> <jms:reference-file line="757">web/setup/step2.html.twig</jms:reference-file> - <jms:reference-file line="15">web/lightbox/feed_options_box.html.twig</jms:reference-file> - <jms:reference-file line="18">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="15">web/lightbox/sc_options_box.html.twig</jms:reference-file> <jms:reference-file line="18">web/lightbox/sc_options_box.html.twig</jms:reference-file> + <jms:reference-file line="15">web/lightbox/feed_options_box.html.twig</jms:reference-file> + <jms:reference-file line="18">web/lightbox/feed_options_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a83f74309cdfc79345f54eb1f4e4e2747316f820" resname="boutton::supprimer" approved="yes"> <source>boutton::supprimer</source> <target state="translated">verwijderen</target> <jms:reference-file line="42">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="125">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="30">prod/results/entry.html.twig</jms:reference-file> - <jms:reference-file line="24">prod/results/feeds_entry.html.twig</jms:reference-file> - <jms:reference-file line="21">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="35">Bridge/Flickr/actionelements.html.twig</jms:reference-file> - <jms:reference-file line="21">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="35">Bridge/Youtube/actionelements.html.twig</jms:reference-file> - <jms:reference-file line="21">Bridge/Dailymotion/actioncontainers.html.twig</jms:reference-file> - <jms:reference-file line="35">Bridge/Dailymotion/actionelements.html.twig</jms:reference-file> <jms:reference-file line="26">actions/Bridge/disconnected.html.twig</jms:reference-file> + <jms:reference-file line="35">Bridge/Dailymotion/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="21">Bridge/Dailymotion/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="35">Bridge/Youtube/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="21">Bridge/Youtube/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="35">Bridge/Flickr/actionelements.html.twig</jms:reference-file> + <jms:reference-file line="21">Bridge/Flickr/actioncontainers.html.twig</jms:reference-file> + <jms:reference-file line="24">prod/results/feeds_entry.html.twig</jms:reference-file> + <jms:reference-file line="30">prod/results/entry.html.twig</jms:reference-file> + <jms:reference-file line="125">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="6">web/thesaurus/presets.html.twig</jms:reference-file> - <jms:reference-file line="93">admin/collection/suggested_value.html.twig</jms:reference-file> + <jms:reference-file line="162">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="95">admin/publications/list.html.twig</jms:reference-file> <jms:reference-file line="136">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="151">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="176">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="201">admin/collection/collection.html.twig</jms:reference-file> + <jms:reference-file line="93">admin/collection/suggested_value.html.twig</jms:reference-file> <jms:reference-file line="410">web/admin/subdefs.html.twig</jms:reference-file> - <jms:reference-file line="95">admin/publications/list.html.twig</jms:reference-file> - <jms:reference-file line="162">admin/publications/fiche.html.twig</jms:reference-file> </trans-unit> <trans-unit id="68b702f13ff62025c57948bf5c4a5b47af10dee9" resname="boutton::telecharger" approved="yes"> <source>boutton::telecharger</source> <target state="translated">Downloaden</target> - <jms:reference-file line="21">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="21">web/lightbox/sc_options_box.html.twig</jms:reference-file> + <jms:reference-file line="21">web/lightbox/feed_options_box.html.twig</jms:reference-file> <jms:reference-file line="167">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4288c5788ee74d7fa3f325987a8e752687b43023" resname="boutton::telecharger tous les documents" approved="yes"> @@ -9353,56 +9447,57 @@ <source>boutton::valider</source> <target state="translated">bevestigen</target> <jms:reference-file line="48">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="20">prod/Baskets/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="34">mobile/lightbox/note_form.html.twig</jms:reference-file> <jms:reference-file line="7">prod/Baskets/Update.html.twig</jms:reference-file> - <jms:reference-file line="701">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="20">prod/Baskets/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="19">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="24">Bridge/Dailymotion/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="27">Bridge/Dailymotion/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="70">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="19">Bridge/Dailymotion/playlist_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="19">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="36">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> + <jms:reference-file line="27">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> + <jms:reference-file line="70">Bridge/Youtube/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="19">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> + <jms:reference-file line="19">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="19">Bridge/Flickr/photoset_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="27">Bridge/Flickr/photo_moveinto_photoset.html.twig</jms:reference-file> - <jms:reference-file line="39">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> <jms:reference-file line="53">Bridge/Flickr/photoset_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="19">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="36">Bridge/Youtube/playlist_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="70">Bridge/Youtube/video_modify.html.twig</jms:reference-file> - <jms:reference-file line="27">Bridge/Youtube/video_moveinto_playlist.html.twig</jms:reference-file> - <jms:reference-file line="19">Bridge/Youtube/playlist_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="19">Bridge/Youtube/video_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="24">Bridge/Dailymotion/playlist_createcontainer.html.twig</jms:reference-file> - <jms:reference-file line="70">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> - <jms:reference-file line="27">Bridge/Dailymotion/video_moveinto_playlist.html.twig</jms:reference-file> - <jms:reference-file line="19">Bridge/Dailymotion/playlist_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="19">Bridge/Dailymotion/video_deleteelement.html.twig</jms:reference-file> - <jms:reference-file line="341">prod/actions/edit_default.html.twig</jms:reference-file> - <jms:reference-file line="363">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="39">Bridge/Flickr/photo_modify.html.twig</jms:reference-file> + <jms:reference-file line="343">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="365">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="20">prod/Story/Reorder.html.twig</jms:reference-file> + <jms:reference-file line="792">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="116">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> + <jms:reference-file line="995">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="72">web/thesaurus/import-dialog.html.twig</jms:reference-file> + <jms:reference-file line="72">web/thesaurus/link-field-step2.html.twig</jms:reference-file> + <jms:reference-file line="162">web/thesaurus/accept.html.twig</jms:reference-file> + <jms:reference-file line="139">web/thesaurus/export-topics-dialog.html.twig</jms:reference-file> + <jms:reference-file line="51">web/thesaurus/index.html.twig</jms:reference-file> <jms:reference-file line="55">web/thesaurus/new-term.html.twig</jms:reference-file> <jms:reference-file line="80">web/thesaurus/new-term.html.twig</jms:reference-file> - <jms:reference-file line="162">web/thesaurus/accept.html.twig</jms:reference-file> - <jms:reference-file line="51">web/thesaurus/index.html.twig</jms:reference-file> - <jms:reference-file line="139">web/thesaurus/export-topics-dialog.html.twig</jms:reference-file> - <jms:reference-file line="72">web/thesaurus/link-field-step2.html.twig</jms:reference-file> - <jms:reference-file line="116">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> - <jms:reference-file line="987">web/thesaurus/thesaurus.html.twig</jms:reference-file> - <jms:reference-file line="72">web/thesaurus/import-dialog.html.twig</jms:reference-file> <jms:reference-file line="59">web/thesaurus/link-field-step1.html.twig</jms:reference-file> - <jms:reference-file line="130">admin/collection/suggested_value.html.twig</jms:reference-file> - <jms:reference-file line="39">admin/collection/reorder.html.twig</jms:reference-file> - <jms:reference-file line="58">admin/collection/collection.html.twig</jms:reference-file> - <jms:reference-file line="46">admin/collection/create.html.twig</jms:reference-file> - <jms:reference-file line="557">web/admin/editusers.html.twig</jms:reference-file> - <jms:reference-file line="403">web/admin/subdefs.html.twig</jms:reference-file> - <jms:reference-file line="45">admin/publications/list.html.twig</jms:reference-file> - <jms:reference-file line="128">admin/publications/fiche.html.twig</jms:reference-file> - <jms:reference-file line="34">web/admin/structure.html.twig</jms:reference-file> - <jms:reference-file line="274">admin/user/registrations.html.twig</jms:reference-file> - <jms:reference-file line="41">user/import/view.html.twig</jms:reference-file> - <jms:reference-file line="159">admin/statusbit/edit.html.twig</jms:reference-file> - <jms:reference-file line="111">web/admin/dashboard.html.twig</jms:reference-file> - <jms:reference-file line="83">web/admin/setup.html.twig</jms:reference-file> - <jms:reference-file line="22">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="75">web/account/access.html.twig</jms:reference-file> <jms:reference-file line="48">web/account/reset-email.html.twig</jms:reference-file> <jms:reference-file line="236">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="111">web/admin/dashboard.html.twig</jms:reference-file> + <jms:reference-file line="557">web/admin/editusers.html.twig</jms:reference-file> + <jms:reference-file line="128">admin/publications/fiche.html.twig</jms:reference-file> + <jms:reference-file line="45">admin/publications/list.html.twig</jms:reference-file> + <jms:reference-file line="83">web/admin/setup.html.twig</jms:reference-file> + <jms:reference-file line="46">admin/collection/create.html.twig</jms:reference-file> + <jms:reference-file line="39">admin/collection/reorder.html.twig</jms:reference-file> + <jms:reference-file line="58">admin/collection/collection.html.twig</jms:reference-file> + <jms:reference-file line="130">admin/collection/suggested_value.html.twig</jms:reference-file> + <jms:reference-file line="403">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="34">web/admin/structure.html.twig</jms:reference-file> + <jms:reference-file line="41">user/import/view.html.twig</jms:reference-file> + <jms:reference-file line="274">admin/user/registrations.html.twig</jms:reference-file> + <jms:reference-file line="159">admin/statusbit/edit.html.twig</jms:reference-file> <jms:reference-file line="115">web/developers/application_form.html.twig</jms:reference-file> - <jms:reference-file line="34">mobile/lightbox/note_form.html.twig</jms:reference-file> + <jms:reference-file line="21">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b27b98c3e0119082312d402ca0b89dd39f00f5c8" resname="boutton::vue graphique" approved="yes"> <source>boutton::vue graphique</source> @@ -9499,9 +9594,9 @@ <trans-unit id="aa593702faaee1da7f577eb3fbd5964703051696" resname="choisir" approved="yes"> <source>choisir</source> <target state="translated">kiezen</target> - <jms:reference-file line="676">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="37">admin/collection/create.html.twig</jms:reference-file> + <jms:reference-file line="767">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="161">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="37">admin/collection/create.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7e7b33d679caaf09ae03ab03c7144e908cbbcc27" resname="classe" approved="yes"> <source>classe</source> @@ -9509,11 +9604,6 @@ <jms:reference-file line="433">web/admin/subdefs.html.twig</jms:reference-file> <jms:reference-file line="437">web/admin/subdefs.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="efa8808d6f8c8597743781236bd79cbe60350bfc" resname="cocher tout" approved="yes"> - <source>cocher tout</source> - <target state="translated">alles uitschakelen</target> - <jms:reference-file line="7">web/report/listColumn.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="6bca60e4b2d44b5623e626f9ff951ba6605e975f" resname="collection.label.unknown"> <source>collection.label.unknown</source> <target state="new">collection.label.unknown</target> @@ -9530,19 +9620,13 @@ <jms:reference-file line="101">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="296">web/common/dialog_export.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="0652e436f42d75f5672a8bd9ae2f398a55115d51" resname="configuration" approved="yes"> - <source>configuration</source> - <target state="translated">Configuratie</target> - <jms:reference-file line="534">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="682">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> <trans-unit id="a70a59b9120185471e5b45630f8ba24d5516f590" resname="copyClipboardLabel"> <source>copyClipboardLabel</source> <target state="new">copyClipboardLabel</target> - <jms:reference-file line="16">prod/results/infos.html.twig</jms:reference-file> - <jms:reference-file line="46">prod/Share/record.html.twig</jms:reference-file> - <jms:reference-file line="56">prod/Share/record.html.twig</jms:reference-file> - <jms:reference-file line="72">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="18">prod/results/infos.html.twig</jms:reference-file> + <jms:reference-file line="52">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="62">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="78">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="751a7df4249ede5126600fd5e11560b3300c8dd5" resname="create_subdef_button_label"> <source>create_subdef_button_label</source> @@ -9589,6 +9673,11 @@ <target state="new">create_subdef_modal_subdefinition_name</target> <jms:reference-file line="354">web/admin/subdefs.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="670f6628c7b72287a36ecd01262005e81428451c" resname="created_on"> + <source>created_on</source> + <target state="new">created_on</target> + <jms:reference-file line="476">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="fc97186645dc71dae8e3221c8ce53c56e6d611bf" resname="dans %category%" approved="yes"> <source>dans %category%</source> <target state="translated">in %category%</target> @@ -9597,8 +9686,8 @@ <trans-unit id="dbfe8cf37a8d7b4941dd9f89e79302038b2bedef" resname="dans %feed_name%" approved="yes"> <source>dans %feed_name%</source> <target state="translated">in %feed_name%</target> - <jms:reference-file line="52">prod/results/entry.html.twig</jms:reference-file> <jms:reference-file line="46">prod/results/feeds_entry.html.twig</jms:reference-file> + <jms:reference-file line="52">prod/results/entry.html.twig</jms:reference-file> </trans-unit> <trans-unit id="aab7fdd9c18941cbc8d78fa0c690361ffd8c50bf" resname="date dajout" approved="yes"> <source>date dajout</source> @@ -9618,7 +9707,7 @@ <trans-unit id="9485989ff514b5106b7738850fd73c23e8c1e3f7" resname="delete" approved="yes"> <source>delete</source> <target state="translated">Verwijderen</target> - <jms:reference-file line="316">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="343">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1051f820052d19c0fff9afec561c3d02607fc90d" resname="descendant" approved="yes"> <source>descendant</source> @@ -9633,10 +9722,10 @@ <trans-unit id="4f8278c89ad16da05fec4fdfc61fe44798b92720" resname="document"> <source>document</source> <target>document</target> - <jms:reference-file line="270">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> - <jms:reference-file line="28">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="294">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> <jms:reference-file line="372">web/admin/subdefs.html.twig</jms:reference-file> <jms:reference-file line="439">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="31">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="956c99f946a95f60d02e45468e0ed1f6fdf7fc08" resname="document original" approved="yes"> <source>document original</source> @@ -9690,7 +9779,7 @@ <trans-unit id="8abba1c9ff44c3fcc4d30726337bc02847d67235" resname="edit::preset:: titre" approved="yes"> <source>edit::preset:: titre</source> <target state="translated">Titel</target> - <jms:reference-file line="394">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="396">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="869b2f5267c5abc112d0f6281b4201a228054f92" resname="effacer (OK) ou quitter (Annuler) ?"> <source>effacer (OK) ou quitter (Annuler) ?</source> @@ -9700,7 +9789,7 @@ <trans-unit id="0536206a542dfc2d630996e79398079eb6976247" resname="element(s)" approved="yes"> <source>element(s)</source> <target state="translated">element(en)</target> - <jms:reference-file line="54">prod/templates/push.html.twig</jms:reference-file> + <jms:reference-file line="55">prod/templates/push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a04a3246075e5b6ac9d63ad46d807a1221e71321" resname="email is not valid" approved="yes"> <source>email is not valid</source> @@ -9743,7 +9832,7 @@ <trans-unit id="40a92233bac9303de825031d1954e6b109088b38" resname="export::ftp: reglages manuels" approved="yes"> <source>export::ftp: reglages manuels</source> <target state="translated">Manuele instellingen</target> - <jms:reference-file line="274">classes/set/export.php</jms:reference-file> + <jms:reference-file line="279">classes/set/export.php</jms:reference-file> </trans-unit> <trans-unit id="076c427ffe1fe647c7c158681b1bbd17cb5e2ad3" resname="export::mail: contenu du mail" approved="yes"> <source>export::mail: contenu du mail</source> @@ -9789,20 +9878,12 @@ <jms:reference-file line="236">Controller/Prod/ToolsController.php</jms:reference-file> <jms:reference-file line="265">Controller/Prod/ToolsController.php</jms:reference-file> </trans-unit> - <trans-unit id="f8969980f2b8fd935f45cdd92a39dca6a4010d04" resname="filtrer les resultats sur la colonne %colonne%"> - <source>filtrer les resultats sur la colonne %colonne%</source> - <target state="new">filtrer les resultats sur la colonne %colonne%</target> - <jms:reference-file line="561">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="132">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="385">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="709">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> <trans-unit id="6117e45ab57f8660d866a21ca5e9d2c31dbc1945" resname="flash"> <source>flash</source> <target state="new">flash</target> - <jms:reference-file line="282">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> - <jms:reference-file line="31">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="306">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> <jms:reference-file line="373">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="34">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="530e5ec7cd0bf5af44dc8c30cf7b7a86d3c454c6" resname="for the following reasons : %reasons%"> <source>for the following reasons : %reasons%</source> @@ -9818,7 +9899,7 @@ <trans-unit id="e6ae91533b29ee255483b85273eaeb74f9c1ac60" resname="forms::l'email semble invalide" approved="yes"> <source>forms::l'email semble invalide</source> <target state="translated">Het email adres blijkt niet geldig te zijn</target> - <jms:reference-file line="99">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="106">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="3edc07eb02649e91baa490fbf402ebbedb10d2cf" resname="forms::la valeur donnee est trop courte" approved="yes"> <source>forms::la valeur donnee est trop courte</source> @@ -9849,7 +9930,7 @@ <trans-unit id="61cc4acf7d6a30e2177360defda8d8b94eb01d53" resname="forms::les emails ne correspondent pas" approved="yes"> <source>forms::les emails ne correspondent pas</source> <target state="translated">Ee email adressen zijn niet gelijk</target> - <jms:reference-file line="105">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="112">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="39adae60eaec2c7664f31f59c482634f90eea3c1" resname="forms::les mots de passe ne correspondent pas" approved="yes"> <source>forms::les mots de passe ne correspondent pas</source> @@ -9866,12 +9947,6 @@ <target state="translated">Bewerking correct uitgevoerd</target> <jms:reference-file line="14">admin/databox/databox.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="0b1e95cfd9775191a7224d0a218ae79187e80c1d" resname="from"> - <source>from</source> - <target state="new">from</target> - <jms:reference-file line="10">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="13">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="45b162f3c09db4eb9ecea5e048393a7ccaab4f7d" resname="help::help-section-bullet: check-spelling"> <source>help::help-section-bullet: check-spelling</source> <target state="new">help::help-section-bullet: check-spelling</target> @@ -9930,9 +10005,9 @@ <trans-unit id="0e76292794888d4f1fa75fb3aff4ca27c58f56a6" resname="image" approved="yes"> <source>image</source> <target state="translated">Beeld</target> - <jms:reference-file line="266">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> - <jms:reference-file line="19">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="290">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> <jms:reference-file line="369">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="22">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="994bebec7c4690d1953f5e2b8832a853238efd5e" resname="image rotation" approved="yes"> <source>image rotation</source> @@ -9947,42 +10022,42 @@ <trans-unit id="0d25ab4ea387d19f49a120acb928c7f9500b0cf3" resname="index::advance_search: disable-facet"> <source>index::advance_search: disable-facet</source> <target state="new">index::advance_search: disable-facet</target> - <jms:reference-file line="750">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="841">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="16b1c68bd21754876991dfc8df38b024383fbca4" resname="index::advance_search: facet"> <source>index::advance_search: facet</source> <target state="new">index::advance_search: facet</target> - <jms:reference-file line="722">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="813">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2f830d57f4cedb2a49c7b109f9b91b0f8ba83e8b" resname="index::advance_search: facet-order"> <source>index::advance_search: facet-order</source> <target state="new">index::advance_search: facet-order</target> - <jms:reference-file line="723">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="814">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5a25478cdd7fe21258071c4f3a5d9920225f9356" resname="index::advance_search: facet-tech-order"> <source>index::advance_search: facet-tech-order</source> <target state="new">index::advance_search: facet-tech-order</target> - <jms:reference-file line="729">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="820">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6b9516a3c46d7ad246a9fbb3df693ba6c783c986" resname="index::advance_search: facet-values-order"> <source>index::advance_search: facet-values-order</source> <target state="new">index::advance_search: facet-values-order</target> - <jms:reference-file line="735">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="826">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dfb02fcdeb804315cd6ad8388efcfb4ccc4abf38" resname="index::advance_search: hidden-facet-values-order"> <source>index::advance_search: hidden-facet-values-order</source> <target state="new">index::advance_search: hidden-facet-values-order</target> - <jms:reference-file line="752">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="843">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4a35cc75d1072f7dad99c8e91596298f55f20a54" resname="index::advance_search: order-by-hits"> <source>index::advance_search: order-by-hits</source> <target state="new">index::advance_search: order-by-hits</target> - <jms:reference-file line="741">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="832">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1039a002699408da4c4fe74638a6b44f60499069" resname="index:advanced-preferences:: use truncation"> <source>index:advanced-preferences:: use truncation</source> <target state="new">index:advanced-preferences:: use truncation</target> - <jms:reference-file line="312">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="341">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="830af6e37576114c7943a0e190f35ad2f0302b4d" resname="invite:: Redirection vers la zone d'authentification, cliquez sur OK pour continuer ou annulez" approved="yes"> <source>invite:: Redirection vers la zone d'authentification, cliquez sur OK pour continuer ou annulez</source> @@ -10038,9 +10113,9 @@ <trans-unit id="c372f7e2737372f0ec380396e5755850485ee3e9" resname="login:: Mon compte" approved="yes"> <source>login:: Mon compte</source> <target state="translated">Mijn account</target> - <jms:reference-file line="168">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="249">web/common/menubar.html.twig</jms:reference-file> <jms:reference-file line="22">web/account/account.html.twig</jms:reference-file> + <jms:reference-file line="152">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="226">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="51813acc1a667a12d4be8e86f3f2300e369a68cf" resname="login:: Visitez le lien suivant et suivez les instructions pour continuer, sinon ignorez cet email et il ne se passera rien" approved="yes"> <source>login:: Visitez le lien suivant et suivez les instructions pour continuer, sinon ignorez cet email et il ne se passera rien</source> @@ -10071,13 +10146,13 @@ <trans-unit id="5cdbff50d2a3ae92720c5af32d4cd560d1351a91" resname="login::notification: Changements enregistres" approved="yes"> <source>login::notification: Changements enregistres</source> <target state="translated">Veranderingen zijn bewaard</target> - <jms:reference-file line="393">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="490">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="46f7a3bb71222626147c7e64c6a59a3f4c3d8e42" resname="login::notification: Mise a jour du mot de passe avec succes" approved="yes"> <source>login::notification: Mise a jour du mot de passe avec succes</source> <target state="translated">Update van het paswoord met succes uitgevoerd</target> <jms:reference-file line="396">Controller/Root/LoginController.php</jms:reference-file> - <jms:reference-file line="60">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="67">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="28dd2416483329c548279196d0c60f722578632f" resname="login::notification: demande de confirmation par mail envoyee" approved="yes"> <source>login::notification: demande de confirmation par mail envoyee</source> @@ -10085,16 +10160,6 @@ <jms:reference-file line="240">Controller/Root/LoginController.php</jms:reference-file> <jms:reference-file line="310">Controller/Root/LoginController.php</jms:reference-file> </trans-unit> - <trans-unit id="71604a1b149b2101d8500cdd929c4d4689961cf1" resname="login::register: Faire une demande d'acces" approved="yes"> - <source>login::register: Faire une demande d'acces</source> - <target state="translated">Doe een aanvraag voor toegang</target> - <jms:reference-file line="206">web/account/access.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="26697ed6ba3b6aa626a51d008244c09f734c5a3f" resname="login::register: L'acces aux bases ci-dessous implique l'acceptation des Conditions Generales d'Utilisation (CGU) suivantes" approved="yes"> - <source>login::register: L'acces aux bases ci-dessous implique l'acceptation des Conditions Generales d'Utilisation (CGU) suivantes</source> - <target state="translated">De toegang voor de onderstaande databases houdt in dat u volgende Algemene voorwaarden voor gebruik (CGU) toestaat</target> - <jms:reference-file line="195">web/account/access.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="fd24fc482ff7c390471bcff193f8ed218a520ccc" resname="login::register: email confirmation email Pour valider votre inscription a la base de donnees, merci de confirmer votre e-mail en suivant le lien ci-dessous." approved="yes"> <source>login::register: email confirmation email Pour valider votre inscription a la base de donnees, merci de confirmer votre e-mail en suivant le lien ci-dessous.</source> <target state="translated">Om uw inschrijving op de databases te bevestigen , gelieve te bevestigen met onderstaande link.</target> @@ -10103,24 +10168,14 @@ <trans-unit id="e0521fa8816ba827070adffaa4656fe554eec05d" resname="login::register: merci d'avoir confirme votre adresse email" approved="yes"> <source>login::register: merci d'avoir confirme votre adresse email</source> <target state="translated">Bedankt om uw email adres te vallideren</target> - <jms:reference-file line="29">Notification/Mail/MailSuccessEmailConfirmationUnregistered.php</jms:reference-file> <jms:reference-file line="29">Notification/Mail/MailSuccessEmailConfirmationRegistered.php</jms:reference-file> + <jms:reference-file line="29">Notification/Mail/MailSuccessEmailConfirmationUnregistered.php</jms:reference-file> </trans-unit> <trans-unit id="2c92f505fbd419ecba46a9c61daf8e304fc0cd61" resname="login::register: sujet email : confirmation de votre adresse email" approved="yes"> <source>login::register: sujet email : confirmation de votre adresse email</source> <target state="translated">Onderwerp email: bevestiging van uw email adres</target> - <jms:reference-file line="21">Notification/Mail/MailRequestEmailConfirmation.php</jms:reference-file> <jms:reference-file line="21">Notification/Mail/MailRequestEmailUpdate.php</jms:reference-file> - </trans-unit> - <trans-unit id="90c4688a719d4a3f762b4d9ec0e17e5389fdf515" resname="login::register::CGU: lire les CGU" approved="yes"> - <source>login::register::CGU: lire les CGU</source> - <target state="translated">de CGU lezen</target> - <jms:reference-file line="40">web/account/access.html.twig</jms:reference-file> - <jms:reference-file line="66">web/account/access.html.twig</jms:reference-file> - <jms:reference-file line="92">web/account/access.html.twig</jms:reference-file> - <jms:reference-file line="117">web/account/access.html.twig</jms:reference-file> - <jms:reference-file line="142">web/account/access.html.twig</jms:reference-file> - <jms:reference-file line="167">web/account/access.html.twig</jms:reference-file> + <jms:reference-file line="21">Notification/Mail/MailRequestEmailConfirmation.php</jms:reference-file> </trans-unit> <trans-unit id="ef4716e235916afcf4b9458248245b4c43f42636" resname="login::register:email: Voici un compte rendu du traitement de vos demandes d'acces :" approved="yes"> <source>login::register:email: Voici un compte rendu du traitement de vos demandes d'acces :</source> @@ -10135,12 +10190,12 @@ <trans-unit id="ace8a8481cf18b9b69c30aa34a65135ed2d75277" resname="login::register:email: Vous avez ete accepte sur les collections suivantes : "> <source>login::register:email: Vous avez ete accepte sur les collections suivantes : </source> <target state="new">login::register:email: Vous avez ete accepte sur les collections suivantes : </target> - <jms:reference-file line="524">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="525">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="20fc11d974588d0abed50d717ed3174eff70ac83" resname="login::register:email: Vous avez ete refuse sur les collections suivantes : "> <source>login::register:email: Vous avez ete refuse sur les collections suivantes : </source> <target state="new">login::register:email: Vous avez ete refuse sur les collections suivantes : </target> - <jms:reference-file line="527">Controller/Admin/UserController.php</jms:reference-file> + <jms:reference-file line="528">Controller/Admin/UserController.php</jms:reference-file> </trans-unit> <trans-unit id="ea4440bd94714e4e85334618405679ae2e36f4f1" resname="mai" approved="yes"> <source>mai</source> @@ -10155,8 +10210,8 @@ <trans-unit id="520593b5cc1a6e328e74717650c586fb1dbfa265" resname="maximum : %maxFileSizeReadable%"> <source>maximum : %maxFileSizeReadable%</source> <target>maximum : %maxFileSizeReadable%</target> + <jms:reference-file line="39">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="33">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="36">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="024b6bde2b38cc102db445880d243021b5ed8509" resname="mediatype"> <source>mediatype</source> @@ -10186,16 +10241,16 @@ <trans-unit id="fd1286353570c5703799ba76999323b7c7447b06" resname="no" approved="yes"> <source>no</source> <target state="translated">Nee</target> + <jms:reference-file line="75">web/account/sessions.html.twig</jms:reference-file> <jms:reference-file line="582">web/admin/subdefs.html.twig</jms:reference-file> <jms:reference-file line="14">user/import/view.html.twig</jms:reference-file> <jms:reference-file line="91">web/common/technical_datas.html.twig</jms:reference-file> - <jms:reference-file line="75">web/account/sessions.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6c632badea2664bc707979fac5e58072b6a2feba" resname="no image selected" approved="yes"> <source>no image selected</source> <target state="translated">geen beeld geselecteerd</target> + <jms:reference-file line="178">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="245">actions/Tools/index.html.twig</jms:reference-file> - <jms:reference-file line="165">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="37031f99ac78580c9f82e04fa237d295ea10ca41" resname="non" approved="yes"> <source>non</source> @@ -10512,17 +10567,17 @@ <trans-unit id="b634852764694ba6d2738c84f6696db177426f69" resname="panier:: ordre Validation ascendante" approved="yes"> <source>panier:: ordre Validation ascendante</source> <target state="translated">Oplopende validatie volgorde</target> - <jms:reference-file line="339">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="366">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dfd32efef3d8fa4ede00019a8337b38819a0d4de" resname="panier:: ordre Validation descendante" approved="yes"> <source>panier:: ordre Validation descendante</source> <target state="translated">Aflopende validatie volgorde</target> - <jms:reference-file line="340">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="367">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ab89cfcdd590c720551475cb654efb414b3f3850" resname="panier:: ordre du panier" approved="yes"> <source>panier:: ordre du panier</source> <target state="translated">Volgordre van het mandje</target> - <jms:reference-file line="338">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="365">prod/WorkZone/Macros.html.twig</jms:reference-file> </trans-unit> <trans-unit id="255b0c1fa53afa654ef27c6cfed00c535b904679" resname="panier:: renommer le panier" approved="yes"> <source>panier:: renommer le panier</source> @@ -10605,6 +10660,11 @@ <target state="translated">Toon een database die van een verschillende server komt dan die van de programma box</target> <jms:reference-file line="103">web/admin/databases.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="6cb5c0796bbc3bf1d892ba5be804a7e53595ea1d" resname="phraseanet:: Preferences"> + <source>phraseanet:: Preferences</source> + <target state="new">phraseanet:: Preferences</target> + <jms:reference-file line="255">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="2751058550fb9a63ba3ffa07152ec68f594dec2a" resname="phraseanet:: Un email vient de vous etre envoye" approved="yes"> <source>phraseanet:: Un email vient de vous etre envoye</source> <target state="translated">Een email werd u toegestuurd</target> @@ -10613,23 +10673,28 @@ <trans-unit id="eb699a47b1a213ea730879af2fd492110b3c1f4e" resname="phraseanet:: a propos" approved="yes"> <source>phraseanet:: a propos</source> <target state="translated">Over</target> - <jms:reference-file line="198">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="293">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="190">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="255">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8039b17c124d6907eb83dc8b705888769f45d82d" resname="phraseanet:: adresse" approved="yes"> <source>phraseanet:: adresse</source> <target state="translated">Adres</target> <jms:reference-file line="554">web/setup/step2.html.twig</jms:reference-file> + <jms:reference-file line="181">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="31">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="89">web/admin/connected-users.html.twig</jms:reference-file> <jms:reference-file line="7">web/common/dialog_export.html.twig</jms:reference-file> - <jms:reference-file line="181">web/account/account.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a934108e5aa19f91fafd6eb9ee20b00bc248bab9" resname="phraseanet:: aide" approved="yes"> <source>phraseanet:: aide</source> <target state="translated">Help</target> - <jms:reference-file line="179">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="273">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="170">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="237">web/common/menubar.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="20f45a77e291b513c2fb6c389574ccca61cfb141" resname="phraseanet:: baskets"> + <source>phraseanet:: baskets</source> + <target state="new">phraseanet:: baskets</target> + <jms:reference-file line="21">web/prod/tab_headers.html.twig</jms:reference-file> </trans-unit> <trans-unit id="82f1c4ecdd310877886e675b4a6ccf848f77e34d" resname="phraseanet:: choisir" approved="yes"> <source>phraseanet:: choisir</source> @@ -10651,14 +10716,14 @@ <source>phraseanet:: deconnection</source> <target state="translated">Afmelden</target> <jms:reference-file line="31">actions/Bridge/wrapper.html.twig</jms:reference-file> - <jms:reference-file line="210">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="264">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="162">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="267">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6a27e232d8975a8ea80916b303f6d1f873186429" resname="phraseanet:: details" approved="yes"> <source>phraseanet:: details</source> <target state="translated">Details</target> - <jms:reference-file line="35">admin/collection/collection.html.twig</jms:reference-file> <jms:reference-file line="50">admin/databox/databox.html.twig</jms:reference-file> + <jms:reference-file line="35">admin/collection/collection.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8e0c935881fe96023527a3196737821738f5fb44" resname="phraseanet:: hostname" approved="yes"> <source>phraseanet:: hostname</source> @@ -10680,7 +10745,7 @@ <trans-unit id="300f5de4c2878a60aa1332e6a00574106d2bb022" resname="phraseanet:: plugin.workzone"> <source>phraseanet:: plugin.workzone</source> <target state="new">phraseanet:: plugin.workzone</target> - <jms:reference-file line="27">web/prod/tab_headers.html.twig</jms:reference-file> + <jms:reference-file line="28">web/prod/tab_headers.html.twig</jms:reference-file> </trans-unit> <trans-unit id="96eedbcdec855436500199e6bb6fe9ab40858b4c" resname="phraseanet:: port" approved="yes"> <source>phraseanet:: port</source> @@ -10697,13 +10762,13 @@ <trans-unit id="02e53272b6740f58947e81b6fd23e62e2ca5c301" resname="phraseanet:: presse-papier" approved="yes"> <source>phraseanet:: presse-papier</source> <target state="translated">Klembord</target> - <jms:reference-file line="260">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="262">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="da1f4cb9f98aef274dbb8f5992dedaf20e91ea71" resname="phraseanet:: preview" approved="yes"> <source>phraseanet:: preview</source> <target state="translated">Voorvertoning</target> + <jms:reference-file line="259">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="7">prod/actions/printer_default.html.twig</jms:reference-file> - <jms:reference-file line="257">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2baca947f8536e2ff6bab1c45c1876c04706a6a0" resname="phraseanet:: propositions" approved="yes"> <source>phraseanet:: propositions</source> @@ -10714,26 +10779,25 @@ <trans-unit id="51d3e2ae2daff6825c733d3d8e2cc572fca0e0ec" resname="phraseanet:: raccourcis clavier" approved="yes"> <source>phraseanet:: raccourcis clavier</source> <target state="translated">Sneltoetsen</target> - <jms:reference-file line="192">web/common/menubar.html.twig</jms:reference-file> - <jms:reference-file line="284">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="181">web/common/menubar.html.twig</jms:reference-file> + <jms:reference-file line="249">web/common/menubar.html.twig</jms:reference-file> </trans-unit> <trans-unit id="99a70ecaddc20d59056e5d479c6fa9d0bc113a0e" resname="phraseanet:: sous definition" approved="yes"> <source>phraseanet:: sous definition</source> <target state="translated">Per definitie</target> - <jms:reference-file line="93">module/report/filter.php</jms:reference-file> <jms:reference-file line="685">classes/module/report.php</jms:reference-file> - <jms:reference-file line="352">Controller/Report/RootController.php</jms:reference-file> + <jms:reference-file line="93">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="c33ce7e20779d5b34c1c812406e2f22b779a45d0" resname="phraseanet:: thesaurus" approved="yes"> <source>phraseanet:: thesaurus</source> <target state="translated">Thesaurus</target> - <jms:reference-file line="255">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="257">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="15">web/prod/tab_headers.html.twig</jms:reference-file> - <jms:reference-file line="5">web/thesaurus/index.html.twig</jms:reference-file> <jms:reference-file line="5">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="216">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="11">web/thesaurus/load-thesaurus.html.twig</jms:reference-file> <jms:reference-file line="12">web/thesaurus/load-thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="5">web/thesaurus/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b6022bf4291f5e9d7d7051fe6c3d6a6abbd92c1a" resname="phraseanet:: tri" approved="yes"> <source>phraseanet:: tri</source> @@ -10743,17 +10807,17 @@ <trans-unit id="771634fc3ec89c0a08c7666e776fc5db3072f318" resname="phraseanet:: tri par date" approved="yes"> <source>phraseanet:: tri par date</source> <target state="translated">Op datum sorteren</target> - <jms:reference-file line="231">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="233">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="234">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="235">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="237">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="238">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="89">web/thesaurus/export-topics-dialog.html.twig</jms:reference-file> </trans-unit> <trans-unit id="db34986ff3eb1fd0e90f897a97eaf52ea6708600" resname="phraseanet:: tri par nom" approved="yes"> <source>phraseanet:: tri par nom</source> <target state="translated">Op naam sorteren</target> - <jms:reference-file line="240">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="242">web/prod/index.html.twig</jms:reference-file> - <jms:reference-file line="243">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="244">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="246">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="247">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d775557b6bf79c672ee2efea64f5e282124055a8" resname="phraseanet:: user" approved="yes"> <source>phraseanet:: user</source> @@ -10771,11 +10835,56 @@ <target state="translated">Deze melding niet meer tonen</target> <jms:reference-file line="38">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> + <trans-unit id="245fd09d0518644a6580518f710add762804ca9a" resname="phraseanet::account The account has been deleted"> + <source>phraseanet::account The account has been deleted</source> + <target state="new">phraseanet::account The account has been deleted</target> + <jms:reference-file line="552">Controller/Root/AccountController.php</jms:reference-file> + </trans-unit> + <trans-unit id="bf7028b694aea3fc9ede5014a9f8b5d617b83b6f" resname="phraseanet::account: << your account can be deleted via admin interface >> "> + <source><![CDATA[phraseanet::account: << your account can be deleted via admin interface >> ]]></source> + <target state="new"><![CDATA[phraseanet::account: << your account can be deleted via admin interface >> ]]></target> + <jms:reference-file line="296">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="047b7994f5960aae108105ad5deadb5bbd72c8fc" resname="phraseanet::account: A confirmation e-mail has been sent. Please follow the instructions contained to continue account deletion"> + <source>phraseanet::account: A confirmation e-mail has been sent. Please follow the instructions contained to continue account deletion</source> + <target state="new">phraseanet::account: A confirmation e-mail has been sent. Please follow the instructions contained to continue account deletion</target> + <jms:reference-file line="360">Controller/Root/AccountController.php</jms:reference-file> + </trans-unit> + <trans-unit id="d0ee9e2c90a05b113b00bf7accd590557bd78528" resname="phraseanet::account: Are you sure you want to delete your account?"> + <source>phraseanet::account: Are you sure you want to delete your account?</source> + <target state="new">phraseanet::account: Are you sure you want to delete your account?</target> + <jms:reference-file line="253">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="b98be91d0f8cadb22e52e6217584b7a11370fbb6" resname="phraseanet::account: Delete my account"> + <source>phraseanet::account: Delete my account</source> + <target state="new">phraseanet::account: Delete my account</target> + <jms:reference-file line="244">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="b7993903466c49139bfae4c34c63446ff24b1474" resname="phraseanet::account: I am agree to delete my account"> + <source>phraseanet::account: I am agree to delete my account</source> + <target state="new">phraseanet::account: I am agree to delete my account</target> + <jms:reference-file line="285">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="1b836fda2a5c65abfd05c215d4c4dd66361e4f0f" resname="phraseanet::account: I am agree to delete my account, need confirmation on mail"> + <source>phraseanet::account: I am agree to delete my account, need confirmation on mail</source> + <target state="new">phraseanet::account: I am agree to delete my account, need confirmation on mail</target> + <jms:reference-file line="283">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="121aa945bfcb3565989acc06a1ccda5b36be6bf0" resname="phraseanet::account: List of data to be deleted"> + <source>phraseanet::account: List of data to be deleted</source> + <target state="new">phraseanet::account: List of data to be deleted</target> + <jms:reference-file line="254">web/account/account.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="8d168955d9cfb26df27fbdcb4f83bbfe78654703" resname="phraseanet::account: My phraseanet account"> + <source>phraseanet::account: My phraseanet account</source> + <target state="new">phraseanet::account: My phraseanet account</target> + <jms:reference-file line="274">web/account/account.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="9628f29074afd5c9bb42bb0b4c896f8bc32c192e" resname="phraseanet::chargement" approved="yes"> <source>phraseanet::chargement</source> <target state="translated">Laden</target> <jms:reference-file line="47">Controller/Prod/LanguageController.php</jms:reference-file> - <jms:reference-file line="268">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="270">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="77">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="34">admin/collection/suggested_value.html.twig</jms:reference-file> </trans-unit> @@ -10801,7 +10910,14 @@ <trans-unit id="754677fa0aa06c7f10237a728e6f33eaea06d42b" resname="phraseanet::erreur: echec du serveur de mail" approved="yes"> <source>phraseanet::erreur: echec du serveur de mail</source> <target state="translated">De email server is mislukt</target> - <jms:reference-file line="116">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="123">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="344">Controller/Root/AccountController.php</jms:reference-file> + <jms:reference-file line="541">Controller/Root/AccountController.php</jms:reference-file> + </trans-unit> + <trans-unit id="60ae97c7ab0fb3923682a785ff0348958e308d4a" resname="phraseanet::error: failed to revoke some user access"> + <source>phraseanet::error: failed to revoke some user access</source> + <target state="new">phraseanet::error: failed to revoke some user access</target> + <jms:reference-file line="530">Controller/Root/AccountController.php</jms:reference-file> </trans-unit> <trans-unit id="2a5db6bf8928d23c54b13277fa7d5289a1f52744" resname="phraseanet::jours:: dimanche" approved="yes"> <source>phraseanet::jours:: dimanche</source> @@ -10886,12 +11002,12 @@ <trans-unit id="9b218d667572510f2b87bc933b23fe2e1049da91" resname="phraseanet::time:: a" approved="yes"> <source>phraseanet::time:: a</source> <target state="translated">a</target> - <jms:reference-file line="455">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="487">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="17294973074fcca7917d08a31570996d882ae840" resname="phraseanet::time:: de" approved="yes"> <source>phraseanet::time:: de</source> <target state="translated">de</target> - <jms:reference-file line="449">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="480">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="10188a0f6e181f9c9159f315f47e1349efb5659a" resname="phraseanet::type:: audios" approved="yes"> <source>phraseanet::type:: audios</source> @@ -10901,8 +11017,8 @@ <trans-unit id="255c1bcd520c4025c47b940d1820d1355d0b35e0" resname="phraseanet::type:: documents" approved="yes"> <source>phraseanet::type:: documents</source> <target state="translated">Documenten</target> - <jms:reference-file line="283">web/prod/index.html.twig</jms:reference-file> <jms:reference-file line="28">web/prod/toolbar.html.twig</jms:reference-file> + <jms:reference-file line="306">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0846fc377cde824859cb98aacb8a3b258bae7c7c" resname="phraseanet::type:: images" approved="yes"> <source>phraseanet::type:: images</source> @@ -10912,7 +11028,7 @@ <trans-unit id="a2dfbbcaf441131e47dcd23530fa98f1155999ff" resname="phraseanet::type:: reportages" approved="yes"> <source>phraseanet::type:: reportages</source> <target state="translated">Reportages</target> - <jms:reference-file line="287">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="311">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="866330f63ad6553c27c7c4a60fd6354d4291e2b3" resname="phraseanet::type:: videos" approved="yes"> <source>phraseanet::type:: videos</source> @@ -10928,16 +11044,6 @@ <source>phraseanet::utilisateurs</source> <target state="translated">Gebruikers</target> <jms:reference-file line="66">module/report/filter.php</jms:reference-file> - <jms:reference-file line="152">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="7cf383c0af92a038f4aa629bfc8292876459b08d" resname="phrseanet:: sous definition" approved="yes"> - <source>phrseanet:: sous definition</source> - <target state="translated">Per definitie</target> - <jms:reference-file line="282">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="34">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="52">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="273">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="281">Controller/Report/InformationController.php</jms:reference-file> </trans-unit> <trans-unit id="1aa787fe0cfb373575fc2c0f6f826e7c6dc9fd41" resname="preview" approved="yes"> <source>preview</source> @@ -10947,49 +11053,49 @@ <trans-unit id="fdb5ea435d0e0d2d8e9dc7e2dc925c031406385c" resname="preview:: Description" approved="yes"> <source>preview:: Description</source> <target state="translated">Beschrijving</target> - <jms:reference-file line="793">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="884">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="424597224c5d2322b6e8db99037234f7b2641de0" resname="preview:: Historique" approved="yes"> <source>preview:: Historique</source> <target state="translated">Historie</target> - <jms:reference-file line="794">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="885">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="74e09022ffbf0d295142654902e9d7a007f209a5" resname="preview:: Popularite" approved="yes"> <source>preview:: Popularite</source> <target state="translated">Populariteit</target> - <jms:reference-file line="796">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="887">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f9c61385964471a1171066ba2ba3622a98ffb84b" resname="preview:: arreter le diaporama" approved="yes"> <source>preview:: arreter le diaporama</source> <target state="translated">stop de slideshow</target> <jms:reference-file line="62">prod/preview/basket_train.html.twig</jms:reference-file> - <jms:reference-file line="10">prod/preview/result_train_options.html.twig</jms:reference-file> - <jms:reference-file line="96">prod/preview/reg_train.html.twig</jms:reference-file> - <jms:reference-file line="60">prod/preview/feed_train.html.twig</jms:reference-file> <jms:reference-file line="56">prod/preview/result_train.html.twig</jms:reference-file> + <jms:reference-file line="96">prod/preview/reg_train.html.twig</jms:reference-file> + <jms:reference-file line="10">prod/preview/result_train_options.html.twig</jms:reference-file> + <jms:reference-file line="60">prod/preview/feed_train.html.twig</jms:reference-file> </trans-unit> <trans-unit id="77a36033b8fdccc947d744ae8e3120c7d8dafa46" resname="preview:: demarrer le diaporama" approved="yes"> <source>preview:: demarrer le diaporama</source> <target state="translated">start de slideshow</target> <jms:reference-file line="60">prod/preview/basket_train.html.twig</jms:reference-file> - <jms:reference-file line="8">prod/preview/result_train_options.html.twig</jms:reference-file> - <jms:reference-file line="94">prod/preview/reg_train.html.twig</jms:reference-file> - <jms:reference-file line="58">prod/preview/feed_train.html.twig</jms:reference-file> <jms:reference-file line="54">prod/preview/result_train.html.twig</jms:reference-file> + <jms:reference-file line="94">prod/preview/reg_train.html.twig</jms:reference-file> + <jms:reference-file line="8">prod/preview/result_train_options.html.twig</jms:reference-file> + <jms:reference-file line="58">prod/preview/feed_train.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a5cc2b2cd9b0421d131185277e9005d8e616582c" resname="preview::date"> <source>preview::date</source> <target state="new">preview::date</target> - <jms:reference-file line="74">prod/preview/popularity.html.twig</jms:reference-file> - <jms:reference-file line="88">prod/preview/popularity.html.twig</jms:reference-file> - <jms:reference-file line="124">prod/preview/popularity.html.twig</jms:reference-file> - <jms:reference-file line="138">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="83">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="98">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="134">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="148">prod/preview/popularity.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0cbda44654b686e66bae8ec061748385d8b13de0" resname="preview::downloads"> <source>preview::downloads</source> <target state="new">preview::downloads</target> - <jms:reference-file line="125">prod/preview/popularity.html.twig</jms:reference-file> - <jms:reference-file line="151">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="135">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="161">prod/preview/popularity.html.twig</jms:reference-file> </trans-unit> <trans-unit id="688566b835a97bcfbbdb83fb85b59c7c2aa5893d" resname="preview::statistiques de telechargement" approved="yes"> <source>preview::statistiques de telechargement</source> @@ -11004,15 +11110,15 @@ <trans-unit id="b130a62ee72757a562af1398e01cd0fc5aad3d30" resname="preview::visualisation"> <source>preview::visualisation</source> <target state="new">preview::visualisation</target> - <jms:reference-file line="75">prod/preview/popularity.html.twig</jms:reference-file> - <jms:reference-file line="101">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="84">prod/preview/popularity.html.twig</jms:reference-file> + <jms:reference-file line="111">prod/preview/popularity.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7ac5447a13806c0a2e2602b51644729fe8464e0e" resname="previewLinkLabel"> <source>previewLinkLabel</source> <target state="new">previewLinkLabel</target> - <jms:reference-file line="45">prod/Share/record.html.twig</jms:reference-file> - <jms:reference-file line="55">prod/Share/record.html.twig</jms:reference-file> - <jms:reference-file line="71">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="51">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="61">prod/Share/record.html.twig</jms:reference-file> + <jms:reference-file line="77">prod/Share/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d369ca0ef132e64f45e4cef5bfa2aaff9104a276" resname="print:: description"> <source>print:: description</source> @@ -11052,20 +11158,20 @@ <trans-unit id="98ab0e2a8cf4a7c9f6952361e6c750a8009b70a5" resname="prive"> <source>prive</source> <target>prive</target> - <jms:reference-file line="91">Bridge/Youtube/upload.html.twig</jms:reference-file> <jms:reference-file line="79">Bridge/Dailymotion/upload.html.twig</jms:reference-file> + <jms:reference-file line="91">Bridge/Youtube/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="039db3240f9c47314f5b8f05835c54795f45324e" resname="privé" approved="yes"> <source>privé</source> <target state="translated">privaat</target> - <jms:reference-file line="60">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="60">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="60">Bridge/Youtube/video_modify.html.twig</jms:reference-file> </trans-unit> <trans-unit id="6dd8429cc900b9460f1e9d4be6155a6ee1b6de42" resname="processing" approved="yes"> <source>processing</source> <target state="translated">verwerken</target> + <jms:reference-file line="179">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="246">actions/Tools/index.html.twig</jms:reference-file> - <jms:reference-file line="166">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f63658cad863dee4a5876278e836472380183ade" resname="prod::Les enregistrements ne provienent pas tous de la meme base et ne peuvent donc etre traites ensemble" approved="yes"> <source>prod::Les enregistrements ne provienent pas tous de la meme base et ne peuvent donc etre traites ensemble</source> @@ -11078,6 +11184,16 @@ <target state="translated">U hebt niet het recht om deze handeling uit te voeren op geen enkel document</target> <jms:reference-file line="35">Controller/Prod/MoveCollectionController.php</jms:reference-file> </trans-unit> + <trans-unit id="ef27ad74061e0e15683e84dec7f5559f7797637f" resname="prod::advancesearch:tooltips:datefield_restriction_explanation"> + <source>prod::advancesearch:tooltips:datefield_restriction_explanation</source> + <target state="new">prod::advancesearch:tooltips:datefield_restriction_explanation</target> + <jms:reference-file line="463">web/prod/index.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="fa55093d5fb1dfe235a46f8b4fecad5d36d3f250" resname="prod::advancesearch:tooltips:field_restriction_explanation"> + <source>prod::advancesearch:tooltips:field_restriction_explanation</source> + <target state="new">prod::advancesearch:tooltips:field_restriction_explanation</target> + <jms:reference-file line="408">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="8b8698f202f815bbde691f54c7d51b691bef0263" resname="prod::collection deplacer egalement les documents rattaches a ce(s) regroupement(s)" approved="yes"> <source>prod::collection deplacer egalement les documents rattaches a ce(s) regroupement(s)</source> <target state="translated">De collectie en de bijhorende documenten werden verplaats bij deze hergroepering</target> @@ -11086,7 +11202,7 @@ <trans-unit id="063431f63e0c593c52fffb55f390d1d9c216ee4a" resname="prod::edit: Impossible d'editer simultanement des documents provenant de bases differentes" approved="yes"> <source>prod::edit: Impossible d'editer simultanement des documents provenant de bases differentes</source> <target state="translated">Onmogelijk om documenten afkomstig van verschillende databases samen te bewerken</target> - <jms:reference-file line="404">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="406">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c1978319cea9a232bb3076453e217df0781ef7a6" resname="prod::editing valeurs heterogenes, choisir 'remplacer', 'ajouter' ou 'annuler'" approved="yes"> <source>prod::editing valeurs heterogenes, choisir 'remplacer', 'ajouter' ou 'annuler'</source> @@ -11096,32 +11212,32 @@ <trans-unit id="b4647a860e97f9b173747e8736ae36630631fbb4" resname="prod::editing: %not_actionable% documents ne peuvent etre edites car vos droits sont induffisants" approved="yes"> <source>prod::editing: %not_actionable% documents ne peuvent etre edites car vos droits sont induffisants</source> <target state="translated">%not_actionable% documenten kunnen niet bewerkt worden omdat u niet voldoende rechten heeft</target> - <jms:reference-file line="414">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="416">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e58fe53260dcb47548d687b0aac89a231f8fd349" resname="prod::editing: 1 document ne peut etre edite car vos droits sont induffisants" approved="yes"> <source>prod::editing: 1 document ne peut etre edite car vos droits sont induffisants</source> <target state="translated">1 document kan niet worden bewerkt omdat u niet voldoende rechten heeft</target> - <jms:reference-file line="416">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="418">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d06429358cfa7814d995cffec515505b4babbdf3" resname="prod::editing: aucun documents ne peuvent etre edites car vos droits sont induffisants" approved="yes"> <source>prod::editing: aucun documents ne peuvent etre edites car vos droits sont induffisants</source> <target state="translated">Geen enkel document kan worden bewerkt omdat u niet voldoende rechten heeft</target> - <jms:reference-file line="406">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="408">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="93a5e45cf78591b66011a369a41a9faae6439da0" resname="prod::editing: modeles de fiches" approved="yes"> <source>prod::editing: modeles de fiches</source> <target state="translated">Bestandsmodellen</target> - <jms:reference-file line="259">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="261">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="43cef7ae638274317ae80eeb9d2207fbd8c60889" resname="prod::editing: rechercher-remplacer" approved="yes"> <source>prod::editing: rechercher-remplacer</source> <target state="translated">Zoeken-vervangen</target> - <jms:reference-file line="258">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="260">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1a368232d8ba90d4b168be2a328b32b2889a909c" resname="prod::editing: valider ou annuler les modifications" approved="yes"> <source>prod::editing: valider ou annuler les modifications</source> <target state="translated">Bewaar of annuleer de aanpassingen</target> - <jms:reference-file line="389">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="391">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f5b80c50fa70208435fd889b73915ca753efabd3" resname="prod::editing::annulation: abandonner les modification ?" approved="yes"> <source>prod::editing::annulation: abandonner les modification ?</source> @@ -11136,108 +11252,83 @@ <trans-unit id="be0abffee86e7b309d3ff31af3ab46a7e3927914" resname="prod::editing::replace: remplacer dans le champ" approved="yes"> <source>prod::editing::replace: remplacer dans le champ</source> <target state="translated">Vervangen in het veld</target> - <jms:reference-file line="279">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="281">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5abac240c44453bcb822102437d5b2e95115dbe2" resname="prod::editing::replace: remplacer dans tous les champs" approved="yes"> <source>prod::editing::replace: remplacer dans tous les champs</source> <target state="translated">Vervangen in alle velden</target> - <jms:reference-file line="282">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="284">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7ba84a24ce43f7192d766a7afcda8d7de22ba760" resname="prod::editing:indexation en cours" approved="yes"> <source>prod::editing:indexation en cours</source> <target state="translated">Indexatie is bezig</target> - <jms:reference-file line="376">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="378">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f2dbeebb5642463cc9d946ac5fef8b54e3ef9c8d" resname="prod::editing:remplace: chaine remplacante" approved="yes"> <source>prod::editing:remplace: chaine remplacante</source> <target state="translated">Vervangende string</target> - <jms:reference-file line="296">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="298">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2d8fd9918eb060abef1aff6634ede1135c2f898a" resname="prod::editing:remplace: options de remplacement" approved="yes"> <source>prod::editing:remplace: options de remplacement</source> <target state="translated">Vervanging opties</target> - <jms:reference-file line="302">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="304">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9b33f1b01e6908366fc4b3f960d1869ccf1ea6a2" resname="prod::editing:remplace::option : utiliser une expression reguliere" approved="yes"> <source>prod::editing:remplace::option : utiliser une expression reguliere</source> <target state="translated">Een reguliere expressie gebruiken</target> - <jms:reference-file line="305">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="307">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5649e43cc87b1330e3a5ad75b54c6096561e00cd" resname="prod::editing:remplace::option la valeur du cahmp doit etre exacte" approved="yes"> <source>prod::editing:remplace::option la valeur du cahmp doit etre exacte</source> <target state="translated">De waarde van het veld moet exact zijn</target> - <jms:reference-file line="328">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="330">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cb4a27dc95b4aaf582361724327b0937991b6884" resname="prod::editing:remplace::option la valeur est comprise dans le champ" approved="yes"> <source>prod::editing:remplace::option la valeur est comprise dans le champ</source> <target state="translated">De waarde is in het veld opgenomen</target> - <jms:reference-file line="331">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="333">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5f18e2b78a5091db78a4adbd14e912959070ebd5" resname="prod::editing:remplace::option respecter la casse" approved="yes"> <source>prod::editing:remplace::option respecter la casse</source> <target state="translated">Respecteer de hoofdlettergevoeligheid</target> - <jms:reference-file line="334">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="336">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="27a3b22c9b8b1abb910147d1d3a556d038f0ab50" resname="prod::editing:remplace::option: remplacer toutes les occurences" approved="yes"> <source>prod::editing:remplace::option: remplacer toutes les occurences</source> <target state="translated">Alle zoektekst vervangen</target> - <jms:reference-file line="321">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="323">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a77e26d6710709aca37c36887252c53bc238ec43" resname="prod::editing:remplace::option: rester insensible a la casse" approved="yes"> <source>prod::editing:remplace::option: rester insensible a la casse</source> <target state="translated">Hoofdletterongevoelig blijven</target> - <jms:reference-file line="324">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="326">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="dd5e4eca9dfa743d305cd038b0c53b0470c71c61" resname="prod::editing:replace: chaine a rechercher" approved="yes"> <source>prod::editing:replace: chaine a rechercher</source> <target state="translated">String zoeken</target> - <jms:reference-file line="290">prod/actions/edit_default.html.twig</jms:reference-file> + <jms:reference-file line="292">prod/actions/edit_default.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cb08c63b1c016e31a255a38795c8e4cb66b0e66e" resname="prod::facet:base_label"> <source>prod::facet:base_label</source> <target state="new">prod::facet:base_label</target> - <jms:reference-file line="259">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="260">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="36fa870bac03b1a7c83f2b7030bf93ed4718e0a7" resname="prod::facet:collection_label"> <source>prod::facet:collection_label</source> <target state="new">prod::facet:collection_label</target> - <jms:reference-file line="264">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="267">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="12988153991e94fd6fc58934903504b0bf03c30a" resname="prod::facet:doctype_label"> <source>prod::facet:doctype_label</source> <target state="new">prod::facet:doctype_label</target> - <jms:reference-file line="269">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> + <jms:reference-file line="274">SearchEngine/Elastic/ElasticsearchOptions.php</jms:reference-file> </trans-unit> <trans-unit id="2a4d65f9a1aaeec92617d3d5dc3ef0167a019e82" resname="prod::recherche: Attention : la liste des bases selectionnees pour la recherche a ete changee." approved="yes"> <source>prod::recherche: Attention : la liste des bases selectionnees pour la recherche a ete changee.</source> <target state="translated">Opgepast : de lijst met de geslecteerde databases is veranderd.</target> <jms:reference-file line="33">Controller/Prod/LanguageController.php</jms:reference-file> </trans-unit> - <trans-unit id="93e6180a1f0f64a4dfc76fd640c4dc0049be00fc" resname="prod::setup: download gabari"> - <source>prod::setup: download gabari</source> - <target state="new">prod::setup: download gabari</target> - <jms:reference-file line="10">web/admin/personalisation_logo.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="7751e538494c3f8ed3f5518422715b60b28d306a" resname="prod::setup: error text dimension"> - <source>prod::setup: error text dimension</source> - <target state="new">prod::setup: error text dimension</target> - <jms:reference-file line="41">web/admin/personalisation_logo.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="a9f8a6a629117e38936d41b34cbb3dbcc13353fa" resname="prod::setup: error text file type"> - <source>prod::setup: error text file type</source> - <target state="new">prod::setup: error text file type</target> - <jms:reference-file line="42">web/admin/personalisation_logo.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="7950ac5291b8ffafd5cfa55c429cada508a2fdd1" resname="prod::setup: help text"> - <source>prod::setup: help text</source> - <target state="new">prod::setup: help text</target> - <jms:reference-file line="16">web/admin/personalisation_logo.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="acd399272f9331ebe8c669752339051f920a4084" resname="prod::setup: select file"> - <source>prod::setup: select file</source> - <target state="new">prod::setup: select file</target> - <jms:reference-file line="29">web/admin/personalisation_logo.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="df147d680e0fab108bc7a6a1c878c55428ecd3ea" resname="prod::thesaurusTab:candidats" approved="yes"> <source>prod::thesaurusTab:candidats</source> <target state="translated">Kandidaten</target> @@ -11432,20 +11523,15 @@ <trans-unit id="a938566e7b60b6fc2e197259cf2f2b2f42656d17" resname="prod:push: delete selection"> <source>prod:push: delete selection</source> <target state="new">prod:push: delete selection</target> - <jms:reference-file line="217">prod/actions/Push.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="2b9af3311e90dc6acc56f5dbb15c859f525a4d0e" resname="prod:push:save list"> - <source>prod:push:save list</source> - <target state="new">prod:push:save list</target> - <jms:reference-file line="249">prod/actions/Push.html.twig</jms:reference-file> + <jms:reference-file line="223">prod/actions/Push.html.twig</jms:reference-file> </trans-unit> <trans-unit id="61c9b2b17db77a27841bbeeabff923448b0f6388" resname="public" approved="yes"> <source>public</source> <target state="translated">publiek</target> - <jms:reference-file line="95">Bridge/Youtube/upload.html.twig</jms:reference-file> - <jms:reference-file line="64">Bridge/Youtube/video_modify.html.twig</jms:reference-file> <jms:reference-file line="83">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="64">Bridge/Dailymotion/video_modify.html.twig</jms:reference-file> + <jms:reference-file line="95">Bridge/Youtube/upload.html.twig</jms:reference-file> + <jms:reference-file line="64">Bridge/Youtube/video_modify.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9647ab4603346566d2218fda731606baafcbe408" resname="publication : autheur" approved="yes"> <source>publication : autheur</source> @@ -11513,37 +11599,67 @@ <trans-unit id="80d5c6fb17d995644a96db043efbec28278893eb" resname="raccourci :: a propos des raccourcis claviers" approved="yes"> <source>raccourci :: a propos des raccourcis claviers</source> <target state="translated">Over toetsenbord sneltoetsen</target> - <jms:reference-file line="522">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="613">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a7b6e3e14f736db30984625d4a84be582f2f16ac" resname="raccourcis :: ne plus montrer cette aide" approved="yes"> <source>raccourcis :: ne plus montrer cette aide</source> <target state="translated">Deze help niet meer tonen</target> - <jms:reference-file line="567">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="658">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="1d740fd7fe206b5e6e57bef828e876a1bc484dd5" resname="rafraichir" approved="yes"> <source>rafraichir</source> <target state="translated">vernieuwen</target> <jms:reference-file line="89">prod/WorkZone/Story.html.twig</jms:reference-file> - <jms:reference-file line="94">prod/WorkZone/Basket.html.twig</jms:reference-file> <jms:reference-file line="3">prod/WorkZone/Macros.html.twig</jms:reference-file> + <jms:reference-file line="94">prod/WorkZone/Basket.html.twig</jms:reference-file> <jms:reference-file line="17">prod/results/feeds.html.twig</jms:reference-file> <jms:reference-file line="22">prod/results/feeds.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="aa9ad912bb5495802feb4738958c197a8e2de1dc" resname="rechercher dans tous les champs" approved="yes"> - <source>rechercher dans tous les champs</source> - <target state="translated">in alle velden zoeken</target> - <jms:reference-file line="377">web/prod/index.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="0dea865dcd106d77e52ea8bffe6f87e2add0ac53" resname="recordtype"> <source>recordtype</source> <target state="new">recordtype</target> - <jms:reference-file line="16">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="19">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="df1f4db3d6016bf2b31805b0a3038df4498fc2ee" resname="regeneration of sub-definitions" approved="yes"> <source>regeneration of sub-definitions</source> <target state="translated">thumbnails opnieuw genereren</target> <jms:reference-file line="29">actions/Tools/index.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="c8c491587b0dfb9bab18afb7694a0bb14665e7de" resname="registration:collection.accepted"> + <source>registration:collection.accepted</source> + <target state="new">registration:collection.accepted</target> + <jms:reference-file line="64">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="8feaff2c61f3573c1aaaaa16de3df1ef8758f28f" resname="registration:collection.active"> + <source>registration:collection.active</source> + <target state="new">registration:collection.active</target> + <jms:reference-file line="52">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="9a5d8160431e85e0ecbe21dfcb2017543a8f7268" resname="registration:collection.in-time"> + <source>registration:collection.in-time</source> + <target state="new">registration:collection.in-time</target> + <jms:reference-file line="56">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="8e154460c434c2beb7dc268aac77c5b8b52c4abb" resname="registration:collection.out-dated"> + <source>registration:collection.out-dated</source> + <target state="new">registration:collection.out-dated</target> + <jms:reference-file line="58">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="ec1982774689f302e8d8549a12d99a3e41525648" resname="registration:collection.pending"> + <source>registration:collection.pending</source> + <target state="new">registration:collection.pending</target> + <jms:reference-file line="60">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="fcaffe2361d5da4c38aaf4c02d2b944c29db7da1" resname="registration:collection.registrable"> + <source>registration:collection.registrable</source> + <target state="new">registration:collection.registrable</target> + <jms:reference-file line="54">web/account/access.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="7abb365333a7902838022d4bfc560f41323abb7c" resname="registration:collection.rejected"> + <source>registration:collection.rejected</source> + <target state="new">registration:collection.rejected</target> + <jms:reference-file line="62">web/account/access.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="796a49ee2759063c6ffcb69cb54bc55b92020af5" resname="reponses:: %total% Resultats"> <source>reponses:: %total% Resultats</source> <target state="new">reponses:: %total% Resultats</target> @@ -11557,22 +11673,24 @@ <trans-unit id="04e3a887b050c987ecd5ed86b775e09a92ccddd6" resname="reponses:: images par pages :" approved="yes"> <source>reponses:: images par pages :</source> <target state="translated">Beelden per pagina :</target> - <jms:reference-file line="659">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="750">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5aeb7a518f4ac89f3db531fc3e4efb7dd5e11182" resname="reponses:: mode liste" approved="yes"> <source>reponses:: mode liste</source> <target state="translated">Lijst mode</target> - <jms:reference-file line="612">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="703">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="f3f71ef37b35e713c5dcea151d066ec447e95579" resname="reponses:: mode vignettes" approved="yes"> <source>reponses:: mode vignettes</source> <target state="translated">Thumbnail mode</target> - <jms:reference-file line="608">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="699">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="cf0636b6d894370de0b8a9d6f2dceb07ad46f800" resname="reponses:: partager" approved="yes"> <source>reponses:: partager</source> <target state="translated">delen</target> - <jms:reference-file line="140">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="150">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="151">prod/results/record.html.twig</jms:reference-file> + <jms:reference-file line="152">prod/results/record.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4e25e3a99801b881f73fe940cac50b0fc636d6cf" resname="reponses:: selectionner rien" approved="yes"> <source>reponses:: selectionner rien</source> @@ -11587,115 +11705,55 @@ <trans-unit id="d3b5a64da3a08e4a63a641fb4164844ecdb67a2f" resname="reponses:: taille des images :" approved="yes"> <source>reponses:: taille des images :</source> <target state="translated">Grootte van de beelden :</target> - <jms:reference-file line="666">web/prod/index.html.twig</jms:reference-file> + <jms:reference-file line="757">web/prod/index.html.twig</jms:reference-file> </trans-unit> <trans-unit id="e32952b1a087c6ba28e13097e0ebb5395c2f2105" resname="reponses::document sans titre" approved="yes"> <source>reponses::document sans titre</source> <target state="translated">Documenten zonder titel</target> - <jms:reference-file line="934">classes/record/adapter.php</jms:reference-file> - </trans-unit> - <trans-unit id="e1fd199951b7475ef26b375b42056b7619abdfb9" resname="report :: aucun resultat trouve" approved="yes"> - <source>report :: aucun resultat trouve</source> - <target state="translated">geen enkel resultaat gevonden</target> - <jms:reference-file line="115">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="dde6a50f70eb651f8e8b72e4d19c826ed474f62f" resname="report :: configurer le tableau" approved="yes"> - <source>report :: configurer le tableau</source> - <target state="translated">Configureer het paneel</target> - <jms:reference-file line="15">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="4b5e07be61a6dbe3f4b635225bed3513f93472a5" resname="report :: filtrer" approved="yes"> - <source>report :: filtrer</source> - <target state="translated">Filteren</target> - <jms:reference-file line="62">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="f9891f9435be957f4dd0901856d8cb2e49e48f9f" resname="report :: grouper" approved="yes"> - <source>report :: grouper</source> - <target state="translated">Groeperen</target> - <jms:reference-file line="66">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="089ca06ac338646a81d97f218405812b04d88182" resname="report :: imprimer le tableau" approved="yes"> - <source>report :: imprimer le tableau</source> - <target state="translated">Print het panel</target> - <jms:reference-file line="18">web/report/generate_tab.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="1c2a928659706b02208f44cfe76294f5a3c3e788" resname="report:: (connexions) Globales" approved="yes"> - <source>report:: (connexions) Globales</source> - <target state="translated">Globalen</target> - <jms:reference-file line="87">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="daaac8fc71cfa4f27496b88c286789c66aeb104a" resname="report:: (connexions) OS et navigateurs" approved="yes"> - <source>report:: (connexions) OS et navigateurs</source> - <target state="translated">OS en browsers</target> - <jms:reference-file line="91">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="8a190fa937cca670cc7ae51eb822dd4e7adffc03" resname="report:: (connexions) Par utilisateurs" approved="yes"> - <source>report:: (connexions) Par utilisateurs</source> - <target state="translated">Per gebruikers</target> - <jms:reference-file line="71">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="68ed1e7f53fb514c611feeb9849a396352d28fd2" resname="report:: (telechargement) Global" approved="yes"> - <source>report:: (telechargement) Global</source> - <target state="translated">Algemeen</target> - <jms:reference-file line="135">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="9f849cd5fb7a65d33e1ec022c8f0e28cd25c63d3" resname="report:: (telechargement) Par documents sur la base" approved="yes"> - <source>report:: (telechargement) Par documents sur la base</source> - <target state="translated">Per document in database</target> - <jms:reference-file line="143">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="de74bbae455a47c9404da8d0883534456eddd1e5" resname="report:: (telechargement) Par jours base par base" approved="yes"> - <source>report:: (telechargement) Par jours base par base</source> - <target state="translated">Per dag database per database</target> - <jms:reference-file line="139">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="938">classes/record/adapter.php</jms:reference-file> </trans-unit> <trans-unit id="0e0b1a1001cc76b95ef11cd1c208c87a03743b4b" resname="report:: 1 - Periode" approved="yes"> <source>report:: 1 - Periode</source> <target state="translated">1 - Periode</target> - <jms:reference-file line="4">web/report/form_date_and_base.html.twig</jms:reference-file> + <jms:reference-file line="3">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="dff8c22d33c5488a01a5834535dff916fe5d6487" resname="report:: 2 - Bases" approved="yes"> - <source>report:: 2 - Bases</source> - <target state="translated">2 - Databases</target> - <jms:reference-file line="19">web/report/form_date_and_base.html.twig</jms:reference-file> + <trans-unit id="87cb22fb5598f714cf44b13ef0d2fcfa0fe1e01a" resname="report:: 2 - Base"> + <source>report:: 2 - Base</source> + <target state="new">report:: 2 - Base</target> + <jms:reference-file line="26">web/report/form_date_and_base.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="49e279e2253aaf0d8aebad389584f5c7c77e5a78" resname="report:: 3 - Collections"> + <source>report:: 3 - Collections</source> + <target state="new">report:: 3 - Collections</target> + <jms:reference-file line="39">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a807c0ef7e32813081616c65bbc134acdf30666b" resname="report:: 3 - Type de report" approved="yes"> <source>report:: 3 - Type de report</source> <target state="translated">3 - Rapport type</target> - <jms:reference-file line="67">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="115">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="171">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="11">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="36">web/report/report_layout_child.html.twig</jms:reference-file> + </trans-unit> + <trans-unit id="bbf54f30e0791db4dc06243d939468640ddb6cc5" resname="report:: 4 - Fields"> + <source>report:: 4 - Fields</source> + <target state="new">report:: 4 - Fields</target> + <jms:reference-file line="62">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="67272ff4fb66e47f6a5e55c7171e994c69b6f162" resname="report:: Au (date)" approved="yes"> <source>report:: Au (date)</source> <target state="translated">Au (datum)</target> - <jms:reference-file line="12">web/report/form_date_and_base.html.twig</jms:reference-file> - <jms:reference-file line="9">web/report/ajax_report_dashboard.html.twig</jms:reference-file> + <jms:reference-file line="15">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> <trans-unit id="10f8b6e84219c04ef9961e1710b17e0904746fab" resname="report:: Connexion" approved="yes"> <source>report:: Connexion</source> <target state="translated">Verbinding</target> <jms:reference-file line="666">classes/module/report.php</jms:reference-file> - <jms:reference-file line="8">web/report/report_layout.html.twig</jms:reference-file> - <jms:reference-file line="59">web/report/ajax_data_content.html.twig</jms:reference-file> - <jms:reference-file line="108">web/report/ajax_data_content.html.twig</jms:reference-file> - <jms:reference-file line="26">web/report/all_content.html.twig</jms:reference-file> - <jms:reference-file line="8">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="13">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="17">web/report/chart.html.twig</jms:reference-file> - <jms:reference-file line="43">web/report/chart.html.twig</jms:reference-file> + <jms:reference-file line="9">web/report/report_layout.html.twig</jms:reference-file> + <jms:reference-file line="25">web/report/all_content.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="70a2e2ecaac5729f9c103110e2f37f915c722526" resname="report:: Cumul telechargements & connexions"> - <source><![CDATA[report:: Cumul telechargements & connexions]]></source> - <target state="new"><![CDATA[report:: Cumul telechargements & connexions]]></target> - <jms:reference-file line="25">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="6543d1226df7dd63e1df3071abb9e42be332413a" resname="report:: Dashboard" approved="yes"> - <source>report:: Dashboard</source> - <target state="translated">Dashboard</target> - <jms:reference-file line="7">web/report/report_layout.html.twig</jms:reference-file> - <jms:reference-file line="2">web/report/ajax_dashboard_content.html.twig</jms:reference-file> - <jms:reference-file line="21">web/report/ajax_report_dashboard.html.twig</jms:reference-file> + <trans-unit id="afa9685c95f7dff29cb2ad048da368c6e3dbadbc" resname="report:: Databox content"> + <source>report:: Databox content</source> + <target state="new">report:: Databox content</target> + <jms:reference-file line="11">web/report/report_layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="afa00f7f0e9cf982c242e1a53235360b4aac707d" resname="report:: Detail des connexions" approved="yes"> <source>report:: Detail des connexions</source> @@ -11710,30 +11768,17 @@ <trans-unit id="b00438fba3b211fc47deec5e6ccae27ef9d7c216" resname="report:: Du (date)" approved="yes"> <source>report:: Du (date)</source> <target state="translated">Du (datum)</target> - <jms:reference-file line="6">web/report/form_date_and_base.html.twig</jms:reference-file> - <jms:reference-file line="5">web/report/ajax_report_dashboard.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="de563e5406946f25c4f6cb63311dbea280ef5cc5" resname="report:: Enlever le filtre" approved="yes"> - <source>report:: Enlever le filtre</source> - <target state="translated">De filter verwijderen</target> - <jms:reference-file line="5">web/report/colFilter.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="7d66db3bd34ddc505fd6721d4ffabfa19c4f005f" resname="report:: Grouper par" approved="yes"> - <source>report:: Grouper par</source> - <target state="translated">Grouperen per</target> - <jms:reference-file line="76">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="119">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="5">web/report/form_date_and_base.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7f326bdbbc7dec4c7f61a0e4b22465d0479c0d64" resname="report:: Heures" approved="yes"> <source>report:: Heures</source> <target state="translated">Uren</target> - <jms:reference-file line="33">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="32">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="5ae2efd275a14a59f28c95f331168286f11197cf" resname="report:: IP" approved="yes"> <source>report:: IP</source> <target state="translated">IP</target> <jms:reference-file line="72">module/report/filter.php</jms:reference-file> - <jms:reference-file line="154">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="6b4276e87d8e054cabe49ed3b9bf7ee9f6599cba" resname="report:: Information sur l'enregistrement numero %number%"> <source>report:: Information sur l'enregistrement numero %number%</source> @@ -11755,97 +11800,37 @@ <target state="new">report:: Information sur les utilisateurs correspondant a %critere%</target> <jms:reference-file line="415">module/report/nav.php</jms:reference-file> </trans-unit> - <trans-unit id="449ab664cb3a86585e7942d12693cfe75ca80e9b" resname="report:: Les questions les plus posees" approved="yes"> - <source>report:: Les questions les plus posees</source> - <target state="translated">De meest gestelde vragen</target> - <jms:reference-file line="181">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="67">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> + <trans-unit id="d61b0b1a419a5b37db8576e1072307a5503dba79" resname="report:: Phraseanet report"> + <source>report:: Phraseanet report</source> + <target state="new">report:: Phraseanet report</target> + <jms:reference-file line="6">web/report/report_layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a5c2d01ec9cd2716cb44a02ba1851d82de40aa8a" resname="report:: Plateforme" approved="yes"> <source>report:: Plateforme</source> <target state="translated">Platform</target> <jms:reference-file line="160">module/report/nav.php</jms:reference-file> </trans-unit> - <trans-unit id="7745037fc8189172f2a349bed3b123b9ac4222df" resname="report:: Utilisateurs les plus actifs"> - <source>report:: Utilisateurs les plus actifs</source> - <target state="new">report:: Utilisateurs les plus actifs</target> - <jms:reference-file line="31">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="37">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="43">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="49">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="89e1f53ec411b155207ca8489388aafffe430392" resname="report:: Volumetrie des questions posees sur %home_title%" approved="yes"> - <source>report:: Volumetrie des questions posees sur %home_title%</source> - <target state="translated">Volumetrie van de vragen over %home_title%</target> - <jms:reference-file line="41">web/report/dashboard_macro.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="0deee30b968da91f95a0daf3b988fb8613bcf4f5" resname="report:: activite" approved="yes"> <source>report:: activite</source> <target state="translated">Activiteit</target> <jms:reference-file line="672">classes/module/report.php</jms:reference-file> - <jms:reference-file line="217">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="286">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="285">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="80">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="123">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="b6c3ea1902c9399e1093a448712995eae208adab" resname="report:: activite document ajoute"> - <source>report:: activite document ajoute</source> - <target state="new">report:: activite document ajoute</target> - <jms:reference-file line="17">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="0d7f08a0cf0531e4e366cc80a773e2f9ad1b5e22" resname="report:: activite document edite"> - <source>report:: activite document edite</source> - <target state="new">report:: activite document edite</target> - <jms:reference-file line="21">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="ca241fec577d1f3f2ea4f18ba45d9c0e3fba73a4" resname="report:: activite du site" approved="yes"> - <source>report:: activite du site</source> - <target state="translated">Activiteit van de site</target> - <jms:reference-file line="189">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="10">web/report/report_layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a4bdfeb6e1b025de825e5a05e564a3c58622ffe5" resname="report:: activite par heure" approved="yes"> <source>report:: activite par heure</source> <target state="translated">Activitiet per uur</target> <jms:reference-file line="96">module/report/activity.php</jms:reference-file> - <jms:reference-file line="7">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="ea76b4d0267c77fa551c829102db6366204f4b52" resname="report:: activite par jour" approved="yes"> - <source>report:: activite par jour</source> - <target state="translated">Activiteit per dag</target> - <jms:reference-file line="12">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="6">web/report/chart.html.twig</jms:reference-file> - <jms:reference-file line="30">web/report/chart.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="395a5695445d90bc2b53cd146a4aeb877a473155" resname="report:: adresse" approved="yes"> - <source>report:: adresse</source> - <target state="translated">Adres</target> - <jms:reference-file line="42">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="432">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="82c2454cb127671a7f8bfb0dd6b8140affa1d868" resname="report:: ajoute" approved="yes"> - <source>report:: ajoute</source> - <target state="translated">Voeg toe</target> - <jms:reference-file line="196">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="48808e405192603e079ef1ccbbc1a1df98e317bd" resname="report:: collections" approved="yes"> <source>report:: collections</source> <target state="translated">Collecties</target> - <jms:reference-file line="96">module/report/filter.php</jms:reference-file> <jms:reference-file line="665">classes/module/report.php</jms:reference-file> - <jms:reference-file line="283">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="53">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="282">Controller/Report/InformationController.php</jms:reference-file> + <jms:reference-file line="96">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="6a1193a920be0725a4560344ca10db36147ffd34" resname="report:: commentaire" approved="yes"> <source>report:: commentaire</source> <target state="translated">Commentaar</target> - <jms:reference-file line="99">module/report/filter.php</jms:reference-file> <jms:reference-file line="667">classes/module/report.php</jms:reference-file> - <jms:reference-file line="284">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="54">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="283">Controller/Report/InformationController.php</jms:reference-file> + <jms:reference-file line="99">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="51f822380b654c4fc5adb28eb0643f37aac0d89b" resname="report:: copyright" approved="yes"> <source>report:: copyright</source> @@ -11855,184 +11840,74 @@ <trans-unit id="cf3a5321aa85f0706b89021206bd8cd1ad57da54" resname="report:: date" approved="yes"> <source>report:: date</source> <target state="translated">Datum</target> - <jms:reference-file line="69">module/report/filter.php</jms:reference-file> <jms:reference-file line="669">classes/module/report.php</jms:reference-file> <jms:reference-file line="670">classes/module/report.php</jms:reference-file> - <jms:reference-file line="153">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="215">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="280">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="33">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="46">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="50">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="58">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="272">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="279">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="0fa74ac37777e4846a6b7521f508fe82f30fbc28" resname="report:: document" approved="yes"> - <source>report:: document</source> - <target state="translated">Document</target> - <jms:reference-file line="31">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="270">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="292">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="193">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="56">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> + <jms:reference-file line="69">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="e125eaf6fca2110f86b6ebba60371a4875c87e03" resname="report:: document ajoute" approved="yes"> <source>report:: document ajoute</source> <target state="translated">Document toegevoegd</target> <jms:reference-file line="46">module/report/add.php</jms:reference-file> </trans-unit> - <trans-unit id="3b1da6e09ede169472dc0f7c993a2244b370f5f0" resname="report:: documents les plus telecharges"> - <source>report:: documents les plus telecharges</source> - <target state="new">report:: documents les plus telecharges</target> - <jms:reference-file line="55">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="562beb1d0fc9d02c136608897f50040ba8227991" resname="report:: edite" approved="yes"> - <source>report:: edite</source> - <target state="translated">Bewerk</target> - <jms:reference-file line="197">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="3d92b0d797813422ee66dbddda64e6f1f084b371" resname="report:: edited documents" approved="yes"> <source>report:: edited documents</source> <target state="translated">Bewerkte documenten</target> <jms:reference-file line="46">module/report/edit.php</jms:reference-file> </trans-unit> - <trans-unit id="98d23f79f60fb1e256100832301d040710dea789" resname="report:: email" approved="yes"> - <source>report:: email</source> - <target state="translated">Email</target> - <jms:reference-file line="41">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="431">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> <trans-unit id="fd08db9190c0edd6acd0ad385708b302e8c972ea" resname="report:: fichier" approved="yes"> <source>report:: fichier</source> <target state="translated">Document</target> <jms:reference-file line="681">classes/module/report.php</jms:reference-file> - <jms:reference-file line="353">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="b64c2533c7b357659df3ea9dfb02aec00e95283f" resname="report:: fonction" approved="yes"> <source>report:: fonction</source> <target state="translated">Functie</target> <jms:reference-file line="671">classes/module/report.php</jms:reference-file> - <jms:reference-file line="216">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="285">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="284">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="78">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="121">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="7371da035f95b6a29593e199feaae2e2882ef328" resname="report:: historique des connexions" approved="yes"> - <source>report:: historique des connexions</source> - <target state="translated">Historie van de verbindingen</target> - <jms:reference-file line="88">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="ec7fa3164a52b7983e9ca8ac683dbcf279b1ca4a" resname="report:: historique des questions" approved="yes"> - <source>report:: historique des questions</source> - <target state="translated">Historie van de vragen</target> - <jms:reference-file line="108">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="bb8aaa1753d6ae6e697f9ecbe83939c4c1e274f9" resname="report:: historique des telechargements" approved="yes"> - <source>report:: historique des telechargements</source> - <target state="translated">Historie van de downloads</target> - <jms:reference-file line="98">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="400">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="8ebc8d8e0aeeb34323009f7ac75fdd9f42763ba4" resname="report:: identifiant" approved="yes"> - <source>report:: identifiant</source> - <target state="translated">ID</target> - <jms:reference-file line="39">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="429">Controller/Report/InformationController.php</jms:reference-file> </trans-unit> <trans-unit id="48b9186d83e31f25e35119e7be71d4e2210c1954" resname="report:: jour" approved="yes"> <source>report:: jour</source> <target state="translated">Dag</target> - <jms:reference-file line="289">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="32">web/report/all_content.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="dc0c59066058c42d9fafce659f68c2219c40953f" resname="report:: module" approved="yes"> - <source>report:: module</source> - <target state="translated">Module</target> - <jms:reference-file line="432">Controller/Report/RootController.php</jms:reference-file> + <jms:reference-file line="31">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="3aa60d109af43ca18e495aec94997a7885ce9029" resname="report:: modules" approved="yes"> <source>report:: modules</source> <target state="translated">Modules</target> <jms:reference-file line="339">module/report/nav.php</jms:reference-file> <jms:reference-file line="75">module/report/filter.php</jms:reference-file> - <jms:reference-file line="155">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="47">Controller/Report/InformationController.php</jms:reference-file> </trans-unit> <trans-unit id="639e7baf3ce4f23e399e47a2f29958adaa26f8ba" resname="report:: navigateur" approved="yes"> <source>report:: navigateur</source> <target state="translated">Browser</target> <jms:reference-file line="103">module/report/nav.php</jms:reference-file> - <jms:reference-file line="411">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="4f5626f82ffbe13488f3fc8a706c90e52d7845fb" resname="report:: navigateurs et plateforme" approved="yes"> <source>report:: navigateurs et plateforme</source> <target state="translated">Browsers en platform</target> <jms:reference-file line="277">module/report/nav.php</jms:reference-file> - <jms:reference-file line="417">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="58caf40106dec978fc4988c3bd7893b38ede9d83" resname="report:: nom" approved="yes"> - <source>report:: nom</source> - <target state="translated">Naam</target> - <jms:reference-file line="40">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="430">Controller/Report/InformationController.php</jms:reference-file> </trans-unit> <trans-unit id="da20260fb0ffb7f91e8659e3ccf8feb8ee778993" resname="report:: nombre" approved="yes"> <source>report:: nombre</source> <target state="translated">Aantal</target> <jms:reference-file line="675">classes/module/report.php</jms:reference-file> - <jms:reference-file line="412">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="418">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="423">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="428">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="433">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="75">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="227">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="138">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="189">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="99117f398785adcf45e8499ad8d1443c621ca4e8" resname="report:: nombre de documents" approved="yes"> - <source>report:: nombre de documents</source> - <target state="translated">Aantal documenten</target> - <jms:reference-file line="83">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="e29ea3e14febc313f90283459d28f04a05ec19a7" resname="report:: nombre de preview" approved="yes"> - <source>report:: nombre de preview</source> - <target state="translated">Aantal voorvertoningen</target> - <jms:reference-file line="84">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="52a2c7c51c95719594e526c51995fec2cff55c9a" resname="report:: nombre de reponses" approved="yes"> - <source>report:: nombre de reponses</source> - <target state="translated">Aantal antwoorden</target> - <jms:reference-file line="139">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="190">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="93456bfa01cd90120e67a0eca305d3f7a94a3842" resname="report:: nombre de vue"> - <source>report:: nombre de vue</source> - <target state="new">report:: nombre de vue</target> - <jms:reference-file line="80">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="26d00286d5aecf7cfda0e1395c4208440409b8c0" resname="report:: non-renseigne" approved="yes"> <source>report:: non-renseigne</source> <target state="translated">Niet-informatief</target> <jms:reference-file line="110">module/report/add.php</jms:reference-file> - <jms:reference-file line="161">module/report/download.php</jms:reference-file> - <jms:reference-file line="464">module/report/nav.php</jms:reference-file> - <jms:reference-file line="110">module/report/connexion.php</jms:reference-file> - <jms:reference-file line="118">module/report/connexion.php</jms:reference-file> - <jms:reference-file line="123">module/report/connexion.php</jms:reference-file> <jms:reference-file line="99">module/report/question.php</jms:reference-file> + <jms:reference-file line="161">module/report/download.php</jms:reference-file> <jms:reference-file line="411">module/report/activity.php</jms:reference-file> <jms:reference-file line="508">module/report/activity.php</jms:reference-file> <jms:reference-file line="520">module/report/activity.php</jms:reference-file> - <jms:reference-file line="60">module/report/filter.php</jms:reference-file> + <jms:reference-file line="110">module/report/connexion.php</jms:reference-file> + <jms:reference-file line="118">module/report/connexion.php</jms:reference-file> + <jms:reference-file line="123">module/report/connexion.php</jms:reference-file> <jms:reference-file line="117">module/report/push.php</jms:reference-file> - <jms:reference-file line="117">module/report/validate.php</jms:reference-file> - <jms:reference-file line="114">module/report/edit.php</jms:reference-file> <jms:reference-file line="117">module/report/sent.php</jms:reference-file> - <jms:reference-file line="9">web/report/colFilter.html.twig</jms:reference-file> - <jms:reference-file line="15">web/report/colFilter.html.twig</jms:reference-file> + <jms:reference-file line="117">module/report/validate.php</jms:reference-file> + <jms:reference-file line="464">module/report/nav.php</jms:reference-file> + <jms:reference-file line="114">module/report/edit.php</jms:reference-file> + <jms:reference-file line="60">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="07c06c0cac8bd3e3507a72d6cb7fa1ee23a6bf13" resname="report:: page d'accueil" approved="yes"> <source>report:: page d'accueil</source> @@ -12046,68 +11921,15 @@ <target state="translated">per %user_infos%</target> <jms:reference-file line="61">prod/preview/short_history.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="a3817f71ee24b8f9847baa3f3d2088e43114faff" resname="report:: par utilisateurs" approved="yes"> - <source>report:: par utilisateurs</source> - <target state="translated">per gebruikers</target> - <jms:reference-file line="130">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="45882e1904416b4c1e53b2d47a6f192e4c0e1c14" resname="report:: pays" approved="yes"> <source>report:: pays</source> <target state="translated">Land</target> <jms:reference-file line="673">classes/module/report.php</jms:reference-file> - <jms:reference-file line="218">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="287">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="286">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="81">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="124">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="eda7d4be8f5577170dd7f9c72b3f82d265b93637" resname="report:: plateforme" approved="yes"> - <source>report:: plateforme</source> - <target state="translated">Platform</target> - <jms:reference-file line="422">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="0e1edcbd4dbff06db1c2530bb1b8ea321fa6c86d" resname="report:: poids" approved="yes"> - <source>report:: poids</source> - <target state="translated">Gewicht</target> - <jms:reference-file line="36">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="275">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="bed7cfb242a47b51f45d31d6f7534f53e4343f66" resname="report:: poids document"> - <source>report:: poids document</source> - <target state="new">report:: poids document</target> - <jms:reference-file line="45">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="cc3a07e0f69d3e9fc7067b6053727ae59f701f76" resname="report:: poids preview"> - <source>report:: poids preview</source> - <target state="new">report:: poids preview</target> - <jms:reference-file line="51">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="74">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="eb41f1fd9d2f3c6bb5ab0cb3c13b59eff29a2d99" resname="report:: pourcentage" approved="yes"> <source>report:: pourcentage</source> <target state="translated">Percentage</target> <jms:reference-file line="676">classes/module/report.php</jms:reference-file> - <jms:reference-file line="413">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="419">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="424">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="429">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="434">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="e8f9a2fcac1f24e878349bd855fd00cd2014dd1d" resname="report:: preview" approved="yes"> - <source>report:: preview</source> - <target state="translated">Voorvertoning</target> - <jms:reference-file line="291">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="62">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="14ea0ad72add93f38be10e87f3b4b08c58e31936" resname="report:: preview les plus telecharges"> - <source>report:: preview les plus telecharges</source> - <target state="new">report:: preview les plus telecharges</target> - <jms:reference-file line="61">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="59bf65358205d118e78e021aa3a14a066612beb3" resname="report:: pushe" approved="yes"> - <source>report:: pushe</source> - <target state="translated">Stuur door</target> - <jms:reference-file line="195">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2fa04c59764b5ce330158195b45e3f0f71c430b1" resname="report:: pushed documents" approved="yes"> <source>report:: pushed documents</source> @@ -12117,15 +11939,9 @@ <trans-unit id="8df95f5dffb705018ebae64a4850f1f93bafc098" resname="report:: question" approved="yes"> <source>report:: question</source> <target state="translated">Vraag</target> + <jms:reference-file line="668">classes/module/report.php</jms:reference-file> <jms:reference-file line="43">module/report/question.php</jms:reference-file> <jms:reference-file line="102">module/report/filter.php</jms:reference-file> - <jms:reference-file line="668">classes/module/report.php</jms:reference-file> - <jms:reference-file line="214">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="57">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="137">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="188">Controller/Report/ActivityController.php</jms:reference-file> - <jms:reference-file line="69">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="73">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b9ef4ecd16724b3218cf46f9956b8b157498c3a1" resname="report:: questions" approved="yes"> <source>report:: questions</source> @@ -12141,55 +11957,27 @@ <source>report:: questions sans reponses</source> <target state="translated">Vragen zonder antwoord</target> <jms:reference-file line="212">module/report/activity.php</jms:reference-file> - <jms:reference-file line="185">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8fb18670b89f5cefede425401428a70189f654ea" resname="report:: record id" approved="yes"> <source>report:: record id</source> <target state="translated">Record id</target> - <jms:reference-file line="90">module/report/filter.php</jms:reference-file> <jms:reference-file line="678">classes/module/report.php</jms:reference-file> - <jms:reference-file line="281">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="351">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="32">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="51">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="271">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="dafda7f4df37c3e876cc478aa3b5733e1ee72bba" resname="report:: recordid" approved="yes"> - <source>report:: recordid</source> - <target state="translated">recordid</target> - <jms:reference-file line="147">web/report/report_layout_child.html.twig</jms:reference-file> + <jms:reference-file line="90">module/report/filter.php</jms:reference-file> </trans-unit> <trans-unit id="a11e1e1373aae28668cdf7a08486e767283bbaa2" resname="report:: resolution" approved="yes"> <source>report:: resolution</source> <target state="translated">Resolutie</target> <jms:reference-file line="217">module/report/nav.php</jms:reference-file> - <jms:reference-file line="427">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="c137593838c7cdfab2c2e386539151b90b4e45ed" resname="report:: site"> - <source>report:: site</source> - <target state="new">report:: site</target> - <jms:reference-file line="79">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="4b47102c55ce755def67c13bd17568180f253c83" resname="report:: site d'ou les photo sont les plus consultees"> - <source>report:: site d'ou les photo sont les plus consultees</source> - <target state="new">report:: site d'ou les photo sont les plus consultees</target> - <jms:reference-file line="78">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="44139fc886784bf1efa8198f67265ce6e84a286d" resname="report:: societe" approved="yes"> <source>report:: societe</source> <target state="translated">Bedrijf</target> <jms:reference-file line="674">classes/module/report.php</jms:reference-file> - <jms:reference-file line="219">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="288">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="287">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="79">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="122">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="a36015011c70e326dcef4351b2aa63355e68ee38" resname="report:: taille" approved="yes"> <source>report:: taille</source> <target state="translated">Grootte</target> <jms:reference-file line="683">classes/module/report.php</jms:reference-file> - <jms:reference-file line="355">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="c2382e7d59ab82111739acaea80c65d01aa5f248" resname="report:: telechargement" approved="yes"> <source>report:: telechargement</source> @@ -12200,54 +11988,17 @@ <source>report:: telechargements</source> <target state="translated">Downloads</target> <jms:reference-file line="44">module/report/download.php</jms:reference-file> - <jms:reference-file line="350">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="9">web/report/report_layout.html.twig</jms:reference-file> - <jms:reference-file line="26">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="57">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="63">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="26297a76b38e5df1ac25352f5f3063349e94992b" resname="report:: telechargements document"> - <source>report:: telechargements document</source> - <target state="new">report:: telechargements document</target> - <jms:reference-file line="33">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> + <jms:reference-file line="10">web/report/report_layout.html.twig</jms:reference-file> </trans-unit> <trans-unit id="338e3b26caf39e2f5a23b29047a353b99655817d" resname="report:: telechargements par jour" approved="yes"> <source>report:: telechargements par jour</source> <target state="translated">Downloads per dag</target> <jms:reference-file line="269">module/report/activity.php</jms:reference-file> </trans-unit> - <trans-unit id="46b1963bc2dee84ba3e8dbe3aa1beb05e5f1bc8c" resname="report:: telechargements preview"> - <source>report:: telechargements preview</source> - <target state="new">report:: telechargements preview</target> - <jms:reference-file line="39">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="fdf87efee0312793d6f07abe5dfd8017a8d2cdab" resname="report:: telephone" approved="yes"> - <source>report:: telephone</source> - <target state="translated">Telefoon</target> - <jms:reference-file line="43">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="433">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="94c22d8bf4371687e036c83c828703cf00887ce8" resname="report:: titre" approved="yes"> - <source>report:: titre</source> - <target state="translated">Titel</target> - <jms:reference-file line="35">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="274">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> - <trans-unit id="1d4c2c8fdf71cb515e7cff4e311e6b253e85bd64" resname="report:: total des telechargements" approved="yes"> - <source>report:: total des telechargements</source> - <target state="translated">Totaal van de downloads</target> - <jms:reference-file line="290">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="f82c48bb319dc1043607f84df4058022eb8efe09" resname="report:: toutes les questions" approved="yes"> - <source>report:: toutes les questions</source> - <target state="translated">Alle vragen</target> - <jms:reference-file line="177">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="83a8ccb59af870b7f987c86298c4202245b45065" resname="report:: type" approved="yes"> <source>report:: type</source> <target state="translated">Type</target> <jms:reference-file line="682">classes/module/report.php</jms:reference-file> - <jms:reference-file line="354">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="96383afe0eb9f0bfa7c5675c43cf4c91ba574d01" resname="report:: type d'action" approved="yes"> <source>report:: type d'action</source> @@ -12258,31 +12009,12 @@ <source>report:: utilisateur</source> <target state="translated">Gebruiker</target> <jms:reference-file line="664">classes/module/report.php</jms:reference-file> - <jms:reference-file line="213">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="446">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="82">Controller/Report/ActivityController.php</jms:reference-file> - </trans-unit> - <trans-unit id="91205c26aeb3508157493bd6061deaa0f88472c1" resname="report:: utilisateurs" approved="yes"> - <source>report:: utilisateurs</source> - <target state="translated">Gebruikers</target> - <jms:reference-file line="279">Controller/Report/RootController.php</jms:reference-file> - <jms:reference-file line="280">Controller/Report/InformationController.php</jms:reference-file> - <jms:reference-file line="32">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="38">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="44">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="50">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - <jms:reference-file line="68">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="891b8069620627c198fe372a8b49534f99eea2c3" resname="report:: validated documents" approved="yes"> <source>report:: validated documents</source> <target state="translated">Gevalideerde documenten</target> <jms:reference-file line="46">module/report/validate.php</jms:reference-file> </trans-unit> - <trans-unit id="9eb84fccd4c8c325b4e18275f2657b48a8734355" resname="report:: valide" approved="yes"> - <source>report:: valide</source> - <target state="translated">OK</target> - <jms:reference-file line="198">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="1d900ae5b08909338f17350122691995bf9174b9" resname="report:: visualiseur cooliris" approved="yes"> <source>report:: visualiseur cooliris</source> <target state="translated">Cooliris voorvertoning</target> @@ -12295,11 +12027,6 @@ <target state="translated">Verandering van de collectie naar : %coll_name%</target> <jms:reference-file line="27">prod/preview/short_history.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="19b4d8a8be30b7ffef27c51a9821d3d6415e9f2d" resname="report::Connexion"> - <source>report::Connexion</source> - <target state="new">report::Connexion</target> - <jms:reference-file line="27">web/report/ajax_dashboard_content_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="419829b982162d12659c70a94a0aa6aafaa8df13" resname="report::Connexions" approved="yes"> <source>report::Connexions</source> <target state="translated">Connecties</target> @@ -12323,8 +12050,7 @@ <trans-unit id="339f9743dbb91b02034bec976942c35a8323a473" resname="report::Heures" approved="yes"> <source>report::Heures</source> <target state="translated">Uren</target> - <jms:reference-file line="58">web/report/ajax_data_content.html.twig</jms:reference-file> - <jms:reference-file line="27">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="26">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="0f6f1e90647a3d5f5d7e170268881acc65f33f59" resname="report::Impression des formats : %format%" approved="yes"> <source>report::Impression des formats : %format%</source> @@ -12339,17 +12065,17 @@ <trans-unit id="04141c12be7f11b46805e97c0f399934ed84d614" resname="report::Nombre de connexions" approved="yes"> <source>report::Nombre de connexions</source> <target state="translated">Aantal connecties</target> - <jms:reference-file line="31">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="30">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="605f8acc726fd40f1d7112e794cae6f51970b6ad" resname="report::Nombre de document ajoute" approved="yes"> <source>report::Nombre de document ajoute</source> <target state="translated">Aantel toegevoegde documenten</target> - <jms:reference-file line="34">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="33">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="8a138bd895ef7905fd7f338cf0854b0cbe0c8f03" resname="report::Nombre de document edite" approved="yes"> <source>report::Nombre de document edite</source> <target state="translated">Aantal bewerkte documenten</target> - <jms:reference-file line="35">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="34">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="acce57a36feb4a2af81035dcb6c878555dc131bd" resname="report::Publication de %dest%" approved="yes"> <source>report::Publication de %dest%</source> @@ -12386,56 +12112,37 @@ <source>report::activite</source> <target state="translated">Activiteit</target> <jms:reference-file line="81">module/report/filter.php</jms:reference-file> - <jms:reference-file line="157">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="002c70f6ab109c3160dc534f93c03d56b342cf10" resname="report::ajout du documentt" approved="yes"> <source>report::ajout du documentt</source> <target state="translated">Toevoegen van het document</target> <jms:reference-file line="53">prod/preview/short_history.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="4d3fc1f99d957aa50573f067f78ad75cd7ef9842" resname="report::aucune precision" approved="yes"> - <source>report::aucune precision</source> - <target state="translated">geen enkele precisie</target> - <jms:reference-file line="145">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> <trans-unit id="de28bcec9376030978303c519bd3d5ef776ea7bd" resname="report::fonction" approved="yes"> <source>report::fonction</source> <target state="translated">Functie</target> <jms:reference-file line="78">module/report/filter.php</jms:reference-file> - <jms:reference-file line="156">Controller/Report/RootController.php</jms:reference-file> - </trans-unit> - <trans-unit id="b04965bc5402acc4541bf683229cbd0af38dce6e" resname="report::la description contient" approved="yes"> - <source>report::la description contient</source> - <target state="translated">de beschrijving bevat</target> - <jms:reference-file line="146">web/report/report_layout_child.html.twig</jms:reference-file> </trans-unit> <trans-unit id="20f07835433875d2e66adcb6a4203981359500b7" resname="report::pays" approved="yes"> <source>report::pays</source> <target state="translated">Land</target> <jms:reference-file line="84">module/report/filter.php</jms:reference-file> - <jms:reference-file line="158">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="afacc25a02d9dee7b2e85d3d86835ff4dba28822" resname="report::societe" approved="yes"> <source>report::societe</source> <target state="translated">Bedrijf</target> <jms:reference-file line="87">module/report/filter.php</jms:reference-file> - <jms:reference-file line="159">Controller/Report/RootController.php</jms:reference-file> </trans-unit> <trans-unit id="3fc0f2a0d459b0ae67244939abeda1868f5b1a51" resname="report::supression du document" approved="yes"> <source>report::supression du document</source> <target state="translated">Verwijderen van het document</target> <jms:reference-file line="51">prod/preview/short_history.html.twig</jms:reference-file> </trans-unit> - <trans-unit id="f80375b1b5a6632f3a2db88b757e1734865ad753" resname="report::version" approved="yes"> - <source>report::version</source> - <target state="translated">Versie</target> - <jms:reference-file line="226">Controller/Report/InformationController.php</jms:reference-file> - </trans-unit> <trans-unit id="386c42eb4d167d87be7f7f68faf1aafce1be237e" resname="reportage" approved="yes"> <source>reportage</source> <target state="translated">Reportage</target> - <jms:reference-file line="258">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> - <jms:reference-file line="274">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> + <jms:reference-file line="282">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> + <jms:reference-file line="298">Phrasea/Twig/PhraseanetExtension.php</jms:reference-file> </trans-unit> <trans-unit id="55655edb5e7b23c00fe3fe0509be09e674138da6" resname="resultat numero %number%"> <source>resultat numero %number%</source> @@ -12475,7 +12182,7 @@ <trans-unit id="584d9f9b8a0c51aa1805a1c0ed427c366d11ea5e" resname="screenshot video" approved="yes"> <source>screenshot video</source> <target state="translated">schermafbeelding video</target> - <jms:reference-file line="99">actions/Tools/videoEditor.html.twig</jms:reference-file> + <jms:reference-file line="112">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="fe29f1a35e814c87a21282378424df4866529d1e" resname="select at least one user" approved="yes"> <source>select at least one user</source> @@ -12667,12 +12374,12 @@ <trans-unit id="5e97a32a49cefaf5c4eb26080caf50d7ac7ea102" resname="task::archive:Archivage" approved="yes"> <source>task::archive:Archivage</source> <target state="translated">Archivering</target> - <jms:reference-file line="39">TaskManager/Job/ArchiveJob.php</jms:reference-file> + <jms:reference-file line="40">TaskManager/Job/ArchiveJob.php</jms:reference-file> </trans-unit> <trans-unit id="b94199880758a342c5de52be020699d9b789a7a2" resname="task::archive:Archiving files found into a 'hotfolder'" approved="yes"> <source>task::archive:Archiving files found into a 'hotfolder'</source> <target state="translated">Archivering files gevonden in een 'hotfolder'</target> - <jms:reference-file line="55">TaskManager/Job/ArchiveJob.php</jms:reference-file> + <jms:reference-file line="56">TaskManager/Job/ArchiveJob.php</jms:reference-file> </trans-unit> <trans-unit id="af67e20e5e01d46ece2e0eb262b1b0bb9df679d4" resname="task::archive:archivage sur base/collection/" approved="yes"> <source>task::archive:archivage sur base/collection/</source> @@ -12738,8 +12445,8 @@ <trans-unit id="b8af196a1703cd1c3079eebef88a1b540ede06ea" resname="task::ftp:Status about your FTP transfert from %application% to %server%"> <source>task::ftp:Status about your FTP transfert from %application% to %server%</source> <target state="new">task::ftp:Status about your FTP transfert from %application% to %server%</target> - <jms:reference-file line="40">Notification/Mail/MailSuccessFTPReceiver.php</jms:reference-file> <jms:reference-file line="40">Notification/Mail/MailSuccessFTPSender.php</jms:reference-file> + <jms:reference-file line="40">Notification/Mail/MailSuccessFTPReceiver.php</jms:reference-file> </trans-unit> <trans-unit id="3442bca4992e5cd06a67f05beebf5721383d1653" resname="task::ftp:TENTATIVE no %number%, %date%"> <source>task::ftp:TENTATIVE no %number%, %date%</source> @@ -12784,8 +12491,8 @@ <trans-unit id="c8eadb101df19fb4960c791cf1afaa49d3516feb" resname="task::ftp:proxy"> <source>task::ftp:proxy</source> <target>task::ftp:proxy</target> - <jms:reference-file line="5">task-manager/task-editor/ftp-pull.html.twig</jms:reference-file> <jms:reference-file line="5">task-manager/task-editor/ftp.html.twig</jms:reference-file> + <jms:reference-file line="5">task-manager/task-editor/ftp-pull.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d50701eb37a2e5b7dfe3358ba91ff9a1cc6f10ef" resname="task::ftp:proxy password"> <source>task::ftp:proxy password</source> @@ -12795,8 +12502,8 @@ <trans-unit id="a7e5c84ff2404f76423afe64d0f5b8fbea07c024" resname="task::ftp:proxy port" approved="yes"> <source>task::ftp:proxy port</source> <target state="translated">task::ftp:proxy poort</target> - <jms:reference-file line="11">task-manager/task-editor/ftp-pull.html.twig</jms:reference-file> <jms:reference-file line="11">task-manager/task-editor/ftp.html.twig</jms:reference-file> + <jms:reference-file line="11">task-manager/task-editor/ftp-pull.html.twig</jms:reference-file> </trans-unit> <trans-unit id="17d927a070b462263321072111c64cc0505c9d14" resname="task::ftp:proxy user"> <source>task::ftp:proxy user</source> @@ -12891,8 +12598,8 @@ <trans-unit id="9d5da9a8f62b8053385235889e7d7994ebfc1559" resname="thesaurus:: Lier la branche de thesaurus" approved="yes"> <source>thesaurus:: Lier la branche de thesaurus</source> <target state="translated">Link de tak van de thesaurus</target> - <jms:reference-file line="5">web/thesaurus/link-field-step3.html.twig</jms:reference-file> <jms:reference-file line="5">web/thesaurus/link-field-step2.html.twig</jms:reference-file> + <jms:reference-file line="5">web/thesaurus/link-field-step3.html.twig</jms:reference-file> </trans-unit> <trans-unit id="416134a1966f12f8d23f9f54f3cc32ea43ef3e46" resname="thesaurus:: Lier la branche de thesaurus au champ" approved="yes"> <source>thesaurus:: Lier la branche de thesaurus au champ</source> @@ -12907,13 +12614,13 @@ <trans-unit id="227338ab622537da92490cedc6709de0b9122e56" resname="thesaurus:: Nouveau synonyme" approved="yes"> <source>thesaurus:: Nouveau synonyme</source> <target state="translated">Nieuw synoniem</target> + <jms:reference-file line="985">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="5">web/thesaurus/new-term.html.twig</jms:reference-file> - <jms:reference-file line="977">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="d6bec8860c3453260869cea4fb043fac543cf724" resname="thesaurus:: Nouveau terme" approved="yes"> <source>thesaurus:: Nouveau terme</source> <target state="translated">Nieuwe term</target> - <jms:reference-file line="977">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="985">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ef0a054e6da228e6ad009d469c4bdf31b1de7999" resname="thesaurus:: Nouveau terme specifique" approved="yes"> <source>thesaurus:: Nouveau terme specifique</source> @@ -12928,7 +12635,7 @@ <trans-unit id="33df70d7fa528a31071e11d1b987b49dc947ce16" resname="thesaurus:: Supprimer cette branche ?&#10;(les termes concernes remonteront en candidats a la prochaine indexation)" approved="yes"> <source><![CDATA[thesaurus:: Supprimer cette branche ? (les termes concernes remonteront en candidats a la prochaine indexation)]]></source> <target state="translated"><![CDATA[Verwijder deze tak ? (de betrokken termen worden opnieuw kandidaten bij de volgende indexering)]]></target> - <jms:reference-file line="474">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="482">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="660310a4372167fced06ac64d118d8019c456c02" resname="thesaurus:: Vous n'avez acces a aucune base" approved="yes"> <source>thesaurus:: Vous n'avez acces a aucune base</source> @@ -12984,14 +12691,14 @@ <trans-unit id="ac2f261b9d9226594280e898802a6fdac51360d3" resname="thesaurus:: corbeille" approved="yes"> <source>thesaurus:: corbeille</source> <target state="translated">Prullemand</target> - <jms:reference-file line="1667">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> - <jms:reference-file line="1813">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> - <jms:reference-file line="2906">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> + <jms:reference-file line="1677">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> + <jms:reference-file line="1823">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> + <jms:reference-file line="2916">Controller/Thesaurus/ThesaurusController.php</jms:reference-file> </trans-unit> <trans-unit id="69ec558773af262994d835080fd77f22b284b64f" resname="thesaurus:: deplacer le terme dans la corbeille ?" approved="yes"> <source>thesaurus:: deplacer le terme dans la corbeille ?</source> <target state="translated">De term in de prullemand plaatsen ?</target> - <jms:reference-file line="1037">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="1045">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="33c36f4c7ae4c9ec55d1e58c0939946c8d894958" resname="thesaurus:: enregistrement de la liste modifiee des mots candidats." approved="yes"> <source>thesaurus:: enregistrement de la liste modifiee des mots candidats.</source> @@ -13046,9 +12753,9 @@ <trans-unit id="5fbcdef1a0e5fb7cf0b19a61ff3a18ebe2a5bdbe" resname="thesaurus:: export au format texte" approved="yes"> <source>thesaurus:: export au format texte</source> <target state="translated">Export in text format</target> - <jms:reference-file line="5">web/thesaurus/export-text.html.twig</jms:reference-file> <jms:reference-file line="5">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> <jms:reference-file line="81">web/thesaurus/export-text-dialog.html.twig</jms:reference-file> + <jms:reference-file line="5">web/thesaurus/export-text.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c8ec3584a75e01816472150b1c24268c9612dd51" resname="thesaurus:: export en topics" approved="yes"> <source>thesaurus:: export en topics</source> @@ -13256,7 +12963,7 @@ <trans-unit id="1744e93c8cf4d32cb0c0418ae320f5d8438f6f76" resname="thesaurus:: synonyme" approved="yes"> <source>thesaurus:: synonyme</source> <target state="translated">Synoniem</target> - <jms:reference-file line="975">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="983">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="b6cbc7152d76db92327425399da711a905e1d7b6" resname="thesaurus:: synonymes" approved="yes"> <source>thesaurus:: synonymes</source> @@ -13266,7 +12973,7 @@ <trans-unit id="8658e2ff0b9ff5e3492109790a09066c1467804f" resname="thesaurus:: terme" approved="yes"> <source>thesaurus:: terme</source> <target state="translated">Term</target> - <jms:reference-file line="975">web/thesaurus/thesaurus.html.twig</jms:reference-file> + <jms:reference-file line="983">web/thesaurus/thesaurus.html.twig</jms:reference-file> </trans-unit> <trans-unit id="2369cc70d9c4cca830a6fdd9f652c1703a2a0d3b" resname="thesaurus:: tout deployer - refermable" approved="yes"> <source>thesaurus:: tout deployer - refermable</source> @@ -13346,19 +13053,8 @@ <trans-unit id="1118f7e206d8ec4d92392f3e8c2804b156b3a082" resname="thumbnail validation" approved="yes"> <source>thumbnail validation</source> <target state="translated">thumbnail goedkeuring</target> + <jms:reference-file line="180">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="247">actions/Tools/index.html.twig</jms:reference-file> - <jms:reference-file line="167">actions/Tools/videoEditor.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="4374aaee247fb237ce6c97d5c8d64bbe474d16de" resname="to"> - <source>to</source> - <target state="new">to</target> - <jms:reference-file line="15">web/report/report_layout_child.html.twig</jms:reference-file> - <jms:reference-file line="19">web/report/report_layout_child.html.twig</jms:reference-file> - </trans-unit> - <trans-unit id="14a21e497a8468e9df7f078d92c8c97420f0bf60" resname="tout decocher" approved="yes"> - <source>tout decocher</source> - <target state="translated">alles inschakelen</target> - <jms:reference-file line="11">web/report/listColumn.html.twig</jms:reference-file> </trans-unit> <trans-unit id="7e96ed809b61066d6ea96ba9afc8747a042b361a" resname="tout le monde" approved="yes"> <source>tout le monde</source> @@ -13373,7 +13069,7 @@ <trans-unit id="50d8b4a941c26b89482c94ab324b5a274f9ced66" resname="unknown"> <source>unknown</source> <target state="new">unknown</target> - <jms:reference-file line="34">task-manager/task-editor/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="37">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="9f273e321a1d1ea40251ab0a45f8ca8cbdd135da" resname="untitled"> <source>untitled</source> @@ -13390,17 +13086,23 @@ <target state="translated">Uw versie is up to date :</target> <jms:reference-file line="53">web/admin/databases.html.twig</jms:reference-file> </trans-unit> + <trans-unit id="cde2aa1e33b0a816e8539ae4669b9575a8c83762" resname="updated_on"> + <source>updated_on</source> + <target state="new">updated_on</target> + <jms:reference-file line="475">web/prod/index.html.twig</jms:reference-file> + </trans-unit> <trans-unit id="bc34ae0ecd7020a2f3f57afaf84d3fea6c3e9c0f" resname="upload:: Destination (collection) :" approved="yes"> <source>upload:: Destination (collection) :</source> <target state="translated">Bestemming</target> + <jms:reference-file line="60">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="55">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="57">prod/upload/upload.html.twig</jms:reference-file> </trans-unit> <trans-unit id="39e4890a2d75f483b1cb2131b2d19f8cf96a502b" resname="upload:: Status :" approved="yes"> <source>upload:: Status :</source> <target state="translated">Status</target> + <jms:reference-file line="80">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="75">prod/upload/upload-flash.html.twig</jms:reference-file> - <jms:reference-file line="77">prod/upload/upload.html.twig</jms:reference-file> + <jms:reference-file line="457">prod/upload/lazaret.html.twig</jms:reference-file> </trans-unit> <trans-unit id="4fea0574cc81b5fd40ab0537b0905cc4c3806039" resname="users rights have been reseted" approved="yes"> <source>users rights have been reseted</source> @@ -13410,23 +13112,23 @@ <trans-unit id="e204d28a2874f6123747650d3e4003d4357d75eb" resname="validate" approved="yes"> <source>validate</source> <target state="translated">OK</target> + <jms:reference-file line="143">actions/Tools/videoEditor.html.twig</jms:reference-file> <jms:reference-file line="88">actions/Tools/index.html.twig</jms:reference-file> <jms:reference-file line="116">actions/Tools/index.html.twig</jms:reference-file> <jms:reference-file line="156">actions/Tools/index.html.twig</jms:reference-file> <jms:reference-file line="182">actions/Tools/index.html.twig</jms:reference-file> - <jms:reference-file line="130">actions/Tools/videoEditor.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c02a2db6d6cdf30d37962e221624cc7661f4b892" resname="validation:: NON" approved="yes"> <source>validation:: NON</source> <target state="translated">NEE</target> - <jms:reference-file line="45">web/lightbox/agreement_box.html.twig</jms:reference-file> <jms:reference-file line="75">mobile/lightbox/basket_element.html.twig</jms:reference-file> + <jms:reference-file line="45">web/lightbox/agreement_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="07a1dc6df9fd47db2dc80e671f68bbd2525a789b" resname="validation:: OUI" approved="yes"> <source>validation:: OUI</source> <target state="translated">JA</target> - <jms:reference-file line="40">web/lightbox/agreement_box.html.twig</jms:reference-file> <jms:reference-file line="72">mobile/lightbox/basket_element.html.twig</jms:reference-file> + <jms:reference-file line="40">web/lightbox/agreement_box.html.twig</jms:reference-file> </trans-unit> <trans-unit id="724c4836afe058eefd1dbc9c19d0f813f9ad0d31" resname="validation:: editer ma note" approved="yes"> <source>validation:: editer ma note</source> @@ -13446,10 +13148,10 @@ <trans-unit id="276c62d9460692fb7b96721bea12a028339dd99c" resname="validation::envoyer mon rapport" approved="yes"> <source>validation::envoyer mon rapport</source> <target state="translated">stuur mijn rapport</target> - <jms:reference-file line="2">web/lightbox/basket_options.html.twig</jms:reference-file> - <jms:reference-file line="4">web/lightbox/basket_options.html.twig</jms:reference-file> <jms:reference-file line="58">mobile/lightbox/validate.html.twig</jms:reference-file> <jms:reference-file line="59">mobile/lightbox/validate.html.twig</jms:reference-file> + <jms:reference-file line="2">web/lightbox/basket_options.html.twig</jms:reference-file> + <jms:reference-file line="4">web/lightbox/basket_options.html.twig</jms:reference-file> </trans-unit> <trans-unit id="c692273deb2772da307ffe37041fef77bf4baa97" resname="version" approved="yes"> <source>version</source> @@ -13459,13 +13161,13 @@ <trans-unit id="8cef9b3ae10c5c43c4b77c568586122212a052e3" resname="veuillez choisir au minimum une collection" approved="yes"> <source>veuillez choisir au minimum une collection</source> <target state="translated">wilt u minimum één collectie kiezen</target> - <jms:reference-file line="23">web/report/all_content.html.twig</jms:reference-file> + <jms:reference-file line="22">web/report/all_content.html.twig</jms:reference-file> </trans-unit> <trans-unit id="ffbaf58f1231628f9ac2a583f038b51719006ec6" resname="video"> <source>video</source> <target state="new">video</target> - <jms:reference-file line="22">task-manager/task-editor/subdefs.html.twig</jms:reference-file> <jms:reference-file line="370">web/admin/subdefs.html.twig</jms:reference-file> + <jms:reference-file line="25">task-manager/task-editor/subdefs.html.twig</jms:reference-file> </trans-unit> <trans-unit id="51ca3cfa60e4d9ce2c7cd07b0b96fc84c4adb59f" resname="video range extractor"> <source>video range extractor</source> @@ -13480,9 +13182,9 @@ <trans-unit id="fb360f9c09ac8c5edb2f18be5de4e80ea4c430d0" resname="yes" approved="yes"> <source>yes</source> <target state="translated">Ja</target> + <jms:reference-file line="76">web/account/sessions.html.twig</jms:reference-file> <jms:reference-file line="580">web/admin/subdefs.html.twig</jms:reference-file> <jms:reference-file line="89">web/common/technical_datas.html.twig</jms:reference-file> - <jms:reference-file line="76">web/account/sessions.html.twig</jms:reference-file> </trans-unit> <trans-unit id="646b0ebbe9829e44e9e99e9ab991a526f758001d" resname="you are about to change the representation thumbnail of your video" approved="yes"> <source>you are about to change the representation thumbnail of your video</source> diff --git a/resources/locales/validators.de.xlf b/resources/locales/validators.de.xlf index 678a9f7424..1e99babf4b 100644 --- a/resources/locales/validators.de.xlf +++ b/resources/locales/validators.de.xlf @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2"> - <file date="2018-09-17T13:13:43Z" source-language="en" target-language="de" datatype="plaintext" original="not.available"> + <file date="2019-11-15T08:02:31Z" source-language="en" target-language="de" datatype="plaintext" original="not.available"> <header> <tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/> <note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note> @@ -10,8 +10,8 @@ <source>Please provide the same passwords.</source> <target state="translated">Bitte geben Sie diesselbe Passwörter ein.</target> <jms:reference-file line="36">Form/Login/PhraseaRenewPasswordForm.php</jms:reference-file> - <jms:reference-file line="49">Form/Login/PhraseaRegisterForm.php</jms:reference-file> <jms:reference-file line="44">Form/Login/PhraseaRecoverPasswordForm.php</jms:reference-file> + <jms:reference-file line="49">Form/Login/PhraseaRegisterForm.php</jms:reference-file> </trans-unit> <trans-unit id="90b8c9717bb7ed061dbf20fe1986c8b8593d43d4" resname="The token provided is not valid anymore" approved="yes"> <source>The token provided is not valid anymore</source> diff --git a/resources/locales/validators.en.xlf b/resources/locales/validators.en.xlf index 31f9b28e8e..753b0bd9e2 100644 --- a/resources/locales/validators.en.xlf +++ b/resources/locales/validators.en.xlf @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2"> - <file date="2018-09-17T13:15:26Z" source-language="en" target-language="en" datatype="plaintext" original="not.available"> + <file date="2019-11-15T08:02:57Z" source-language="en" target-language="en" datatype="plaintext" original="not.available"> <header> <tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/> <note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note> @@ -10,8 +10,8 @@ <source>Please provide the same passwords.</source> <target state="translated">Please provide the same passwords.</target> <jms:reference-file line="36">Form/Login/PhraseaRenewPasswordForm.php</jms:reference-file> - <jms:reference-file line="49">Form/Login/PhraseaRegisterForm.php</jms:reference-file> <jms:reference-file line="44">Form/Login/PhraseaRecoverPasswordForm.php</jms:reference-file> + <jms:reference-file line="49">Form/Login/PhraseaRegisterForm.php</jms:reference-file> </trans-unit> <trans-unit id="90b8c9717bb7ed061dbf20fe1986c8b8593d43d4" resname="The token provided is not valid anymore" approved="yes"> <source>The token provided is not valid anymore</source> diff --git a/resources/locales/validators.fr.xlf b/resources/locales/validators.fr.xlf index 89d4f5f5a6..529fdd3ab9 100644 --- a/resources/locales/validators.fr.xlf +++ b/resources/locales/validators.fr.xlf @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2"> - <file date="2018-09-17T13:17:02Z" source-language="en" target-language="fr" datatype="plaintext" original="not.available"> + <file date="2019-11-15T08:03:23Z" source-language="en" target-language="fr" datatype="plaintext" original="not.available"> <header> <tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/> <note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note> @@ -10,8 +10,8 @@ <source>Please provide the same passwords.</source> <target state="translated">Veuillez indiquer des mots de passe identiques.</target> <jms:reference-file line="36">Form/Login/PhraseaRenewPasswordForm.php</jms:reference-file> - <jms:reference-file line="49">Form/Login/PhraseaRegisterForm.php</jms:reference-file> <jms:reference-file line="44">Form/Login/PhraseaRecoverPasswordForm.php</jms:reference-file> + <jms:reference-file line="49">Form/Login/PhraseaRegisterForm.php</jms:reference-file> </trans-unit> <trans-unit id="90b8c9717bb7ed061dbf20fe1986c8b8593d43d4" resname="The token provided is not valid anymore" approved="yes"> <source>The token provided is not valid anymore</source> diff --git a/resources/locales/validators.nl.xlf b/resources/locales/validators.nl.xlf index 8ccc08e7d5..af3a53e211 100644 --- a/resources/locales/validators.nl.xlf +++ b/resources/locales/validators.nl.xlf @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2"> - <file date="2018-09-17T13:18:41Z" source-language="en" target-language="nl" datatype="plaintext" original="not.available"> + <file date="2019-11-15T08:03:50Z" source-language="en" target-language="nl" datatype="plaintext" original="not.available"> <header> <tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/> <note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note> @@ -10,8 +10,8 @@ <source>Please provide the same passwords.</source> <target state="new">Please provide the same passwords.</target> <jms:reference-file line="36">Form/Login/PhraseaRenewPasswordForm.php</jms:reference-file> - <jms:reference-file line="49">Form/Login/PhraseaRegisterForm.php</jms:reference-file> <jms:reference-file line="44">Form/Login/PhraseaRecoverPasswordForm.php</jms:reference-file> + <jms:reference-file line="49">Form/Login/PhraseaRegisterForm.php</jms:reference-file> </trans-unit> <trans-unit id="90b8c9717bb7ed061dbf20fe1986c8b8593d43d4" resname="The token provided is not valid anymore"> <source>The token provided is not valid anymore</source> diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesAggregateToken.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesAggregateToken.php new file mode 100644 index 0000000000..f2fba09691 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesAggregateToken.php @@ -0,0 +1,235 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class AggregateToken extends \Alchemy\Phrasea\Model\Entities\AggregateToken implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AggregateToken' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AggregateToken' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AggregateToken' . "\0" . 'value']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AggregateToken' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AggregateToken' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AggregateToken' . "\0" . 'value']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (AggregateToken $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setUser(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]); + + return parent::setUser($user); + } + + /** + * {@inheritDoc} + */ + public function getUser() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []); + + return parent::getUser(); + } + + /** + * {@inheritDoc} + */ + public function setValue($value) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setValue', [$value]); + + return parent::setValue($value); + } + + /** + * {@inheritDoc} + */ + public function getValue() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getValue', []); + + return parent::getValue(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesApiAccount.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesApiAccount.php new file mode 100644 index 0000000000..f5a1c4c5b9 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesApiAccount.php @@ -0,0 +1,312 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class ApiAccount extends \Alchemy\Phrasea\Model\Entities\ApiAccount implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiAccount' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiAccount' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiAccount' . "\0" . 'revoked', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiAccount' . "\0" . 'apiVersion', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiAccount' . "\0" . 'application', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiAccount' . "\0" . 'tokens', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiAccount' . "\0" . 'created']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiAccount' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiAccount' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiAccount' . "\0" . 'revoked', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiAccount' . "\0" . 'apiVersion', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiAccount' . "\0" . 'application', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiAccount' . "\0" . 'tokens', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiAccount' . "\0" . 'created']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (ApiAccount $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function setApiVersion($apiVersion) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setApiVersion', [$apiVersion]); + + return parent::setApiVersion($apiVersion); + } + + /** + * {@inheritDoc} + */ + public function getApiVersion() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getApiVersion', []); + + return parent::getApiVersion(); + } + + /** + * {@inheritDoc} + */ + public function setApplication(\Alchemy\Phrasea\Model\Entities\ApiApplication $application) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setApplication', [$application]); + + return parent::setApplication($application); + } + + /** + * {@inheritDoc} + */ + public function getApplication() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getApplication', []); + + return parent::getApplication(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setRevoked($revoked) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRevoked', [$revoked]); + + return parent::setRevoked($revoked); + } + + /** + * {@inheritDoc} + */ + public function isRevoked() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isRevoked', []); + + return parent::isRevoked(); + } + + /** + * {@inheritDoc} + */ + public function setUser(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]); + + return parent::setUser($user); + } + + /** + * {@inheritDoc} + */ + public function getUser() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []); + + return parent::getUser(); + } + + /** + * {@inheritDoc} + */ + public function addTokens(\Alchemy\Phrasea\Model\Entities\ApiOauthToken $token) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addTokens', [$token]); + + return parent::addTokens($token); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesApiApplication.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesApiApplication.php new file mode 100644 index 0000000000..fd9cba3cc3 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesApiApplication.php @@ -0,0 +1,510 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class ApiApplication extends \Alchemy\Phrasea\Model\Entities\ApiApplication implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'creator', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'type', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'description', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'website', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'clientId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'clientSecret', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'nonce', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'redirectUri', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'activated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'grantPassword', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'accounts', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'webhookUrl']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'creator', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'type', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'description', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'website', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'clientId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'clientSecret', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'nonce', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'redirectUri', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'activated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'grantPassword', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'accounts', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiApplication' . "\0" . 'webhookUrl']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (ApiApplication $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function setActivated($activated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setActivated', [$activated]); + + return parent::setActivated($activated); + } + + /** + * {@inheritDoc} + */ + public function isActivated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isActivated', []); + + return parent::isActivated(); + } + + /** + * {@inheritDoc} + */ + public function setClientId($clientId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setClientId', [$clientId]); + + return parent::setClientId($clientId); + } + + /** + * {@inheritDoc} + */ + public function getClientId() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getClientId', []); + + return parent::getClientId(); + } + + /** + * {@inheritDoc} + */ + public function setClientSecret($clientSecret) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setClientSecret', [$clientSecret]); + + return parent::setClientSecret($clientSecret); + } + + /** + * {@inheritDoc} + */ + public function getClientSecret() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getClientSecret', []); + + return parent::getClientSecret(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setCreator(\Alchemy\Phrasea\Model\Entities\User $creator = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreator', [$creator]); + + return parent::setCreator($creator); + } + + /** + * {@inheritDoc} + */ + public function getCreator() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreator', []); + + return parent::getCreator(); + } + + /** + * {@inheritDoc} + */ + public function setDescription($description) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setDescription', [$description]); + + return parent::setDescription($description); + } + + /** + * {@inheritDoc} + */ + public function getDescription() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getDescription', []); + + return parent::getDescription(); + } + + /** + * {@inheritDoc} + */ + public function setGrantPassword($grantPassword) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setGrantPassword', [$grantPassword]); + + return parent::setGrantPassword($grantPassword); + } + + /** + * {@inheritDoc} + */ + public function isPasswordGranted() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isPasswordGranted', []); + + return parent::isPasswordGranted(); + } + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setName($name) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$name]); + + return parent::setName($name); + } + + /** + * {@inheritDoc} + */ + public function getName() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []); + + return parent::getName(); + } + + /** + * {@inheritDoc} + */ + public function setNonce($nonce) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setNonce', [$nonce]); + + return parent::setNonce($nonce); + } + + /** + * {@inheritDoc} + */ + public function getNonce() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getNonce', []); + + return parent::getNonce(); + } + + /** + * {@inheritDoc} + */ + public function setRedirectUri($redirectUri) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRedirectUri', [$redirectUri]); + + return parent::setRedirectUri($redirectUri); + } + + /** + * {@inheritDoc} + */ + public function getRedirectUri() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRedirectUri', []); + + return parent::getRedirectUri(); + } + + /** + * {@inheritDoc} + */ + public function setType($type) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setType', [$type]); + + return parent::setType($type); + } + + /** + * {@inheritDoc} + */ + public function getType() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getType', []); + + return parent::getType(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function setWebsite($website) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setWebsite', [$website]); + + return parent::setWebsite($website); + } + + /** + * {@inheritDoc} + */ + public function getWebsite() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getWebsite', []); + + return parent::getWebsite(); + } + + /** + * {@inheritDoc} + */ + public function setWebhookUrl($webhookUrl) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setWebhookUrl', [$webhookUrl]); + + return parent::setWebhookUrl($webhookUrl); + } + + /** + * {@inheritDoc} + */ + public function getWebhookUrl() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getWebhookUrl', []); + + return parent::getWebhookUrl(); + } + + /** + * {@inheritDoc} + */ + public function addAccount(\Alchemy\Phrasea\Model\Entities\ApiAccount $account) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addAccount', [$account]); + + return parent::addAccount($account); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesApiLog.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesApiLog.php new file mode 100644 index 0000000000..327edb3e7d --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesApiLog.php @@ -0,0 +1,455 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class ApiLog extends \Alchemy\Phrasea\Model\Entities\ApiLog implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'account', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'route', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'method', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'statusCode', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'format', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'resource', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'general', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'aspect', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'action', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'errorCode', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'errorMessage']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'account', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'route', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'method', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'statusCode', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'format', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'resource', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'general', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'aspect', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'action', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'errorCode', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiLog' . "\0" . 'errorMessage']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (ApiLog $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function setAccount(\Alchemy\Phrasea\Model\Entities\ApiAccount $account) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setAccount', [$account]); + + return parent::setAccount($account); + } + + /** + * {@inheritDoc} + */ + public function getAccount() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAccount', []); + + return parent::getAccount(); + } + + /** + * {@inheritDoc} + */ + public function setAction($action) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setAction', [$action]); + + return parent::setAction($action); + } + + /** + * {@inheritDoc} + */ + public function getAction() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAction', []); + + return parent::getAction(); + } + + /** + * {@inheritDoc} + */ + public function setAspect($aspect) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setAspect', [$aspect]); + + return parent::setAspect($aspect); + } + + /** + * {@inheritDoc} + */ + public function getAspect() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAspect', []); + + return parent::getAspect(); + } + + /** + * {@inheritDoc} + */ + public function setErrorCode($errorCode) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setErrorCode', [$errorCode]); + + return parent::setErrorCode($errorCode); + } + + /** + * {@inheritDoc} + */ + public function getErrorCode() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getErrorCode', []); + + return parent::getErrorCode(); + } + + /** + * {@inheritDoc} + */ + public function setErrorMessage($errorMessage) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setErrorMessage', [$errorMessage]); + + return parent::setErrorMessage($errorMessage); + } + + /** + * {@inheritDoc} + */ + public function getErrorMessage() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getErrorMessage', []); + + return parent::getErrorMessage(); + } + + /** + * {@inheritDoc} + */ + public function setFormat($format) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFormat', [$format]); + + return parent::setFormat($format); + } + + /** + * {@inheritDoc} + */ + public function getFormat() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFormat', []); + + return parent::getFormat(); + } + + /** + * {@inheritDoc} + */ + public function setGeneral($general) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setGeneral', [$general]); + + return parent::setGeneral($general); + } + + /** + * {@inheritDoc} + */ + public function getGeneral() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getGeneral', []); + + return parent::getGeneral(); + } + + /** + * {@inheritDoc} + */ + public function setResource($resource) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setResource', [$resource]); + + return parent::setResource($resource); + } + + /** + * {@inheritDoc} + */ + public function getResource() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getResource', []); + + return parent::getResource(); + } + + /** + * {@inheritDoc} + */ + public function setRoute($route) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRoute', [$route]); + + return parent::setRoute($route); + } + + /** + * {@inheritDoc} + */ + public function getRoute() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRoute', []); + + return parent::getRoute(); + } + + /** + * {@inheritDoc} + */ + public function setStatusCode($statusCode) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setStatusCode', [$statusCode]); + + return parent::setStatusCode($statusCode); + } + + /** + * {@inheritDoc} + */ + public function getStatusCode() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getStatusCode', []); + + return parent::getStatusCode(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setMethod($method) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setMethod', [$method]); + + return parent::setMethod($method); + } + + /** + * {@inheritDoc} + */ + public function getMethod() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getMethod', []); + + return parent::getMethod(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesApiOauthCode.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesApiOauthCode.php new file mode 100644 index 0000000000..74b09734af --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesApiOauthCode.php @@ -0,0 +1,334 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class ApiOauthCode extends \Alchemy\Phrasea\Model\Entities\ApiOauthCode implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthCode' . "\0" . 'code', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthCode' . "\0" . 'account', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthCode' . "\0" . 'redirectUri', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthCode' . "\0" . 'expires', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthCode' . "\0" . 'scope', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthCode' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthCode' . "\0" . 'updated']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthCode' . "\0" . 'code', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthCode' . "\0" . 'account', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthCode' . "\0" . 'redirectUri', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthCode' . "\0" . 'expires', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthCode' . "\0" . 'scope', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthCode' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthCode' . "\0" . 'updated']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (ApiOauthCode $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function setAccount(\Alchemy\Phrasea\Model\Entities\ApiAccount $account) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setAccount', [$account]); + + return parent::setAccount($account); + } + + /** + * {@inheritDoc} + */ + public function getAccount() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAccount', []); + + return parent::getAccount(); + } + + /** + * {@inheritDoc} + */ + public function setCode($code) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCode', [$code]); + + return parent::setCode($code); + } + + /** + * {@inheritDoc} + */ + public function getCode() + { + if ($this->__isInitialized__ === false) { + return parent::getCode(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCode', []); + + return parent::getCode(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setExpires($timestamp) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setExpires', [$timestamp]); + + return parent::setExpires($timestamp); + } + + /** + * {@inheritDoc} + */ + public function getExpires() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getExpires', []); + + return parent::getExpires(); + } + + /** + * {@inheritDoc} + */ + public function setRedirectUri($redirectUri) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRedirectUri', [$redirectUri]); + + return parent::setRedirectUri($redirectUri); + } + + /** + * {@inheritDoc} + */ + public function getRedirectUri() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRedirectUri', []); + + return parent::getRedirectUri(); + } + + /** + * {@inheritDoc} + */ + public function setScope($scope) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setScope', [$scope]); + + return parent::setScope($scope); + } + + /** + * {@inheritDoc} + */ + public function getScope() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getScope', []); + + return parent::getScope(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesApiOauthRefreshToken.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesApiOauthRefreshToken.php new file mode 100644 index 0000000000..98f60ef277 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesApiOauthRefreshToken.php @@ -0,0 +1,312 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class ApiOauthRefreshToken extends \Alchemy\Phrasea\Model\Entities\ApiOauthRefreshToken implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthRefreshToken' . "\0" . 'refreshToken', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthRefreshToken' . "\0" . 'account', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthRefreshToken' . "\0" . 'expires', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthRefreshToken' . "\0" . 'scope', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthRefreshToken' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthRefreshToken' . "\0" . 'updated']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthRefreshToken' . "\0" . 'refreshToken', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthRefreshToken' . "\0" . 'account', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthRefreshToken' . "\0" . 'expires', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthRefreshToken' . "\0" . 'scope', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthRefreshToken' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthRefreshToken' . "\0" . 'updated']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (ApiOauthRefreshToken $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function setAccount(\Alchemy\Phrasea\Model\Entities\ApiAccount $account) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setAccount', [$account]); + + return parent::setAccount($account); + } + + /** + * {@inheritDoc} + */ + public function getAccount() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAccount', []); + + return parent::getAccount(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setExpires($expires) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setExpires', [$expires]); + + return parent::setExpires($expires); + } + + /** + * {@inheritDoc} + */ + public function getExpires() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getExpires', []); + + return parent::getExpires(); + } + + /** + * {@inheritDoc} + */ + public function setRefreshToken($refreshToken) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRefreshToken', [$refreshToken]); + + return parent::setRefreshToken($refreshToken); + } + + /** + * {@inheritDoc} + */ + public function getRefreshToken() + { + if ($this->__isInitialized__ === false) { + return parent::getRefreshToken(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRefreshToken', []); + + return parent::getRefreshToken(); + } + + /** + * {@inheritDoc} + */ + public function setScope($scope) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setScope', [$scope]); + + return parent::setScope($scope); + } + + /** + * {@inheritDoc} + */ + public function getScope() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getScope', []); + + return parent::getScope(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesApiOauthToken.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesApiOauthToken.php new file mode 100644 index 0000000000..7ae62f9184 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesApiOauthToken.php @@ -0,0 +1,356 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class ApiOauthToken extends \Alchemy\Phrasea\Model\Entities\ApiOauthToken implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthToken' . "\0" . 'oauthToken', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthToken' . "\0" . 'sessionId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthToken' . "\0" . 'account', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthToken' . "\0" . 'expires', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthToken' . "\0" . 'lastUsed', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthToken' . "\0" . 'scope', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthToken' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthToken' . "\0" . 'updated']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthToken' . "\0" . 'oauthToken', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthToken' . "\0" . 'sessionId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthToken' . "\0" . 'account', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthToken' . "\0" . 'expires', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthToken' . "\0" . 'lastUsed', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthToken' . "\0" . 'scope', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthToken' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ApiOauthToken' . "\0" . 'updated']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (ApiOauthToken $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function setAccount(\Alchemy\Phrasea\Model\Entities\ApiAccount $account) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setAccount', [$account]); + + return parent::setAccount($account); + } + + /** + * {@inheritDoc} + */ + public function getAccount() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAccount', []); + + return parent::getAccount(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setExpires($expires = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setExpires', [$expires]); + + return parent::setExpires($expires); + } + + /** + * {@inheritDoc} + */ + public function getExpires() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getExpires', []); + + return parent::getExpires(); + } + + /** + * {@inheritDoc} + */ + public function setOauthToken($oauthToken) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setOauthToken', [$oauthToken]); + + return parent::setOauthToken($oauthToken); + } + + /** + * {@inheritDoc} + */ + public function getOauthToken() + { + if ($this->__isInitialized__ === false) { + return parent::getOauthToken(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOauthToken', []); + + return parent::getOauthToken(); + } + + /** + * {@inheritDoc} + */ + public function setScope($scope) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setScope', [$scope]); + + return parent::setScope($scope); + } + + /** + * {@inheritDoc} + */ + public function getScope() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getScope', []); + + return parent::getScope(); + } + + /** + * {@inheritDoc} + */ + public function setSessionId($sessionId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSessionId', [$sessionId]); + + return parent::setSessionId($sessionId); + } + + /** + * {@inheritDoc} + */ + public function getSessionId() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSessionId', []); + + return parent::getSessionId(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function setLastUsed(\DateTime $lastUsed) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLastUsed', [$lastUsed]); + + return parent::setLastUsed($lastUsed); + } + + /** + * {@inheritDoc} + */ + public function getLastUsed() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLastUsed', []); + + return parent::getLastUsed(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesAuthFailure.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesAuthFailure.php new file mode 100644 index 0000000000..67ad235a87 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesAuthFailure.php @@ -0,0 +1,279 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class AuthFailure extends \Alchemy\Phrasea\Model\Entities\AuthFailure implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AuthFailure' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AuthFailure' . "\0" . 'username', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AuthFailure' . "\0" . 'ip', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AuthFailure' . "\0" . 'locked', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AuthFailure' . "\0" . 'created']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AuthFailure' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AuthFailure' . "\0" . 'username', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AuthFailure' . "\0" . 'ip', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AuthFailure' . "\0" . 'locked', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AuthFailure' . "\0" . 'created']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (AuthFailure $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setUsername($username) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUsername', [$username]); + + return parent::setUsername($username); + } + + /** + * {@inheritDoc} + */ + public function getUsername() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUsername', []); + + return parent::getUsername(); + } + + /** + * {@inheritDoc} + */ + public function setIp($ip) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setIp', [$ip]); + + return parent::setIp($ip); + } + + /** + * {@inheritDoc} + */ + public function getIp() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getIp', []); + + return parent::getIp(); + } + + /** + * {@inheritDoc} + */ + public function setLocked($locked) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLocked', [$locked]); + + return parent::setLocked($locked); + } + + /** + * {@inheritDoc} + */ + public function getLocked() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLocked', []); + + return parent::getLocked(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesBasket.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesBasket.php new file mode 100644 index 0000000000..aedc9247ff --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesBasket.php @@ -0,0 +1,488 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class Basket extends \Alchemy\Phrasea\Model\Entities\Basket implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'description', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'isRead', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'pusher', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'archived', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'validation', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'elements', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'order']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'description', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'isRead', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'pusher', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'archived', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'validation', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'elements', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'order']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (Basket $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setName($name) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$name]); + + return parent::setName($name); + } + + /** + * {@inheritDoc} + */ + public function getName() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []); + + return parent::getName(); + } + + /** + * {@inheritDoc} + */ + public function setDescription($description) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setDescription', [$description]); + + return parent::setDescription($description); + } + + /** + * {@inheritDoc} + */ + public function getDescription() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getDescription', []); + + return parent::getDescription(); + } + + /** + * {@inheritDoc} + */ + public function setUser(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]); + + return parent::setUser($user); + } + + /** + * {@inheritDoc} + */ + public function getUser() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []); + + return parent::getUser(); + } + + /** + * {@inheritDoc} + */ + public function markRead() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'markRead', []); + + return parent::markRead(); + } + + /** + * {@inheritDoc} + */ + public function markUnread() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'markUnread', []); + + return parent::markUnread(); + } + + /** + * {@inheritDoc} + */ + public function isRead() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isRead', []); + + return parent::isRead(); + } + + /** + * {@inheritDoc} + */ + public function setPusher(\Alchemy\Phrasea\Model\Entities\User $user = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPusher', [$user]); + + return parent::setPusher($user); + } + + /** + * {@inheritDoc} + */ + public function getPusher() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPusher', []); + + return parent::getPusher(); + } + + /** + * {@inheritDoc} + */ + public function setArchived($archived) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setArchived', [$archived]); + + return parent::setArchived($archived); + } + + /** + * {@inheritDoc} + */ + public function getArchived() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getArchived', []); + + return parent::getArchived(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function setValidation(\Alchemy\Phrasea\Model\Entities\ValidationSession $validation = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setValidation', [$validation]); + + return parent::setValidation($validation); + } + + /** + * {@inheritDoc} + */ + public function getValidation() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getValidation', []); + + return parent::getValidation(); + } + + /** + * {@inheritDoc} + */ + public function addElement(\Alchemy\Phrasea\Model\Entities\BasketElement $element) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addElement', [$element]); + + return parent::addElement($element); + } + + /** + * {@inheritDoc} + */ + public function removeElement(\Alchemy\Phrasea\Model\Entities\BasketElement $element) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeElement', [$element]); + + return parent::removeElement($element); + } + + /** + * {@inheritDoc} + */ + public function setOrder(\Alchemy\Phrasea\Model\Entities\Order $order = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setOrder', [$order]); + + return parent::setOrder($order); + } + + /** + * {@inheritDoc} + */ + public function getOrder() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOrder', []); + + return parent::getOrder(); + } + + /** + * {@inheritDoc} + */ + public function getElements() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getElements', []); + + return parent::getElements(); + } + + /** + * {@inheritDoc} + */ + public function getElementsByOrder($order) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getElementsByOrder', [$order]); + + return parent::getElementsByOrder($order); + } + + /** + * {@inheritDoc} + */ + public function hasRecord(\Alchemy\Phrasea\Application $app, \record_adapter $record) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'hasRecord', [$app, $record]); + + return parent::hasRecord($app, $record); + } + + /** + * {@inheritDoc} + */ + public function getSize(\Alchemy\Phrasea\Application $app) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSize', [$app]); + + return parent::getSize($app); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesBasketElement.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesBasketElement.php new file mode 100644 index 0000000000..724d8a5c47 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesBasketElement.php @@ -0,0 +1,389 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class BasketElement extends \Alchemy\Phrasea\Model\Entities\BasketElement implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'record_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'sbas_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'ord', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'validation_datas', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'basket']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'record_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'sbas_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'ord', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'validation_datas', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'basket']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (BasketElement $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setRecordId($recordId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRecordId', [$recordId]); + + return parent::setRecordId($recordId); + } + + /** + * {@inheritDoc} + */ + public function getRecordId() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRecordId', []); + + return parent::getRecordId(); + } + + /** + * {@inheritDoc} + */ + public function setSbasId($sbasId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSbasId', [$sbasId]); + + return parent::setSbasId($sbasId); + } + + /** + * {@inheritDoc} + */ + public function getSbasId() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSbasId', []); + + return parent::getSbasId(); + } + + /** + * {@inheritDoc} + */ + public function getRecord(\Alchemy\Phrasea\Application $app) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRecord', [$app]); + + return parent::getRecord($app); + } + + /** + * {@inheritDoc} + */ + public function setRecord(\record_adapter $record) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRecord', [$record]); + + return parent::setRecord($record); + } + + /** + * {@inheritDoc} + */ + public function setOrd($ord) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setOrd', [$ord]); + + return parent::setOrd($ord); + } + + /** + * {@inheritDoc} + */ + public function getOrd() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOrd', []); + + return parent::getOrd(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function addValidationData(\Alchemy\Phrasea\Model\Entities\ValidationData $validationDatas) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addValidationData', [$validationDatas]); + + return parent::addValidationData($validationDatas); + } + + /** + * {@inheritDoc} + */ + public function removeValidationData(\Alchemy\Phrasea\Model\Entities\ValidationData $validationDatas) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeValidationData', [$validationDatas]); + + return parent::removeValidationData($validationDatas); + } + + /** + * {@inheritDoc} + */ + public function getValidationDatas() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getValidationDatas', []); + + return parent::getValidationDatas(); + } + + /** + * {@inheritDoc} + */ + public function setBasket(\Alchemy\Phrasea\Model\Entities\Basket $basket = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBasket', [$basket]); + + return parent::setBasket($basket); + } + + /** + * {@inheritDoc} + */ + public function getBasket() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBasket', []); + + return parent::getBasket(); + } + + /** + * {@inheritDoc} + */ + public function getUserValidationDatas(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUserValidationDatas', [$user]); + + return parent::getUserValidationDatas($user); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFeed.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFeed.php new file mode 100644 index 0000000000..b8addb8e6b --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFeed.php @@ -0,0 +1,587 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class Feed extends \Alchemy\Phrasea\Model\Entities\Feed implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'public', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'iconUrl', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'baseId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'title', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'subtitle', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'createdOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'updatedOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'publishers', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'entries', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'tokens']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'public', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'iconUrl', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'baseId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'title', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'subtitle', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'createdOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'updatedOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'publishers', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'entries', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'tokens']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (Feed $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setIsPublic($public) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setIsPublic', [$public]); + + return parent::setIsPublic($public); + } + + /** + * {@inheritDoc} + */ + public function isPublic() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isPublic', []); + + return parent::isPublic(); + } + + /** + * {@inheritDoc} + */ + public function setIconUrl($iconUrl) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setIconUrl', [$iconUrl]); + + return parent::setIconUrl($iconUrl); + } + + /** + * {@inheritDoc} + */ + public function getIconUrl() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getIconUrl', []); + + return parent::getIconUrl(); + } + + /** + * {@inheritDoc} + */ + public function setBaseId($baseId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBaseId', [$baseId]); + + return parent::setBaseId($baseId); + } + + /** + * {@inheritDoc} + */ + public function getBaseId() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBaseId', []); + + return parent::getBaseId(); + } + + /** + * {@inheritDoc} + */ + public function setTitle($title) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setTitle', [$title]); + + return parent::setTitle($title); + } + + /** + * {@inheritDoc} + */ + public function getTitle() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTitle', []); + + return parent::getTitle(); + } + + /** + * {@inheritDoc} + */ + public function addPublisher(\Alchemy\Phrasea\Model\Entities\FeedPublisher $publishers) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addPublisher', [$publishers]); + + return parent::addPublisher($publishers); + } + + /** + * {@inheritDoc} + */ + public function removePublisher(\Alchemy\Phrasea\Model\Entities\FeedPublisher $publishers) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'removePublisher', [$publishers]); + + return parent::removePublisher($publishers); + } + + /** + * {@inheritDoc} + */ + public function getPublishers() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPublishers', []); + + return parent::getPublishers(); + } + + /** + * {@inheritDoc} + */ + public function addEntry(\Alchemy\Phrasea\Model\Entities\FeedEntry $entries) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addEntry', [$entries]); + + return parent::addEntry($entries); + } + + /** + * {@inheritDoc} + */ + public function removeEntry(\Alchemy\Phrasea\Model\Entities\FeedEntry $entries) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeEntry', [$entries]); + + return parent::removeEntry($entries); + } + + /** + * {@inheritDoc} + */ + public function getEntries() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getEntries', []); + + return parent::getEntries(); + } + + /** + * {@inheritDoc} + */ + public function getOwner() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOwner', []); + + return parent::getOwner(); + } + + /** + * {@inheritDoc} + */ + public function isOwner(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isOwner', [$user]); + + return parent::isOwner($user); + } + + /** + * {@inheritDoc} + */ + public function getCollection(\Alchemy\Phrasea\Application $app) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCollection', [$app]); + + return parent::getCollection($app); + } + + /** + * {@inheritDoc} + */ + public function setCollection(\collection $collection = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCollection', [$collection]); + + return parent::setCollection($collection); + } + + /** + * {@inheritDoc} + */ + public function setCreatedOn($createdOn) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreatedOn', [$createdOn]); + + return parent::setCreatedOn($createdOn); + } + + /** + * {@inheritDoc} + */ + public function getCreatedOn() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreatedOn', []); + + return parent::getCreatedOn(); + } + + /** + * {@inheritDoc} + */ + public function setUpdatedOn($updatedOn) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdatedOn', [$updatedOn]); + + return parent::setUpdatedOn($updatedOn); + } + + /** + * {@inheritDoc} + */ + public function getUpdatedOn() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdatedOn', []); + + return parent::getUpdatedOn(); + } + + /** + * {@inheritDoc} + */ + public function isPublisher(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isPublisher', [$user]); + + return parent::isPublisher($user); + } + + /** + * {@inheritDoc} + */ + public function getPublisher(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPublisher', [$user]); + + return parent::getPublisher($user); + } + + /** + * {@inheritDoc} + */ + public function setSubtitle($subtitle) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSubtitle', [$subtitle]); + + return parent::setSubtitle($subtitle); + } + + /** + * {@inheritDoc} + */ + public function getSubtitle() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSubtitle', []); + + return parent::getSubtitle(); + } + + /** + * {@inheritDoc} + */ + public function isAggregated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isAggregated', []); + + return parent::isAggregated(); + } + + /** + * {@inheritDoc} + */ + public function getCountTotalEntries() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCountTotalEntries', []); + + return parent::getCountTotalEntries(); + } + + /** + * {@inheritDoc} + */ + public function hasAccess(\Alchemy\Phrasea\Model\Entities\User $user, \Alchemy\Phrasea\Application $app) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'hasAccess', [$user, $app]); + + return parent::hasAccess($user, $app); + } + + /** + * {@inheritDoc} + */ + public function addToken(\Alchemy\Phrasea\Model\Entities\FeedToken $tokens) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addToken', [$tokens]); + + return parent::addToken($tokens); + } + + /** + * {@inheritDoc} + */ + public function removeToken(\Alchemy\Phrasea\Model\Entities\FeedToken $tokens) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeToken', [$tokens]); + + return parent::removeToken($tokens); + } + + /** + * {@inheritDoc} + */ + public function getTokens() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTokens', []); + + return parent::getTokens(); + } + + /** + * {@inheritDoc} + */ + public function addEntrie(\Alchemy\Phrasea\Model\Entities\FeedEntry $entries) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addEntrie', [$entries]); + + return parent::addEntrie($entries); + } + + /** + * {@inheritDoc} + */ + public function removeEntrie(\Alchemy\Phrasea\Model\Entities\FeedEntry $entries) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeEntrie', [$entries]); + + return parent::removeEntrie($entries); + } + + /** + * {@inheritDoc} + */ + public function hasPage($pageNumber, $nbEntriesByPage) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'hasPage', [$pageNumber, $nbEntriesByPage]); + + return parent::hasPage($pageNumber, $nbEntriesByPage); + } + + /** + * {@inheritDoc} + */ + public function isAccessible(\Alchemy\Phrasea\Model\Entities\User $user, \Alchemy\Phrasea\Application $app) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isAccessible', [$user, $app]); + + return parent::isAccessible($user, $app); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFeedEntry.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFeedEntry.php new file mode 100644 index 0000000000..ced6ae2482 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFeedEntry.php @@ -0,0 +1,422 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class FeedEntry extends \Alchemy\Phrasea\Model\Entities\FeedEntry implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'title', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'subtitle', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'authorName', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'authorEmail', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'createdOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'updatedOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'items', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'publisher', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'feed']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'title', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'subtitle', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'authorName', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'authorEmail', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'createdOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'updatedOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'items', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'publisher', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'feed']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (FeedEntry $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setTitle($title) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setTitle', [$title]); + + return parent::setTitle($title); + } + + /** + * {@inheritDoc} + */ + public function getTitle() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTitle', []); + + return parent::getTitle(); + } + + /** + * {@inheritDoc} + */ + public function setSubtitle($subtitle) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSubtitle', [$subtitle]); + + return parent::setSubtitle($subtitle); + } + + /** + * {@inheritDoc} + */ + public function getSubtitle() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSubtitle', []); + + return parent::getSubtitle(); + } + + /** + * {@inheritDoc} + */ + public function setAuthorName($authorName) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setAuthorName', [$authorName]); + + return parent::setAuthorName($authorName); + } + + /** + * {@inheritDoc} + */ + public function getAuthorName() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAuthorName', []); + + return parent::getAuthorName(); + } + + /** + * {@inheritDoc} + */ + public function setAuthorEmail($authorEmail) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setAuthorEmail', [$authorEmail]); + + return parent::setAuthorEmail($authorEmail); + } + + /** + * {@inheritDoc} + */ + public function getAuthorEmail() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAuthorEmail', []); + + return parent::getAuthorEmail(); + } + + /** + * {@inheritDoc} + */ + public function setCreatedOn($createdOn) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreatedOn', [$createdOn]); + + return parent::setCreatedOn($createdOn); + } + + /** + * {@inheritDoc} + */ + public function getCreatedOn() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreatedOn', []); + + return parent::getCreatedOn(); + } + + /** + * {@inheritDoc} + */ + public function setUpdatedOn($updatedOn) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdatedOn', [$updatedOn]); + + return parent::setUpdatedOn($updatedOn); + } + + /** + * {@inheritDoc} + */ + public function getUpdatedOn() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdatedOn', []); + + return parent::getUpdatedOn(); + } + + /** + * {@inheritDoc} + */ + public function addItem(\Alchemy\Phrasea\Model\Entities\FeedItem $items) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addItem', [$items]); + + return parent::addItem($items); + } + + /** + * {@inheritDoc} + */ + public function removeItem(\Alchemy\Phrasea\Model\Entities\FeedItem $items) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeItem', [$items]); + + return parent::removeItem($items); + } + + /** + * {@inheritDoc} + */ + public function getItems() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getItems', []); + + return parent::getItems(); + } + + /** + * {@inheritDoc} + */ + public function setPublisher(\Alchemy\Phrasea\Model\Entities\FeedPublisher $publisher = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPublisher', [$publisher]); + + return parent::setPublisher($publisher); + } + + /** + * {@inheritDoc} + */ + public function getPublisher() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPublisher', []); + + return parent::getPublisher(); + } + + /** + * {@inheritDoc} + */ + public function setFeed(\Alchemy\Phrasea\Model\Entities\Feed $feed = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFeed', [$feed]); + + return parent::setFeed($feed); + } + + /** + * {@inheritDoc} + */ + public function getFeed() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFeed', []); + + return parent::getFeed(); + } + + /** + * {@inheritDoc} + */ + public function isPublisher(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isPublisher', [$user]); + + return parent::isPublisher($user); + } + + /** + * {@inheritDoc} + */ + public function getItem($id) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getItem', [$id]); + + return parent::getItem($id); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFeedItem.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFeedItem.php new file mode 100644 index 0000000000..f45349c56f --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFeedItem.php @@ -0,0 +1,345 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class FeedItem extends \Alchemy\Phrasea\Model\Entities\FeedItem implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'recordId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'sbasId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'ord', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'createdOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'updatedOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'entry']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'recordId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'sbasId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'ord', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'createdOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'updatedOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'entry']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (FeedItem $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setRecordId($recordId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRecordId', [$recordId]); + + return parent::setRecordId($recordId); + } + + /** + * {@inheritDoc} + */ + public function getRecordId() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRecordId', []); + + return parent::getRecordId(); + } + + /** + * {@inheritDoc} + */ + public function setSbasId($sbasId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSbasId', [$sbasId]); + + return parent::setSbasId($sbasId); + } + + /** + * {@inheritDoc} + */ + public function getSbasId() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSbasId', []); + + return parent::getSbasId(); + } + + /** + * {@inheritDoc} + */ + public function setEntry(\Alchemy\Phrasea\Model\Entities\FeedEntry $entry = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setEntry', [$entry]); + + return parent::setEntry($entry); + } + + /** + * {@inheritDoc} + */ + public function getEntry() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getEntry', []); + + return parent::getEntry(); + } + + /** + * {@inheritDoc} + */ + public function setOrd($ord) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setOrd', [$ord]); + + return parent::setOrd($ord); + } + + /** + * {@inheritDoc} + */ + public function getOrd() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOrd', []); + + return parent::getOrd(); + } + + /** + * {@inheritDoc} + */ + public function setCreatedOn($createdOn) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreatedOn', [$createdOn]); + + return parent::setCreatedOn($createdOn); + } + + /** + * {@inheritDoc} + */ + public function getCreatedOn() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreatedOn', []); + + return parent::getCreatedOn(); + } + + /** + * {@inheritDoc} + */ + public function setUpdatedOn($updatedOn) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdatedOn', [$updatedOn]); + + return parent::setUpdatedOn($updatedOn); + } + + /** + * {@inheritDoc} + */ + public function getUpdatedOn() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdatedOn', []); + + return parent::getUpdatedOn(); + } + + /** + * {@inheritDoc} + */ + public function setLastInFeedItem() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLastInFeedItem', []); + + return parent::setLastInFeedItem(); + } + + /** + * {@inheritDoc} + */ + public function getRecord(\Alchemy\Phrasea\Application $app) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRecord', [$app]); + + return parent::getRecord($app); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFeedPublisher.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFeedPublisher.php new file mode 100644 index 0000000000..5e02d7c0a5 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFeedPublisher.php @@ -0,0 +1,279 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class FeedPublisher extends \Alchemy\Phrasea\Model\Entities\FeedPublisher implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedPublisher' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedPublisher' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedPublisher' . "\0" . 'owner', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedPublisher' . "\0" . 'createdOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedPublisher' . "\0" . 'feed']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedPublisher' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedPublisher' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedPublisher' . "\0" . 'owner', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedPublisher' . "\0" . 'createdOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedPublisher' . "\0" . 'feed']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (FeedPublisher $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setUser(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]); + + return parent::setUser($user); + } + + /** + * {@inheritDoc} + */ + public function getUser() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []); + + return parent::getUser(); + } + + /** + * {@inheritDoc} + */ + public function setIsOwner($owner) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setIsOwner', [$owner]); + + return parent::setIsOwner($owner); + } + + /** + * {@inheritDoc} + */ + public function isOwner() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isOwner', []); + + return parent::isOwner(); + } + + /** + * {@inheritDoc} + */ + public function setFeed(\Alchemy\Phrasea\Model\Entities\Feed $feed = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFeed', [$feed]); + + return parent::setFeed($feed); + } + + /** + * {@inheritDoc} + */ + public function getFeed() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFeed', []); + + return parent::getFeed(); + } + + /** + * {@inheritDoc} + */ + public function setCreatedOn($createdOn) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreatedOn', [$createdOn]); + + return parent::setCreatedOn($createdOn); + } + + /** + * {@inheritDoc} + */ + public function getCreatedOn() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreatedOn', []); + + return parent::getCreatedOn(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFeedToken.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFeedToken.php new file mode 100644 index 0000000000..e7bfbd3ce9 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFeedToken.php @@ -0,0 +1,257 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class FeedToken extends \Alchemy\Phrasea\Model\Entities\FeedToken implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedToken' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedToken' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedToken' . "\0" . 'value', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedToken' . "\0" . 'feed']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedToken' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedToken' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedToken' . "\0" . 'value', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedToken' . "\0" . 'feed']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (FeedToken $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setUser(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]); + + return parent::setUser($user); + } + + /** + * {@inheritDoc} + */ + public function getUser() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []); + + return parent::getUser(); + } + + /** + * {@inheritDoc} + */ + public function setFeed(\Alchemy\Phrasea\Model\Entities\Feed $feed = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFeed', [$feed]); + + return parent::setFeed($feed); + } + + /** + * {@inheritDoc} + */ + public function getFeed() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFeed', []); + + return parent::getFeed(); + } + + /** + * {@inheritDoc} + */ + public function setValue($value) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setValue', [$value]); + + return parent::setValue($value); + } + + /** + * {@inheritDoc} + */ + public function getValue() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getValue', []); + + return parent::getValue(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFtpCredential.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFtpCredential.php new file mode 100644 index 0000000000..735cd9bcaa --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFtpCredential.php @@ -0,0 +1,433 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class FtpCredential extends \Alchemy\Phrasea\Model\Entities\FtpCredential implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'active', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'address', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'login', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'password', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'receptionFolder', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'repositoryPrefixName', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'passive', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'ssl', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'maxRetry', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'updated']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'active', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'address', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'login', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'password', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'receptionFolder', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'repositoryPrefixName', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'passive', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'ssl', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'maxRetry', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'updated']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (FtpCredential $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function getUser() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []); + + return parent::getUser(); + } + + /** + * {@inheritDoc} + */ + public function setUser(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]); + + return parent::setUser($user); + } + + /** + * {@inheritDoc} + */ + public function isActive() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isActive', []); + + return parent::isActive(); + } + + /** + * {@inheritDoc} + */ + public function setActive($active) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setActive', [$active]); + + return parent::setActive($active); + } + + /** + * {@inheritDoc} + */ + public function getAddress() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAddress', []); + + return parent::getAddress(); + } + + /** + * {@inheritDoc} + */ + public function setAddress($address) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setAddress', [$address]); + + return parent::setAddress($address); + } + + /** + * {@inheritDoc} + */ + public function getLogin() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLogin', []); + + return parent::getLogin(); + } + + /** + * {@inheritDoc} + */ + public function setLogin($login) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLogin', [$login]); + + return parent::setLogin($login); + } + + /** + * {@inheritDoc} + */ + public function getPassword() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPassword', []); + + return parent::getPassword(); + } + + /** + * {@inheritDoc} + */ + public function setPassword($password) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPassword', [$password]); + + return parent::setPassword($password); + } + + /** + * {@inheritDoc} + */ + public function getReceptionFolder() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getReceptionFolder', []); + + return parent::getReceptionFolder(); + } + + /** + * {@inheritDoc} + */ + public function setReceptionFolder($receptionFolder) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setReceptionFolder', [$receptionFolder]); + + return parent::setReceptionFolder($receptionFolder); + } + + /** + * {@inheritDoc} + */ + public function getRepositoryPrefixName() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRepositoryPrefixName', []); + + return parent::getRepositoryPrefixName(); + } + + /** + * {@inheritDoc} + */ + public function setRepositoryPrefixName($repositoryPrefixName) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRepositoryPrefixName', [$repositoryPrefixName]); + + return parent::setRepositoryPrefixName($repositoryPrefixName); + } + + /** + * {@inheritDoc} + */ + public function isPassive() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isPassive', []); + + return parent::isPassive(); + } + + /** + * {@inheritDoc} + */ + public function setPassive($passive) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPassive', [$passive]); + + return parent::setPassive($passive); + } + + /** + * {@inheritDoc} + */ + public function isSsl() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isSsl', []); + + return parent::isSsl(); + } + + /** + * {@inheritDoc} + */ + public function setSsl($ssl) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSsl', [$ssl]); + + return parent::setSsl($ssl); + } + + /** + * {@inheritDoc} + */ + public function getMaxRetry() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getMaxRetry', []); + + return parent::getMaxRetry(); + } + + /** + * {@inheritDoc} + */ + public function setMaxRetry($maxRetry) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setMaxRetry', [$maxRetry]); + + return parent::setMaxRetry($maxRetry); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFtpExport.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFtpExport.php new file mode 100644 index 0000000000..22bf515985 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFtpExport.php @@ -0,0 +1,609 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class FtpExport extends \Alchemy\Phrasea\Model\Entities\FtpExport implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'crash', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'nbretry', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'mail', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'addr', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'ssl', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'login', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'pwd', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'passif', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'destfolder', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'sendermail', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'textMailSender', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'textMailReceiver', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'foldertocreate', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'logfile', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'elements', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'updated']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'crash', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'nbretry', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'mail', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'addr', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'ssl', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'login', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'pwd', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'passif', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'destfolder', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'sendermail', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'textMailSender', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'textMailReceiver', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'foldertocreate', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'logfile', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'elements', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'updated']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (FtpExport $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setUser(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]); + + return parent::setUser($user); + } + + /** + * {@inheritDoc} + */ + public function getUser() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []); + + return parent::getUser(); + } + + /** + * {@inheritDoc} + */ + public function setCrash($crash) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCrash', [$crash]); + + return parent::setCrash($crash); + } + + /** + * {@inheritDoc} + */ + public function getCrash() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCrash', []); + + return parent::getCrash(); + } + + /** + * {@inheritDoc} + */ + public function incrementCrash() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'incrementCrash', []); + + return parent::incrementCrash(); + } + + /** + * {@inheritDoc} + */ + public function setNbretry($nbretry) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setNbretry', [$nbretry]); + + return parent::setNbretry($nbretry); + } + + /** + * {@inheritDoc} + */ + public function getNbretry() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getNbretry', []); + + return parent::getNbretry(); + } + + /** + * {@inheritDoc} + */ + public function setMail($mail) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setMail', [$mail]); + + return parent::setMail($mail); + } + + /** + * {@inheritDoc} + */ + public function getMail() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getMail', []); + + return parent::getMail(); + } + + /** + * {@inheritDoc} + */ + public function setAddr($addr) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setAddr', [$addr]); + + return parent::setAddr($addr); + } + + /** + * {@inheritDoc} + */ + public function getAddr() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAddr', []); + + return parent::getAddr(); + } + + /** + * {@inheritDoc} + */ + public function setSsl($ssl) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSsl', [$ssl]); + + return parent::setSsl($ssl); + } + + /** + * {@inheritDoc} + */ + public function isSsl() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isSsl', []); + + return parent::isSsl(); + } + + /** + * {@inheritDoc} + */ + public function setLogin($login) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLogin', [$login]); + + return parent::setLogin($login); + } + + /** + * {@inheritDoc} + */ + public function getLogin() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLogin', []); + + return parent::getLogin(); + } + + /** + * {@inheritDoc} + */ + public function setPwd($pwd) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPwd', [$pwd]); + + return parent::setPwd($pwd); + } + + /** + * {@inheritDoc} + */ + public function getPwd() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPwd', []); + + return parent::getPwd(); + } + + /** + * {@inheritDoc} + */ + public function setPassif($passif) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPassif', [$passif]); + + return parent::setPassif($passif); + } + + /** + * {@inheritDoc} + */ + public function isPassif() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isPassif', []); + + return parent::isPassif(); + } + + /** + * {@inheritDoc} + */ + public function setDestfolder($destfolder) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setDestfolder', [$destfolder]); + + return parent::setDestfolder($destfolder); + } + + /** + * {@inheritDoc} + */ + public function getDestfolder() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getDestfolder', []); + + return parent::getDestfolder(); + } + + /** + * {@inheritDoc} + */ + public function setSendermail($sendermail) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSendermail', [$sendermail]); + + return parent::setSendermail($sendermail); + } + + /** + * {@inheritDoc} + */ + public function getSendermail() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSendermail', []); + + return parent::getSendermail(); + } + + /** + * {@inheritDoc} + */ + public function setTextMailSender($textMailSender) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setTextMailSender', [$textMailSender]); + + return parent::setTextMailSender($textMailSender); + } + + /** + * {@inheritDoc} + */ + public function getTextMailSender() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTextMailSender', []); + + return parent::getTextMailSender(); + } + + /** + * {@inheritDoc} + */ + public function setTextMailReceiver($textMailReceiver) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setTextMailReceiver', [$textMailReceiver]); + + return parent::setTextMailReceiver($textMailReceiver); + } + + /** + * {@inheritDoc} + */ + public function getTextMailReceiver() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTextMailReceiver', []); + + return parent::getTextMailReceiver(); + } + + /** + * {@inheritDoc} + */ + public function setFoldertocreate($foldertocreate) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFoldertocreate', [$foldertocreate]); + + return parent::setFoldertocreate($foldertocreate); + } + + /** + * {@inheritDoc} + */ + public function getFoldertocreate() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFoldertocreate', []); + + return parent::getFoldertocreate(); + } + + /** + * {@inheritDoc} + */ + public function setLogfile($logfile) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLogfile', [$logfile]); + + return parent::setLogfile($logfile); + } + + /** + * {@inheritDoc} + */ + public function isLogfile() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isLogfile', []); + + return parent::isLogfile(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function addElement(\Alchemy\Phrasea\Model\Entities\FtpExportElement $elements) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addElement', [$elements]); + + return parent::addElement($elements); + } + + /** + * {@inheritDoc} + */ + public function removeElement(\Alchemy\Phrasea\Model\Entities\FtpExportElement $elements) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeElement', [$elements]); + + return parent::removeElement($elements); + } + + /** + * {@inheritDoc} + */ + public function getElements() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getElements', []); + + return parent::getElements(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFtpExportElement.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFtpExportElement.php new file mode 100644 index 0000000000..ff215082cb --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesFtpExportElement.php @@ -0,0 +1,433 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class FtpExportElement extends \Alchemy\Phrasea\Model\Entities\FtpExportElement implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'recordId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'baseId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'subdef', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'filename', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'folder', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'error', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'done', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'export', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'businessfields', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'updated']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'recordId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'baseId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'subdef', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'filename', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'folder', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'error', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'done', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'export', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'businessfields', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'updated']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (FtpExportElement $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setRecordId($recordId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRecordId', [$recordId]); + + return parent::setRecordId($recordId); + } + + /** + * {@inheritDoc} + */ + public function getRecordId() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRecordId', []); + + return parent::getRecordId(); + } + + /** + * {@inheritDoc} + */ + public function setBaseId($baseId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBaseId', [$baseId]); + + return parent::setBaseId($baseId); + } + + /** + * {@inheritDoc} + */ + public function getBaseId() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBaseId', []); + + return parent::getBaseId(); + } + + /** + * {@inheritDoc} + */ + public function setSubdef($subdef) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSubdef', [$subdef]); + + return parent::setSubdef($subdef); + } + + /** + * {@inheritDoc} + */ + public function getSubdef() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSubdef', []); + + return parent::getSubdef(); + } + + /** + * {@inheritDoc} + */ + public function setFilename($filename) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFilename', [$filename]); + + return parent::setFilename($filename); + } + + /** + * {@inheritDoc} + */ + public function getFilename() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFilename', []); + + return parent::getFilename(); + } + + /** + * {@inheritDoc} + */ + public function setFolder($folder) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFolder', [$folder]); + + return parent::setFolder($folder); + } + + /** + * {@inheritDoc} + */ + public function getFolder() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFolder', []); + + return parent::getFolder(); + } + + /** + * {@inheritDoc} + */ + public function setError($error) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setError', [$error]); + + return parent::setError($error); + } + + /** + * {@inheritDoc} + */ + public function isError() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isError', []); + + return parent::isError(); + } + + /** + * {@inheritDoc} + */ + public function setDone($done) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setDone', [$done]); + + return parent::setDone($done); + } + + /** + * {@inheritDoc} + */ + public function isDone() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isDone', []); + + return parent::isDone(); + } + + /** + * {@inheritDoc} + */ + public function setBusinessfields($businessfields) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBusinessfields', [$businessfields]); + + return parent::setBusinessfields($businessfields); + } + + /** + * {@inheritDoc} + */ + public function isBusinessfields() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isBusinessfields', []); + + return parent::isBusinessfields(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function setExport(\Alchemy\Phrasea\Model\Entities\FtpExport $export = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setExport', [$export]); + + return parent::setExport($export); + } + + /** + * {@inheritDoc} + */ + public function getExport() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getExport', []); + + return parent::getExport(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesLazaretAttribute.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesLazaretAttribute.php new file mode 100644 index 0000000000..4f5f4b6c05 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesLazaretAttribute.php @@ -0,0 +1,301 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class LazaretAttribute extends \Alchemy\Phrasea\Model\Entities\LazaretAttribute implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'value', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'lazaretFile']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'value', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'lazaretFile']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (LazaretAttribute $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setName($name) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$name]); + + return parent::setName($name); + } + + /** + * {@inheritDoc} + */ + public function getName() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []); + + return parent::getName(); + } + + /** + * {@inheritDoc} + */ + public function setValue($value) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setValue', [$value]); + + return parent::setValue($value); + } + + /** + * {@inheritDoc} + */ + public function getValue() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getValue', []); + + return parent::getValue(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function setLazaretFile(\Alchemy\Phrasea\Model\Entities\LazaretFile $lazaretFile = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLazaretFile', [$lazaretFile]); + + return parent::setLazaretFile($lazaretFile); + } + + /** + * {@inheritDoc} + */ + public function getLazaretFile() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLazaretFile', []); + + return parent::getLazaretFile(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesLazaretCheck.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesLazaretCheck.php new file mode 100644 index 0000000000..9f502cc744 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesLazaretCheck.php @@ -0,0 +1,257 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class LazaretCheck extends \Alchemy\Phrasea\Model\Entities\LazaretCheck implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretCheck' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretCheck' . "\0" . 'checkClassname', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretCheck' . "\0" . 'lazaretFile']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretCheck' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretCheck' . "\0" . 'checkClassname', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretCheck' . "\0" . 'lazaretFile']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (LazaretCheck $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setCheckClassname($checkClassname) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCheckClassname', [$checkClassname]); + + return parent::setCheckClassname($checkClassname); + } + + /** + * {@inheritDoc} + */ + public function getCheckClassname() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCheckClassname', []); + + return parent::getCheckClassname(); + } + + /** + * {@inheritDoc} + */ + public function setLazaretFile(\Alchemy\Phrasea\Model\Entities\LazaretFile $lazaretFile = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLazaretFile', [$lazaretFile]); + + return parent::setLazaretFile($lazaretFile); + } + + /** + * {@inheritDoc} + */ + public function getLazaretFile() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLazaretFile', []); + + return parent::getLazaretFile(); + } + + /** + * {@inheritDoc} + */ + public function getReason(\Symfony\Component\Translation\TranslatorInterface $translator) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getReason', [$translator]); + + return parent::getReason($translator); + } + + /** + * {@inheritDoc} + */ + public function listConflicts(\Alchemy\Phrasea\Application $app) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'listConflicts', [$app]); + + return parent::listConflicts($app); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesLazaretFile.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesLazaretFile.php new file mode 100644 index 0000000000..dab6e47808 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesLazaretFile.php @@ -0,0 +1,521 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class LazaretFile extends \Alchemy\Phrasea\Model\Entities\LazaretFile implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'filename', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'thumbFilename', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'originalName', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'base_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'uuid', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'sha256', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'forced', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'attributes', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'checks', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'session']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'filename', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'thumbFilename', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'originalName', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'base_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'uuid', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'sha256', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'forced', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'attributes', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'checks', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'session']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (LazaretFile $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setFilename($filename) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFilename', [$filename]); + + return parent::setFilename($filename); + } + + /** + * {@inheritDoc} + */ + public function getFilename() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFilename', []); + + return parent::getFilename(); + } + + /** + * {@inheritDoc} + */ + public function setThumbFilename($thumbFilename) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setThumbFilename', [$thumbFilename]); + + return parent::setThumbFilename($thumbFilename); + } + + /** + * {@inheritDoc} + */ + public function getThumbFilename() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getThumbFilename', []); + + return parent::getThumbFilename(); + } + + /** + * {@inheritDoc} + */ + public function setOriginalName($originalName) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setOriginalName', [$originalName]); + + return parent::setOriginalName($originalName); + } + + /** + * {@inheritDoc} + */ + public function getOriginalName() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOriginalName', []); + + return parent::getOriginalName(); + } + + /** + * {@inheritDoc} + */ + public function setBaseId($baseId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBaseId', [$baseId]); + + return parent::setBaseId($baseId); + } + + /** + * {@inheritDoc} + */ + public function getBaseId() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBaseId', []); + + return parent::getBaseId(); + } + + /** + * {@inheritDoc} + */ + public function getCollection(\Alchemy\Phrasea\Application $app) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCollection', [$app]); + + return parent::getCollection($app); + } + + /** + * {@inheritDoc} + */ + public function setUuid($uuid) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUuid', [$uuid]); + + return parent::setUuid($uuid); + } + + /** + * {@inheritDoc} + */ + public function getUuid() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUuid', []); + + return parent::getUuid(); + } + + /** + * {@inheritDoc} + */ + public function setSha256($sha256) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSha256', [$sha256]); + + return parent::setSha256($sha256); + } + + /** + * {@inheritDoc} + */ + public function getSha256() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSha256', []); + + return parent::getSha256(); + } + + /** + * {@inheritDoc} + */ + public function setForced($forced) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setForced', [$forced]); + + return parent::setForced($forced); + } + + /** + * {@inheritDoc} + */ + public function getForced() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getForced', []); + + return parent::getForced(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function addAttribute(\Alchemy\Phrasea\Model\Entities\LazaretAttribute $attributes) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addAttribute', [$attributes]); + + return parent::addAttribute($attributes); + } + + /** + * {@inheritDoc} + */ + public function removeAttribute(\Alchemy\Phrasea\Model\Entities\LazaretAttribute $attributes) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeAttribute', [$attributes]); + + return parent::removeAttribute($attributes); + } + + /** + * {@inheritDoc} + */ + public function getAttributes() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAttributes', []); + + return parent::getAttributes(); + } + + /** + * {@inheritDoc} + */ + public function addCheck(\Alchemy\Phrasea\Model\Entities\LazaretCheck $checks) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addCheck', [$checks]); + + return parent::addCheck($checks); + } + + /** + * {@inheritDoc} + */ + public function removeCheck(\Alchemy\Phrasea\Model\Entities\LazaretCheck $checks) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeCheck', [$checks]); + + return parent::removeCheck($checks); + } + + /** + * {@inheritDoc} + */ + public function getCheckerName(\Alchemy\Phrasea\Model\Entities\LazaretCheck $checks) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCheckerName', [$checks]); + + return parent::getCheckerName($checks); + } + + /** + * {@inheritDoc} + */ + public function getChecks() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getChecks', []); + + return parent::getChecks(); + } + + /** + * {@inheritDoc} + */ + public function getChecksWhithNameKey() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getChecksWhithNameKey', []); + + return parent::getChecksWhithNameKey(); + } + + /** + * {@inheritDoc} + */ + public function setSession(\Alchemy\Phrasea\Model\Entities\LazaretSession $session = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSession', [$session]); + + return parent::setSession($session); + } + + /** + * {@inheritDoc} + */ + public function getSession() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSession', []); + + return parent::getSession(); + } + + /** + * {@inheritDoc} + */ + public function getRecordsToSubstitute(\Alchemy\Phrasea\Application $app, $includeReason = false) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRecordsToSubstitute', [$app, $includeReason]); + + return parent::getRecordsToSubstitute($app, $includeReason); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesLazaretSession.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesLazaretSession.php new file mode 100644 index 0000000000..1f678d61aa --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesLazaretSession.php @@ -0,0 +1,290 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class LazaretSession extends \Alchemy\Phrasea\Model\Entities\LazaretSession implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretSession' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretSession' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretSession' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretSession' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretSession' . "\0" . 'files']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretSession' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretSession' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretSession' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretSession' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretSession' . "\0" . 'files']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (LazaretSession $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setUser(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]); + + return parent::setUser($user); + } + + /** + * {@inheritDoc} + */ + public function getUser() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []); + + return parent::getUser(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function addFile(\Alchemy\Phrasea\Model\Entities\LazaretFile $files) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addFile', [$files]); + + return parent::addFile($files); + } + + /** + * {@inheritDoc} + */ + public function removeFile(\Alchemy\Phrasea\Model\Entities\LazaretFile $files) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeFile', [$files]); + + return parent::removeFile($files); + } + + /** + * {@inheritDoc} + */ + public function getFiles() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFiles', []); + + return parent::getFiles(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesOrder.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesOrder.php new file mode 100644 index 0000000000..fb1bc56456 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesOrder.php @@ -0,0 +1,411 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class Order extends \Alchemy\Phrasea\Model\Entities\Order implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'orderUsage', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'todo', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'deadline', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'createdOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'elements', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'basket', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'notificationMethod']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'orderUsage', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'todo', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'deadline', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'createdOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'elements', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'basket', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'notificationMethod']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (Order $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function getUser() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []); + + return parent::getUser(); + } + + /** + * {@inheritDoc} + */ + public function setUser(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]); + + return parent::setUser($user); + } + + /** + * {@inheritDoc} + */ + public function getDeadline() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getDeadline', []); + + return parent::getDeadline(); + } + + /** + * {@inheritDoc} + */ + public function setDeadline($deadline) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setDeadline', [$deadline]); + + return parent::setDeadline($deadline); + } + + /** + * {@inheritDoc} + */ + public function getCreatedOn() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreatedOn', []); + + return parent::getCreatedOn(); + } + + /** + * {@inheritDoc} + */ + public function setCreatedOn($createdOn) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreatedOn', [$createdOn]); + + return parent::setCreatedOn($createdOn); + } + + /** + * {@inheritDoc} + */ + public function addElement(\Alchemy\Phrasea\Model\Entities\OrderElement $elements) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addElement', [$elements]); + + return parent::addElement($elements); + } + + /** + * {@inheritDoc} + */ + public function removeElement(\Alchemy\Phrasea\Model\Entities\OrderElement $elements) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeElement', [$elements]); + + return parent::removeElement($elements); + } + + /** + * {@inheritDoc} + */ + public function getElements() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getElements', []); + + return parent::getElements(); + } + + /** + * {@inheritDoc} + */ + public function getTodo() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTodo', []); + + return parent::getTodo(); + } + + /** + * {@inheritDoc} + */ + public function setTodo($todo) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setTodo', [$todo]); + + return parent::setTodo($todo); + } + + /** + * {@inheritDoc} + */ + public function decrementTodo($count) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'decrementTodo', [$count]); + + return parent::decrementTodo($count); + } + + /** + * {@inheritDoc} + */ + public function getTotal() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTotal', []); + + return parent::getTotal(); + } + + /** + * {@inheritDoc} + */ + public function getTotalTreatedItems() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTotalTreatedItems', []); + + return parent::getTotalTreatedItems(); + } + + /** + * {@inheritDoc} + */ + public function getOrderUsage() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOrderUsage', []); + + return parent::getOrderUsage(); + } + + /** + * {@inheritDoc} + */ + public function setOrderUsage($orderUsage) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setOrderUsage', [$orderUsage]); + + return parent::setOrderUsage($orderUsage); + } + + /** + * {@inheritDoc} + */ + public function getBasket() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBasket', []); + + return parent::getBasket(); + } + + /** + * {@inheritDoc} + */ + public function setBasket(\Alchemy\Phrasea\Model\Entities\Basket $basket = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBasket', [$basket]); + + return parent::setBasket($basket); + } + + /** + * {@inheritDoc} + */ + public function getNotificationMethod() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getNotificationMethod', []); + + return parent::getNotificationMethod(); + } + + /** + * {@inheritDoc} + */ + public function setNotificationMethod($methodName) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setNotificationMethod', [$methodName]); + + return parent::setNotificationMethod($methodName); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesOrderElement.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesOrderElement.php new file mode 100644 index 0000000000..7f6addfb66 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesOrderElement.php @@ -0,0 +1,323 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class OrderElement extends \Alchemy\Phrasea\Model\Entities\OrderElement implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'baseId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'recordId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'orderMaster', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'deny', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'order']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'baseId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'recordId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'orderMaster', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'deny', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'order']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (OrderElement $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setOrderMaster(\Alchemy\Phrasea\Model\Entities\User $user = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setOrderMaster', [$user]); + + return parent::setOrderMaster($user); + } + + /** + * {@inheritDoc} + */ + public function getOrderMaster() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOrderMaster', []); + + return parent::getOrderMaster(); + } + + /** + * {@inheritDoc} + */ + public function setDeny($deny) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setDeny', [$deny]); + + return parent::setDeny($deny); + } + + /** + * {@inheritDoc} + */ + public function getDeny() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getDeny', []); + + return parent::getDeny(); + } + + /** + * {@inheritDoc} + */ + public function setOrder(\Alchemy\Phrasea\Model\Entities\Order $order = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setOrder', [$order]); + + return parent::setOrder($order); + } + + /** + * {@inheritDoc} + */ + public function getOrder() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOrder', []); + + return parent::getOrder(); + } + + /** + * {@inheritDoc} + */ + public function setBaseId($baseId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBaseId', [$baseId]); + + return parent::setBaseId($baseId); + } + + /** + * {@inheritDoc} + */ + public function getBaseId() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBaseId', []); + + return parent::getBaseId(); + } + + /** + * {@inheritDoc} + */ + public function setRecordId($recordId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRecordId', [$recordId]); + + return parent::setRecordId($recordId); + } + + /** + * {@inheritDoc} + */ + public function getRecordId() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRecordId', []); + + return parent::getRecordId(); + } + + /** + * {@inheritDoc} + */ + public function getRecord(\Alchemy\Phrasea\Application $app) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRecord', [$app]); + + return parent::getRecord($app); + } + + /** + * {@inheritDoc} + */ + public function getSbasId(\Alchemy\Phrasea\Application $app) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSbasId', [$app]); + + return parent::getSbasId($app); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesPreset.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesPreset.php new file mode 100644 index 0000000000..09ce97b8d1 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesPreset.php @@ -0,0 +1,301 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class Preset extends \Alchemy\Phrasea\Model\Entities\Preset implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'sbasId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'title', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'data', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'created']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'sbasId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'title', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'data', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'created']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (Preset $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function getUser() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []); + + return parent::getUser(); + } + + /** + * {@inheritDoc} + */ + public function setUser(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]); + + return parent::setUser($user); + } + + /** + * {@inheritDoc} + */ + public function getSbasId() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSbasId', []); + + return parent::getSbasId(); + } + + /** + * {@inheritDoc} + */ + public function setSbasId($sbasId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSbasId', [$sbasId]); + + return parent::setSbasId($sbasId); + } + + /** + * {@inheritDoc} + */ + public function getTitle() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTitle', []); + + return parent::getTitle(); + } + + /** + * {@inheritDoc} + */ + public function setTitle($title) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setTitle', [$title]); + + return parent::setTitle($title); + } + + /** + * {@inheritDoc} + */ + public function setData(array $data) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setData', [$data]); + + return parent::setData($data); + } + + /** + * {@inheritDoc} + */ + public function getData() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getData', []); + + return parent::getData(); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesRegistration.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesRegistration.php new file mode 100644 index 0000000000..1fcab3649c --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesRegistration.php @@ -0,0 +1,345 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class Registration extends \Alchemy\Phrasea\Model\Entities\Registration implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'baseId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'pending', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'rejected', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'updated']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'baseId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'pending', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'rejected', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'updated']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (Registration $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setPending($pending) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPending', [$pending]); + + return parent::setPending($pending); + } + + /** + * {@inheritDoc} + */ + public function isPending() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isPending', []); + + return parent::isPending(); + } + + /** + * {@inheritDoc} + */ + public function setRejected($rejected) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRejected', [$rejected]); + + return parent::setRejected($rejected); + } + + /** + * {@inheritDoc} + */ + public function isRejected() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isRejected', []); + + return parent::isRejected(); + } + + /** + * {@inheritDoc} + */ + public function setUser(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]); + + return parent::setUser($user); + } + + /** + * {@inheritDoc} + */ + public function getUser() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []); + + return parent::getUser(); + } + + /** + * {@inheritDoc} + */ + public function getCollection(\Alchemy\Phrasea\Application $app) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCollection', [$app]); + + return parent::getCollection($app); + } + + /** + * {@inheritDoc} + */ + public function setCollection(\collection $collection) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCollection', [$collection]); + + return parent::setCollection($collection); + } + + /** + * {@inheritDoc} + */ + public function setBaseId($baseId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBaseId', [$baseId]); + + return parent::setBaseId($baseId); + } + + /** + * {@inheritDoc} + */ + public function getBaseId() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBaseId', []); + + return parent::getBaseId(); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesSecret.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesSecret.php new file mode 100644 index 0000000000..f19489a2a2 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesSecret.php @@ -0,0 +1,224 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class Secret extends \Alchemy\Phrasea\Model\Entities\Secret implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Secret' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Secret' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Secret' . "\0" . 'token', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Secret' . "\0" . 'creator']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Secret' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Secret' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Secret' . "\0" . 'token', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Secret' . "\0" . 'creator']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (Secret $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function getCreator() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreator', []); + + return parent::getCreator(); + } + + /** + * {@inheritDoc} + */ + public function getToken() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getToken', []); + + return parent::getToken(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesSession.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesSession.php new file mode 100644 index 0000000000..f2fb2a0d34 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesSession.php @@ -0,0 +1,510 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class Session extends \Alchemy\Phrasea\Model\Entities\Session implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'user_agent', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'ip_address', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'platform', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'browser_name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'browser_version', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'screen_width', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'screen_height', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'token', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'nonce', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'modules']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'user_agent', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'ip_address', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'platform', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'browser_name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'browser_version', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'screen_width', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'screen_height', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'token', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'nonce', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'modules']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (Session $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setUser(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]); + + return parent::setUser($user); + } + + /** + * {@inheritDoc} + */ + public function getUser() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []); + + return parent::getUser(); + } + + /** + * {@inheritDoc} + */ + public function setUserAgent($userAgent) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUserAgent', [$userAgent]); + + return parent::setUserAgent($userAgent); + } + + /** + * {@inheritDoc} + */ + public function getUserAgent() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUserAgent', []); + + return parent::getUserAgent(); + } + + /** + * {@inheritDoc} + */ + public function setIpAddress($ipAddress) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setIpAddress', [$ipAddress]); + + return parent::setIpAddress($ipAddress); + } + + /** + * {@inheritDoc} + */ + public function getIpAddress() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getIpAddress', []); + + return parent::getIpAddress(); + } + + /** + * {@inheritDoc} + */ + public function setPlatform($platform) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPlatform', [$platform]); + + return parent::setPlatform($platform); + } + + /** + * {@inheritDoc} + */ + public function getPlatform() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPlatform', []); + + return parent::getPlatform(); + } + + /** + * {@inheritDoc} + */ + public function setBrowserName($browserName) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBrowserName', [$browserName]); + + return parent::setBrowserName($browserName); + } + + /** + * {@inheritDoc} + */ + public function getBrowserName() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBrowserName', []); + + return parent::getBrowserName(); + } + + /** + * {@inheritDoc} + */ + public function setBrowserVersion($browserVersion) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBrowserVersion', [$browserVersion]); + + return parent::setBrowserVersion($browserVersion); + } + + /** + * {@inheritDoc} + */ + public function getBrowserVersion() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBrowserVersion', []); + + return parent::getBrowserVersion(); + } + + /** + * {@inheritDoc} + */ + public function setScreenWidth($screenWidth) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setScreenWidth', [$screenWidth]); + + return parent::setScreenWidth($screenWidth); + } + + /** + * {@inheritDoc} + */ + public function getScreenWidth() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getScreenWidth', []); + + return parent::getScreenWidth(); + } + + /** + * {@inheritDoc} + */ + public function setScreenHeight($screenHeight) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setScreenHeight', [$screenHeight]); + + return parent::setScreenHeight($screenHeight); + } + + /** + * {@inheritDoc} + */ + public function getScreenHeight() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getScreenHeight', []); + + return parent::getScreenHeight(); + } + + /** + * {@inheritDoc} + */ + public function setToken($token) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setToken', [$token]); + + return parent::setToken($token); + } + + /** + * {@inheritDoc} + */ + public function getToken() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getToken', []); + + return parent::getToken(); + } + + /** + * {@inheritDoc} + */ + public function setNonce($nonce) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setNonce', [$nonce]); + + return parent::setNonce($nonce); + } + + /** + * {@inheritDoc} + */ + public function getNonce() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getNonce', []); + + return parent::getNonce(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function addModule(\Alchemy\Phrasea\Model\Entities\SessionModule $modules) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addModule', [$modules]); + + return parent::addModule($modules); + } + + /** + * {@inheritDoc} + */ + public function removeModule(\Alchemy\Phrasea\Model\Entities\SessionModule $modules) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeModule', [$modules]); + + return parent::removeModule($modules); + } + + /** + * {@inheritDoc} + */ + public function getModules() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getModules', []); + + return parent::getModules(); + } + + /** + * {@inheritDoc} + */ + public function getModuleById($moduleId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getModuleById', [$moduleId]); + + return parent::getModuleById($moduleId); + } + + /** + * {@inheritDoc} + */ + public function hasModuleId($moduleId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'hasModuleId', [$moduleId]); + + return parent::hasModuleId($moduleId); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesSessionModule.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesSessionModule.php new file mode 100644 index 0000000000..a583607d6a --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesSessionModule.php @@ -0,0 +1,279 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class SessionModule extends \Alchemy\Phrasea\Model\Entities\SessionModule implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\SessionModule' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\SessionModule' . "\0" . 'module_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\SessionModule' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\SessionModule' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\SessionModule' . "\0" . 'session']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\SessionModule' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\SessionModule' . "\0" . 'module_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\SessionModule' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\SessionModule' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\SessionModule' . "\0" . 'session']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (SessionModule $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setModuleId($moduleId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setModuleId', [$moduleId]); + + return parent::setModuleId($moduleId); + } + + /** + * {@inheritDoc} + */ + public function getModuleId() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getModuleId', []); + + return parent::getModuleId(); + } + + /** + * {@inheritDoc} + */ + public function setCreated($created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function setSession(\Alchemy\Phrasea\Model\Entities\Session $session = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSession', [$session]); + + return parent::setSession($session); + } + + /** + * {@inheritDoc} + */ + public function getSession() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSession', []); + + return parent::getSession(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesStoryWZ.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesStoryWZ.php new file mode 100644 index 0000000000..6cc3aa9154 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesStoryWZ.php @@ -0,0 +1,301 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class StoryWZ extends \Alchemy\Phrasea\Model\Entities\StoryWZ implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\StoryWZ' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\StoryWZ' . "\0" . 'sbas_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\StoryWZ' . "\0" . 'record_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\StoryWZ' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\StoryWZ' . "\0" . 'created']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\StoryWZ' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\StoryWZ' . "\0" . 'sbas_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\StoryWZ' . "\0" . 'record_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\StoryWZ' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\StoryWZ' . "\0" . 'created']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (StoryWZ $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setSbasId($sbasId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSbasId', [$sbasId]); + + return parent::setSbasId($sbasId); + } + + /** + * {@inheritDoc} + */ + public function getSbasId() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSbasId', []); + + return parent::getSbasId(); + } + + /** + * {@inheritDoc} + */ + public function setRecordId($recordId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRecordId', [$recordId]); + + return parent::setRecordId($recordId); + } + + /** + * {@inheritDoc} + */ + public function getRecordId() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRecordId', []); + + return parent::getRecordId(); + } + + /** + * {@inheritDoc} + */ + public function getRecord(\Alchemy\Phrasea\Application $app) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRecord', [$app]); + + return parent::getRecord($app); + } + + /** + * {@inheritDoc} + */ + public function setRecord(\record_adapter $record) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRecord', [$record]); + + return parent::setRecord($record); + } + + /** + * {@inheritDoc} + */ + public function setUser(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]); + + return parent::setUser($user); + } + + /** + * {@inheritDoc} + */ + public function getUser() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []); + + return parent::getUser(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesTask.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesTask.php new file mode 100644 index 0000000000..40d1f5651b --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesTask.php @@ -0,0 +1,433 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class Task extends \Alchemy\Phrasea\Model\Entities\Task implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'jobId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'settings', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'completed', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'status', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'crashed', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'singleRun', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'lastExecution', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'period']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'jobId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'settings', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'completed', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'status', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'crashed', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'singleRun', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'lastExecution', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'period']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (Task $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setName($name) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$name]); + + return parent::setName($name); + } + + /** + * {@inheritDoc} + */ + public function getName() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []); + + return parent::getName(); + } + + /** + * {@inheritDoc} + */ + public function setJobId($jobId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setJobId', [$jobId]); + + return parent::setJobId($jobId); + } + + /** + * {@inheritDoc} + */ + public function getJobId() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getJobId', []); + + return parent::getJobId(); + } + + /** + * {@inheritDoc} + */ + public function setSettings($settings) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSettings', [$settings]); + + return parent::setSettings($settings); + } + + /** + * {@inheritDoc} + */ + public function getSettings() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSettings', []); + + return parent::getSettings(); + } + + /** + * {@inheritDoc} + */ + public function setCompleted($completed) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCompleted', [$completed]); + + return parent::setCompleted($completed); + } + + /** + * {@inheritDoc} + */ + public function isCompleted() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isCompleted', []); + + return parent::isCompleted(); + } + + /** + * {@inheritDoc} + */ + public function setStatus($status) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setStatus', [$status]); + + return parent::setStatus($status); + } + + /** + * {@inheritDoc} + */ + public function getStatus() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getStatus', []); + + return parent::getStatus(); + } + + /** + * {@inheritDoc} + */ + public function setCrashed($crashed) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCrashed', [$crashed]); + + return parent::setCrashed($crashed); + } + + /** + * {@inheritDoc} + */ + public function getCrashed() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCrashed', []); + + return parent::getCrashed(); + } + + /** + * {@inheritDoc} + */ + public function setSingleRun($singleRun) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSingleRun', [$singleRun]); + + return parent::setSingleRun($singleRun); + } + + /** + * {@inheritDoc} + */ + public function isSingleRun() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isSingleRun', []); + + return parent::isSingleRun(); + } + + /** + * {@inheritDoc} + */ + public function setCreated($created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated($updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function setExecuted($lastExecution) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setExecuted', [$lastExecution]); + + return parent::setExecuted($lastExecution); + } + + /** + * {@inheritDoc} + */ + public function getLastExecution() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLastExecution', []); + + return parent::getLastExecution(); + } + + /** + * {@inheritDoc} + */ + public function getPeriod() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPeriod', []); + + return parent::getPeriod(); + } + + /** + * {@inheritDoc} + */ + public function setPeriod($period) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPeriod', [$period]); + + return parent::setPeriod($period); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesToken.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesToken.php new file mode 100644 index 0000000000..430803b116 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesToken.php @@ -0,0 +1,334 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class Token extends \Alchemy\Phrasea\Model\Entities\Token implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Token' . "\0" . 'value', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Token' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Token' . "\0" . 'type', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Token' . "\0" . 'data', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Token' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Token' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Token' . "\0" . 'expiration']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Token' . "\0" . 'value', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Token' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Token' . "\0" . 'type', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Token' . "\0" . 'data', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Token' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Token' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Token' . "\0" . 'expiration']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (Token $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function setValue($value) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setValue', [$value]); + + return parent::setValue($value); + } + + /** + * {@inheritDoc} + */ + public function getValue() + { + if ($this->__isInitialized__ === false) { + return parent::getValue(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getValue', []); + + return parent::getValue(); + } + + /** + * {@inheritDoc} + */ + public function setType($type) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setType', [$type]); + + return parent::setType($type); + } + + /** + * {@inheritDoc} + */ + public function getType() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getType', []); + + return parent::getType(); + } + + /** + * {@inheritDoc} + */ + public function setData($data) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setData', [$data]); + + return parent::setData($data); + } + + /** + * {@inheritDoc} + */ + public function getData() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getData', []); + + return parent::getData(); + } + + /** + * {@inheritDoc} + */ + public function setCreated($created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated($updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function setExpiration(\DateTime $expiration = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setExpiration', [$expiration]); + + return parent::setExpiration($expiration); + } + + /** + * {@inheritDoc} + */ + public function getExpiration() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getExpiration', []); + + return parent::getExpiration(); + } + + /** + * {@inheritDoc} + */ + public function setUser(\Alchemy\Phrasea\Model\Entities\User $user = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]); + + return parent::setUser($user); + } + + /** + * {@inheritDoc} + */ + public function getUser() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []); + + return parent::getUser(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUser.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUser.php new file mode 100644 index 0000000000..5bd1144ed7 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUser.php @@ -0,0 +1,1082 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class User extends \Alchemy\Phrasea\Model\Entities\User implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'login', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'email', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'password', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'nonce', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'saltedPassword', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'firstName', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'lastName', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'gender', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'address', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'city', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'country', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'zipCode', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'geonameId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'locale', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'timezone', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'job', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'activity', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'company', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'phone', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'fax', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'admin', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'guest', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'mailNotificationsActivated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'requestNotificationsActivated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'ldapCreated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'lastAppliedTemplate', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'pushList', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'canChangeProfil', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'canChangeFtpProfil', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'lastConnection', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'mailLocked', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'deleted', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'templateOwner', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'ftpCredential', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'queries', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'settings', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'notificationSettings']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'login', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'email', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'password', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'nonce', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'saltedPassword', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'firstName', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'lastName', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'gender', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'address', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'city', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'country', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'zipCode', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'geonameId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'locale', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'timezone', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'job', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'activity', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'company', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'phone', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'fax', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'admin', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'guest', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'mailNotificationsActivated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'requestNotificationsActivated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'ldapCreated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'lastAppliedTemplate', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'pushList', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'canChangeProfil', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'canChangeFtpProfil', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'lastConnection', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'mailLocked', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'deleted', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'templateOwner', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'ftpCredential', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'queries', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'settings', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'notificationSettings']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (User $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function getLogin() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLogin', []); + + return parent::getLogin(); + } + + /** + * {@inheritDoc} + */ + public function setLogin($login) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLogin', [$login]); + + return parent::setLogin($login); + } + + /** + * {@inheritDoc} + */ + public function getEmail() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getEmail', []); + + return parent::getEmail(); + } + + /** + * {@inheritDoc} + */ + public function setEmail($email) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setEmail', [$email]); + + return parent::setEmail($email); + } + + /** + * {@inheritDoc} + */ + public function getPassword() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPassword', []); + + return parent::getPassword(); + } + + /** + * {@inheritDoc} + */ + public function setPassword($password) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPassword', [$password]); + + return parent::setPassword($password); + } + + /** + * {@inheritDoc} + */ + public function getNonce() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getNonce', []); + + return parent::getNonce(); + } + + /** + * {@inheritDoc} + */ + public function setNonce($nonce) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setNonce', [$nonce]); + + return parent::setNonce($nonce); + } + + /** + * {@inheritDoc} + */ + public function isSaltedPassword() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isSaltedPassword', []); + + return parent::isSaltedPassword(); + } + + /** + * {@inheritDoc} + */ + public function setSaltedPassword($saltedPassword) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSaltedPassword', [$saltedPassword]); + + return parent::setSaltedPassword($saltedPassword); + } + + /** + * {@inheritDoc} + */ + public function getFirstName() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFirstName', []); + + return parent::getFirstName(); + } + + /** + * {@inheritDoc} + */ + public function setFirstName($firstName) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFirstName', [$firstName]); + + return parent::setFirstName($firstName); + } + + /** + * {@inheritDoc} + */ + public function getLastName() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLastName', []); + + return parent::getLastName(); + } + + /** + * {@inheritDoc} + */ + public function setLastName($lastName) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLastName', [$lastName]); + + return parent::setLastName($lastName); + } + + /** + * {@inheritDoc} + */ + public function getGender() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getGender', []); + + return parent::getGender(); + } + + /** + * {@inheritDoc} + */ + public function setGender($gender) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setGender', [$gender]); + + return parent::setGender($gender); + } + + /** + * {@inheritDoc} + */ + public function getAddress() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAddress', []); + + return parent::getAddress(); + } + + /** + * {@inheritDoc} + */ + public function setAddress($address) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setAddress', [$address]); + + return parent::setAddress($address); + } + + /** + * {@inheritDoc} + */ + public function getCity() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCity', []); + + return parent::getCity(); + } + + /** + * {@inheritDoc} + */ + public function setCity($city) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCity', [$city]); + + return parent::setCity($city); + } + + /** + * {@inheritDoc} + */ + public function getCountry() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCountry', []); + + return parent::getCountry(); + } + + /** + * {@inheritDoc} + */ + public function setCountry($country) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCountry', [$country]); + + return parent::setCountry($country); + } + + /** + * {@inheritDoc} + */ + public function getZipCode() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getZipCode', []); + + return parent::getZipCode(); + } + + /** + * {@inheritDoc} + */ + public function setZipCode($zipCode) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setZipCode', [$zipCode]); + + return parent::setZipCode($zipCode); + } + + /** + * {@inheritDoc} + */ + public function getGeonameId() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getGeonameId', []); + + return parent::getGeonameId(); + } + + /** + * {@inheritDoc} + */ + public function setGeonameId($geonameId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setGeonameId', [$geonameId]); + + return parent::setGeonameId($geonameId); + } + + /** + * {@inheritDoc} + */ + public function getLocale() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLocale', []); + + return parent::getLocale(); + } + + /** + * {@inheritDoc} + */ + public function setLocale($locale) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLocale', [$locale]); + + return parent::setLocale($locale); + } + + /** + * {@inheritDoc} + */ + public function getTimezone() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTimezone', []); + + return parent::getTimezone(); + } + + /** + * {@inheritDoc} + */ + public function setTimezone($timezone) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setTimezone', [$timezone]); + + return parent::setTimezone($timezone); + } + + /** + * {@inheritDoc} + */ + public function getJob() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getJob', []); + + return parent::getJob(); + } + + /** + * {@inheritDoc} + */ + public function setJob($job) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setJob', [$job]); + + return parent::setJob($job); + } + + /** + * {@inheritDoc} + */ + public function getActivity() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getActivity', []); + + return parent::getActivity(); + } + + /** + * {@inheritDoc} + */ + public function setActivity($activity) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setActivity', [$activity]); + + return parent::setActivity($activity); + } + + /** + * {@inheritDoc} + */ + public function getCompany() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCompany', []); + + return parent::getCompany(); + } + + /** + * {@inheritDoc} + */ + public function setCompany($company) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCompany', [$company]); + + return parent::setCompany($company); + } + + /** + * {@inheritDoc} + */ + public function getPhone() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPhone', []); + + return parent::getPhone(); + } + + /** + * {@inheritDoc} + */ + public function setPhone($phone) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPhone', [$phone]); + + return parent::setPhone($phone); + } + + /** + * {@inheritDoc} + */ + public function getFax() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFax', []); + + return parent::getFax(); + } + + /** + * {@inheritDoc} + */ + public function setFax($fax) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFax', [$fax]); + + return parent::setFax($fax); + } + + /** + * {@inheritDoc} + */ + public function isAdmin() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isAdmin', []); + + return parent::isAdmin(); + } + + /** + * {@inheritDoc} + */ + public function setAdmin($admin) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setAdmin', [$admin]); + + return parent::setAdmin($admin); + } + + /** + * {@inheritDoc} + */ + public function isGuest() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isGuest', []); + + return parent::isGuest(); + } + + /** + * {@inheritDoc} + */ + public function setGuest($guest) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setGuest', [$guest]); + + return parent::setGuest($guest); + } + + /** + * {@inheritDoc} + */ + public function hasMailNotificationsActivated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'hasMailNotificationsActivated', []); + + return parent::hasMailNotificationsActivated(); + } + + /** + * {@inheritDoc} + */ + public function setMailNotificationsActivated($mailNotifications) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setMailNotificationsActivated', [$mailNotifications]); + + return parent::setMailNotificationsActivated($mailNotifications); + } + + /** + * {@inheritDoc} + */ + public function hasRequestNotificationsActivated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'hasRequestNotificationsActivated', []); + + return parent::hasRequestNotificationsActivated(); + } + + /** + * {@inheritDoc} + */ + public function setRequestNotificationsActivated($requestNotifications) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRequestNotificationsActivated', [$requestNotifications]); + + return parent::setRequestNotificationsActivated($requestNotifications); + } + + /** + * {@inheritDoc} + */ + public function hasLdapCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'hasLdapCreated', []); + + return parent::hasLdapCreated(); + } + + /** + * {@inheritDoc} + */ + public function setLdapCreated($ldapCreated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLdapCreated', [$ldapCreated]); + + return parent::setLdapCreated($ldapCreated); + } + + /** + * {@inheritDoc} + */ + public function getTemplateOwner() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTemplateOwner', []); + + return parent::getTemplateOwner(); + } + + /** + * {@inheritDoc} + */ + public function setTemplateOwner(\Alchemy\Phrasea\Model\Entities\User $owner) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setTemplateOwner', [$owner]); + + return parent::setTemplateOwner($owner); + } + + /** + * {@inheritDoc} + */ + public function getLastAppliedTemplate() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLastAppliedTemplate', []); + + return parent::getLastAppliedTemplate(); + } + + /** + * {@inheritDoc} + */ + public function setLastAppliedTemplate(\Alchemy\Phrasea\Model\Entities\User $lastAppliedTemplate) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLastAppliedTemplate', [$lastAppliedTemplate]); + + return parent::setLastAppliedTemplate($lastAppliedTemplate); + } + + /** + * {@inheritDoc} + */ + public function getPushList() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPushList', []); + + return parent::getPushList(); + } + + /** + * {@inheritDoc} + */ + public function setPushList($pushList) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPushList', [$pushList]); + + return parent::setPushList($pushList); + } + + /** + * {@inheritDoc} + */ + public function canChangeProfil() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'canChangeProfil', []); + + return parent::canChangeProfil(); + } + + /** + * {@inheritDoc} + */ + public function setCanChangeProfil($canChangeProfil) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCanChangeProfil', [$canChangeProfil]); + + return parent::setCanChangeProfil($canChangeProfil); + } + + /** + * {@inheritDoc} + */ + public function canChangeFtpProfil() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'canChangeFtpProfil', []); + + return parent::canChangeFtpProfil(); + } + + /** + * {@inheritDoc} + */ + public function setCanChangeFtpProfil($canChangeFtpProfil) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCanChangeFtpProfil', [$canChangeFtpProfil]); + + return parent::setCanChangeFtpProfil($canChangeFtpProfil); + } + + /** + * {@inheritDoc} + */ + public function getLastConnection() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLastConnection', []); + + return parent::getLastConnection(); + } + + /** + * {@inheritDoc} + */ + public function setLastConnection(\DateTime $lastConnection) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLastConnection', [$lastConnection]); + + return parent::setLastConnection($lastConnection); + } + + /** + * {@inheritDoc} + */ + public function isMailLocked() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isMailLocked', []); + + return parent::isMailLocked(); + } + + /** + * {@inheritDoc} + */ + public function setMailLocked($mailLocked) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setMailLocked', [$mailLocked]); + + return parent::setMailLocked($mailLocked); + } + + /** + * {@inheritDoc} + */ + public function isDeleted() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isDeleted', []); + + return parent::isDeleted(); + } + + /** + * {@inheritDoc} + */ + public function setDeleted($deleted) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setDeleted', [$deleted]); + + return parent::setDeleted($deleted); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getFtpCredential() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFtpCredential', []); + + return parent::getFtpCredential(); + } + + /** + * {@inheritDoc} + */ + public function setFtpCredential(\Alchemy\Phrasea\Model\Entities\FtpCredential $ftpCredential = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFtpCredential', [$ftpCredential]); + + return parent::setFtpCredential($ftpCredential); + } + + /** + * {@inheritDoc} + */ + public function getQueries() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getQueries', []); + + return parent::getQueries(); + } + + /** + * {@inheritDoc} + */ + public function addQuery(\Alchemy\Phrasea\Model\Entities\UserQuery $query) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addQuery', [$query]); + + return parent::addQuery($query); + } + + /** + * {@inheritDoc} + */ + public function getSettings() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSettings', []); + + return parent::getSettings(); + } + + /** + * {@inheritDoc} + */ + public function addSetting(\Alchemy\Phrasea\Model\Entities\UserSetting $setting) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addSetting', [$setting]); + + return parent::addSetting($setting); + } + + /** + * {@inheritDoc} + */ + public function getNotificationSettings() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getNotificationSettings', []); + + return parent::getNotificationSettings(); + } + + /** + * {@inheritDoc} + */ + public function addNotificationSettings(\Alchemy\Phrasea\Model\Entities\UserNotificationSetting $notificationSetting) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addNotificationSettings', [$notificationSetting]); + + return parent::addNotificationSettings($notificationSetting); + } + + /** + * {@inheritDoc} + */ + public function isTemplate() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isTemplate', []); + + return parent::isTemplate(); + } + + /** + * {@inheritDoc} + */ + public function isSpecial() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isSpecial', []); + + return parent::isSpecial(); + } + + /** + * {@inheritDoc} + */ + public function getDisplayName() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getDisplayName', []); + + return parent::getDisplayName(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUserNotificationSetting.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUserNotificationSetting.php new file mode 100644 index 0000000000..19d059f974 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUserNotificationSetting.php @@ -0,0 +1,301 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class UserNotificationSetting extends \Alchemy\Phrasea\Model\Entities\UserNotificationSetting implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'value', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'updated']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'value', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'updated']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (UserNotificationSetting $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function getUser() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []); + + return parent::getUser(); + } + + /** + * {@inheritDoc} + */ + public function setUser(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]); + + return parent::setUser($user); + } + + /** + * {@inheritDoc} + */ + public function getName() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []); + + return parent::getName(); + } + + /** + * {@inheritDoc} + */ + public function setName($name) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$name]); + + return parent::setName($name); + } + + /** + * {@inheritDoc} + */ + public function getValue() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getValue', []); + + return parent::getValue(); + } + + /** + * {@inheritDoc} + */ + public function setValue($value) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setValue', [$value]); + + return parent::setValue($value); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated($updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUserQuery.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUserQuery.php new file mode 100644 index 0000000000..69b72b6dba --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUserQuery.php @@ -0,0 +1,257 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class UserQuery extends \Alchemy\Phrasea\Model\Entities\UserQuery implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserQuery' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserQuery' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserQuery' . "\0" . 'query', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserQuery' . "\0" . 'created']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserQuery' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserQuery' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserQuery' . "\0" . 'query', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserQuery' . "\0" . 'created']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (UserQuery $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function getUser() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []); + + return parent::getUser(); + } + + /** + * {@inheritDoc} + */ + public function setUser(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]); + + return parent::setUser($user); + } + + /** + * {@inheritDoc} + */ + public function getQuery() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getQuery', []); + + return parent::getQuery(); + } + + /** + * {@inheritDoc} + */ + public function setQuery($query) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setQuery', [$query]); + + return parent::setQuery($query); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUserSetting.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUserSetting.php new file mode 100644 index 0000000000..699e7e1859 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUserSetting.php @@ -0,0 +1,301 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class UserSetting extends \Alchemy\Phrasea\Model\Entities\UserSetting implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'value', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'updated']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'value', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'updated']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (UserSetting $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function getUser() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []); + + return parent::getUser(); + } + + /** + * {@inheritDoc} + */ + public function setUser(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]); + + return parent::setUser($user); + } + + /** + * {@inheritDoc} + */ + public function getName() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []); + + return parent::getName(); + } + + /** + * {@inheritDoc} + */ + public function setName($name) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$name]); + + return parent::setName($name); + } + + /** + * {@inheritDoc} + */ + public function getValue() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getValue', []); + + return parent::getValue(); + } + + /** + * {@inheritDoc} + */ + public function setValue($value) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setValue', [$value]); + + return parent::setValue($value); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUsrAuthProvider.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUsrAuthProvider.php new file mode 100644 index 0000000000..da663885ad --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUsrAuthProvider.php @@ -0,0 +1,301 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class UsrAuthProvider extends \Alchemy\Phrasea\Model\Entities\UsrAuthProvider implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'provider', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'distant_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'updated']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'provider', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'distant_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'updated']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (UsrAuthProvider $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setUser(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]); + + return parent::setUser($user); + } + + /** + * {@inheritDoc} + */ + public function getUser() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []); + + return parent::getUser(); + } + + /** + * {@inheritDoc} + */ + public function setProvider($provider) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setProvider', [$provider]); + + return parent::setProvider($provider); + } + + /** + * {@inheritDoc} + */ + public function getProvider() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getProvider', []); + + return parent::getProvider(); + } + + /** + * {@inheritDoc} + */ + public function setDistantId($distantId) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setDistantId', [$distantId]); + + return parent::setDistantId($distantId); + } + + /** + * {@inheritDoc} + */ + public function getDistantId() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getDistantId', []); + + return parent::getDistantId(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUsrList.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUsrList.php new file mode 100644 index 0000000000..8f7c5b5156 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUsrList.php @@ -0,0 +1,356 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class UsrList extends \Alchemy\Phrasea\Model\Entities\UsrList implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'owners', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'entries']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'owners', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'entries']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (UsrList $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setName($name) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$name]); + + return parent::setName($name); + } + + /** + * {@inheritDoc} + */ + public function getName() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []); + + return parent::getName(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function addOwner(\Alchemy\Phrasea\Model\Entities\UsrListOwner $owners) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addOwner', [$owners]); + + return parent::addOwner($owners); + } + + /** + * {@inheritDoc} + */ + public function removeOwner(\Alchemy\Phrasea\Model\Entities\UsrListOwner $owners) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeOwner', [$owners]); + + return parent::removeOwner($owners); + } + + /** + * {@inheritDoc} + */ + public function getOwners() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOwners', []); + + return parent::getOwners(); + } + + /** + * {@inheritDoc} + */ + public function addEntrie(\Alchemy\Phrasea\Model\Entities\UsrListEntry $entries) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addEntrie', [$entries]); + + return parent::addEntrie($entries); + } + + /** + * {@inheritDoc} + */ + public function removeEntrie(\Alchemy\Phrasea\Model\Entities\UsrListEntry $entries) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeEntrie', [$entries]); + + return parent::removeEntrie($entries); + } + + /** + * {@inheritDoc} + */ + public function getEntries() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getEntries', []); + + return parent::getEntries(); + } + + /** + * {@inheritDoc} + */ + public function hasAccess(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'hasAccess', [$user]); + + return parent::hasAccess($user); + } + + /** + * {@inheritDoc} + */ + public function getOwner(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOwner', [$user]); + + return parent::getOwner($user); + } + + /** + * {@inheritDoc} + */ + public function has(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'has', [$user]); + + return parent::has($user); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUsrListEntry.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUsrListEntry.php new file mode 100644 index 0000000000..229db893bf --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUsrListEntry.php @@ -0,0 +1,279 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class UsrListEntry extends \Alchemy\Phrasea\Model\Entities\UsrListEntry implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListEntry' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListEntry' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListEntry' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListEntry' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListEntry' . "\0" . 'list']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListEntry' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListEntry' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListEntry' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListEntry' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListEntry' . "\0" . 'list']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (UsrListEntry $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setUser(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]); + + return parent::setUser($user); + } + + /** + * {@inheritDoc} + */ + public function getUser() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []); + + return parent::getUser(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function setList(\Alchemy\Phrasea\Model\Entities\UsrList $list = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setList', [$list]); + + return parent::setList($list); + } + + /** + * {@inheritDoc} + */ + public function getList() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getList', []); + + return parent::getList(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUsrListOwner.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUsrListOwner.php new file mode 100644 index 0000000000..3894723bd9 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesUsrListOwner.php @@ -0,0 +1,301 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class UsrListOwner extends \Alchemy\Phrasea\Model\Entities\UsrListOwner implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'role', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'list']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'role', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'list']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (UsrListOwner $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setUser(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]); + + return parent::setUser($user); + } + + /** + * {@inheritDoc} + */ + public function getUser() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []); + + return parent::getUser(); + } + + /** + * {@inheritDoc} + */ + public function setRole($role) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRole', [$role]); + + return parent::setRole($role); + } + + /** + * {@inheritDoc} + */ + public function getRole() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRole', []); + + return parent::getRole(); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function setList(\Alchemy\Phrasea\Model\Entities\UsrList $list = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setList', [$list]); + + return parent::setList($list); + } + + /** + * {@inheritDoc} + */ + public function getList() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getList', []); + + return parent::getList(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesValidationData.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesValidationData.php new file mode 100644 index 0000000000..d3385b983c --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesValidationData.php @@ -0,0 +1,301 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class ValidationData extends \Alchemy\Phrasea\Model\Entities\ValidationData implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'agreement', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'note', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'participant', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'basket_element']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'agreement', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'note', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'participant', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'basket_element']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (ValidationData $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setAgreement($agreement) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setAgreement', [$agreement]); + + return parent::setAgreement($agreement); + } + + /** + * {@inheritDoc} + */ + public function getAgreement() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAgreement', []); + + return parent::getAgreement(); + } + + /** + * {@inheritDoc} + */ + public function setNote($note) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setNote', [$note]); + + return parent::setNote($note); + } + + /** + * {@inheritDoc} + */ + public function getNote() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getNote', []); + + return parent::getNote(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function setParticipant(\Alchemy\Phrasea\Model\Entities\ValidationParticipant $participant = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setParticipant', [$participant]); + + return parent::setParticipant($participant); + } + + /** + * {@inheritDoc} + */ + public function getParticipant() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getParticipant', []); + + return parent::getParticipant(); + } + + /** + * {@inheritDoc} + */ + public function setBasketElement(\Alchemy\Phrasea\Model\Entities\BasketElement $basketElement = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBasketElement', [$basketElement]); + + return parent::setBasketElement($basketElement); + } + + /** + * {@inheritDoc} + */ + public function getBasketElement() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBasketElement', []); + + return parent::getBasketElement(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesValidationParticipant.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesValidationParticipant.php new file mode 100644 index 0000000000..a299076712 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesValidationParticipant.php @@ -0,0 +1,389 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class ValidationParticipant extends \Alchemy\Phrasea\Model\Entities\ValidationParticipant implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'is_aware', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'is_confirmed', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'can_agree', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'can_see_others', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'reminded', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'datas', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'session', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'user']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'is_aware', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'is_confirmed', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'can_agree', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'can_see_others', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'reminded', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'datas', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'session', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'user']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (ValidationParticipant $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setUser(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]); + + return parent::setUser($user); + } + + /** + * {@inheritDoc} + */ + public function getUser() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []); + + return parent::getUser(); + } + + /** + * {@inheritDoc} + */ + public function setIsAware($isAware) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setIsAware', [$isAware]); + + return parent::setIsAware($isAware); + } + + /** + * {@inheritDoc} + */ + public function getIsAware() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getIsAware', []); + + return parent::getIsAware(); + } + + /** + * {@inheritDoc} + */ + public function setIsConfirmed($isConfirmed) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setIsConfirmed', [$isConfirmed]); + + return parent::setIsConfirmed($isConfirmed); + } + + /** + * {@inheritDoc} + */ + public function getIsConfirmed() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getIsConfirmed', []); + + return parent::getIsConfirmed(); + } + + /** + * {@inheritDoc} + */ + public function setCanAgree($canAgree) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCanAgree', [$canAgree]); + + return parent::setCanAgree($canAgree); + } + + /** + * {@inheritDoc} + */ + public function getCanAgree() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCanAgree', []); + + return parent::getCanAgree(); + } + + /** + * {@inheritDoc} + */ + public function setCanSeeOthers($canSeeOthers) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCanSeeOthers', [$canSeeOthers]); + + return parent::setCanSeeOthers($canSeeOthers); + } + + /** + * {@inheritDoc} + */ + public function getCanSeeOthers() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCanSeeOthers', []); + + return parent::getCanSeeOthers(); + } + + /** + * {@inheritDoc} + */ + public function setReminded($reminded) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setReminded', [$reminded]); + + return parent::setReminded($reminded); + } + + /** + * {@inheritDoc} + */ + public function getReminded() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getReminded', []); + + return parent::getReminded(); + } + + /** + * {@inheritDoc} + */ + public function addData(\Alchemy\Phrasea\Model\Entities\ValidationData $datas) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addData', [$datas]); + + return parent::addData($datas); + } + + /** + * {@inheritDoc} + */ + public function removeData(\Alchemy\Phrasea\Model\Entities\ValidationData $datas) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeData', [$datas]); + + return parent::removeData($datas); + } + + /** + * {@inheritDoc} + */ + public function getDatas() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getDatas', []); + + return parent::getDatas(); + } + + /** + * {@inheritDoc} + */ + public function setSession(\Alchemy\Phrasea\Model\Entities\ValidationSession $session = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSession', [$session]); + + return parent::setSession($session); + } + + /** + * {@inheritDoc} + */ + public function getSession() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSession', []); + + return parent::getSession(); + } + + /** + * {@inheritDoc} + */ + public function isReleasable() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isReleasable', []); + + return parent::isReleasable(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesValidationSession.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesValidationSession.php new file mode 100644 index 0000000000..1d8f3697d0 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesValidationSession.php @@ -0,0 +1,378 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class ValidationSession extends \Alchemy\Phrasea\Model\Entities\ValidationSession implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'initiator', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'expires', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'basket', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'participants']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'initiator', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'expires', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'basket', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'participants']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (ValidationSession $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setInitiator(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setInitiator', [$user]); + + return parent::setInitiator($user); + } + + /** + * {@inheritDoc} + */ + public function getInitiator() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getInitiator', []); + + return parent::getInitiator(); + } + + /** + * {@inheritDoc} + */ + public function isInitiator(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isInitiator', [$user]); + + return parent::isInitiator($user); + } + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function setUpdated(\DateTime $updated) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', [$updated]); + + return parent::setUpdated($updated); + } + + /** + * {@inheritDoc} + */ + public function getUpdated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', []); + + return parent::getUpdated(); + } + + /** + * {@inheritDoc} + */ + public function setExpires($expires) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setExpires', [$expires]); + + return parent::setExpires($expires); + } + + /** + * {@inheritDoc} + */ + public function getExpires() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getExpires', []); + + return parent::getExpires(); + } + + /** + * {@inheritDoc} + */ + public function setBasket(\Alchemy\Phrasea\Model\Entities\Basket $basket = NULL) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBasket', [$basket]); + + return parent::setBasket($basket); + } + + /** + * {@inheritDoc} + */ + public function getBasket() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBasket', []); + + return parent::getBasket(); + } + + /** + * {@inheritDoc} + */ + public function addParticipant(\Alchemy\Phrasea\Model\Entities\ValidationParticipant $participants) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'addParticipant', [$participants]); + + return parent::addParticipant($participants); + } + + /** + * {@inheritDoc} + */ + public function removeParticipant(\Alchemy\Phrasea\Model\Entities\ValidationParticipant $participants) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeParticipant', [$participants]); + + return parent::removeParticipant($participants); + } + + /** + * {@inheritDoc} + */ + public function getParticipants() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getParticipants', []); + + return parent::getParticipants(); + } + + /** + * {@inheritDoc} + */ + public function isFinished() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isFinished', []); + + return parent::isFinished(); + } + + /** + * {@inheritDoc} + */ + public function getValidationString(\Alchemy\Phrasea\Application $app, \Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getValidationString', [$app, $user]); + + return parent::getValidationString($app, $user); + } + + /** + * {@inheritDoc} + */ + public function getParticipant(\Alchemy\Phrasea\Model\Entities\User $user) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getParticipant', [$user]); + + return parent::getParticipant($user); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesWebhookEvent.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesWebhookEvent.php new file mode 100644 index 0000000000..7c4f5f2dda --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesWebhookEvent.php @@ -0,0 +1,301 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class WebhookEvent extends \Alchemy\Phrasea\Model\Entities\WebhookEvent implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEvent' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEvent' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEvent' . "\0" . 'type', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEvent' . "\0" . 'data', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEvent' . "\0" . 'processed', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEvent' . "\0" . 'created']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEvent' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEvent' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEvent' . "\0" . 'type', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEvent' . "\0" . 'data', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEvent' . "\0" . 'processed', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEvent' . "\0" . 'created']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (WebhookEvent $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setData(array $data) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setData', [$data]); + + return parent::setData($data); + } + + /** + * {@inheritDoc} + */ + public function getData() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getData', []); + + return parent::getData(); + } + + /** + * {@inheritDoc} + */ + public function setName($name) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$name]); + + return parent::setName($name); + } + + /** + * {@inheritDoc} + */ + public function getName() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []); + + return parent::getName(); + } + + /** + * {@inheritDoc} + */ + public function setProcessed($processed) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setProcessed', [$processed]); + + return parent::setProcessed($processed); + } + + /** + * {@inheritDoc} + */ + public function isProcessed() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isProcessed', []); + + return parent::isProcessed(); + } + + /** + * {@inheritDoc} + */ + public function getType() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getType', []); + + return parent::getType(); + } + + /** + * {@inheritDoc} + */ + public function setType($type) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setType', [$type]); + + return parent::setType($type); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesWebhookEventDelivery.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesWebhookEventDelivery.php new file mode 100644 index 0000000000..b47b04061f --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesWebhookEventDelivery.php @@ -0,0 +1,312 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class WebhookEventDelivery extends \Alchemy\Phrasea\Model\Entities\WebhookEventDelivery implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventDelivery' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventDelivery' . "\0" . 'application', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventDelivery' . "\0" . 'event', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventDelivery' . "\0" . 'delivered', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventDelivery' . "\0" . 'deliveryTries', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventDelivery' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventDelivery' . "\0" . 'payload']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventDelivery' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventDelivery' . "\0" . 'application', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventDelivery' . "\0" . 'event', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventDelivery' . "\0" . 'delivered', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventDelivery' . "\0" . 'deliveryTries', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventDelivery' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventDelivery' . "\0" . 'payload']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (WebhookEventDelivery $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function setCreated(\DateTime $created) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', [$created]); + + return parent::setCreated($created); + } + + /** + * {@inheritDoc} + */ + public function getCreated() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', []); + + return parent::getCreated(); + } + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return (int) parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function setDelivered($delivered) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setDelivered', [$delivered]); + + return parent::setDelivered($delivered); + } + + /** + * {@inheritDoc} + */ + public function isDelivered() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'isDelivered', []); + + return parent::isDelivered(); + } + + /** + * {@inheritDoc} + */ + public function getDeliveryTries() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getDeliveryTries', []); + + return parent::getDeliveryTries(); + } + + /** + * {@inheritDoc} + */ + public function setDeliverTries($try) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setDeliverTries', [$try]); + + return parent::setDeliverTries($try); + } + + /** + * {@inheritDoc} + */ + public function getThirdPartyApplication() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getThirdPartyApplication', []); + + return parent::getThirdPartyApplication(); + } + + /** + * {@inheritDoc} + */ + public function setThirdPartyApplication(\Alchemy\Phrasea\Model\Entities\ApiApplication $application) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setThirdPartyApplication', [$application]); + + return parent::setThirdPartyApplication($application); + } + + /** + * {@inheritDoc} + */ + public function setWebhookEvent(\Alchemy\Phrasea\Model\Entities\WebhookEvent $event) + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'setWebhookEvent', [$event]); + + return parent::setWebhookEvent($event); + } + + /** + * {@inheritDoc} + */ + public function getWebhookEvent() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getWebhookEvent', []); + + return parent::getWebhookEvent(); + } + + /** + * {@inheritDoc} + */ + public function getPayload() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPayload', []); + + return parent::getPayload(); + } + +} diff --git a/resources/proxies/__CG__AlchemyPhraseaModelEntitiesWebhookEventPayload.php b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesWebhookEventPayload.php new file mode 100644 index 0000000000..c170e0dac3 --- /dev/null +++ b/resources/proxies/__CG__AlchemyPhraseaModelEntitiesWebhookEventPayload.php @@ -0,0 +1,246 @@ +<?php + +namespace Alchemy\Phrasea\Model\Proxies\__CG__\Alchemy\Phrasea\Model\Entities; + +/** + * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR + */ +class WebhookEventPayload extends \Alchemy\Phrasea\Model\Entities\WebhookEventPayload implements \Doctrine\ORM\Proxy\Proxy +{ + /** + * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with + * three parameters, being respectively the proxy object to be initialized, the method that triggered the + * initialization process and an array of ordered parameters that were passed to that method. + * + * @see \Doctrine\Common\Persistence\Proxy::__setInitializer + */ + public $__initializer__; + + /** + * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object + * + * @see \Doctrine\Common\Persistence\Proxy::__setCloner + */ + public $__cloner__; + + /** + * @var boolean flag indicating if this object was already initialized + * + * @see \Doctrine\Common\Persistence\Proxy::__isInitialized + */ + public $__isInitialized__ = false; + + /** + * @var array properties to be lazy loaded, with keys being the property + * names and values being their default values + * + * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties + */ + public static $lazyPropertiesDefaults = []; + + + + /** + * @param \Closure $initializer + * @param \Closure $cloner + */ + public function __construct($initializer = null, $cloner = null) + { + + $this->__initializer__ = $initializer; + $this->__cloner__ = $cloner; + } + + + + + + + + /** + * + * @return array + */ + public function __sleep() + { + if ($this->__isInitialized__) { + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventPayload' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventPayload' . "\0" . 'delivery', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventPayload' . "\0" . 'requestPayload', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventPayload' . "\0" . 'responsePayload', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventPayload' . "\0" . 'statusCode', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventPayload' . "\0" . 'headers']; + } + + return ['__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventPayload' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventPayload' . "\0" . 'delivery', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventPayload' . "\0" . 'requestPayload', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventPayload' . "\0" . 'responsePayload', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventPayload' . "\0" . 'statusCode', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\WebhookEventPayload' . "\0" . 'headers']; + } + + /** + * + */ + public function __wakeup() + { + if ( ! $this->__isInitialized__) { + $this->__initializer__ = function (WebhookEventPayload $proxy) { + $proxy->__setInitializer(null); + $proxy->__setCloner(null); + + $existingProperties = get_object_vars($proxy); + + foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { + if ( ! array_key_exists($property, $existingProperties)) { + $proxy->$property = $defaultValue; + } + } + }; + + } + } + + /** + * + */ + public function __clone() + { + $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []); + } + + /** + * Forces initialization of the proxy + */ + public function __load() + { + $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []); + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __isInitialized() + { + return $this->__isInitialized__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitialized($initialized) + { + $this->__isInitialized__ = $initialized; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setInitializer(\Closure $initializer = null) + { + $this->__initializer__ = $initializer; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __getInitializer() + { + return $this->__initializer__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + */ + public function __setCloner(\Closure $cloner = null) + { + $this->__cloner__ = $cloner; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific cloning logic + */ + public function __getCloner() + { + return $this->__cloner__; + } + + /** + * {@inheritDoc} + * @internal generated method: use only when explicitly handling proxy specific loading logic + * @static + */ + public function __getLazyProperties() + { + return self::$lazyPropertiesDefaults; + } + + + /** + * {@inheritDoc} + */ + public function getId() + { + if ($this->__isInitialized__ === false) { + return parent::getId(); + } + + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []); + + return parent::getId(); + } + + /** + * {@inheritDoc} + */ + public function getDelivery() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getDelivery', []); + + return parent::getDelivery(); + } + + /** + * {@inheritDoc} + */ + public function getRequestPayload() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRequestPayload', []); + + return parent::getRequestPayload(); + } + + /** + * {@inheritDoc} + */ + public function getResponsePayload() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getResponsePayload', []); + + return parent::getResponsePayload(); + } + + /** + * {@inheritDoc} + */ + public function getStatusCode() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getStatusCode', []); + + return parent::getStatusCode(); + } + + /** + * {@inheritDoc} + */ + public function getResponseHeaders() + { + + $this->__initializer__ && $this->__initializer__->__invoke($this, 'getResponseHeaders', []); + + return parent::getResponseHeaders(); + } + +} diff --git a/resources/www/_shared/styles/_main-menu.scss b/resources/www/_shared/styles/_main-menu.scss index 1f530bcc2b..62397154d7 100644 --- a/resources/www/_shared/styles/_main-menu.scss +++ b/resources/www/_shared/styles/_main-menu.scss @@ -38,13 +38,13 @@ $mainMenuBottomBorder: none !default; display: inline-block !important; } .show-menu { - display: none; i { font-size: 26px; vertical-align: middle; color: $mainMenuLinkActiveColor; } img { + display: none; margin-top: 5px; } } @@ -62,6 +62,10 @@ $mainMenuBottomBorder: none !default; } #mainLogo { margin:0 5px; + vertical-align: middle; + @media screen and (max-width: 1064px) { + max-width: 100px; + } } li { display: inline-block; @@ -148,8 +152,10 @@ $mainMenuBottomBorder: none !default; } #mainMenu { .show-menu { - display: inline-block; cursor: pointer; + img { + display: inline-block; + } } .mobilemenu { display: block; @@ -159,7 +165,6 @@ $mainMenuBottomBorder: none !default; } #nav_menu_container, #nav_customlink_container, #nav_account_container { position: absolute; - top: 35px; z-index: 1000; .nav_menu { z-index: 1000; @@ -208,13 +213,13 @@ $mainMenuBottomBorder: none !default; } } #nav_menu_container { - left: 10px; + left: 5px; width: 172px; .nav_menu { top: 9px; } .arrow-up { - left: 52px; + left: 5px; display: block; position: absolute; } @@ -222,7 +227,7 @@ $mainMenuBottomBorder: none !default; #nav_customlink_container { display: none; position: relative; - left: 10px; + left: 4px; width: auto; .nav-wrapper-box { position: absolute; @@ -234,19 +239,21 @@ $mainMenuBottomBorder: none !default; .nav_menu { position: relative; li.menu-bar-item { - width: 100%; - left: 0; + /* width: 100%; + left: 0;*/ } li.menu-bar-item a { > span { padding: 0; display: inline-block; + max-width: 140px; + overflow: hidden; } } } } .arrow-up { - left: 82px; + left: 5px; display: block; position: absolute; } @@ -258,12 +265,13 @@ $mainMenuBottomBorder: none !default; width: auto; .nav-wrapper-box { position: absolute; - right: 10px; + right: -4px; background: #d8d8d8; border-radius: 5px; padding-right: 10px; padding-left: 10px; top: 9px; + width: 200px; .nav_menu { position: relative; li.menu-bar-item { @@ -274,12 +282,14 @@ $mainMenuBottomBorder: none !default; > span { padding: 0; display: inline-block; + max-width: 170px; + overflow: hidden; } } } } .arrow-up { - right: 23px; + right: 6px; display: block; position: absolute; } diff --git a/resources/www/account/styles/_skin.scss b/resources/www/account/styles/_skin.scss index ab53ae6fd9..5f0cb7d2ab 100644 --- a/resources/www/account/styles/_skin.scss +++ b/resources/www/account/styles/_skin.scss @@ -300,8 +300,8 @@ blockquote { page-break-inside: avoid; background: #f9f9f9; border-left: 10px solid #ccc; - margin: 1.5em 10px; - padding: 0.5em 10px; + margin: 1.5rem 10px; + padding: 0.5rem 10px; quotes: "\201C""\201D""\2018""\2019"; color: #333; } @@ -1056,6 +1056,170 @@ h1, h2, h3, h4 { line-height: 20px; } +#updatingDemand .icon-box { + display: inline-block; + width:2%; + height: 29px; +} + +#updatingDemand .icon-box input { + position: relative; + bottom: 0.4rem; +} + +#updatingDemand .coll-name { + width:48%; + padding-left:2%; + display: inline-block; + line-height: 1.8rem; + height: 100%; +} + +#updatingDemand h3 { + border: 1px solid whitesmoke; + margin: 2rem 0; + text-align: center; +} + +#updatingDemand .coll-name span{ + font-size:initial; +} + +#updatingDemand .cgu-block { + margin:1.6rem auto; +} + +#updatingDemand .base-block { + font-size: 0; +} + +#updatingDemand .status { + font-size:initial; + padding-left: 0.6rem; +} + +#updatingDemand .status-box { + display: inline-block; + width:48%; + line-height: 1.2rem; +} + +#updatingDemand .registration { + width:100%; + display: inline-block; + position:relative; + line-height: 0.8rem; + border: 1px solid #333333; + height: 30px; +} + +#updatingDemand h3:after { + content: ""; + font-family: FontAwesome; + font-weight: 400; + font-style: normal; + text-decoration: inherit; + -webkit-font-smoothing: antialiased; + display: inline; + width: auto; + height: auto; + line-height: normal; + vertical-align: baseline; + background-image: none; + background-position: 0 0; + background-repeat: repeat; + margin-top: 0; + font-size:2.3rem; + color:#a1a1a1; + float: right; + position: relative; + right: 10px; + -webkit-transition:-webkit-transform .5s; + -moz-transition:-moz-transform .5s; + -o-transition:-o-transform .5s; + -ms-transition:-ms-transform .5s; + transition:transform .5s; + -ms-transform: rotate(270deg); + -webkit-transform: rotate(270deg); + transform: rotate(270deg); + top: 2px; +} + +#updatingDemand h3.toggled:after { + -ms-transform: rotate(180deg); /* IE 9 */ + -webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */ + transform: rotate(180deg); +} + +#updatingDemand .icon { + width: 20px; + height:20px; + border-radius:10px; + display:inline-block; + position: relative; + top: 0.35rem; +} + +#updatingDemand .icon.active { + background-color:#61BD4F; +} + +#updatingDemand .status.active { + color: #61BD4F; +} + +#updatingDemand .icon.registrable { + background-color:#F2D600; +} + +#updatingDemand .status.registrable { + color: #F2D600; +} + +#updatingDemand .icon.in-time { + background-color:#0079BF; +} + +#updatingDemand .status.in-time { + color: #0079BF; +} + +#updatingDemand .icon.out-dated { + background-color:#EB5A46; +} + +#updatingDemand .status.out-dated { + color: #EB5A46; +} + +#updatingDemand .icon.pending { + background-color:#FFAB4A; +} + +#updatingDemand .status.pending { + color: #FFAB4A; +} + +#updatingDemand .icon.rejected { + background-color:red; +} + +#updatingDemand .status.rejected { + color: red; +} + +#updatingDemand .icon.accepted { + background-color:#61BD4F; +} + +#updatingDemand .status.accepted { + color: #61BD4F; +} + +#updatingDemand .registration:nth-of-type(even) { + background: #333; +} + form[name="changeEmail"] .control-label { width: 200px; } diff --git a/resources/www/admin/styles/main.scss b/resources/www/admin/styles/main.scss index 1fb8750d83..ee13922f56 100644 --- a/resources/www/admin/styles/main.scss +++ b/resources/www/admin/styles/main.scss @@ -148,6 +148,9 @@ $mainMenuLinkBackgroundHoverColor: transparent; } #FNDR a { text-decoration: none; + img { + width: 16px; + } } #FNDR a:hover { text-decoration: none; @@ -368,9 +371,6 @@ div.switch_right.unchecked { .board_section { margin: 0 0 30px; } -.board_section ul { - margin: 0 0 20px 15px; -} .board_section div[class="section"] { height: auto; } @@ -843,4 +843,4 @@ span.simplecolorpicker.picker { @import './databases'; @import './fields'; -@import './tables'; \ No newline at end of file +@import './tables'; diff --git a/resources/www/common/images/Thumbs.db b/resources/www/common/images/Thumbs.db new file mode 100644 index 0000000000..d396c36dd8 Binary files /dev/null and b/resources/www/common/images/Thumbs.db differ diff --git a/resources/www/common/images/blank.gif b/resources/www/common/images/blank.gif new file mode 100644 index 0000000000..75b945d255 Binary files /dev/null and b/resources/www/common/images/blank.gif differ diff --git a/resources/www/common/images/colorpicker_background.png b/resources/www/common/images/colorpicker_background.png new file mode 100644 index 0000000000..7e916d5d1f Binary files /dev/null and b/resources/www/common/images/colorpicker_background.png differ diff --git a/resources/www/common/images/colorpicker_hex.png b/resources/www/common/images/colorpicker_hex.png new file mode 100644 index 0000000000..4e532d7c65 Binary files /dev/null and b/resources/www/common/images/colorpicker_hex.png differ diff --git a/resources/www/common/images/colorpicker_hsb_b.png b/resources/www/common/images/colorpicker_hsb_b.png new file mode 100644 index 0000000000..dfac595d01 Binary files /dev/null and b/resources/www/common/images/colorpicker_hsb_b.png differ diff --git a/resources/www/common/images/colorpicker_hsb_h.png b/resources/www/common/images/colorpicker_hsb_h.png new file mode 100644 index 0000000000..3977ed9f21 Binary files /dev/null and b/resources/www/common/images/colorpicker_hsb_h.png differ diff --git a/resources/www/common/images/colorpicker_hsb_s.png b/resources/www/common/images/colorpicker_hsb_s.png new file mode 100644 index 0000000000..a2a699736c Binary files /dev/null and b/resources/www/common/images/colorpicker_hsb_s.png differ diff --git a/resources/www/common/images/colorpicker_indic.gif b/resources/www/common/images/colorpicker_indic.gif new file mode 100644 index 0000000000..f9fa95e282 Binary files /dev/null and b/resources/www/common/images/colorpicker_indic.gif differ diff --git a/resources/www/common/images/colorpicker_overlay.png b/resources/www/common/images/colorpicker_overlay.png new file mode 100644 index 0000000000..561cdd9c59 Binary files /dev/null and b/resources/www/common/images/colorpicker_overlay.png differ diff --git a/resources/www/common/images/colorpicker_rgb_b.png b/resources/www/common/images/colorpicker_rgb_b.png new file mode 100644 index 0000000000..dfac595d01 Binary files /dev/null and b/resources/www/common/images/colorpicker_rgb_b.png differ diff --git a/resources/www/common/images/colorpicker_rgb_g.png b/resources/www/common/images/colorpicker_rgb_g.png new file mode 100644 index 0000000000..72b32760a5 Binary files /dev/null and b/resources/www/common/images/colorpicker_rgb_g.png differ diff --git a/resources/www/common/images/colorpicker_rgb_r.png b/resources/www/common/images/colorpicker_rgb_r.png new file mode 100644 index 0000000000..4855fe03f8 Binary files /dev/null and b/resources/www/common/images/colorpicker_rgb_r.png differ diff --git a/resources/www/common/images/colorpicker_select.gif b/resources/www/common/images/colorpicker_select.gif new file mode 100644 index 0000000000..599f7f13a6 Binary files /dev/null and b/resources/www/common/images/colorpicker_select.gif differ diff --git a/resources/www/common/images/colorpicker_submit.png b/resources/www/common/images/colorpicker_submit.png new file mode 100644 index 0000000000..7f4c0825f5 Binary files /dev/null and b/resources/www/common/images/colorpicker_submit.png differ diff --git a/resources/www/common/images/custom_background.png b/resources/www/common/images/custom_background.png new file mode 100644 index 0000000000..cf55ffdd68 Binary files /dev/null and b/resources/www/common/images/custom_background.png differ diff --git a/resources/www/common/images/custom_hex.png b/resources/www/common/images/custom_hex.png new file mode 100644 index 0000000000..888f444495 Binary files /dev/null and b/resources/www/common/images/custom_hex.png differ diff --git a/resources/www/common/images/custom_hsb_b.png b/resources/www/common/images/custom_hsb_b.png new file mode 100644 index 0000000000..2f99dae8e6 Binary files /dev/null and b/resources/www/common/images/custom_hsb_b.png differ diff --git a/resources/www/common/images/custom_hsb_h.png b/resources/www/common/images/custom_hsb_h.png new file mode 100644 index 0000000000..a217e9218e Binary files /dev/null and b/resources/www/common/images/custom_hsb_h.png differ diff --git a/resources/www/common/images/custom_hsb_s.png b/resources/www/common/images/custom_hsb_s.png new file mode 100644 index 0000000000..7826b41507 Binary files /dev/null and b/resources/www/common/images/custom_hsb_s.png differ diff --git a/resources/www/common/images/custom_indic.gif b/resources/www/common/images/custom_indic.gif new file mode 100644 index 0000000000..222fb94cfd Binary files /dev/null and b/resources/www/common/images/custom_indic.gif differ diff --git a/resources/www/common/images/custom_rgb_b.png b/resources/www/common/images/custom_rgb_b.png new file mode 100644 index 0000000000..80764e5d6d Binary files /dev/null and b/resources/www/common/images/custom_rgb_b.png differ diff --git a/resources/www/common/images/custom_rgb_g.png b/resources/www/common/images/custom_rgb_g.png new file mode 100644 index 0000000000..fc9778be1e Binary files /dev/null and b/resources/www/common/images/custom_rgb_g.png differ diff --git a/resources/www/common/images/custom_rgb_r.png b/resources/www/common/images/custom_rgb_r.png new file mode 100644 index 0000000000..91b0cd4c52 Binary files /dev/null and b/resources/www/common/images/custom_rgb_r.png differ diff --git a/resources/www/common/images/custom_submit.png b/resources/www/common/images/custom_submit.png new file mode 100644 index 0000000000..cd202cd93b Binary files /dev/null and b/resources/www/common/images/custom_submit.png differ diff --git a/resources/www/common/images/icons/Alphabetique.png b/resources/www/common/images/icons/Alphabetique.png new file mode 100644 index 0000000000..1f36e83ad6 Binary files /dev/null and b/resources/www/common/images/icons/Alphabetique.png differ diff --git a/resources/www/common/images/icons/Basket-Browse.png b/resources/www/common/images/icons/Basket-Browse.png new file mode 100644 index 0000000000..fd297349eb Binary files /dev/null and b/resources/www/common/images/icons/Basket-Browse.png differ diff --git a/resources/www/common/images/icons/Basket-New-Story.png b/resources/www/common/images/icons/Basket-New-Story.png new file mode 100644 index 0000000000..72a7a1a4c2 Binary files /dev/null and b/resources/www/common/images/icons/Basket-New-Story.png differ diff --git a/resources/www/common/images/icons/Basket-New.png b/resources/www/common/images/icons/Basket-New.png new file mode 100644 index 0000000000..d59995805b Binary files /dev/null and b/resources/www/common/images/icons/Basket-New.png differ diff --git a/resources/www/common/images/icons/Basket-Setting.png b/resources/www/common/images/icons/Basket-Setting.png new file mode 100644 index 0000000000..77372631c4 Binary files /dev/null and b/resources/www/common/images/icons/Basket-Setting.png differ diff --git a/resources/www/common/images/icons/Basket-Settings.png b/resources/www/common/images/icons/Basket-Settings.png new file mode 100644 index 0000000000..77372631c4 Binary files /dev/null and b/resources/www/common/images/icons/Basket-Settings.png differ diff --git a/resources/www/common/images/icons/Share.png b/resources/www/common/images/icons/Share.png new file mode 100644 index 0000000000..447ced8ba7 Binary files /dev/null and b/resources/www/common/images/icons/Share.png differ diff --git a/resources/www/common/images/icons/Sort-Date.png b/resources/www/common/images/icons/Sort-Date.png new file mode 100644 index 0000000000..5adc01d08c Binary files /dev/null and b/resources/www/common/images/icons/Sort-Date.png differ diff --git a/resources/www/common/images/icons/archive.png b/resources/www/common/images/icons/archive.png new file mode 100644 index 0000000000..0d63a2e6f6 Binary files /dev/null and b/resources/www/common/images/icons/archive.png differ diff --git a/resources/www/common/images/icons/basket-1.png b/resources/www/common/images/icons/basket-1.png new file mode 100644 index 0000000000..fa62394842 Binary files /dev/null and b/resources/www/common/images/icons/basket-1.png differ diff --git a/resources/www/common/images/icons/basket.png b/resources/www/common/images/icons/basket.png index 83704f5f20..13cb9dbcc2 100644 Binary files a/resources/www/common/images/icons/basket.png and b/resources/www/common/images/icons/basket.png differ diff --git a/resources/www/common/images/icons/basket_push.png b/resources/www/common/images/icons/basket_push.png index 47b45185f2..7137a58251 100644 Binary files a/resources/www/common/images/icons/basket_push.png and b/resources/www/common/images/icons/basket_push.png differ diff --git a/resources/www/common/images/icons/basket_push_unread.png b/resources/www/common/images/icons/basket_push_unread.png index e2a0770cf7..a55080d4ba 100644 Binary files a/resources/www/common/images/icons/basket_push_unread.png and b/resources/www/common/images/icons/basket_push_unread.png differ diff --git a/resources/www/common/images/icons/basket_validation.png b/resources/www/common/images/icons/basket_validation.png index 3b96c1d263..dbf618043a 100644 Binary files a/resources/www/common/images/icons/basket_validation.png and b/resources/www/common/images/icons/basket_validation.png differ diff --git a/resources/www/common/images/icons/calendar-grey.png b/resources/www/common/images/icons/calendar-grey.png new file mode 100644 index 0000000000..880f700607 Binary files /dev/null and b/resources/www/common/images/icons/calendar-grey.png differ diff --git a/resources/www/common/images/icons/calendar-white.png b/resources/www/common/images/icons/calendar-white.png new file mode 100644 index 0000000000..665b9e6298 Binary files /dev/null and b/resources/www/common/images/icons/calendar-white.png differ diff --git a/resources/www/common/images/icons/checked.png b/resources/www/common/images/icons/checked.png new file mode 100644 index 0000000000..a225313d00 Binary files /dev/null and b/resources/www/common/images/icons/checked.png differ diff --git a/resources/www/common/images/icons/chgcoll_history.png b/resources/www/common/images/icons/chgcoll_history.png index a8cb9028fd..2d26309b27 100644 Binary files a/resources/www/common/images/icons/chgcoll_history.png and b/resources/www/common/images/icons/chgcoll_history.png differ diff --git a/resources/www/common/images/icons/chgstatus_history.png b/resources/www/common/images/icons/chgstatus_history.png index 2d177bf2e1..191bc4250c 100644 Binary files a/resources/www/common/images/icons/chgstatus_history.png and b/resources/www/common/images/icons/chgstatus_history.png differ diff --git a/resources/www/common/images/icons/close-blue.png b/resources/www/common/images/icons/close-blue.png new file mode 100644 index 0000000000..b910d284eb Binary files /dev/null and b/resources/www/common/images/icons/close-blue.png differ diff --git a/resources/www/common/images/icons/close-grey.png b/resources/www/common/images/icons/close-grey.png new file mode 100644 index 0000000000..e6767f9dc6 Binary files /dev/null and b/resources/www/common/images/icons/close-grey.png differ diff --git a/resources/www/common/images/icons/close-white.png b/resources/www/common/images/icons/close-white.png new file mode 100644 index 0000000000..308212ce5f Binary files /dev/null and b/resources/www/common/images/icons/close-white.png differ diff --git a/resources/www/common/images/icons/delete.png b/resources/www/common/images/icons/delete.png index ade348306e..dda3e8d50f 100644 Binary files a/resources/www/common/images/icons/delete.png and b/resources/www/common/images/icons/delete.png differ diff --git a/resources/www/common/images/icons/detach.png b/resources/www/common/images/icons/detach.png new file mode 100644 index 0000000000..0f9080d04f Binary files /dev/null and b/resources/www/common/images/icons/detach.png differ diff --git a/resources/www/common/images/icons/disktt_history.png b/resources/www/common/images/icons/disktt_history.png index 849c5acdc2..e81e9e383a 100644 Binary files a/resources/www/common/images/icons/disktt_history.png and b/resources/www/common/images/icons/disktt_history.png differ diff --git a/resources/www/common/images/icons/double-arrow-white.png b/resources/www/common/images/icons/double-arrow-white.png new file mode 100644 index 0000000000..4374b7fcba Binary files /dev/null and b/resources/www/common/images/icons/double-arrow-white.png differ diff --git a/resources/www/common/images/icons/edit-pen.png b/resources/www/common/images/icons/edit-pen.png new file mode 100644 index 0000000000..efba208714 Binary files /dev/null and b/resources/www/common/images/icons/edit-pen.png differ diff --git a/resources/www/common/images/icons/export-shadow.png b/resources/www/common/images/icons/export-shadow.png new file mode 100644 index 0000000000..90ba5c1b53 Binary files /dev/null and b/resources/www/common/images/icons/export-shadow.png differ diff --git a/resources/www/common/images/icons/feedback-icon.png b/resources/www/common/images/icons/feedback-icon.png new file mode 100644 index 0000000000..5af3da366a Binary files /dev/null and b/resources/www/common/images/icons/feedback-icon.png differ diff --git a/resources/www/common/images/icons/feedback16.png b/resources/www/common/images/icons/feedback16.png index 530f0814e5..5af3da366a 100644 Binary files a/resources/www/common/images/icons/feedback16.png and b/resources/www/common/images/icons/feedback16.png differ diff --git a/resources/www/common/images/icons/file-edit-hover.png b/resources/www/common/images/icons/file-edit-hover.png new file mode 100644 index 0000000000..376590d59c Binary files /dev/null and b/resources/www/common/images/icons/file-edit-hover.png differ diff --git a/resources/www/common/images/icons/file-edit.png b/resources/www/common/images/icons/file-edit.png index 3dc4964946..3522e518b3 100644 Binary files a/resources/www/common/images/icons/file-edit.png and b/resources/www/common/images/icons/file-edit.png differ diff --git a/resources/www/common/images/icons/green-check.png b/resources/www/common/images/icons/green-check.png new file mode 100644 index 0000000000..481800b2a3 Binary files /dev/null and b/resources/www/common/images/icons/green-check.png differ diff --git a/resources/www/common/images/icons/icon-right-arrow.svg b/resources/www/common/images/icons/icon-right-arrow.svg new file mode 100644 index 0000000000..c3fabe9a03 --- /dev/null +++ b/resources/www/common/images/icons/icon-right-arrow.svg @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> + <!-- Generator: sketchtool 58 (101010) - https://sketch.com --> + <title>5609DDD5-6B9C-411B-B926-EEA284949013 + Created with sketchtool. + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/www/common/images/icons/icon-video-editor.png b/resources/www/common/images/icons/icon-video-editor.png index 724088015a..3798baaccd 100644 Binary files a/resources/www/common/images/icons/icon-video-editor.png and b/resources/www/common/images/icons/icon-video-editor.png differ diff --git a/resources/www/common/images/icons/imgtools_history.png b/resources/www/common/images/icons/imgtools_history.png index d8778ff91a..7c8680f746 100644 Binary files a/resources/www/common/images/icons/imgtools_history.png and b/resources/www/common/images/icons/imgtools_history.png differ diff --git a/resources/www/common/images/icons/linkedin.png b/resources/www/common/images/icons/linkedin.png new file mode 100644 index 0000000000..cdf4f9ddff Binary files /dev/null and b/resources/www/common/images/icons/linkedin.png differ diff --git a/resources/www/common/images/icons/no-response.png b/resources/www/common/images/icons/no-response.png new file mode 100644 index 0000000000..a0e448c614 Binary files /dev/null and b/resources/www/common/images/icons/no-response.png differ diff --git a/resources/www/common/images/icons/no-valid.png b/resources/www/common/images/icons/no-valid.png index 907301cf5e..2956a36e6a 100644 Binary files a/resources/www/common/images/icons/no-valid.png and b/resources/www/common/images/icons/no-valid.png differ diff --git a/resources/www/common/images/icons/ppen_history.png b/resources/www/common/images/icons/ppen_history.png index 1fd93e2dd5..efba208714 100644 Binary files a/resources/www/common/images/icons/ppen_history.png and b/resources/www/common/images/icons/ppen_history.png differ diff --git a/resources/www/common/images/icons/print-shadow.png b/resources/www/common/images/icons/print-shadow.png new file mode 100644 index 0000000000..8f13ffd61a Binary files /dev/null and b/resources/www/common/images/icons/print-shadow.png differ diff --git a/resources/www/common/images/icons/print_history.png b/resources/www/common/images/icons/print_history.png index c4e4090c41..e0f1f85737 100644 Binary files a/resources/www/common/images/icons/print_history.png and b/resources/www/common/images/icons/print_history.png differ diff --git a/resources/www/common/images/icons/push-icon.png b/resources/www/common/images/icons/push-icon.png new file mode 100644 index 0000000000..ff1ddd46de Binary files /dev/null and b/resources/www/common/images/icons/push-icon.png differ diff --git a/resources/www/common/images/icons/push16.png b/resources/www/common/images/icons/push16.png index 2c762724c7..ff1ddd46de 100644 Binary files a/resources/www/common/images/icons/push16.png and b/resources/www/common/images/icons/push16.png differ diff --git a/resources/www/common/images/icons/red-cross.png b/resources/www/common/images/icons/red-cross.png new file mode 100644 index 0000000000..5ccccf40f6 Binary files /dev/null and b/resources/www/common/images/icons/red-cross.png differ diff --git a/resources/www/common/images/icons/refresh-darkgrey.png b/resources/www/common/images/icons/refresh-darkgrey.png new file mode 100644 index 0000000000..aaa0d7ff6c Binary files /dev/null and b/resources/www/common/images/icons/refresh-darkgrey.png differ diff --git a/resources/www/common/images/icons/refresh-white.png b/resources/www/common/images/icons/refresh-white.png new file mode 100755 index 0000000000..855ebccee1 Binary files /dev/null and b/resources/www/common/images/icons/refresh-white.png differ diff --git a/resources/www/common/images/icons/rename.png b/resources/www/common/images/icons/rename.png new file mode 100644 index 0000000000..f86b6c80b7 Binary files /dev/null and b/resources/www/common/images/icons/rename.png differ diff --git a/resources/www/common/images/icons/research-dark.png b/resources/www/common/images/icons/research-dark.png new file mode 100644 index 0000000000..ddcc515e27 Binary files /dev/null and b/resources/www/common/images/icons/research-dark.png differ diff --git a/resources/www/common/images/icons/research-white.png b/resources/www/common/images/icons/research-white.png new file mode 100755 index 0000000000..aff02bd4dc Binary files /dev/null and b/resources/www/common/images/icons/research-white.png differ diff --git a/resources/www/common/images/icons/rss16.png b/resources/www/common/images/icons/rss16.png index efe30848d4..6da8a7d79c 100644 Binary files a/resources/www/common/images/icons/rss16.png and b/resources/www/common/images/icons/rss16.png differ diff --git a/resources/www/common/images/icons/set-order.png b/resources/www/common/images/icons/set-order.png new file mode 100644 index 0000000000..e49be67dc8 Binary files /dev/null and b/resources/www/common/images/icons/set-order.png differ diff --git a/resources/www/common/images/icons/story.png b/resources/www/common/images/icons/story.png index 58e84a6e07..0ac43bc62c 100644 Binary files a/resources/www/common/images/icons/story.png and b/resources/www/common/images/icons/story.png differ diff --git a/resources/www/common/images/icons/substitution/application_vnd.ms-opentype.png b/resources/www/common/images/icons/substitution/application_vnd.ms-opentype.png new file mode 100644 index 0000000000..005ad6fe8b Binary files /dev/null and b/resources/www/common/images/icons/substitution/application_vnd.ms-opentype.png differ diff --git a/resources/www/common/images/icons/substitution/application_vnd.oasis.opendocument.chart-template.png b/resources/www/common/images/icons/substitution/application_vnd.oasis.opendocument.chart-template.png new file mode 100644 index 0000000000..005ad6fe8b Binary files /dev/null and b/resources/www/common/images/icons/substitution/application_vnd.oasis.opendocument.chart-template.png differ diff --git a/resources/www/common/images/icons/substitution/application_x-font-ttf.png b/resources/www/common/images/icons/substitution/application_x-font-ttf.png new file mode 100644 index 0000000000..005ad6fe8b Binary files /dev/null and b/resources/www/common/images/icons/substitution/application_x-font-ttf.png differ diff --git a/resources/www/common/images/icons/to_be_denied.svg b/resources/www/common/images/icons/to_be_denied.svg new file mode 100644 index 0000000000..ea49e1a133 --- /dev/null +++ b/resources/www/common/images/icons/to_be_denied.svg @@ -0,0 +1 @@ + diff --git a/resources/www/common/images/icons/to_be_validated.svg b/resources/www/common/images/icons/to_be_validated.svg new file mode 100644 index 0000000000..02157e028b --- /dev/null +++ b/resources/www/common/images/icons/to_be_validated.svg @@ -0,0 +1 @@ + diff --git a/resources/www/common/images/icons/unchecked.png b/resources/www/common/images/icons/unchecked.png new file mode 100644 index 0000000000..adc12939e2 Binary files /dev/null and b/resources/www/common/images/icons/unchecked.png differ diff --git a/resources/www/common/images/icons/valid.png b/resources/www/common/images/icons/valid.png index fb79ee47ea..81066e219a 100644 Binary files a/resources/www/common/images/icons/valid.png and b/resources/www/common/images/icons/valid.png differ diff --git a/resources/www/common/images/icons/vote-admin.png b/resources/www/common/images/icons/vote-admin.png new file mode 100644 index 0000000000..8e16be2027 Binary files /dev/null and b/resources/www/common/images/icons/vote-admin.png differ diff --git a/resources/www/common/images/icons/workzone32.png b/resources/www/common/images/icons/workzone32.png index 97598e4e02..089f438feb 100644 Binary files a/resources/www/common/images/icons/workzone32.png and b/resources/www/common/images/icons/workzone32.png differ diff --git a/resources/www/common/images/select.png b/resources/www/common/images/select.png new file mode 100644 index 0000000000..21213bfd51 Binary files /dev/null and b/resources/www/common/images/select.png differ diff --git a/resources/www/common/images/select2.png b/resources/www/common/images/select2.png new file mode 100644 index 0000000000..2cd2cabeb6 Binary files /dev/null and b/resources/www/common/images/select2.png differ diff --git a/resources/www/common/images/slider.png b/resources/www/common/images/slider.png new file mode 100644 index 0000000000..8b03da96eb Binary files /dev/null and b/resources/www/common/images/slider.png differ diff --git a/resources/www/common/js/components/common.js b/resources/www/common/js/components/common.js index d19965e696..39c6ddf3c8 100644 --- a/resources/www/common/js/components/common.js +++ b/resources/www/common/js/components/common.js @@ -31,17 +31,13 @@ var commonModule = (function ($, p4) { $(this).removeClass('context-menu-item-hover'); }); - // $('#help-trigger').contextMenu('#mainMenu .helpcontextmenu', {openEvt: 'click', dropDown: true, theme: 'vista', dropDown: true, - // showTransition: 'slideDown', - // hideTransition: 'hide', - // shadow: false - // }); $('body').on('click', '.infoDialog', function (event) { infoDialog($(this)); }); }); + function showOverlay(n, appendto, callback, zIndex) { var div = "OVERLAY"; diff --git a/resources/www/common/styles/colorpicker.scss b/resources/www/common/styles/colorpicker.scss new file mode 100644 index 0000000000..f20ee54a28 --- /dev/null +++ b/resources/www/common/styles/colorpicker.scss @@ -0,0 +1,167 @@ +$colorPickerImagesPath: '/assets/common/images/' !default; + +.colorpicker { + width: 356px; + height: 176px; + overflow: hidden; + position: absolute; + background: url('#{$colorPickerImagesPath}colorpicker_background.png'); + font-family: Arial, Helvetica, sans-serif; + display: none; +} +.colorpicker_color { + width: 150px; + height: 150px; + left: 14px; + top: 13px; + position: absolute; + background: #f00; + overflow: hidden; + cursor: crosshair; +} +.colorpicker_color div { + position: absolute; + top: 0; + left: 0; + width: 150px; + height: 150px; + background: url('#{$colorPickerImagesPath}colorpicker_overlay.png'); +} +.colorpicker_color div div { + position: absolute; + top: 0; + left: 0; + width: 11px; + height: 11px; + overflow: hidden; + background: url('#{$colorPickerImagesPath}colorpicker_select.gif'); + margin: -5px 0 0 -5px; +} +.colorpicker_hue { + position: absolute; + top: 13px; + left: 171px; + width: 35px; + height: 150px; + cursor: n-resize; +} +.colorpicker_hue div { + position: absolute; + width: 35px; + height: 9px; + overflow: hidden; + background: url('#{$colorPickerImagesPath}colorpicker_indic.gif') left top; + margin: -4px 0 0 0; + left: 0px; +} +.colorpicker_new_color { + position: absolute; + width: 60px; + height: 30px; + left: 213px; + top: 13px; + background: #f00; +} +.colorpicker_current_color { + position: absolute; + width: 60px; + height: 30px; + left: 283px; + top: 13px; + background: #f00; +} +.colorpicker input { + background-color: transparent; + border: 1px solid transparent; + position: absolute; + font-size: 10px; + font-family: Arial, Helvetica, sans-serif; + color: #898989; + top: 4px; + right: 11px; + text-align: right; + margin: 0; + padding: 0; + height: 11px; +} +.colorpicker_hex { + position: absolute; + width: 72px; + height: 22px; + background: url('#{$colorPickerImagesPath}colorpicker_hex.png') top; + left: 212px; + top: 142px; +} +.colorpicker_hex input { + right: 6px; +} +.colorpicker_field { + height: 22px; + width: 62px; + background-position: top; + position: absolute; +} +.colorpicker_field span { + position: absolute; + width: 12px; + height: 22px; + overflow: hidden; + top: 0; + right: 0; + cursor: n-resize; +} +.colorpicker_rgb_r { + background-image: url('#{$colorPickerImagesPath}colorpicker_rgb_r.png'); + top: 52px; + left: 212px; +} +.colorpicker_rgb_g { + background-image: url('#{$colorPickerImagesPath}colorpicker_rgb_g.png'); + top: 82px; + left: 212px; +} +.colorpicker_rgb_b { + background-image: url('#{$colorPickerImagesPath}colorpicker_rgb_b.png'); + top: 112px; + left: 212px; +} +.colorpicker_hsb_h { + background-image: url('#{$colorPickerImagesPath}colorpicker_hsb_h.png'); + top: 52px; + left: 282px; +} +.colorpicker_hsb_s { + background-image: url('#{$colorPickerImagesPath}colorpicker_hsb_s.png'); + top: 82px; + left: 282px; +} +.colorpicker_hsb_b { + background-image: url('#{$colorPickerImagesPath}colorpicker_hsb_b.png'); + top: 112px; + left: 282px; +} +.colorpicker_submit { + position: absolute; + width: 22px; + height: 22px; + background: url('#{$colorPickerImagesPath}colorpicker_submit.png') top; + left: 322px; + top: 142px; + overflow: hidden; + .submiter { + color: #ffffff; + } +} +.colorpicker_focus { + background-position: center; +} +.colorpicker_hex.colorpicker_focus { + background-position: bottom; +} +.colorpicker_submit.colorpicker_focus { + background-position: bottom; +} +.colorpicker_slider { + background-position: bottom; +} + diff --git a/resources/www/common/styles/fonts/PhraseanetIcomoon/Read Me.txt b/resources/www/common/styles/fonts/PhraseanetIcomoon/Read Me.txt new file mode 100644 index 0000000000..8491652f88 --- /dev/null +++ b/resources/www/common/styles/fonts/PhraseanetIcomoon/Read Me.txt @@ -0,0 +1,7 @@ +Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures. + +To use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. See this guide for more info: https://icomoon.io/#docs/local-fonts + +You won't need any of the files located under the *demo-files* directory when including the generated font in your own projects. + +You can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu → Manage Projects) to retrieve your icon selection. diff --git a/resources/www/common/styles/fonts/PhraseanetIcomoon/demo-files/demo.css b/resources/www/common/styles/fonts/PhraseanetIcomoon/demo-files/demo.css new file mode 100644 index 0000000000..39b8991da7 --- /dev/null +++ b/resources/www/common/styles/fonts/PhraseanetIcomoon/demo-files/demo.css @@ -0,0 +1,152 @@ +body { + padding: 0; + margin: 0; + font-family: sans-serif; + font-size: 1em; + line-height: 1.5; + color: #555; + background: #fff; +} +h1 { + font-size: 1.5em; + font-weight: normal; +} +small { + font-size: .66666667em; +} +a { + color: #e74c3c; + text-decoration: none; +} +a:hover, a:focus { + box-shadow: 0 1px #e74c3c; +} +.bshadow0, input { + box-shadow: inset 0 -2px #e7e7e7; +} +input:hover { + box-shadow: inset 0 -2px #ccc; +} +input, fieldset { + font-family: sans-serif; + font-size: 1em; + margin: 0; + padding: 0; + border: 0; +} +input { + color: inherit; + line-height: 1.5; + height: 1.5em; + padding: .25em 0; +} +input:focus { + outline: none; + box-shadow: inset 0 -2px #449fdb; +} +.glyph { + font-size: 16px; + width: 15em; + padding-bottom: 1em; + margin-right: 4em; + margin-bottom: 1em; + float: left; + overflow: hidden; +} +.liga { + width: 80%; + width: calc(100% - 2.5em); +} +.talign-right { + text-align: right; +} +.talign-center { + text-align: center; +} +.bgc1 { + background: #f1f1f1; +} +.fgc1 { + color: #999; +} +.fgc0 { + color: #000; +} +p { + margin-top: 1em; + margin-bottom: 1em; +} +.mvm { + margin-top: .75em; + margin-bottom: .75em; +} +.mtn { + margin-top: 0; +} +.mtl, .mal { + margin-top: 1.5em; +} +.mbl, .mal { + margin-bottom: 1.5em; +} +.mal, .mhl { + margin-left: 1.5em; + margin-right: 1.5em; +} +.mhmm { + margin-left: 1em; + margin-right: 1em; +} +.mls { + margin-left: .25em; +} +.ptl { + padding-top: 1.5em; +} +.pbs, .pvs { + padding-bottom: .25em; +} +.pvs, .pts { + padding-top: .25em; +} +.unit { + float: left; +} +.unitRight { + float: right; +} +.size1of2 { + width: 50%; +} +.size1of1 { + width: 100%; +} +.clearfix:before, .clearfix:after { + content: " "; + display: table; +} +.clearfix:after { + clear: both; +} +.hidden-true { + display: none; +} +.textbox0 { + width: 3em; + background: #f1f1f1; + padding: .25em .5em; + line-height: 1.5; + height: 1.5em; +} +#testDrive { + display: block; + padding-top: 24px; + line-height: 1.5; +} +.fs0 { + font-size: 16px; +} +.fs1 { + font-size: 32px; +} + diff --git a/resources/www/common/styles/fonts/PhraseanetIcomoon/demo-files/demo.js b/resources/www/common/styles/fonts/PhraseanetIcomoon/demo-files/demo.js new file mode 100644 index 0000000000..6f45f1c409 --- /dev/null +++ b/resources/www/common/styles/fonts/PhraseanetIcomoon/demo-files/demo.js @@ -0,0 +1,30 @@ +if (!('boxShadow' in document.body.style)) { + document.body.setAttribute('class', 'noBoxShadow'); +} + +document.body.addEventListener("click", function(e) { + var target = e.target; + if (target.tagName === "INPUT" && + target.getAttribute('class').indexOf('liga') === -1) { + target.select(); + } +}); + +(function() { + var fontSize = document.getElementById('fontSize'), + testDrive = document.getElementById('testDrive'), + testText = document.getElementById('testText'); + function updateTest() { + testDrive.innerHTML = testText.value || String.fromCharCode(160); + if (window.icomoonLiga) { + window.icomoonLiga(testDrive); + } + } + function updateSize() { + testDrive.style.fontSize = fontSize.value + 'px'; + } + fontSize.addEventListener('change', updateSize, false); + testText.addEventListener('input', updateTest, false); + testText.addEventListener('change', updateTest, false); + updateSize(); +}()); diff --git a/resources/www/common/styles/fonts/PhraseanetIcomoon/demo.html b/resources/www/common/styles/fonts/PhraseanetIcomoon/demo.html new file mode 100644 index 0000000000..26b7df52d9 --- /dev/null +++ b/resources/www/common/styles/fonts/PhraseanetIcomoon/demo.html @@ -0,0 +1,5558 @@ + + + + + IcoMoon Demo + + + + + +
+

Font Name: icomoon (Glyphs: 345)

+
+
+

Grid Size: Unknown

+
+
+ + + + icon-search +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-interrogation +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-i-information +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-add_box-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pencil +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-chat-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-mms-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-chat_bubble_outline-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-mode_comment-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-chat_bubble-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-add_comment-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bubble-talk +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-add_location-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-add-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-airplanemode_active-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-airplanemode_inactive-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-ac_unit-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-whatshot-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-all_inclusive-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-apps-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-display-grid +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-beach_access-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-border_color-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-casino-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-check_box_outline_blank-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-check_box-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-edit_attributes-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-edit_location-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-spellcheck-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-letter-arrow +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-font_download-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-title-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-text_fields-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-indeterminate_check_box-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-laptop_mac-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-live_help-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-location_disabled-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-mail_outline-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-mail-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-message-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-mobile_friendly-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-mobile_screen_share-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-person_pin-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-loope-less +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-loope-more +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-remove_circle_outline-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-remove_circle-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-reply_all-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-reply-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-subdirectory_arrow_left-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-subdirectory_arrow_right-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-report_off-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-report-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-smoke_free-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-smoking_rooms-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-spa-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-star_half-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-screen_rotation-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-screen_lock_rotation-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-stay_primary_portrait-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-storage-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-textsms-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-toys-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-tv-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-waves-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-widgets-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-calendar-date +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pin +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-unpin +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-save +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-trash +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-Share +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-Order +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-rectangular +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-rectangular-curve +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-fingerprint-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-touch_app-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-Hand +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-assignment_ind-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-person-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-person_add-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + icon-baseline-account_box-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + icon-baseline-account_circle-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-how_to_reg-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-group-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-user-three +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-user-circle-line +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-user-talk +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-clean-order +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-comment +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-dialpad-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-beenhere-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-verified_user-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-done-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-show_chart-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-snooze-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-Calendar +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-Basket +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-extension-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-Drag-and-drop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-Artboard-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-build-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-expand_less-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-expand_more-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-chevron_left-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-double-arrows +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-chevron_right-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-play_arrow-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-chevron_right-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-chevron_left-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-close-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-close-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cross-rectangular +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-delete_forever-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-error_outline-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-error-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-expand_less-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-expand_more-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-find_replace-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-group_add-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-group-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-hearing-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-thumb_up-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-thumbs_up_down-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-delete_sweep-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-restore_from_trash-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-library_music-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-music_note-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-music_off-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-person_add_disabled-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-person_add-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-playlist_add_check-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-playlist_add-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-queue_music-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-work_off-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-work_outline-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-work-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-zoom_in-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-zoom_out-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-alarm_add-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-alarm_off-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-alarm_on-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-alarm-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-blur_off-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-bookmark_border-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-bookmark-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-bookmarks-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-cached-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-class-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-code-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-compare_arrows-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-delete_outline-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-delete-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-drag_indicator-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-event-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-explore_off-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-explore-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-favorite_border-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-favorite-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-flip-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-history-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-hourglass_empty-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-info-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-linear_scale-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-baseline-swap_calls-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-outline-help-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-outline-info-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-outline-label-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-outline-settings_applications-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-add_a_photo-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-add_alert-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-add_box-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-add_circle_outline-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-add_circle-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-add_photo_alternate-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-adjust-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-assistant_photo-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-attach_file-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-attachment-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-blur_circular-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-blur_linear-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-blur_off-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-blur_on-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-brush-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-bubble_chart-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-cake-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-call-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-camera_alt-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-camera-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-cancel-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-check_box-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-cloud_circle-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-cloud_done-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-cloud_download-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-cloud_off-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-cloud_queue-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-cloud_upload-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-cloud-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-color_lens-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-colorize-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-computer-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-create_new_folder-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-create-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-crop_free-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-crop_original-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-crop_rotate-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-crop-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-error_outline-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-error-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-event_available-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-event_busy-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-event_note-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-exposure-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-fast_forward-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-fast_rewind-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-filter_hdr-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-first_page-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-flash_off-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-flash_on-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-folder_open-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-folder_shared-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-folder_special-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-folder-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-format_color_reset-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-forum-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-forward_5-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-forward_10-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-forward_30-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-gesture-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-grade-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-grain-24px-1 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-grain-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-grid_off-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-grid_on-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-group_add-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-help-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-highlight_off-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-home-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-hourglass_empty-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-hourglass_full-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-image_search-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-indeterminate_check_box-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-insert_chart_outlined-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-insert_chart-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-insert_photo-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-invert_colors-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-keyboard_capslock-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-language-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-last_page-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-line_style-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-linear_scale-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-link_off-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-link-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-list-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-local_movies-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-location_off-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-location_on-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-location_searching-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-filter_1-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-filter_2-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-filter_3-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-filter_4-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-filter_5-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-filter_6-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-filter_7-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-filter_8-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-filter_9-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-filter_9_plus-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-looks_one-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-looks_two-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-looks_3-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-looks_4-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-looks_5-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-looks_6-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-mail-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-mic_none-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-mic_off-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-mic-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-more_horiz-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-movie_filter-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-movie-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-music_video-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-not_interested-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-offline_bolt-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-opacity-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-pause_circle_filled-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-pause_circle_outline-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-pause-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-perm_contact_calendar-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-perm_media-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-perm_phone_msg-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-person_pin_circle-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-person_pin-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-pin_drop-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-play_circle_filled_white-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-play_circle_outline-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-portrait-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-power_settings_new-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-print-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-public-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-query_builder-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-radio_button_checked-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-radio_button_unchecked-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-recent_actors-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-repeat-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-replay_5-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-replay_10-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-replay_30-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-report_problem-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-scatter_plot-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-send-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-settings_applications-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-settings_ethernet-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-settings_voice-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-sms_failed-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-sms-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-speaker_notes_off-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-speaker_notes-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-stars-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-style-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-supervised_user_circle-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-swap_horiz-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-swap_horizontal_circle-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-swap_vert-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-swap_vertical_circle-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-timeline-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-toggle_off-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-toggle_on-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-translate-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-trending_down-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-trending_up-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-unfold_less-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-unfold_more-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-view_carousel-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-visibility_off-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-visibility-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-volume_off-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-volume_up-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-wallpaper-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-warning-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-watch_later-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-youtube_searched_for-24px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-round-zoom_out_map-24px +
+
+ + +
+
+ liga: + +
+
+
+ + +
+

Font Test Drive

+ + +
  +
+
+ +
+

Generated by IcoMoon

+
+ + + + diff --git a/resources/www/common/styles/fonts/PhraseanetIcomoon/fonts/icomoon.eot b/resources/www/common/styles/fonts/PhraseanetIcomoon/fonts/icomoon.eot new file mode 100644 index 0000000000..533924aa8d Binary files /dev/null and b/resources/www/common/styles/fonts/PhraseanetIcomoon/fonts/icomoon.eot differ diff --git a/resources/www/common/styles/fonts/PhraseanetIcomoon/fonts/icomoon.svg b/resources/www/common/styles/fonts/PhraseanetIcomoon/fonts/icomoon.svg new file mode 100644 index 0000000000..03e3b4880a --- /dev/null +++ b/resources/www/common/styles/fonts/PhraseanetIcomoon/fonts/icomoon.svg @@ -0,0 +1,355 @@ + + + +Generated by IcoMoon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/www/common/styles/fonts/PhraseanetIcomoon/fonts/icomoon.ttf b/resources/www/common/styles/fonts/PhraseanetIcomoon/fonts/icomoon.ttf new file mode 100644 index 0000000000..77ff56b438 Binary files /dev/null and b/resources/www/common/styles/fonts/PhraseanetIcomoon/fonts/icomoon.ttf differ diff --git a/resources/www/common/styles/fonts/PhraseanetIcomoon/fonts/icomoon.woff b/resources/www/common/styles/fonts/PhraseanetIcomoon/fonts/icomoon.woff new file mode 100644 index 0000000000..55426ff582 Binary files /dev/null and b/resources/www/common/styles/fonts/PhraseanetIcomoon/fonts/icomoon.woff differ diff --git a/resources/www/common/styles/fonts/PhraseanetIcomoon/selection.json b/resources/www/common/styles/fonts/PhraseanetIcomoon/selection.json new file mode 100644 index 0000000000..08c757ec0a --- /dev/null +++ b/resources/www/common/styles/fonts/PhraseanetIcomoon/selection.json @@ -0,0 +1 @@ +{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M380.56 644.025c-145.784 0-263.465-117.681-263.465-263.465s117.681-263.465 263.465-263.465c145.784 0 263.465 117.681 263.465 263.465s-117.681 263.465-263.465 263.465zM731.847 644.025h-46.253l-16.393-15.808c57.377-66.744 91.92-153.395 91.92-247.657 0-210.186-170.374-380.56-380.56-380.56s-380.56 170.374-380.56 380.56c0 210.186 170.374 380.56 380.56 380.56 94.262 0 180.913-34.543 247.657-91.92l15.808 16.393v46.253l292.739 292.153 87.236-87.236-292.153-292.739z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["search"],"colorPermutations":{}},"attrs":[],"properties":{"order":692,"id":365,"name":"search","prevSize":32,"code":59667},"setIdx":1,"setId":1,"iconIdx":0},{"icon":{"paths":["M402.823 721.204c0-61.018 7.57-109.649 22.71-145.892s45.075-76.043 89.806-119.398c44.731-43.355 73.061-74.208 84.989-92.559 18.351-27.986 27.527-58.265 27.527-90.839 0-43.126-10.667-76.043-32-98.753s-52.645-34.065-93.935-34.065c-39.455 0-71.226 11.125-95.312 33.376s-36.129 52.416-36.129 90.495h-167.226c0.918-81.205 28.559-145.433 82.925-192.688s126.279-70.882 215.742-70.882c92.216 0 164.129 23.398 215.742 70.194s77.419 112.172 77.419 196.129c0 74.782-34.867 148.415-104.602 220.903l-84.645 83.269c-30.28 34.409-45.878 84.645-46.796 150.71h-156.215zM391.124 935.226c0-27.068 8.487-48.975 25.462-65.72s39.914-25.118 68.817-25.118c29.362 0 52.53 8.602 69.505 25.806s25.462 38.882 25.462 65.032c0 25.233-8.258 46.337-24.774 63.312s-39.914 25.462-70.194 25.462c-30.28 0-53.563-8.487-69.849-25.462s-24.43-38.079-24.43-63.312z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["interrogation"],"colorPermutations":{}},"attrs":[],"properties":{"order":693,"id":364,"name":"interrogation","prevSize":32,"code":59702},"setIdx":1,"setId":1,"iconIdx":1},{"icon":{"paths":["M469.333 384h85.333c23.564 0 42.667 19.103 42.667 42.667v469.333c0 23.564-19.103 42.667-42.667 42.667h-85.333c-23.564 0-42.667-19.103-42.667-42.667v-469.333c0-23.564 19.103-42.667 42.667-42.667zM469.333 85.333h85.333c23.564 0 42.667 19.103 42.667 42.667v85.333c0 23.564-19.103 42.667-42.667 42.667h-85.333c-23.564 0-42.667-19.103-42.667-42.667v-85.333c0-23.564 19.103-42.667 42.667-42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["i-information"],"colorPermutations":{}},"attrs":[],"properties":{"order":694,"id":363,"name":"i-information","prevSize":32,"code":59736},"setIdx":1,"setId":1,"iconIdx":2},{"icon":{"paths":["M810.667 128h-597.333c-47.36 0-85.333 38.4-85.333 85.333v597.333c0 46.933 37.973 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM725.333 554.667h-170.667v170.667h-85.333v-170.667h-170.667v-85.333h170.667v-170.667h85.333v170.667h170.667v85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-add_box-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":695,"id":360,"name":"baseline-add_box-24px","prevSize":32,"code":59648},"setIdx":1,"setId":1,"iconIdx":3},{"icon":{"paths":["M768 90.022l20.984-19.692 41.967-40.791 20.984-21.099c11.191-11.253 29.377-11.253 40.568 0l123.104 123.78c11.191 11.253 11.191 29.538 0 40.791l-82.536 82.989-165.071-165.978zM160 703.058l543.058-543.058 158.392 158.392-543.058 543.058-158.392-158.392zM106.846 736l181.154 182.133-274.053 104.298c-10.838 4.67-17.032-1.557-12.387-12.454l105.286-273.978z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pencil"],"colorPermutations":{}},"attrs":[],"properties":{"order":696,"id":362,"name":"pencil","prevSize":32,"code":59750},"setIdx":1,"setId":1,"iconIdx":4},{"icon":{"paths":["M853.333 85.333h-682.667c-46.933 0-84.907 38.4-84.907 85.333l-0.427 768 170.667-170.667h597.333c46.933 0 85.333-38.4 85.333-85.333v-512c0-46.933-38.4-85.333-85.333-85.333zM256 384h512v85.333h-512v-85.333zM597.333 597.333h-341.333v-85.333h341.333v85.333zM768 341.333h-512v-85.333h512v85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-chat-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":697,"id":346,"name":"baseline-chat-24px","prevSize":32,"code":59649},"setIdx":1,"setId":1,"iconIdx":5},{"icon":{"paths":["M853.333 85.333h-682.667c-46.933 0-84.907 38.4-84.907 85.333l-0.427 768 170.667-170.667h597.333c46.933 0 85.333-38.4 85.333-85.333v-512c0-46.933-38.4-85.333-85.333-85.333zM213.333 597.333l149.333-192 106.667 128.427 149.333-192.427 192 256h-597.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-mms-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":698,"id":333,"name":"baseline-mms-24px","prevSize":32,"code":59650},"setIdx":1,"setId":1,"iconIdx":6},{"icon":{"paths":["M853.333 85.333h-682.667c-46.933 0-85.333 38.4-85.333 85.333v768l170.667-170.667h597.333c46.933 0 85.333-38.4 85.333-85.333v-512c0-46.933-38.4-85.333-85.333-85.333zM853.333 682.667h-597.333l-85.333 85.333v-597.333h682.667v512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-chat_bubble_outline-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":699,"id":348,"name":"baseline-chat_bubble_outline-24px","prevSize":32,"code":59651},"setIdx":1,"setId":1,"iconIdx":7},{"icon":{"paths":["M938.24 170.667c0-46.933-37.973-85.333-84.907-85.333h-682.667c-46.933 0-85.333 38.4-85.333 85.333v512c0 46.933 38.4 85.333 85.333 85.333h597.333l170.667 170.667-0.427-768z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-mode_comment-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":700,"id":330,"name":"baseline-mode_comment-24px","prevSize":32,"code":59652},"setIdx":1,"setId":1,"iconIdx":8},{"icon":{"paths":["M853.333 85.333h-682.667c-46.933 0-85.333 38.4-85.333 85.333v768l170.667-170.667h597.333c46.933 0 85.333-38.4 85.333-85.333v-512c0-46.933-38.4-85.333-85.333-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-chat_bubble-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":701,"id":347,"name":"baseline-chat_bubble-24px","prevSize":32,"code":59653},"setIdx":1,"setId":1,"iconIdx":9},{"icon":{"paths":["M938.24 170.667c0-46.933-37.973-85.333-84.907-85.333h-682.667c-46.933 0-85.333 38.4-85.333 85.333v512c0 46.933 38.4 85.333 85.333 85.333h597.333l170.667 170.667-0.427-768zM725.333 469.333h-170.667v170.667h-85.333v-170.667h-170.667v-85.333h170.667v-170.667h85.333v170.667h170.667v85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-add_comment-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":702,"id":359,"name":"baseline-add_comment-24px","prevSize":32,"code":59654},"setIdx":1,"setId":1,"iconIdx":10},{"icon":{"paths":["M220.044 769.39c-108.252-79.471-177.378-200.472-177.378-336.003 0-239.353 215.593-433.386 481.54-433.386s481.54 194.034 481.54 433.386c0 239.353-215.593 433.386-481.54 433.386-55.605 0-109.008-8.482-158.7-24.087l-196.715 181.314h-102.673l153.926-254.61z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bubble-talk"],"colorPermutations":{}},"attrs":[],"properties":{"order":703,"id":281,"name":"bubble-talk","prevSize":32,"code":59655},"setIdx":1,"setId":1,"iconIdx":11},{"icon":{"paths":["M512 85.333c-164.693 0-298.667 133.973-298.667 298.667 0 224 298.667 554.667 298.667 554.667s298.667-330.667 298.667-554.667c0-164.693-133.973-298.667-298.667-298.667zM682.667 426.667h-128v128h-85.333v-128h-128v-85.333h128v-128h85.333v128h128v85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-add_location-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":704,"id":358,"name":"baseline-add_location-24px","prevSize":32,"code":59656},"setIdx":1,"setId":1,"iconIdx":12},{"icon":{"paths":["M810.667 554.667h-256v256h-85.333v-256h-256v-85.333h256v-256h85.333v256h256v85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-add-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":705,"id":357,"name":"baseline-add-24px","prevSize":32,"code":59657},"setIdx":1,"setId":1,"iconIdx":13},{"icon":{"paths":["M434.347 384z","M896 682.667v-85.333l-341.333-213.333v-234.667c0-35.413-28.587-64-64-64s-64 28.587-64 64v234.667l-341.333 213.333v85.333l341.333-106.667v234.667l-85.333 64v64l149.333-42.667 149.333 42.667v-64l-85.333-64v-234.667l341.333 106.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-airplanemode_active-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":706,"id":356,"name":"baseline-airplanemode_active-24px","prevSize":32,"code":59658},"setIdx":1,"setId":1,"iconIdx":14},{"icon":{"paths":["M554.667 384v-234.667c0-35.413-28.587-64-64-64s-64 28.587-64 64v157.013l334.080 334.080 135.253 42.24v-85.333l-341.333-213.333zM128 224.853l212.907 212.907-255.573 159.573v85.333l341.333-106.667v234.667l-85.333 64v64l149.333-42.667 149.333 42.667v-64l-85.333-64v-159.147l244.48 244.48 54.187-54.187-671.147-671.147-54.187 54.187z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-airplanemode_inactive-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":707,"id":355,"name":"baseline-airplanemode_inactive-24px","prevSize":32,"code":59659},"setIdx":1,"setId":1,"iconIdx":15},{"icon":{"paths":["M938.667 469.333h-177.92l138.24-138.24-60.16-60.587-198.827 198.827h-85.333v-85.333l198.827-198.827-60.587-60.16-138.24 138.24v-177.92h-85.333v177.92l-138.24-138.24-60.587 60.16 198.827 198.827v85.333h-85.333l-198.827-198.827-60.16 60.587 138.24 138.24h-177.92v85.333h177.92l-138.24 138.24 60.16 60.587 198.827-198.827h85.333v85.333l-198.827 198.827 60.587 60.16 138.24-138.24v177.92h85.333v-177.92l138.24 138.24 60.587-60.16-198.827-198.827v-85.333h85.333l198.827 198.827 60.16-60.587-138.24-138.24h177.92z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-ac_unit-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":708,"id":361,"name":"baseline-ac_unit-24px","prevSize":32,"code":59660},"setIdx":1,"setId":1,"iconIdx":16},{"icon":{"paths":["M576 28.587s31.573 113.067 31.573 204.8c0 87.893-57.6 159.147-145.493 159.147-88.32 0-154.88-71.253-154.88-159.147l1.28-15.36c-86.187 102.4-137.813 235.093-137.813 379.307 0 188.587 152.747 341.333 341.333 341.333s341.333-152.747 341.333-341.333c0-229.973-110.507-435.2-277.333-568.747zM499.627 810.667c-75.947 0-137.387-59.733-137.387-133.973 0-69.12 44.8-117.76 119.893-133.12 75.52-15.36 153.6-51.627 197.12-110.080 16.64 55.040 25.173 113.067 25.173 172.373 0 113.067-91.733 204.8-204.8 204.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-whatshot-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":709,"id":304,"name":"baseline-whatshot-24px","prevSize":32,"code":59661},"setIdx":1,"setId":1,"iconIdx":17},{"icon":{"paths":["M793.6 282.453c-61.44 0-119.467 23.893-160.853 65.28l-120.747 107.093-64.853 57.173h0.427l-114.773 101.973c-27.307 27.307-63.573 42.24-102.4 42.24-79.787 0-144.64-64.427-144.64-144.213s64.853-144.213 144.64-144.213c38.827 0 75.093 14.933 104.107 43.947l48.213 42.667 64.427-57.173-53.76-47.36c-43.52-43.52-101.547-67.413-162.987-67.413-127.147 0-230.4 103.253-230.4 229.547s103.253 229.547 230.4 229.547c61.44 0 119.467-23.893 160.853-65.28l120.747-106.667 0.427 0.427 64.427-58.027h-0.427l114.773-101.973c27.307-27.307 63.573-42.24 102.4-42.24 79.787 0 144.64 64.427 144.64 144.213s-64.853 144.213-144.64 144.213c-38.4 0-75.093-14.933-104.107-43.947l-48.64-43.093-64.427 57.173 54.187 47.787c43.52 43.093 101.12 66.987 162.987 66.987 127.147 0 230.4-102.827 230.4-229.547s-103.253-229.12-230.4-229.12z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-all_inclusive-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":710,"id":354,"name":"baseline-all_inclusive-24px","prevSize":32,"code":59662},"setIdx":1,"setId":1,"iconIdx":18},{"icon":{"paths":["M170.667 341.333h170.667v-170.667h-170.667v170.667zM426.667 853.333h170.667v-170.667h-170.667v170.667zM170.667 853.333h170.667v-170.667h-170.667v170.667zM170.667 597.333h170.667v-170.667h-170.667v170.667zM426.667 597.333h170.667v-170.667h-170.667v170.667zM682.667 170.667v170.667h170.667v-170.667h-170.667zM426.667 341.333h170.667v-170.667h-170.667v170.667zM682.667 597.333h170.667v-170.667h-170.667v170.667zM682.667 853.333h170.667v-170.667h-170.667v170.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-apps-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":711,"id":353,"name":"baseline-apps-24px","prevSize":32,"code":59663},"setIdx":1,"setId":1,"iconIdx":19},{"icon":{"paths":["M0 64h1024v192h-1024v-192z","M0 416h1024v192h-1024v-192z","M0 768h1024v192h-1024v-192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["display-grid"],"colorPermutations":{}},"attrs":[],"properties":{"order":712,"id":289,"name":"display-grid","prevSize":32,"code":59664},"setIdx":1,"setId":1,"iconIdx":20},{"icon":{"paths":["M560.085 621.227l61.013-61.013 274.773 274.901-60.885 60.885zM743.253 376.747l122.027-122.027c-168.533-168.533-441.6-168.96-610.133-0.853 167.68-55.467 354.56-10.667 488.107 122.88zM253.867 255.147c-168.107 168.533-167.68 441.6 0.853 610.133l122.027-122.027c-133.547-133.547-178.347-320.427-122.88-488.107zM254.72 254.293l-0.427 0.427c-16.213 128.427 49.92 293.547 183.467 427.52l244.48-244.48c-133.547-133.547-299.093-199.68-427.52-183.467z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-beach_access-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":713,"id":352,"name":"baseline-beach_access-24px","prevSize":32,"code":59665},"setIdx":1,"setId":1,"iconIdx":21},{"icon":{"paths":["M757.333 298.667l-160-160-426.667 426.667v160h160l426.667-426.667zM883.627 172.373c16.64-16.64 16.64-43.52 0-60.16l-99.84-99.84c-16.64-16.64-43.52-16.64-60.16 0l-83.627 83.627 160 160 83.627-83.627z","M0 853.333h1024v170.667h-1024z"],"attrs":[],"isMulticolor":false,"isMulticolor2":true,"grid":0,"tags":["baseline-border_color-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":714,"id":350,"name":"baseline-border_color-24px","prevSize":32,"code":59666,"codes":[59666,59667]},"setIdx":1,"setId":1,"iconIdx":22},{"icon":{"paths":["M810.667 128h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM320 768c-35.413 0-64-28.587-64-64s28.587-64 64-64 64 28.587 64 64-28.587 64-64 64zM320 384c-35.413 0-64-28.587-64-64s28.587-64 64-64 64 28.587 64 64-28.587 64-64 64zM512 576c-35.413 0-64-28.587-64-64s28.587-64 64-64 64 28.587 64 64-28.587 64-64 64zM704 768c-35.413 0-64-28.587-64-64s28.587-64 64-64 64 28.587 64 64-28.587 64-64 64zM704 384c-35.413 0-64-28.587-64-64s28.587-64 64-64 64 28.587 64 64-28.587 64-64 64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-casino-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":715,"id":349,"name":"baseline-casino-24px","prevSize":32,"code":59668},"setIdx":1,"setId":1,"iconIdx":23},{"icon":{"paths":["M810.667 213.333v597.333h-597.333v-597.333h597.333zM810.667 128h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-check_box_outline_blank-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":716,"id":345,"name":"baseline-check_box_outline_blank-24px","prevSize":32,"code":59669},"setIdx":1,"setId":1,"iconIdx":24},{"icon":{"paths":["M810.667 128h-597.333c-47.36 0-85.333 38.4-85.333 85.333v597.333c0 46.933 37.973 85.333 85.333 85.333h597.333c47.36 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-37.973-85.333-85.333-85.333zM426.667 725.333l-213.333-213.333 60.16-60.16 153.173 152.747 323.84-323.84 60.16 60.587-384 384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-check_box-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":717,"id":344,"name":"baseline-check_box-24px","prevSize":32,"code":59670},"setIdx":1,"setId":1,"iconIdx":25},{"icon":{"paths":["M752.213 298.667h-480.427c-102.827 0-186.453 95.573-186.453 213.333s83.627 213.333 186.453 213.333h480.427c102.827 0 186.453-95.573 186.453-213.333s-83.627-213.333-186.453-213.333zM308.907 616.96l-109.653-109.653 29.867-29.867 79.787 79.787 150.187-150.187 29.867 29.867-180.053 180.053z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-edit_attributes-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":718,"id":343,"name":"baseline-edit_attributes-24px","prevSize":32,"code":59671},"setIdx":1,"setId":1,"iconIdx":26},{"icon":{"paths":["M512 85.333c-164.693 0-298.667 133.973-298.667 298.667 0 224 298.667 554.667 298.667 554.667s298.667-330.667 298.667-554.667c0-164.693-133.973-298.667-298.667-298.667zM445.44 512h-61.44v-61.44l142.933-142.507 61.013 61.013-142.507 142.933zM635.307 322.133l-29.867 29.867-61.44-61.44 29.867-29.867c6.4-6.4 16.64-6.4 23.040 0l38.4 38.4c6.4 6.4 6.4 16.64 0 23.040z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-edit_location-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":719,"id":342,"name":"baseline-edit_location-24px","prevSize":32,"code":59672},"setIdx":1,"setId":1,"iconIdx":27},{"icon":{"paths":["M531.2 682.667h89.173l-218.027-554.667h-79.36l-218.027 554.667h89.173l47.787-128h240.64l48.64 128zM274.347 469.333l88.32-235.52 88.32 235.52h-176.64zM921.173 494.507l-345.173 345.173-156.587-157.013-60.16 60.16 217.173 217.173 404.907-405.333-60.16-60.16z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-spellcheck-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":720,"id":316,"name":"baseline-spellcheck-24px","prevSize":32,"code":59673},"setIdx":1,"setId":1,"iconIdx":28},{"icon":{"paths":["M786.323 938.667h-167.708l-66.667-173.437h-305.208l-63.021 173.437h-163.542l297.396-763.542h163.021l305.729 763.542zM502.469 636.583l-105.208-283.333-103.125 283.333h208.333z","M874.667 128l149.333 213.333h-298.667z","M874.667 640l149.333-213.333h-298.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["letter-arrow"],"colorPermutations":{}},"attrs":[],"properties":{"order":721,"id":301,"name":"letter-arrow","prevSize":32,"code":59674},"setIdx":1,"setId":1,"iconIdx":29},{"icon":{"paths":["M423.68 576h176.64l-88.32-235.52zM853.333 85.333h-682.667c-46.933 0-85.333 38.4-85.333 85.333v682.667c0 46.933 38.4 85.333 85.333 85.333h682.667c46.933 0 85.333-38.4 85.333-85.333v-682.667c0-46.933-38.4-85.333-85.333-85.333zM680.533 789.333l-48.64-128h-240.64l-47.787 128h-89.173l218.027-554.667h79.36l218.027 554.667h-89.173z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-font_download-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":722,"id":341,"name":"baseline-font_download-24px","prevSize":32,"code":59675},"setIdx":1,"setId":1,"iconIdx":30},{"icon":{"paths":["M213.333 170.667v128h234.667v512h128v-512h234.667v-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-title-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":723,"id":308,"name":"baseline-title-24px","prevSize":32,"code":59676},"setIdx":1,"setId":1,"iconIdx":31},{"icon":{"paths":["M106.667 170.667v128h213.333v512h128v-512h213.333v-128h-554.667zM917.333 384h-384v128h128v298.667h128v-298.667h128v-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-text_fields-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":724,"id":310,"name":"baseline-text_fields-24px","prevSize":32,"code":59677},"setIdx":1,"setId":1,"iconIdx":32},{"icon":{"paths":["M810.667 128h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM725.333 554.667h-426.667v-85.333h426.667v85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-indeterminate_check_box-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":725,"id":340,"name":"baseline-indeterminate_check_box-24px","prevSize":32,"code":59678},"setIdx":1,"setId":1,"iconIdx":33},{"icon":{"paths":["M853.333 768c46.933 0 84.907-38.4 84.907-85.333l0.427-469.333c0-46.933-38.4-85.333-85.333-85.333h-682.667c-46.933 0-85.333 38.4-85.333 85.333v469.333c0 46.933 38.4 85.333 85.333 85.333h-170.667c0 46.933 38.4 85.333 85.333 85.333h853.333c46.933 0 85.333-38.4 85.333-85.333h-170.667zM170.667 213.333h682.667v469.333h-682.667v-469.333zM512 810.667c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667 42.667 19.2 42.667 42.667-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-laptop_mac-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":726,"id":339,"name":"baseline-laptop_mac-24px","prevSize":32,"code":59679},"setIdx":1,"setId":1,"iconIdx":34},{"icon":{"paths":["M810.667 85.333h-597.333c-47.36 0-85.333 38.4-85.333 85.333v597.333c0 46.933 37.973 85.333 85.333 85.333h170.667l128 128 128-128h170.667c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM554.667 768h-85.333v-85.333h85.333v85.333zM642.987 437.333l-38.4 39.253c-30.72 31.147-49.92 56.747-49.92 120.747h-85.333v-21.333c0-46.933 19.2-89.6 49.92-120.747l52.907-53.76c15.787-15.36 25.173-36.693 25.173-60.16 0-46.933-38.4-85.333-85.333-85.333s-85.333 38.4-85.333 85.333h-85.333c0-94.293 76.373-170.667 170.667-170.667s170.667 76.373 170.667 170.667c0 37.547-15.36 71.68-39.68 96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-live_help-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":727,"id":338,"name":"baseline-live_help-24px","prevSize":32,"code":59680},"setIdx":1,"setId":1,"iconIdx":35},{"icon":{"paths":["M893.44 469.333c-19.627-177.92-160.853-319.147-338.773-338.773v-87.893h-85.333v87.893c-48.213 5.12-93.44 19.627-134.827 41.387l64 64c34.987-14.507 73.387-22.613 113.493-22.613 165.12 0 298.667 133.547 298.667 298.667 0 40.107-8.107 78.507-22.187 113.067l64 64c21.333-40.96 35.84-86.187 41.387-134.4h87.467v-85.333h-87.893zM128 182.187l87.040 87.040c-45.653 55.893-76.373 124.587-84.48 200.107h-87.893v85.333h87.893c19.627 177.92 160.853 319.147 338.773 338.773v87.893h85.333v-87.893c75.52-8.533 144.213-38.827 200.107-84.48l87.040 87.040 54.187-54.187-713.813-713.813-54.187 54.187zM694.187 748.373c-50.347 38.827-113.493 62.293-182.187 62.293-165.12 0-298.667-133.547-298.667-298.667 0-68.693 23.467-131.84 62.293-182.187l418.56 418.56z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-location_disabled-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":728,"id":337,"name":"baseline-location_disabled-24px","prevSize":32,"code":59681},"setIdx":1,"setId":1,"iconIdx":36},{"icon":{"paths":["M853.333 170.667h-682.667c-46.933 0-84.907 38.4-84.907 85.333l-0.427 512c0 46.933 38.4 85.333 85.333 85.333h682.667c46.933 0 85.333-38.4 85.333-85.333v-512c0-46.933-38.4-85.333-85.333-85.333zM853.333 768h-682.667v-426.667l341.333 213.333 341.333-213.333v426.667zM512 469.333l-341.333-213.333h682.667l-341.333 213.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-mail_outline-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":729,"id":336,"name":"baseline-mail_outline-24px","prevSize":32,"code":59682},"setIdx":1,"setId":1,"iconIdx":37},{"icon":{"paths":["M853.333 170.667h-682.667c-46.933 0-84.907 38.4-84.907 85.333l-0.427 512c0 46.933 38.4 85.333 85.333 85.333h682.667c46.933 0 85.333-38.4 85.333-85.333v-512c0-46.933-38.4-85.333-85.333-85.333zM853.333 341.333l-341.333 213.333-341.333-213.333v-85.333l341.333 213.333 341.333-213.333v85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-mail-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":730,"id":335,"name":"baseline-mail-24px","prevSize":32,"code":59683},"setIdx":1,"setId":1,"iconIdx":38},{"icon":{"paths":["M853.333 85.333h-682.667c-46.933 0-84.907 38.4-84.907 85.333l-0.427 768 170.667-170.667h597.333c46.933 0 85.333-38.4 85.333-85.333v-512c0-46.933-38.4-85.333-85.333-85.333zM768 597.333h-512v-85.333h512v85.333zM768 469.333h-512v-85.333h512v85.333zM768 341.333h-512v-85.333h512v85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-message-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":731,"id":334,"name":"baseline-message-24px","prevSize":32,"code":59684},"setIdx":1,"setId":1,"iconIdx":39},{"icon":{"paths":["M810.667 42.667h-426.667c-46.933 0-85.333 38.4-85.333 85.333v128h85.333v-85.333h426.667v682.667h-426.667v-85.333h-85.333v128c0 46.933 38.4 85.333 85.333 85.333h426.667c46.933 0 85.333-38.4 85.333-85.333v-768c0-46.933-38.4-85.333-85.333-85.333zM299.093 574.72l-108.8-108.8-54.187 54.187 162.56 162.56 306.773-306.773-54.187-54.187z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-mobile_friendly-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":732,"id":332,"name":"baseline-mobile_friendly-24px","prevSize":32,"code":59685},"setIdx":1,"setId":1,"iconIdx":40},{"icon":{"paths":["M725.333 43.093l-426.667-0.427c-46.933 0-84.907 38.4-84.907 85.333v768c0 46.933 37.973 85.333 84.907 85.333h426.667c46.933 0 85.333-38.4 85.333-85.333v-768c0-46.933-38.4-84.907-85.333-84.907zM725.333 810.667h-426.667v-597.333h426.667v597.333zM546.133 564.053v74.667l136.533-127.573-136.533-127.147v72.533c-132.693 18.347-185.6 109.227-204.8 200.533 47.36-64 110.080-93.013 204.8-93.013z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-mobile_screen_share-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":733,"id":331,"name":"baseline-mobile_screen_share-24px","prevSize":32,"code":59686},"setIdx":1,"setId":1,"iconIdx":41},{"icon":{"paths":["M512 85.333c-212.053 0-384 171.947-384 384 0 177.92 121.173 327.253 285.44 370.773l98.56 98.56 98.56-98.56c164.267-43.52 285.44-192.853 285.44-370.773 0-212.053-171.947-384-384-384zM512 170.667c70.827 0 128 57.173 128 128s-57.173 128-128 128-128-57.173-128-128 57.173-128 128-128zM512 780.8c-106.667 0-200.96-54.613-256-137.387 1.28-84.907 170.667-131.413 256-131.413 84.907 0 254.72 46.507 256 131.413-55.040 82.773-149.333 137.387-256 137.387z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-person_pin-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":734,"id":329,"name":"baseline-person_pin-24px","prevSize":32,"code":59687},"setIdx":1,"setId":1,"iconIdx":42},{"icon":{"paths":["M432 0c-238.592 0-432 193.408-432 432s193.408 432 432 432c238.592 0 432-193.408 432-432s-193.408-432-432-432zM432 96c185.28 0 336 150.72 336 336s-150.72 336-336 336c-185.28 0-336-150.72-336-336s150.72-336 336-336z","M720.157 719.843l19.488 87.36 212.352 212.352 67.872-67.904-212.352-212.32z","M192 384h480v128h-480v-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["loope-less"],"colorPermutations":{}},"attrs":[],"properties":{"order":735,"id":288,"name":"loope-less","prevSize":32,"code":59688},"setIdx":1,"setId":1,"iconIdx":43},{"icon":{"paths":["M448 0c-247.429 0-448 200.571-448 448s200.571 448 448 448c247.429 0 448-200.571 448-448s-200.571-448-448-448zM448 96c194.103 0 352 157.897 352 352s-157.897 352-352 352c-194.103 0-352-157.897-352-352s157.897-352 352-352z","M750.541 749.814l17.539 78.624 191.117 191.117 61.085-61.114-191.117-191.088z","M224 384h448v128h-448v-128z","M384 224h128v448h-128v-448z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["loope-more"],"colorPermutations":{}},"attrs":[],"properties":{"order":736,"id":287,"name":"loope-more","prevSize":32,"code":59689},"setIdx":1,"setId":1,"iconIdx":44},{"icon":{"paths":["M298.667 469.333v85.333h426.667v-85.333h-426.667zM512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM512 853.333c-188.16 0-341.333-153.173-341.333-341.333s153.173-341.333 341.333-341.333 341.333 153.173 341.333 341.333-153.173 341.333-341.333 341.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-remove_circle_outline-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":737,"id":328,"name":"baseline-remove_circle_outline-24px","prevSize":32,"code":59690},"setIdx":1,"setId":1,"iconIdx":45},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM725.333 554.667h-426.667v-85.333h426.667v85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-remove_circle-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":738,"id":327,"name":"baseline-remove_circle-24px","prevSize":32,"code":59691},"setIdx":1,"setId":1,"iconIdx":46},{"icon":{"paths":["M298.667 341.333v-128l-298.667 298.667 298.667 298.667v-128l-170.667-170.667 170.667-170.667zM554.667 384v-170.667l-298.667 298.667 298.667 298.667v-174.933c213.333 0 362.667 68.267 469.333 217.6-42.667-213.333-170.667-426.667-469.333-469.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-reply_all-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":739,"id":326,"name":"baseline-reply_all-24px","prevSize":32,"code":59693},"setIdx":1,"setId":1,"iconIdx":47},{"icon":{"paths":["M426.667 384v-170.667l-298.667 298.667 298.667 298.667v-174.933c213.333 0 362.667 68.267 469.333 217.6-42.667-213.333-170.667-426.667-469.333-469.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-reply-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":740,"id":325,"name":"baseline-reply-24px","prevSize":32,"code":59694},"setIdx":1,"setId":1,"iconIdx":48},{"icon":{"paths":["M469.333 384l60.587 60.587-153.173 152.747h391.253v-426.667h85.333v512h-476.587l153.173 152.747-60.587 60.587-256-256 256-256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-subdirectory_arrow_left-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":741,"id":312,"name":"baseline-subdirectory_arrow_left-24px","prevSize":32,"code":59695},"setIdx":1,"setId":1,"iconIdx":49},{"icon":{"paths":["M810.667 640l-256 256-60.587-60.587 153.173-152.747h-476.587v-512h85.333v426.667h391.253l-153.173-152.747 60.587-60.587 256 256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-subdirectory_arrow_right-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":742,"id":311,"name":"baseline-subdirectory_arrow_right-24px","prevSize":32,"code":59696},"setIdx":1,"setId":1,"iconIdx":50},{"icon":{"paths":["M469.333 298.667h85.333v124.587l294.827 294.827 46.507-46.933v-318.293l-224.853-224.853h-318.293l-46.507 46.933 162.987 162.987zM950.187 927.147l-853.333-853.76-54.187 54.187 155.307 155.307-69.973 69.973v318.293l224.853 224.853h318.293l69.973-69.547 154.88 154.88 54.187-54.187zM512 738.133c-30.72 0-55.467-24.747-55.467-55.467s24.747-55.467 55.467-55.467 55.467 24.747 55.467 55.467-24.747 55.467-55.467 55.467z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-report_off-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":743,"id":324,"name":"baseline-report_off-24px","prevSize":32,"code":59697},"setIdx":1,"setId":1,"iconIdx":51},{"icon":{"paths":["M671.147 128h-318.293l-224.853 224.853v318.293l224.853 224.853h318.293l224.853-224.853v-318.293l-224.853-224.853zM512 738.133c-30.72 0-55.467-24.747-55.467-55.467s24.747-55.467 55.467-55.467c30.72 0 55.467 24.747 55.467 55.467s-24.747 55.467-55.467 55.467zM554.667 554.667h-85.333v-256h85.333v256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-report-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":744,"id":323,"name":"baseline-report-24px","prevSize":32,"code":59698},"setIdx":1,"setId":1,"iconIdx":52},{"icon":{"paths":["M85.333 256l298.24 298.667h-298.24v128h426.24l298.667 298.667 53.76-53.333-725.333-725.333zM874.667 554.667h64v128h-64zM768 554.667h64v128h-64zM804.267 208.213c26.453-26.027 42.667-61.867 42.667-101.547h-64c0 43.52-35.413 78.933-78.933 78.933v64c95.573 0 170.667 78.080 170.667 173.653v88.747h64v-88.747c0-95.147-54.613-177.067-134.4-215.040zM618.667 371.2h65.28c44.8 0 84.053 31.573 84.053 87.467v53.333h64v-67.84c0-76.8-68.267-134.827-148.053-134.827h-65.28c-43.52 0-78.933-41.813-78.933-85.333s35.413-74.667 78.933-74.667v-64c-78.933 0-142.933 64-142.933 142.933s64 142.933 142.933 142.933zM725.333 679.68v-125.013h-125.013z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-smoke_free-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":745,"id":319,"name":"baseline-smoke_free-24px","prevSize":32,"code":59699},"setIdx":1,"setId":1,"iconIdx":53},{"icon":{"paths":["M85.333 682.667h640v128h-640zM874.667 682.667h64v128h-64zM768 682.667h64v128h-64zM804.267 329.813c26.453-26.027 42.667-61.867 42.667-101.547 0-78.933-64-142.933-142.933-142.933v64c43.52 0 78.933 35.413 78.933 78.933s-35.413 78.933-78.933 78.933v64c95.573 0 170.667 78.080 170.667 173.653v95.147h64v-95.573c0-94.72-54.613-176.64-134.4-214.613zM683.947 435.2h-65.28c-43.52 0-78.933-41.813-78.933-85.333s35.413-74.667 78.933-74.667v-64c-78.933 0-142.933 64-142.933 142.933s64 142.933 142.933 142.933h65.28c44.8 0 84.053 31.573 84.053 87.467v55.467h64v-69.973c0-77.227-68.267-134.827-148.053-134.827z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-smoking_rooms-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":746,"id":318,"name":"baseline-smoking_rooms-24px","prevSize":32,"code":59700},"setIdx":1,"setId":1,"iconIdx":54},{"icon":{"paths":["M364.8 512c-45.653-30.293-96-54.187-150.613-68.693 54.613 14.507 104.96 38.4 150.613 68.693zM809.813 443.307c-55.040 14.507-106.24 38.827-152.32 69.973 46.080-31.147 97.28-55.467 152.32-69.973z","M660.907 410.88c-7.68-119.040-55.893-235.093-146.347-325.547-91.307 91.307-141.653 207.36-151.467 325.547 54.613 29.013 104.96 66.56 148.907 112.213 43.947-45.227 94.293-82.773 148.907-112.213zM383.573 523.947c-5.973-4.267-12.8-8.107-19.2-12.373 6.4 4.693 13.227 8.107 19.2 12.373zM657.493 513.28c-5.547 3.84-11.52 6.827-17.067 11.093 5.547-4.267 11.52-7.253 17.067-11.093zM512 659.2c-91.733-139.947-248.32-232.533-426.667-232.533 0 226.987 143.36 418.987 342.613 490.24 26.88 9.813 55.040 17.067 84.053 21.76 29.013-5.12 56.747-12.373 84.053-21.76 199.253-71.253 342.613-263.253 342.613-490.24-178.347 0-334.933 92.587-426.667 232.533z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-spa-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":747,"id":317,"name":"baseline-spa-24px","prevSize":32,"code":59701,"codes":[59701,59702]},"setIdx":1,"setId":1,"iconIdx":55},{"icon":{"paths":["M938.667 394.24l-306.773-26.453-119.893-282.453-119.893 282.88-306.773 26.027 232.96 201.813-69.973 299.947 263.68-159.147 263.68 159.147-69.547-299.947 232.533-201.813zM512 657.067v-396.8l72.96 172.373 186.88 16.213-141.653 122.88 42.667 182.613-160.853-97.28z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-star_half-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":748,"id":315,"name":"baseline-star_half-24px","prevSize":32,"code":59703},"setIdx":1,"setId":1,"iconIdx":56},{"icon":{"paths":["M703.147 107.52c139.52 66.133 239.36 201.387 254.72 361.813h64c-21.76-262.827-241.493-469.333-509.867-469.333l-28.16 1.28 162.56 162.56 56.747-56.32zM436.48 74.667c-25.173-25.173-65.707-25.173-90.453 0l-271.36 271.36c-25.173 25.173-25.173 65.707 0 90.453l512.853 512.853c25.173 25.173 65.707 25.173 90.453 0l271.36-271.36c25.173-25.173 25.173-65.707 0-90.453l-512.853-512.853zM632.747 904.107l-512.853-512.853 271.36-271.36 512.853 512.853-271.36 271.36zM320.853 916.48c-139.52-65.707-239.36-201.387-254.72-361.813h-64c21.76 262.827 241.493 469.333 509.867 469.333l28.16-1.28-162.56-162.56-56.747 56.32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-screen_rotation-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":749,"id":321,"name":"baseline-screen_rotation-24px","prevSize":32,"code":59704},"setIdx":1,"setId":1,"iconIdx":57},{"icon":{"paths":["M992 544.853l-109.653-109.653-60.16 60.16 94.72 94.72-241.493 241.493-482.987-482.987 241.493-241.493 89.6 89.6 60.16-60.16-104.533-104.533c-25.173-25.173-65.707-25.173-90.453 0l-271.36 271.36c-25.173 25.173-25.173 65.707 0 90.453l512.853 512.853c25.173 25.173 65.707 25.173 90.453 0l271.36-271.36c25.173-25.173 25.173-65.707 0-90.453zM361.387 873.813c-139.52-65.707-239.36-201.387-254.72-361.813h-64c21.76 262.827 241.493 469.333 509.867 469.333l28.16-1.28-162.56-162.987-56.747 56.747zM682.667 384h213.333c23.467 0 42.667-19.2 42.667-42.667v-170.667c0-23.467-19.2-42.667-42.667-42.667v-21.333c0-58.88-47.787-106.667-106.667-106.667s-106.667 47.787-106.667 106.667v21.333c-23.467 0-42.667 19.2-42.667 42.667v170.667c0 23.467 19.2 42.667 42.667 42.667zM716.8 106.667c0-40.107 32.427-72.533 72.533-72.533s72.533 32.427 72.533 72.533v21.333h-145.067v-21.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-screen_lock_rotation-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":750,"id":322,"name":"baseline-screen_lock_rotation-24px","prevSize":32,"code":59705},"setIdx":1,"setId":1,"iconIdx":58},{"icon":{"paths":["M725.333 43.093l-426.667-0.427c-46.933 0-84.907 38.4-84.907 85.333v768c0 46.933 37.973 85.333 84.907 85.333h426.667c46.933 0 85.333-38.4 85.333-85.333v-768c0-46.933-38.4-84.907-85.333-84.907zM725.333 810.667h-426.667v-597.333h426.667v597.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-stay_primary_portrait-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":751,"id":314,"name":"baseline-stay_primary_portrait-24px","prevSize":32,"code":59706},"setIdx":1,"setId":1,"iconIdx":59},{"icon":{"paths":["M85.333 853.333h853.333v-170.667h-853.333v170.667zM170.667 725.333h85.333v85.333h-85.333v-85.333zM85.333 170.667v170.667h853.333v-170.667h-853.333zM256 298.667h-85.333v-85.333h85.333v85.333zM85.333 597.333h853.333v-170.667h-853.333v170.667zM170.667 469.333h85.333v85.333h-85.333v-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-storage-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":752,"id":313,"name":"baseline-storage-24px","prevSize":32,"code":59707},"setIdx":1,"setId":1,"iconIdx":60},{"icon":{"paths":["M853.333 85.333h-682.667c-46.933 0-84.907 38.4-84.907 85.333l-0.427 768 170.667-170.667h597.333c46.933 0 85.333-38.4 85.333-85.333v-512c0-46.933-38.4-85.333-85.333-85.333zM384 469.333h-85.333v-85.333h85.333v85.333zM554.667 469.333h-85.333v-85.333h85.333v85.333zM725.333 469.333h-85.333v-85.333h85.333v85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-textsms-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":753,"id":309,"name":"baseline-textsms-24px","prevSize":32,"code":59708},"setIdx":1,"setId":1,"iconIdx":61},{"icon":{"paths":["M512 512c0-128 106.667-234.667 234.667-234.667s234.667 106.667 234.667 234.667h-469.333zM512 512c0 128-106.667 234.667-234.667 234.667s-234.667-106.667-234.667-234.667h469.333zM512 512c-128 0-234.667-106.667-234.667-234.667s106.667-234.667 234.667-234.667v469.333zM512 512c128 0 234.667 106.667 234.667 234.667s-106.667 234.667-234.667 234.667v-469.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-toys-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":754,"id":307,"name":"baseline-toys-24px","prevSize":32,"code":59709},"setIdx":1,"setId":1,"iconIdx":62},{"icon":{"paths":["M896 128h-768c-46.933 0-85.333 38.4-85.333 85.333v512c0 46.933 38.4 85.333 85.333 85.333h213.333v85.333h341.333v-85.333h213.333c46.933 0 84.907-38.4 84.907-85.333l0.427-512c0-46.933-38.4-85.333-85.333-85.333zM896 725.333h-768v-512h768v512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-tv-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":755,"id":306,"name":"baseline-tv-24px","prevSize":32,"code":59710},"setIdx":1,"setId":1,"iconIdx":63},{"icon":{"paths":["M725.333 724.907c-57.6 0-93.867 17.92-125.867 34.133-27.733 14.080-50.347 25.6-87.467 25.6-38.4 0-59.733-10.667-87.467-25.6-32-16.213-66.987-34.133-125.867-34.133s-93.867 17.92-125.867 34.133c-27.733 14.080-49.92 25.6-87.467 25.6v83.2c57.6 0 93.867-17.92 125.867-34.133 27.733-14.080 49.92-25.6 87.467-25.6s59.733 10.667 87.467 25.6c32 16.213 66.987 34.133 125.867 34.133s93.867-17.92 125.867-34.133c27.733-14.080 50.347-25.6 87.467-25.6 38.4 0 59.733 10.667 87.467 25.6 32 16.213 67.413 34.133 125.867 34.133v-83.2c-38.4 0-59.733-10.667-87.467-25.6-32-16.213-68.267-34.133-125.867-34.133zM725.333 535.040c-57.6 0-93.867 18.347-125.867 34.133-27.733 13.653-50.347 25.6-87.467 25.6-38.4 0-59.733-10.667-87.467-25.6-32-16.213-66.987-34.133-125.867-34.133s-93.867 18.347-125.867 34.133c-27.733 13.653-49.92 25.6-87.467 25.6v83.2c57.6 0 93.867-18.347 125.867-34.133 27.733-14.933 49.067-25.6 87.467-25.6s59.733 10.667 87.467 25.6c32 16.213 66.987 34.133 125.867 34.133s93.867-18.347 125.867-34.133c27.733-14.933 49.067-25.6 87.467-25.6s59.733 10.667 87.467 25.6c32 16.213 67.413 34.133 125.867 34.133v-83.2c-38.4 0-59.733-10.667-87.467-25.6-32-16.213-68.267-34.133-125.867-34.133zM851.2 190.293c-32-16.213-67.413-34.133-125.867-34.133s-93.867 17.92-125.867 34.133c-27.733 13.653-50.347 25.6-87.467 25.6-38.4 0-59.733-10.667-87.467-25.6-32-15.787-66.987-34.133-125.867-34.133s-93.867 17.92-125.867 34.133c-27.733 14.080-49.92 25.6-87.467 25.6v82.347c57.6 0 93.867-18.347 125.867-34.133 27.733-14.080 49.92-25.6 87.467-25.6s59.733 10.667 87.467 25.6c32 16.213 66.987 34.133 125.867 34.133s93.867-18.347 125.867-34.133c27.733-13.653 50.347-25.6 87.467-25.6 38.4 0 59.733 10.667 87.467 25.6 32 16.213 67.413 34.133 125.867 34.133v-83.2c-38.4 0-59.733-10.667-87.467-24.747zM725.333 345.173c-57.6 0-93.867 18.347-125.867 34.133-27.733 14.933-49.067 25.6-87.467 25.6s-59.733-10.667-87.467-25.6c-32-16.213-66.987-34.133-125.867-34.133s-93.867 18.347-125.867 34.133c-27.733 14.933-49.067 25.6-87.467 25.6v83.2c57.6 0 93.867-18.347 125.867-34.133 27.733-13.653 50.347-25.6 87.467-25.6s59.733 10.667 87.467 25.6c32 16.213 66.987 34.133 125.867 34.133s93.867-18.347 125.867-34.133c27.733-13.653 50.347-25.6 87.467-25.6 38.4 0 59.733 10.667 87.467 25.6 32 16.213 67.413 34.133 125.867 34.133v-83.2c-38.4 0-59.733-10.667-87.467-25.6-32-16.213-68.267-34.133-125.867-34.133z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-waves-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":756,"id":305,"name":"baseline-waves-24px","prevSize":32,"code":59711},"setIdx":1,"setId":1,"iconIdx":64},{"icon":{"paths":["M554.667 554.667v341.333h341.333v-341.333h-341.333zM128 896h341.333v-341.333h-341.333v341.333zM128 128v341.333h341.333v-341.333h-341.333zM710.827 72.107l-241.493 241.067 241.493 241.493 241.493-241.493-241.493-241.067z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-widgets-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":757,"id":303,"name":"baseline-widgets-24px","prevSize":32,"code":59712},"setIdx":1,"setId":1,"iconIdx":65},{"icon":{"paths":["M96 928v-608h768v608h-768zM800.691 96v-93.091l-64.77-2.909v96h-511.844v-96l-64.164 2.909v93.091h-63.914c-52.8 0-96 38.982-96 90.182v744.727c0 51.2 43.2 93.091 96 93.091h768c52.8 0 96-41.891 96-93.091v-744.727c0-51.2-43.2-90.182-96-90.182h-63.309z","M385.953 800h-65.859v-248.203c-24.063 22.5-52.422 39.141-85.078 49.922v-59.766c17.188-5.625 35.859-16.289 56.016-31.992s33.984-34.023 41.484-54.961h53.438v345zM595.719 455c33.281 0 59.297 11.875 78.047 35.625 22.344 28.125 33.516 74.765 33.516 139.922 0 65-11.25 111.719-33.75 140.156-18.594 23.438-44.531 35.156-77.813 35.156-33.438 0-60.391-12.851-80.859-38.555s-30.703-71.523-30.703-137.461c0-64.688 11.25-111.25 33.75-139.688 18.594-23.438 44.531-35.156 77.813-35.156zM595.719 509.609c-7.969 0-15.078 2.539-21.328 7.617s-11.094 14.18-14.531 27.305c-4.531 17.031-6.797 45.703-6.797 86.016s2.031 68.008 6.094 83.086c4.063 15.078 9.18 25.117 15.352 30.117s13.242 7.5 21.211 7.5c7.969 0 15.078-2.539 21.328-7.617s11.094-14.18 14.531-27.305c4.531-16.875 6.797-45.469 6.797-85.781s-2.031-68.008-6.094-83.086c-4.063-15.078-9.18-25.156-15.352-30.234s-13.242-7.617-21.211-7.617z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-date"],"colorPermutations":{}},"attrs":[],"properties":{"order":758,"id":302,"name":"calendar-date","prevSize":32,"code":59713},"setIdx":1,"setId":1,"iconIdx":66},{"icon":{"paths":["M590.545 768l-46.545 256h-64l-46.545-256h-433.455c-0-161.123 108.256-296.962 256-338.75v-333.25h-80c-26.51 0-48-21.49-48-48s21.49-48 48-48h672c26.51-0 48 21.49 48 48s-21.49 48-48 48h-80v333.25c147.744 41.787 256 177.626 256 338.75h-433.455z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pin"],"colorPermutations":{}},"attrs":[],"properties":{"order":759,"id":298,"name":"pin","prevSize":32,"code":59714},"setIdx":1,"setId":1,"iconIdx":67},{"icon":{"paths":["M773.49 768h-182.945l-46.545 256h-64l-46.545-256h-433.455c-0-161.123 108.256-296.962 256-338.75v-178.74l517.49 517.49zM954.51 768l-768-768 661.49-0c26.51-0 48 21.49 48 48s-21.49 48-48 48h-80v333.25c147.744 41.787 256 177.626 256 338.75h-69.49z","M101.823 59.314l-90.51 90.51 859.842 859.842 90.51-90.51-859.842-859.842z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["unpin"],"colorPermutations":{}},"attrs":[],"properties":{"order":760,"id":300,"name":"unpin","prevSize":32,"code":59715},"setIdx":1,"setId":1,"iconIdx":68},{"icon":{"paths":["M1021.296 777.752l-2.437-19.505c-2.437-19.505-4.874-39.010-7.31-58.514l-21.931-173.105c-14.621-117.029-29.242-236.495-43.863-353.524-9.747-80.457-60.921-173.105-177.888-173.105 0 0-2.437 0-2.437 0-151.083 2.438-314.35 2.438-511.733 0h-2.437c-104.783 0-160.83 82.895-173.014 163.352-9.747 73.143-19.495 146.286-26.805 216.99-4.874 36.571-9.747 73.143-12.184 109.714l-9.747 70.705c-7.31 70.705-17.058 141.41-26.805 214.552-9.747 63.39 7.31 126.781 43.863 175.543 36.552 46.324 92.599 73.143 151.083 73.143h631.137c58.484 0 112.094-26.819 148.646-73.143s53.61-109.714 43.863-173.105zM862.902 604.648c-14.621-2.438-29.242-2.438-46.3-2.438-77.978 0-153.52 0-231.498 0h-24.368c-107.22 0-216.877 0-324.097 0h-4.874c-43.863 0-77.978 0-114.531 19.505l9.747-75.581c14.621-117.029 29.242-236.495 43.863-353.524 4.874-48.762 21.931-73.143 53.61-85.333 9.747-2.438 19.495-4.876 29.242-4.876h41.426c41.426 0 85.289 0 126.715 0 112.094 0 226.625 0 341.155-2.438 53.61 0 85.289 29.257 92.599 92.648 14.621 126.781 31.679 251.124 46.3 377.905l7.31 53.638c-14.621-12.19-29.242-17.067-46.3-19.505zM187.903 699.733c4.874 0 9.747 0 14.621 0h438.628c60.921 0 121.841 0 182.762 0 48.736 0 80.415 21.943 99.91 68.267 14.621 34.133 12.184 73.143-4.874 104.838s-51.173 53.638-85.289 56.076c-12.184 0-24.368 0-36.552 0h-153.52c-146.209 0-292.419 0-438.628 0-51.173 0-92.599-31.695-104.783-80.457-9.747-34.133-4.874-68.267 14.621-97.524 14.621-31.695 41.426-48.762 73.105-51.2z","M864 816c0 44.183-35.817 80-80 80s-80-35.817-80-80c0-44.183 35.817-80 80-80s80 35.817 80 80z","M640 816c0 44.183-35.817 80-80 80s-80-35.817-80-80c0-44.183 35.817-80 80-80s80 35.817 80 80z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["save"],"colorPermutations":{}},"attrs":[],"properties":{"order":761,"id":299,"name":"save","prevSize":32,"code":59716},"setIdx":1,"setId":1,"iconIdx":69},{"icon":{"paths":["M31.869 407.273h956.223c23.564 0 42.667 19.103 42.667 42.667 0 2.837-0.283 5.668-0.845 8.449l-76.795 380.121c-4.021 19.905-21.515 34.218-41.822 34.218h-805.096c-20.407 0-37.957-14.451-41.874-34.478l-74.332-380.121c-4.522-23.126 10.559-45.54 33.685-50.062 2.698-0.527 5.44-0.793 8.188-0.793z","M135.758 128h380.121c23.564-0 42.667 19.103 42.667 42.667v143.515h-465.455v-143.515c0-23.564 19.103-42.667 42.667-42.667z","M558.545 221.091h279.273v93.091h-279.273v-93.091z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder"],"colorPermutations":{}},"attrs":[],"properties":{"order":762,"id":297,"name":"folder","prevSize":32,"code":59717},"setIdx":1,"setId":1,"iconIdx":70},{"icon":{"paths":["M90.667 192h864c26.51 0 48 21.49 48 48v0c0 26.51-21.49 48-48 48h-864c-26.51 0-48-21.49-48-48v0c-0-26.51 21.49-48 48-48z","M416 0h245.333c47.128-0 85.333 38.205 85.333 85.333v170.667h-416v-170.667c0-47.128 38.205-85.333 85.333-85.333zM480 64c-47.128 0-85.333 38.205-85.333 85.333v42.667h288v-42.667c0-47.128-38.205-85.333-85.333-85.333h-117.333z","M138.667 192h768v704c0 70.692-57.308 128-128 128h-512c-70.692 0-128-57.308-128-128v-704zM234.667 296v538.667c0 47.128 38.205 85.333 85.333 85.333h405.333c47.128 0 85.333-38.205 85.333-85.333v-538.667h-576z","M618.667 448h97.946v311.93h-97.946z","M330.667 448h97.946v311.93h-97.946z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["trash"],"colorPermutations":{}},"attrs":[],"properties":{"order":763,"id":296,"name":"trash","prevSize":32,"code":59718},"setIdx":1,"setId":1,"iconIdx":71},{"icon":{"paths":["M384 512c0 106.039-85.961 192-192 192s-192-85.961-192-192c0-106.039 85.961-192 192-192s192 85.961 192 192z","M1024 192c0 106.039-85.961 192-192 192s-192-85.961-192-192c0-106.039 85.961-192 192-192s192 85.961 192 192z","M1024 832c0 106.039-85.961 192-192 192s-192-85.961-192-192c0-106.039 85.961-192 192-192s192 85.961 192 192z","M790.756 160l58.111 114.049-598.756 305.082-58.111-114.049 598.756-305.082z","M758.756 867.13l-598.756-305.082 58.111-114.049 598.756 305.082z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["Share"],"colorPermutations":{}},"attrs":[],"properties":{"order":764,"id":295,"name":"Share","prevSize":32,"code":59719},"setIdx":1,"setId":1,"iconIdx":72},{"icon":{"paths":["M319.858 763.426c0.095-2.019 0.142-4.050 0.142-6.092 0-70.692-57.308-128-128-128s-128 57.308-128 128c0 2.042 0.048 4.073 0.142 6.092h-33.92c-16.693 0-30.222-14.855-30.222-33.157v-483.778c0-18.314 13.529-33.157 30.222-33.157h482.719c16.693 0 30.222 14.843 30.222 33.157v516.935h-223.306z","M675.603 501.232h253.762l-149.762-175.22h-104v175.22zM895.826 764.069c0.116-2.23 0.174-4.476 0.174-6.735 0-70.692-57.308-128-128-128s-128 57.308-128 128c0 2.259 0.059 4.505 0.174 6.735h-32.174v-486.735h195.462c6.933 0 16.048 4.107 20.374 9.165l192.327 225.037c4.338 5.058 7.836 14.423 7.836 20.901v196.426c0 19.434-16.838 35.206-37.613 35.206h-90.56z","M288 789.333c0 53.019-42.981 96-96 96s-96-42.981-96-96c0-53.019 42.981-96 96-96s96 42.981 96 96z","M864 789.333c0 53.019-42.981 96-96 96s-96-42.981-96-96c0-53.019 42.981-96 96-96s96 42.981 96 96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["Order"],"colorPermutations":{}},"attrs":[],"properties":{"order":765,"id":294,"name":"Order","prevSize":32,"code":59720},"setIdx":1,"setId":1,"iconIdx":73},{"icon":{"paths":["M0 0h1024v1024h-1024z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["rectangular"],"colorPermutations":{}},"attrs":[],"properties":{"order":766,"id":293,"name":"rectangular","prevSize":32,"code":59721},"setIdx":1,"setId":1,"iconIdx":74},{"icon":{"paths":["M213.333 0h597.333c117.821-0 213.333 95.513 213.333 213.333v597.333c0 117.821-95.513 213.333-213.333 213.333h-597.333c-117.821 0-213.333-95.513-213.333-213.333l-0-597.333c-0-117.821 95.513-213.333 213.333-213.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["rectangular-curve"],"colorPermutations":{}},"attrs":[],"properties":{"order":767,"id":292,"name":"rectangular-curve","prevSize":32,"code":59722},"setIdx":1,"setId":1,"iconIdx":75},{"icon":{"paths":["M1024 512c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-282.77 229.23-512 512-512s512 229.23 512 512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["circle"],"colorPermutations":{}},"attrs":[],"properties":{"order":768,"id":291,"name":"circle","prevSize":32,"code":59723},"setIdx":1,"setId":1,"iconIdx":76},{"icon":{"paths":["M759.893 190.72c-3.413 0-6.827-0.853-9.813-2.56-81.92-42.24-152.747-60.16-237.653-60.16-84.48 0-164.693 20.053-237.653 60.16-10.24 5.547-23.040 1.707-29.013-8.533-5.547-10.24-1.707-23.467 8.533-29.013 79.36-43.093 166.4-65.28 258.133-65.28 90.88 0 170.24 20.053 257.28 64.853 10.667 5.547 14.507 18.347 8.96 28.587-3.84 7.68-11.093 11.947-18.773 11.947zM149.333 414.72c-4.267 0-8.533-1.28-12.373-3.84-9.813-6.827-11.947-20.053-5.12-29.867 42.24-59.733 96-106.667 160-139.52 133.973-69.12 305.493-69.547 439.893-0.427 64 32.853 117.76 79.36 160 138.667 6.827 9.387 4.693 23.040-5.12 29.867s-23.040 4.693-29.867-5.12c-38.4-53.76-87.040-96-144.64-125.44-122.453-62.72-279.040-62.72-401.067 0.427-58.027 29.867-106.667 72.533-145.067 126.293-3.413 5.973-9.813 8.96-16.64 8.96zM416 929.707c-5.547 0-11.093-2.133-14.933-6.4-37.12-37.12-57.173-61.013-85.76-112.64-29.44-52.48-44.8-116.48-44.8-185.173 0-126.72 108.373-229.973 241.493-229.973s241.493 103.253 241.493 229.973c0 11.947-9.387 21.333-21.333 21.333s-21.333-9.387-21.333-21.333c0-103.253-89.173-187.307-198.827-187.307s-198.827 84.053-198.827 187.307c0 61.44 13.653 118.187 39.68 164.267 27.307 49.067 46.080 69.973 78.933 103.253 8.107 8.533 8.107 21.76 0 30.293-4.693 4.267-10.24 6.4-15.787 6.4zM721.92 850.773c-50.773 0-95.573-12.8-132.267-37.973-63.573-43.093-101.547-113.067-101.547-187.307 0-11.947 9.387-21.333 21.333-21.333s21.333 9.387 21.333 21.333c0 60.16 30.72 116.907 82.773 151.893 30.293 20.48 65.707 30.293 108.373 30.293 10.24 0 27.307-1.28 44.373-4.267 11.52-2.133 22.613 5.547 24.747 17.493 2.133 11.52-5.547 22.613-17.493 24.747-24.32 4.693-45.653 5.12-51.627 5.12zM636.16 938.667c-1.707 0-3.84-0.427-5.547-0.853-67.84-18.773-112.213-43.947-158.72-89.6-59.733-59.307-92.587-138.24-92.587-222.72 0-69.12 58.88-125.44 131.413-125.44s131.413 56.32 131.413 125.44c0 45.653 39.68 82.773 88.747 82.773s88.747-37.12 88.747-82.773c0-160.853-138.667-291.413-309.333-291.413-121.173 0-232.107 67.413-282.027 171.947-16.64 34.56-25.173 75.093-25.173 119.467 0 33.28 2.987 85.76 28.587 154.027 4.267 11.093-1.28 23.467-12.373 27.307-11.093 4.267-23.467-1.707-27.307-12.373-20.907-55.893-31.147-111.36-31.147-168.96 0-51.2 9.813-97.707 29.013-138.24 56.747-119.040 182.613-196.267 320.427-196.267 194.133 0 352 149.76 352 334.080 0 69.12-58.88 125.44-131.413 125.44s-131.413-56.32-131.413-125.44c0-45.653-39.68-82.773-88.747-82.773s-88.747 37.12-88.747 82.773c0 72.96 28.16 141.227 79.787 192.427 40.533 40.107 79.36 62.293 139.52 78.933 11.52 2.987 17.92 14.933 14.933 26.027-2.133 9.813-11.093 16.213-20.053 16.213z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-fingerprint-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":769,"id":193,"name":"baseline-fingerprint-24px","prevSize":32,"code":59724},"setIdx":1,"setId":1,"iconIdx":77},{"icon":{"paths":["M384 479.573v-159.573c0-58.88 47.787-106.667 106.667-106.667s106.667 47.787 106.667 106.667v159.573c51.627-34.56 85.333-93.013 85.333-159.573 0-106.24-85.76-192-192-192s-192 85.76-192 192c0 66.56 33.707 125.013 85.333 159.573zM803.84 677.12l-193.707-96.427c-7.253-2.987-14.933-4.693-23.040-4.693h-32.427v-256c0-35.413-28.587-64-64-64s-64 28.587-64 64v458.24l-146.347-30.72c-3.413-0.427-6.4-1.28-10.24-1.28-13.227 0-25.173 5.547-33.707 14.080l-33.707 34.133 210.773 210.773c11.52 11.52 27.733 18.773 45.227 18.773h289.707c32 0 56.747-23.467 61.44-54.613l32-224.853c0.427-2.987 0.853-5.973 0.853-8.533 0-26.453-16.213-49.493-38.827-58.88z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-touch_app-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":770,"id":275,"name":"baseline-touch_app-24px","prevSize":32,"code":59725},"setIdx":1,"setId":1,"iconIdx":78},{"icon":{"paths":["M642.81 144.512l-53.717 327.135c-1.908 10.204-8.441 15.721-17.691 15.68l-6.512 0.892c-11.137 0.871-20.367-8.462-19.351-20.512l21.653-401.509c2.033-33.371-24.681-64.129-58.072-66.161-35.238-1.141-64.129 24.681-66.182 58.052l-22.669 418.205c-0.062 9.271-7.529 17.588-18.666 18.459s-19.434-6.595-20.305-17.733l-18.459-356.295c-2.613-33.392-32.127-60.458-65.539-57.844-34.325 0.726-60.478 32.127-57.865 65.518l19.371 358.162c0.871 11.117-6.595 19.434-17.733 20.305s-21.3-5.683-21.259-14.974l-34.657-276.591c-5.372-34.346-35.839-58.632-68.339-54.153-34.346 5.372-58.632 35.839-54.173 68.339 0 0 41.781 429.686 65.284 539.296s52.093 257.209 192.172 255.197c105.733-1.286 181.954 1.265 287.688 0 52.887-0.643 91.704-47.142 128.103-85.885 82.11-91.402 214.101-311.434 214.101-311.434 21.508-31.421 13.398-75.971-20.782-98.433-32.375-18.728-63.963-7.757-94.741 23.602-30.799 31.38-82.152 96.006-82.152 96.006-27.978 27.688-52.929 9.914-50.917-18.811 2.136-51.933 5.081-83.458 11.884-139.996 6.824-56.538 52.784-324.355 52.784-324.355 4.832-32.438-18.189-65.020-51.539-71.699-32.438-4.812-65.020 18.189-71.719 51.539z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["Hand"],"colorPermutations":{}},"attrs":[],"properties":{"order":771,"id":285,"name":"Hand","prevSize":32,"code":59726},"setIdx":1,"setId":1,"iconIdx":79},{"icon":{"paths":["M810.667 128h-178.347c-17.92-49.493-64.853-85.333-120.32-85.333s-102.4 35.84-120.32 85.333h-178.347c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM512 128c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667-42.667-19.2-42.667-42.667 19.2-42.667 42.667-42.667zM512 298.667c70.827 0 128 57.173 128 128s-57.173 128-128 128-128-57.173-128-128 57.173-128 128-128zM768 810.667h-512v-59.733c0-85.333 170.667-132.267 256-132.267s256 46.933 256 132.267v59.733z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-assignment_ind-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":772,"id":211,"name":"baseline-assignment_ind-24px","prevSize":32,"code":59727},"setIdx":1,"setId":1,"iconIdx":80},{"icon":{"paths":["M512 512c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667-170.667 76.373-170.667 170.667 76.373 170.667 170.667 170.667zM512 597.333c-113.92 0-341.333 57.173-341.333 170.667v85.333h682.667v-85.333c0-113.493-227.413-170.667-341.333-170.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-person-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":773,"id":253,"name":"baseline-person-24px","prevSize":32,"code":59728},"setIdx":1,"setId":1,"iconIdx":81},{"icon":{"paths":["M640 512c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667-170.667 76.373-170.667 170.667 76.373 170.667 170.667 170.667zM256 426.667v-128h-85.333v128h-128v85.333h128v128h85.333v-128h128v-85.333h-128zM640 597.333c-113.92 0-341.333 57.173-341.333 170.667v85.333h682.667v-85.333c0-113.493-227.413-170.667-341.333-170.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-person_add-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":774,"id":254,"name":"baseline-person_add-24px","prevSize":32,"code":59729},"setIdx":1,"setId":1,"iconIdx":82},{"icon":{"paths":["M128 213.333v597.333c0 46.933 37.973 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333h-597.333c-47.36 0-85.333 38.4-85.333 85.333zM640 384c0 70.827-57.173 128-128 128s-128-57.173-128-128 57.173-128 128-128 128 57.173 128 128zM256 725.333c0-85.333 170.667-132.267 256-132.267s256 46.933 256 132.267v42.667h-512v-42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-account_box-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":775,"id":217,"name":"baseline-account_box-24px","prevSize":32,"code":59730},"setIdx":1,"setId":1,"iconIdx":83},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM512 213.333c70.827 0 128 57.173 128 128s-57.173 128-128 128-128-57.173-128-128 57.173-128 128-128zM512 819.2c-106.667 0-200.96-54.613-256-137.387 1.28-84.907 170.667-131.413 256-131.413 84.907 0 254.72 46.507 256 131.413-55.040 82.773-149.333 137.387-256 137.387z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-account_circle-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":776,"id":216,"name":"baseline-account_circle-24px","prevSize":32,"code":59731},"setIdx":1,"setId":1,"iconIdx":84},{"icon":{"paths":["M512 853.333l-36.693-36.693c-50.347-50.347-49.92-132.267 0.853-181.76l35.84-34.987c-16.64-1.707-29.013-2.56-42.667-2.56-113.92 0-341.333 57.173-341.333 170.667v85.333h384zM469.333 512c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667-170.667 76.373-170.667 170.667 76.373 170.667 170.667 170.667z","M690.347 843.947c-16.64 16.64-43.947 16.64-60.587 0l-88.32-89.173c-16.213-16.64-16.213-43.093 0-59.307l0.427-0.427c16.64-16.64 43.52-16.64 59.733 0l58.453 58.453 189.013-190.293c16.64-16.64 43.52-16.64 60.16 0l0.427 0.427c16.213 16.64 16.213 43.093 0 59.307l-219.307 221.013z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-how_to_reg-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":777,"id":231,"name":"round-how_to_reg-24px","prevSize":32,"code":59732},"setIdx":1,"setId":1,"iconIdx":85},{"icon":{"paths":["M682.667 469.333c70.827 0 127.573-57.173 127.573-128s-56.747-128-127.573-128-128 57.173-128 128 57.173 128 128 128zM341.333 469.333c70.827 0 127.573-57.173 127.573-128s-56.747-128-127.573-128-128 57.173-128 128 57.173 128 128 128zM341.333 554.667c-99.413 0-298.667 49.92-298.667 149.333v64c0 23.467 19.2 42.667 42.667 42.667h512c23.467 0 42.667-19.2 42.667-42.667v-64c0-99.413-199.253-149.333-298.667-149.333zM682.667 554.667c-12.373 0-26.453 0.853-41.387 2.133 0.853 0.427 1.28 1.28 1.707 1.707 48.64 35.413 82.347 82.773 82.347 145.493v64c0 14.933-2.987 29.44-7.68 42.667h221.013c23.467 0 42.667-19.2 42.667-42.667v-64c0-99.413-199.253-149.333-298.667-149.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-group-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":778,"id":232,"name":"round-group-24px","prevSize":32,"code":59733},"setIdx":1,"setId":1,"iconIdx":86},{"icon":{"paths":["M737.423 478.33c2.207-0.048 4.37-0.071 6.486-0.071 93.364 0 280.091 46.972 280.091 140.335v70.168h-142.8c-73.313-40.915-169.554-68.153-254.95-81.642 51.206-27.646 91.093-73.405 111.173-128.79z","M287.285 478.334c20.075 55.368 59.944 101.115 111.128 128.762-85.697 13.481-182.136 40.727-255.554 81.666h-142.859v-70.168c0-93.364 186.727-140.335 280.671-140.335 2.156 0 4.362 0.025 6.614 0.075z","M512.353 567.21c94.599 0 170.843-76.244 170.843-170.843s-76.95-170.843-170.843-170.843c-93.893 0-170.843 76.244-170.843 170.843s76.244 170.843 170.843 170.843zM512.353 651.926c-114.366 0-341.686 57.183-341.686 170.843v85.422h682.667v-85.422c0-113.66-227.32-170.843-340.98-170.843z","M631.256 184.696c25.643-34.44 66.675-56.696 112.653-56.696 77.127 0 140.335 62.629 140.335 140.335 0 75.259-58.746 136.375-133.039 140.151 0.197-4.072 0.296-8.172 0.296-12.296 0-90.64-48.556-169.473-120.245-211.494z","M273.27 408.481c-74.244-3.827-132.935-64.922-132.935-140.145 0-77.706 63.209-140.335 140.335-140.335 47.233 0 89.247 23.489 114.719 59.545-72.885 40.954-122.418 118.98-122.418 208.822 0 4.063 0.1 8.102 0.299 12.114z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-three"],"colorPermutations":{}},"attrs":[],"properties":{"order":779,"id":286,"name":"user-three","prevSize":32,"code":59734},"setIdx":1,"setId":1,"iconIdx":87},{"icon":{"paths":["M512 999.619c161.583 0 292.571-60.036 292.571-134.095s-130.989-134.095-292.571-134.095c-161.583 0-292.571 60.036-292.571 134.095s130.989 134.095 292.571 134.095zM524.506 597.648c84.463 0 152.539-68.075 152.539-152.539s-68.705-152.539-152.539-152.539c-83.833 0-152.539 68.075-152.539 152.539s68.075 152.539 152.539 152.539zM524.506 673.287c-102.113 0-305.077 51.056-305.077 152.539v76.269h609.524v-76.269c0-101.482-202.964-152.539-304.447-152.539z","M512 1024c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM512 975.238c255.839 0 463.238-207.399 463.238-463.238s-207.399-463.238-463.238-463.238c-255.839 0-463.238 207.399-463.238 463.238s207.399 463.238 463.238 463.238z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-circle-line"],"colorPermutations":{}},"attrs":[],"properties":{"order":780,"id":284,"name":"user-circle-line","prevSize":32,"code":59735,"codes":[59735,59736]},"setIdx":1,"setId":1,"iconIdx":88},{"icon":{"paths":["M810.667 349.867v76.8h-85.333v-93.863c-5.358-7.132-8.533-15.997-8.533-25.604v-221.867c0-23.564 19.103-42.667 42.667-42.667h221.867c23.564 0 42.667 19.103 42.667 42.667v221.867c0 23.564-19.103 42.667-42.667 42.667h-170.667zM410.024 555.090c-113.519 0-205.012-91.493-205.012-205.012s92.34-205.012 205.012-205.012c112.672 0 205.012 91.493 205.012 205.012s-91.493 205.012-205.012 205.012zM410.024 656.749c136.392 0 409.176 68.62 409.176 205.012v102.506h-819.2v-102.506c0-136.392 272.784-205.012 410.024-205.012z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-talk"],"colorPermutations":{}},"attrs":[],"properties":{"order":781,"id":280,"name":"user-talk","prevSize":32,"code":59737},"setIdx":1,"setId":1,"iconIdx":89},{"icon":{"paths":["M0 0h170.667v1024h-170.667v-1024zM341.333 0h170.667v1024h-170.667v-1024zM842.532 0l164.843 31.572-159.865 984.797-164.843-31.572 159.865-984.797z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["clean-order"],"colorPermutations":{}},"attrs":[],"properties":{"order":782,"id":283,"name":"clean-order","prevSize":32,"code":59738},"setIdx":1,"setId":1,"iconIdx":90},{"icon":{"paths":["M85.333 0h853.333c47.128-0 85.333 38.205 85.333 85.333v853.333c0 47.128-38.205 85.333-85.333 85.333h-853.333c-47.128 0-85.333-38.205-85.333-85.333v-853.333c-0-47.128 38.205-85.333 85.333-85.333zM170.667 85.333c-47.128 0-85.333 38.205-85.333 85.333v682.667c0 47.128 38.205 85.333 85.333 85.333h682.667c47.128 0 85.333-38.205 85.333-85.333v-682.667c0-47.128-38.205-85.333-85.333-85.333h-682.667zM256 341.333h512v85.333h-512v-85.333zM256 597.333h512v85.333h-512v-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["comment"],"colorPermutations":{}},"attrs":[],"properties":{"order":783,"id":282,"name":"comment","prevSize":32,"code":59739},"setIdx":1,"setId":1,"iconIdx":91},{"icon":{"paths":["M512 810.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM256 42.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM256 298.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM256 554.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM768 213.333c46.933 0 85.333-38.4 85.333-85.333s-38.4-85.333-85.333-85.333-85.333 38.4-85.333 85.333 38.4 85.333 85.333 85.333zM512 554.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM768 554.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM768 298.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM512 298.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM512 42.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-dialpad-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":784,"id":279,"name":"baseline-dialpad-24px","prevSize":32,"code":59740},"setIdx":1,"setId":1,"iconIdx":92},{"icon":{"paths":["M810.667 42.667h-597.333c-46.933 0-84.907 38.4-84.907 85.333l-0.427 551.68c0 29.44 14.933 55.467 37.547 70.827l346.453 230.827 346.027-230.827c22.613-15.36 37.547-41.387 37.547-70.827l0.427-551.68c0-46.933-38.4-85.333-85.333-85.333zM426.667 682.667l-213.333-213.333 60.16-60.16 153.173 152.747 323.84-323.84 60.16 60.587-384 384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-beenhere-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":785,"id":351,"name":"baseline-beenhere-24px","prevSize":32,"code":59741},"setIdx":1,"setId":1,"iconIdx":93},{"icon":{"paths":["M512 42.667l-384 170.667v256c0 236.8 163.84 458.24 384 512 220.16-53.76 384-275.2 384-512v-256l-384-170.667zM426.667 725.333l-170.667-170.667 60.16-60.16 110.507 110.080 281.173-281.173 60.16 60.587-341.333 341.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-verified_user-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":786,"id":249,"name":"baseline-verified_user-24px","prevSize":32,"code":59742},"setIdx":1,"setId":1,"iconIdx":94},{"icon":{"paths":["M384 691.2l-179.2-179.2-59.733 59.733 238.933 238.933 512-512-59.733-59.733-452.267 452.267z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-done-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":787,"id":278,"name":"baseline-done-24px","prevSize":32,"code":59743},"setIdx":1,"setId":1,"iconIdx":95},{"icon":{"paths":["M149.333 788.907l256-256.427 170.667 170.667 362.667-407.893-60.16-60.16-302.507 340.053-170.667-170.667-320 320.427z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-show_chart-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":788,"id":320,"name":"baseline-show_chart-24px","prevSize":32,"code":59744},"setIdx":1,"setId":1,"iconIdx":96},{"icon":{"paths":["M336.213 144.64l-54.613-65.28-196.267 164.267 55.040 65.28 195.84-164.267zM938.667 244.053l-196.267-164.693-55.040 65.28 196.267 164.693 55.040-65.28zM512 170.667c-212.053 0-384 171.947-384 384s171.52 384 384 384c212.053 0 384-171.947 384-384s-171.947-384-384-384zM512 853.333c-165.12 0-298.667-133.547-298.667-298.667s133.547-298.667 298.667-298.667 298.667 133.547 298.667 298.667-133.547 298.667-298.667 298.667zM384 469.333h154.88l-154.88 179.2v76.8h256v-85.333h-154.88l154.88-179.2v-76.8h-256v85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-snooze-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":789,"id":276,"name":"baseline-snooze-24px","prevSize":32,"code":59745},"setIdx":1,"setId":1,"iconIdx":97},{"icon":{"paths":["M672 192h-320v32c0 35.346-28.654 64-64 64s-64-28.654-64-64v-32h-42.667c-47.128 0-85.333 38.205-85.333 85.333v42.667h832v-42.667c0-47.128-38.205-85.333-85.333-85.333h-42.667v32c0 35.346-28.654 64-64 64s-64-28.654-64-64v-32zM800 96h96c70.692 0 128 57.308 128 128v672c0 70.692-57.308 128-128 128h-768c-70.692 0-128-57.308-128-128v-672c-0-70.692 57.308-128 128-128h96v-32c0-35.346 28.654-64 64-64s64 28.654 64 64v32h320v-32c0-35.346 28.654-64 64-64s64 28.654 64 64v32zM928 416h-832v426.667c0 47.128 38.205 85.333 85.333 85.333h661.333c47.128 0 85.333-38.205 85.333-85.333v-426.667zM256 640c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64zM256 864c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64zM768 640c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64zM768 864c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64zM512 640c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64zM512 864c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["Calendar"],"colorPermutations":{}},"attrs":[],"properties":{"order":790,"id":274,"name":"Calendar","prevSize":32,"code":59746},"setIdx":1,"setId":1,"iconIdx":98},{"icon":{"paths":["M736.178 352.126h241.675c23.564 0 42.667 19.103 42.667 42.667 0 3.975-0.556 7.931-1.651 11.753l-122.802 428.563c-10.488 36.602-43.957 61.828-82.032 61.828h-598.475c-37.708 0-70.945-24.749-81.753-60.875l-128.357-429.040c-6.754-22.575 6.072-46.352 28.647-53.106 3.968-1.187 8.087-1.79 12.229-1.79h241.6v-138.792c0-70.692 57.308-128 128-128h192.251c70.692 0 128 57.308 128 128v138.792zM383.981 352.126h256.144v-128.072c0-23.564-19.103-42.667-42.667-42.667h-170.81c-23.564 0-42.667 19.103-42.667 42.667v128.072z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["Basket"],"colorPermutations":{}},"attrs":[],"properties":{"order":791,"id":273,"name":"Basket","prevSize":32,"code":59747},"setIdx":1,"setId":1,"iconIdx":99},{"icon":{"paths":["M874.667 469.333h-64v-170.667c0-46.933-38.4-85.333-85.333-85.333h-170.667v-64c0-58.88-47.787-106.667-106.667-106.667s-106.667 47.787-106.667 106.667v64h-170.667c-46.933 0-84.907 38.4-84.907 85.333v162.133h63.573c63.573 0 115.2 51.627 115.2 115.2s-51.627 115.2-115.2 115.2h-64v162.133c0 46.933 38.4 85.333 85.333 85.333h162.133v-64c0-63.573 51.627-115.2 115.2-115.2s115.2 51.627 115.2 115.2v64h162.133c46.933 0 85.333-38.4 85.333-85.333v-170.667h64c58.88 0 106.667-47.787 106.667-106.667s-47.787-106.667-106.667-106.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-extension-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":792,"id":196,"name":"baseline-extension-24px","prevSize":32,"code":59748},"setIdx":1,"setId":1,"iconIdx":100},{"icon":{"paths":["M574.798 797.691h84.604c11.695 0 22.877 4.801 30.932 13.279 16.23 17.084 15.539 44.090-1.545 60.32l-145.906 138.619c-16.335 15.519-41.922 15.662-58.429 0.325l-149.193-138.619c-8.688-8.073-13.625-19.397-13.625-31.257 0-23.564 19.103-42.667 42.667-42.667h82.855v-127.526c0-35.247 28.573-63.82 63.82-63.82s63.82 28.573 63.82 63.82v127.526zM223.788 446.889h127.678c35.226 0 63.782 28.556 63.782 63.782s-28.556 63.782-63.782 63.782h-127.678v108.544c0 17.613-14.287 31.891-31.91 31.891-9.019 0-17.616-3.814-23.666-10.499l-158.31-174.928c-11.083-12.247-10.979-30.923 0.239-43.046l158.31-171.074c11.966-12.931 32.155-13.719 45.093-1.76 6.531 6.036 10.244 14.523 10.244 23.413v109.894zM798.168 446.889v-110.044c0-17.613 14.287-31.891 31.91-31.891 8.882 0 17.361 3.699 23.4 10.209l163.67 176.425c11.44 12.331 11.333 31.42-0.243 43.624l-163.67 172.538c-12.125 12.782-32.322 13.32-45.112 1.203-6.356-6.022-9.956-14.391-9.956-23.144v-111.354h-127.678c-35.226 0-63.782-28.556-63.782-63.782s28.556-63.782 63.782-63.782h127.678zM574.798 223.652v127.526c0 35.247-28.573 63.82-63.82 63.82s-63.82-28.573-63.82-63.82v-127.526h-80.636c-23.564 0-42.667-19.103-42.667-42.667 0-12.063 5.106-23.562 14.055-31.651l146.979-132.866c16.382-14.809 41.357-14.67 57.573 0.319l143.741 132.866c17.304 15.995 18.365 42.989 2.37 60.293-8.076 8.737-19.434 13.705-31.332 13.705h-82.444z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["Drag and drop"],"colorPermutations":{}},"attrs":[],"properties":{"order":793,"id":271,"name":"Drag-and-drop","prevSize":32,"code":59749},"setIdx":1,"setId":1,"iconIdx":101},{"icon":{"paths":["M597.333 469.333h213.333l-298.667 298.667-298.667-298.667h213.333v-469.333h170.667v469.333zM0 853.333h1024v170.667h-1024v-170.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["Artboard 2"],"colorPermutations":{}},"attrs":[],"properties":{"order":794,"id":268,"name":"Artboard-2","prevSize":32,"code":59751},"setIdx":1,"setId":1,"iconIdx":102},{"icon":{"paths":["M968.533 810.667l-388.267-388.267c38.4-98.133 17.067-213.333-64-294.4-85.333-85.333-213.333-102.4-315.733-55.467l183.467 183.467-128 128-187.733-183.467c-51.2 102.4-29.867 230.4 55.467 315.733 81.067 81.067 196.267 102.4 294.4 64l388.267 388.267c17.067 17.067 42.667 17.067 59.733 0l98.133-98.133c21.333-17.067 21.333-46.933 4.267-59.733z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-build-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":795,"id":267,"name":"baseline-build-24px","prevSize":32,"code":59752},"setIdx":1,"setId":1,"iconIdx":103},{"icon":{"paths":["M481.707 371.627l-195.84 195.84c-16.64 16.64-16.64 43.52 0 60.16s43.52 16.64 60.16 0l165.973-165.547 165.547 165.547c16.64 16.64 43.52 16.64 60.16 0s16.64-43.52 0-60.16l-195.84-195.84c-16.213-16.64-43.52-16.64-60.16 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-expand_less-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":796,"id":244,"name":"round-expand_less-24px","prevSize":32,"code":59753},"setIdx":1,"setId":1,"iconIdx":104},{"icon":{"paths":["M677.547 396.373l-165.547 165.547-165.547-165.547c-16.64-16.64-43.52-16.64-60.16 0s-16.64 43.52 0 60.16l195.84 195.84c16.64 16.64 43.52 16.64 60.16 0l195.84-195.84c16.64-16.64 16.64-43.52 0-60.16-16.64-16.213-43.947-16.64-60.587 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-expand_more-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":797,"id":243,"name":"round-expand_more-24px","prevSize":32,"code":59754},"setIdx":1,"setId":1,"iconIdx":105},{"icon":{"paths":["M657.493 316.16l-60.16-60.16-256 256 256 256 60.16-60.16-195.413-195.84z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-chevron_left-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":798,"id":266,"name":"baseline-chevron_left-24px","prevSize":32,"code":59755},"setIdx":1,"setId":1,"iconIdx":106},{"icon":{"paths":["M0 85.656l87.767-85.656 500.632 488.222-87.767 85.656z","M372.364 909.243l484.107-480.994 87.767 85.656-484.107 480.994z","M0 909.243l484.107-480.994 87.767 85.656-484.107 480.994z","M372.364 85.656l87.767-85.656 500.632 488.222-87.767 85.656z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["double-arrows"],"colorPermutations":{}},"attrs":[],"properties":{"order":799,"id":290,"name":"double-arrows","prevSize":32,"code":59692},"setIdx":1,"setId":1,"iconIdx":107},{"icon":{"paths":["M426.667 256l-60.16 60.16 195.413 195.84-195.413 195.84 60.16 60.16 256-256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-chevron_right-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":800,"id":265,"name":"baseline-chevron_right-24px","prevSize":32,"code":59756},"setIdx":1,"setId":1,"iconIdx":108},{"icon":{"paths":["M341.333 213.333v597.333l469.333-298.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-play_arrow-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":801,"id":270,"name":"baseline-play_arrow-24px","prevSize":32,"code":59757},"setIdx":1,"setId":1,"iconIdx":109},{"icon":{"paths":["M396.373 286.293c-16.64 16.64-16.64 43.52 0 60.16l165.547 165.547-165.547 165.547c-16.64 16.64-16.64 43.52 0 60.16s43.52 16.64 60.16 0l195.84-195.84c16.64-16.64 16.64-43.52 0-60.16l-195.84-195.84c-16.213-16.213-43.52-16.213-60.16 0.427z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-chevron_right-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":802,"id":247,"name":"round-chevron_right-24px","prevSize":32,"code":59758},"setIdx":1,"setId":1,"iconIdx":110},{"icon":{"paths":["M627.627 286.293c-16.64-16.64-43.52-16.64-60.16 0l-195.84 195.84c-16.64 16.64-16.64 43.52 0 60.16l195.84 195.84c16.64 16.64 43.52 16.64 60.16 0s16.64-43.52 0-60.16l-165.547-165.973 165.547-165.547c16.64-16.64 16.213-43.947 0-60.16z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-chevron_left-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":803,"id":248,"name":"round-chevron_left-24px","prevSize":32,"code":59759},"setIdx":1,"setId":1,"iconIdx":111},{"icon":{"paths":["M810.667 273.493l-60.16-60.16-238.507 238.507-238.507-238.507-60.16 60.16 238.507 238.507-238.507 238.507 60.16 60.16 238.507-238.507 238.507 238.507 60.16-60.16-238.507-238.507z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-close-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":804,"id":264,"name":"baseline-close-24px","prevSize":32,"code":59760},"setIdx":1,"setId":1,"iconIdx":112},{"icon":{"paths":["M780.8 243.627c-16.64-16.64-43.52-16.64-60.16 0l-208.64 208.213-208.64-208.64c-16.64-16.64-43.52-16.64-60.16 0s-16.64 43.52 0 60.16l208.64 208.64-208.64 208.64c-16.64 16.64-16.64 43.52 0 60.16s43.52 16.64 60.16 0l208.64-208.64 208.64 208.64c16.64 16.64 43.52 16.64 60.16 0s16.64-43.52 0-60.16l-208.64-208.64 208.64-208.64c16.213-16.213 16.213-43.52 0-59.733z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-close-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":805,"id":246,"name":"round-close-24px","prevSize":32,"code":59761},"setIdx":1,"setId":1,"iconIdx":113},{"icon":{"paths":["M0 0h1024v1024h-1024v-1024zM602.51 512l271.529 271.529-90.51 90.51-271.529-271.529-271.529 271.529-90.51-90.51 271.529-271.529-271.529-271.529 90.51-90.51 271.529 271.529 271.529-271.529 90.51 90.51-271.529 271.529zM64 64v896h896v-896h-896z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cross-rectangular"],"colorPermutations":{}},"attrs":[],"properties":{"order":806,"id":272,"name":"cross-rectangular","prevSize":32,"code":59762},"setIdx":1,"setId":1,"iconIdx":114},{"icon":{"paths":["M256 810.667c0 46.933 38.4 85.333 85.333 85.333h341.333c46.933 0 85.333-38.4 85.333-85.333v-512h-512v512zM360.96 506.88l60.16-60.16 90.88 90.453 90.453-90.453 60.16 60.16-90.453 90.453 90.453 90.453-60.16 60.16-90.453-90.453-90.453 90.453-60.16-60.16 90.453-90.453-90.88-90.453zM661.333 170.667l-42.667-42.667h-213.333l-42.667 42.667h-149.333v85.333h597.333v-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-delete_forever-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":807,"id":263,"name":"baseline-delete_forever-24px","prevSize":32,"code":59763},"setIdx":1,"setId":1,"iconIdx":115},{"icon":{"paths":["M469.333 640h85.333v85.333h-85.333zM469.333 298.667h85.333v256h-85.333zM511.573 85.333c-235.52 0-426.24 191.147-426.24 426.667s190.72 426.667 426.24 426.667c235.947 0 427.093-191.147 427.093-426.667s-191.147-426.667-427.093-426.667zM512 853.333c-188.587 0-341.333-152.747-341.333-341.333s152.747-341.333 341.333-341.333 341.333 152.747 341.333 341.333-152.747 341.333-341.333 341.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-error_outline-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":808,"id":262,"name":"baseline-error_outline-24px","prevSize":32,"code":59764},"setIdx":1,"setId":1,"iconIdx":116},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM554.667 725.333h-85.333v-85.333h85.333v85.333zM554.667 554.667h-85.333v-256h85.333v256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-error-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":809,"id":261,"name":"baseline-error-24px","prevSize":32,"code":59765},"setIdx":1,"setId":1,"iconIdx":117},{"icon":{"paths":["M512 341.333l-256 256 60.16 60.16 195.84-195.413 195.84 195.413 60.16-60.16z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-expand_less-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":810,"id":260,"name":"baseline-expand_less-24px","prevSize":32,"code":59766},"setIdx":1,"setId":1,"iconIdx":118},{"icon":{"paths":["M707.84 366.507l-195.84 195.413-195.84-195.413-60.16 60.16 256 256 256-256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-expand_more-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":811,"id":259,"name":"baseline-expand_more-24px","prevSize":32,"code":59767},"setIdx":1,"setId":1,"iconIdx":119},{"icon":{"paths":["M469.333 256c58.88 0 112.213 23.893 151.040 62.293l-108.373 108.373h256v-256l-87.467 87.467c-54.187-54.187-128.853-87.467-211.2-87.467-150.613 0-274.347 111.36-295.253 256h86.187c19.627-97.28 105.813-170.667 209.067-170.667zM709.973 645.973c28.16-38.4 47.787-84.053 54.613-133.973h-86.187c-19.627 97.28-105.813 170.667-209.067 170.667-58.88 0-112.213-23.893-151.040-62.293l108.373-108.373h-256v256l87.467-87.467c54.187 54.187 128.853 87.467 211.2 87.467 66.133 0 127.147-21.76 176.64-58.027l207.36 206.933 63.573-63.573-206.933-207.36z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-find_replace-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":812,"id":258,"name":"baseline-find_replace-24px","prevSize":32,"code":59768},"setIdx":1,"setId":1,"iconIdx":120},{"icon":{"paths":["M341.333 426.667h-128v-128h-85.333v128h-128v85.333h128v128h85.333v-128h128v-85.333zM768 469.333c70.827 0 127.573-57.173 127.573-128s-56.747-128-127.573-128c-13.653 0-26.88 2.133-38.827 5.973 24.32 34.56 38.4 76.373 38.4 122.027s-14.507 87.040-38.4 122.027c11.947 3.84 25.173 5.973 38.827 5.973zM554.667 469.333c70.827 0 127.573-57.173 127.573-128s-56.747-128-127.573-128c-70.827 0-128 57.173-128 128s57.173 128 128 128zM837.12 561.493c35.413 31.147 58.88 70.827 58.88 121.173v85.333h128v-85.333c0-65.707-101.12-106.24-186.88-121.173zM554.667 554.667c-85.333 0-256 42.667-256 128v85.333h512v-85.333c0-85.333-170.667-128-256-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-group_add-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":813,"id":257,"name":"baseline-group_add-24px","prevSize":32,"code":59769},"setIdx":1,"setId":1,"iconIdx":121},{"icon":{"paths":["M682.667 469.333c70.827 0 127.573-57.173 127.573-128s-56.747-128-127.573-128c-70.827 0-128 57.173-128 128s57.173 128 128 128zM341.333 469.333c70.827 0 127.573-57.173 127.573-128s-56.747-128-127.573-128c-70.827 0-128 57.173-128 128s57.173 128 128 128zM341.333 554.667c-99.413 0-298.667 49.92-298.667 149.333v106.667h597.333v-106.667c0-99.413-199.253-149.333-298.667-149.333zM682.667 554.667c-12.373 0-26.453 0.853-41.387 2.133 49.493 35.84 84.053 84.053 84.053 147.2v106.667h256v-106.667c0-99.413-199.253-149.333-298.667-149.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-group-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":814,"id":256,"name":"baseline-group-24px","prevSize":32,"code":59770},"setIdx":1,"setId":1,"iconIdx":122},{"icon":{"paths":["M725.333 853.333c-12.373 0-23.893-2.56-32.427-6.4-30.293-15.787-51.627-37.547-72.96-101.547-21.76-66.56-62.72-97.707-101.973-128-33.707-26.027-68.693-52.907-98.987-107.947-22.613-40.96-34.987-85.76-34.987-125.44 0-119.467 93.867-213.333 213.333-213.333s213.333 93.867 213.333 213.333h85.333c0-167.68-130.987-298.667-298.667-298.667s-298.667 130.987-298.667 298.667c0 53.76 16.213 113.067 45.653 166.4 38.827 70.4 84.48 105.813 121.6 134.4 34.56 26.453 59.307 45.653 72.96 87.467 25.6 77.653 58.453 121.173 116.48 151.467 21.76 9.813 45.653 14.933 69.973 14.933 94.293 0 170.667-76.373 170.667-170.667h-85.333c0 46.933-38.4 85.333-85.333 85.333zM325.973 112.64l-60.587-60.587c-84.907 84.907-137.387 202.24-137.387 331.947s52.48 247.040 137.387 331.947l60.16-60.16c-69.12-69.547-112.213-165.547-112.213-271.787s43.093-202.24 112.64-271.36zM490.667 384c0 58.88 47.787 106.667 106.667 106.667s106.667-47.787 106.667-106.667-47.787-106.667-106.667-106.667-106.667 47.787-106.667 106.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-hearing-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":815,"id":255,"name":"baseline-hearing-24px","prevSize":32,"code":59771},"setIdx":1,"setId":1,"iconIdx":123},{"icon":{"paths":["M42.667 896h170.667v-512h-170.667v512zM981.333 426.667c0-46.933-38.4-85.333-85.333-85.333h-269.227l40.533-194.987 1.28-13.653c0-17.493-7.253-33.707-18.773-45.227l-45.227-44.8-280.747 281.173c-15.787 15.36-25.173 36.693-25.173 60.16v426.667c0 46.933 38.4 85.333 85.333 85.333h384c35.413 0 65.707-21.333 78.507-52.053l128.853-300.8c3.84-9.813 5.973-20.053 5.973-31.147v-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-thumb_up-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":816,"id":251,"name":"baseline-thumb_up-24px","prevSize":32,"code":59772},"setIdx":1,"setId":1,"iconIdx":124},{"icon":{"paths":["M512 256c0-23.467-19.2-42.667-42.667-42.667h-221.013l28.16-135.68 0.853-9.813c0-13.227-5.547-25.173-14.080-34.133l-33.707-33.707-210.773 210.773c-11.52 11.52-18.773 27.733-18.773 45.227v277.333c0 35.413 28.587 64 64 64h288c26.453 0 49.067-16.213 58.88-38.827l96.427-225.707c2.987-7.253 4.693-15.36 4.693-23.467v-53.333zM960 426.667h-288c-26.453 0-49.067 16.213-58.88 38.827l-96.427 225.707c-2.987 7.253-4.693 15.36-4.693 23.467v53.333c0 23.467 19.2 42.667 42.667 42.667h221.013l-28.16 135.68-0.853 10.24c0 13.227 5.547 25.173 14.080 34.133l33.707 33.28 210.773-210.773c11.52-11.52 18.773-27.733 18.773-45.227v-277.333c0-35.413-28.587-64-64-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-thumbs_up_down-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":817,"id":250,"name":"baseline-thumbs_up_down-24px","prevSize":32,"code":59773},"setIdx":1,"setId":1,"iconIdx":125},{"icon":{"paths":["M682.667 682.667h85.333c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667h-85.333c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667zM682.667 341.333h213.333c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667h-213.333c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667zM682.667 512h170.667c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667h-170.667c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667zM128 768c0 46.933 38.4 85.333 85.333 85.333h256c46.933 0 85.333-38.4 85.333-85.333v-426.667h-426.667v426.667zM554.667 213.333h-85.333l-30.293-30.293c-7.68-7.68-18.773-12.373-29.867-12.373h-135.68c-11.093 0-22.187 4.693-29.867 12.373l-30.293 30.293h-85.333c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h426.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-delete_sweep-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":818,"id":245,"name":"round-delete_sweep-24px","prevSize":32,"code":59774},"setIdx":1,"setId":1,"iconIdx":126},{"icon":{"paths":["M810.667 170.667h-149.333l-42.667-42.667h-213.333l-42.667 42.667h-149.333v85.333h597.333zM256 298.667v512c0 46.933 38.4 85.333 85.333 85.333h341.333c46.933 0 85.333-38.4 85.333-85.333v-512h-512zM597.333 597.333v170.667h-170.667v-170.667h-85.333l170.667-170.667 170.667 170.667h-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-restore_from_trash-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":819,"id":252,"name":"baseline-restore_from_trash-24px","prevSize":32,"code":59775},"setIdx":1,"setId":1,"iconIdx":127},{"icon":{"paths":["M853.333 85.333h-512c-46.933 0-85.333 38.4-85.333 85.333v512c0 46.933 38.4 85.333 85.333 85.333h512c46.933 0 85.333-38.4 85.333-85.333v-512c0-46.933-38.4-85.333-85.333-85.333zM725.333 298.667h-85.333v229.12c0 54.187-38.4 104.107-92.16 110.933-72.107 9.813-132.693-53.333-119.467-125.867 8.533-46.933 50.347-83.2 98.133-86.187 26.88-1.707 51.2 6.827 70.827 21.76v-192.427c0-23.467 19.2-42.667 42.667-42.667h85.333c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667zM128 256c-23.467 0-42.667 19.2-42.667 42.667v554.667c0 46.933 38.4 85.333 85.333 85.333h554.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-512c-23.467 0-42.667-19.2-42.667-42.667v-512c0-23.467-19.2-42.667-42.667-42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-library_music-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":820,"id":230,"name":"round-library_music-24px","prevSize":32,"code":59776},"setIdx":1,"setId":1,"iconIdx":128},{"icon":{"paths":["M512 213.333v364.8c-40.107-23.040-89.6-32-142.080-13.653-57.173 20.48-101.12 71.253-111.36 130.987-19.627 116.907 79.36 216.747 195.84 198.4 83.627-13.227 142.933-90.027 142.933-174.933v-420.267h85.333c46.933 0 85.333-38.4 85.333-85.333s-38.4-85.333-85.333-85.333h-85.333c-46.933 0-85.333 38.4-85.333 85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-music_note-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":821,"id":229,"name":"round-music_note-24px","prevSize":32,"code":59777},"setIdx":1,"setId":1,"iconIdx":129},{"icon":{"paths":["M597.333 410.027v-111.36h85.333c46.933 0 85.333-38.4 85.333-85.333s-38.4-85.333-85.333-85.333h-128c-23.467 0-42.667 19.2-42.667 42.667v154.027l85.333 85.333zM218.453 151.893c-16.64-16.64-43.52-16.64-60.16 0s-16.64 43.52 0 60.16l353.707 354.133v11.947c-40.107-23.040-89.6-32-142.080-13.653-57.173 20.48-101.12 71.253-111.36 130.987-19.627 116.907 79.36 216.747 195.84 198.4 83.627-13.227 142.933-90.027 142.933-174.933v-67.413l214.187 214.187c16.64 16.64 43.52 16.64 60.16 0s16.64-43.52 0-60.16l-653.227-653.653z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-music_off-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":822,"id":228,"name":"round-music_off-24px","prevSize":32,"code":59778},"setIdx":1,"setId":1,"iconIdx":130},{"icon":{"paths":["M617.813 509.867c7.253 0.853 14.507 2.133 22.187 2.133 94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667-170.667 76.373-170.667 170.667c0 7.68 1.28 14.933 2.133 22.187l146.347 146.347zM712.107 604.16l244.907 244.907c14.080-7.253 24.32-21.333 24.32-38.4v-42.667c0-91.307-151.893-149.333-269.227-163.84zM90.453 103.253c-16.64-16.64-43.52-16.64-60.16 0s-16.64 43.52 0 60.16l140.373 140.373v122.88h-85.333c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h85.333v85.333c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-85.333h122.88l107.093 107.093c-93.867 25.6-187.307 76.373-187.307 148.907v42.667c0 23.467 19.2 42.667 42.667 42.667h378.88l140.373 140.373c16.64 16.64 43.52 16.64 60.16 0s16.64-43.52 0-60.16l-830.293-830.293zM256 426.667v-37.547l37.547 37.547h-37.547z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-person_add_disabled-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":823,"id":227,"name":"round-person_add_disabled-24px","prevSize":32,"code":59779},"setIdx":1,"setId":1,"iconIdx":131},{"icon":{"paths":["M640 512c94.293 0 170.667-76.373 170.667-170.667s-76.373-170.667-170.667-170.667-170.667 76.373-170.667 170.667 76.373 170.667 170.667 170.667zM256 426.667v-85.333c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v85.333h-85.333c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h85.333v85.333c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-85.333h85.333c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-85.333zM640 597.333c-113.92 0-341.333 57.173-341.333 170.667v42.667c0 23.467 19.2 42.667 42.667 42.667h597.333c23.467 0 42.667-19.2 42.667-42.667v-42.667c0-113.493-227.413-170.667-341.333-170.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-person_add-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":824,"id":226,"name":"round-person_add-24px","prevSize":32,"code":59780},"setIdx":1,"setId":1,"iconIdx":132},{"icon":{"paths":["M554.667 426.667h-426.667c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h426.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667zM554.667 256h-426.667c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h426.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667zM128 682.667h256c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-256c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667zM947.627 520.96l3.84 3.84c16.64 16.64 16.64 43.52 0 60.16l-238.080 238.507c-16.64 16.64-43.52 16.64-60.16 0l-131.84-131.84c-16.64-16.64-16.64-43.52 0-60.16l3.84-3.84c16.64-16.64 43.52-16.64 60.16 0l98.133 98.133 203.947-204.373c16.213-17.067 43.52-17.067 60.16-0.427z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-playlist_add_check-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":825,"id":225,"name":"round-playlist_add_check-24px","prevSize":32,"code":59781},"setIdx":1,"setId":1,"iconIdx":133},{"icon":{"paths":["M554.667 426.667h-426.667c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h426.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667zM554.667 256h-426.667c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h426.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667zM768 597.333v-128c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v128h-128c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h128v128c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-128h128c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-128zM128 682.667h256c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-256c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-playlist_add-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":826,"id":224,"name":"round-playlist_add-24px","prevSize":32,"code":59782},"setIdx":1,"setId":1,"iconIdx":134},{"icon":{"paths":["M597.333 256h-426.667c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h426.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667zM597.333 426.667h-426.667c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h426.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667zM170.667 682.667h256c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-256c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667zM810.667 256c-46.933 0-85.333 38.4-85.333 85.333v263.68c-13.227-4.693-27.733-7.68-42.667-7.68-78.507 0-139.947 69.973-125.867 151.040 8.96 51.627 51.2 93.867 102.827 102.827 81.067 14.080 151.040-47.36 151.040-125.867v-384h85.333c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-queue_music-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":827,"id":223,"name":"round-queue_music-24px","prevSize":32,"code":59783},"setIdx":1,"setId":1,"iconIdx":135},{"icon":{"paths":["M175.36 108.373c-16.64-16.64-43.52-16.64-60.16 0s-16.64 43.52 0 60.16l87.040 87.467h-31.573c-47.36 0-84.907 37.973-84.907 85.333l-0.427 469.333c0 47.36 37.973 85.333 85.333 85.333h671.573l55.040 55.040c16.64 16.64 43.52 16.64 60.16 0s16.64-43.52 0-60.16l-782.080-782.507zM426.667 170.667h170.667v85.333h-153.6l494.933 494.933v-409.6c0-47.36-37.973-85.333-85.333-85.333h-170.667v-85.333c0-47.36-37.973-85.333-85.333-85.333h-170.667c-42.24 0-76.8 29.867-83.627 69.973l83.627 83.627v-68.267z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-work_off-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":828,"id":222,"name":"round-work_off-24px","prevSize":32,"code":59784},"setIdx":1,"setId":1,"iconIdx":136},{"icon":{"paths":["M597.333 256v-85.333h-170.667v85.333h170.667zM170.667 384v384c0 23.467 19.2 42.667 42.667 42.667h597.333c23.467 0 42.667-19.2 42.667-42.667v-384c0-23.467-19.2-42.667-42.667-42.667h-597.333c-23.467 0-42.667 19.2-42.667 42.667zM853.333 256c47.36 0 85.333 37.973 85.333 85.333v469.333c0 47.36-37.973 85.333-85.333 85.333h-682.667c-47.36 0-85.333-37.973-85.333-85.333l0.427-469.333c0-47.36 37.547-85.333 84.907-85.333h170.667v-85.333c0-47.36 37.973-85.333 85.333-85.333h170.667c47.36 0 85.333 37.973 85.333 85.333v85.333h170.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-work_outline-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":829,"id":221,"name":"round-work_outline-24px","prevSize":32,"code":59785},"setIdx":1,"setId":1,"iconIdx":137},{"icon":{"paths":["M853.333 256h-170.667v-85.333c0-47.36-37.973-85.333-85.333-85.333h-170.667c-47.36 0-85.333 37.973-85.333 85.333v85.333h-170.667c-47.36 0-84.907 37.973-84.907 85.333l-0.427 469.333c0 47.36 37.973 85.333 85.333 85.333h682.667c47.36 0 85.333-37.973 85.333-85.333v-469.333c0-47.36-37.973-85.333-85.333-85.333zM597.333 256h-170.667v-85.333h170.667v85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-work-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":830,"id":220,"name":"round-work-24px","prevSize":32,"code":59786},"setIdx":1,"setId":1,"iconIdx":138},{"icon":{"paths":["M661.333 597.333h-33.707l-11.947-11.52c51.2-59.733 77.653-141.227 63.147-227.84-20.053-118.613-119.040-213.333-238.507-227.84-180.48-22.187-331.947 129.707-310.187 310.187 14.507 119.467 109.227 218.453 227.84 238.507 86.613 14.507 168.107-11.947 227.84-63.147l11.52 11.947v33.707l181.76 181.333c17.493 17.493 45.653 17.493 63.147 0l0.427-0.427c17.493-17.493 17.493-45.653 0-63.147l-181.333-181.76zM405.333 597.333c-106.24 0-192-85.76-192-192s85.76-192 192-192 192 85.76 192 192-85.76 192-192 192zM405.333 298.667c-11.947 0-21.333 9.387-21.333 21.333v64h-64c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333h64v64c0 11.947 9.387 21.333 21.333 21.333s21.333-9.387 21.333-21.333v-64h64c11.947 0 21.333-9.387 21.333-21.333s-9.387-21.333-21.333-21.333h-64v-64c0-11.947-9.387-21.333-21.333-21.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-zoom_in-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":831,"id":219,"name":"round-zoom_in-24px","prevSize":32,"code":59787},"setIdx":1,"setId":1,"iconIdx":139},{"icon":{"paths":["M661.333 597.333h-33.707l-11.947-11.52c51.2-59.733 77.653-141.227 63.147-227.84-20.053-118.613-119.040-213.333-238.507-227.84-180.48-22.187-332.373 129.707-310.187 310.187 14.507 119.467 109.227 218.453 227.84 238.507 86.613 14.507 168.107-11.947 227.84-63.147l11.52 11.947v33.707l181.76 181.333c17.493 17.493 45.653 17.493 63.147 0l0.427-0.427c17.493-17.493 17.493-45.653 0-63.147l-181.333-181.76zM405.333 597.333c-106.24 0-192-85.76-192-192s85.76-192 192-192 192 85.76 192 192-85.76 192-192 192zM320 384h170.667c11.947 0 21.333 9.387 21.333 21.333s-9.387 21.333-21.333 21.333h-170.667c-11.947 0-21.333-9.387-21.333-21.333s9.387-21.333 21.333-21.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-zoom_out-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":832,"id":218,"name":"round-zoom_out-24px","prevSize":32,"code":59788},"setIdx":1,"setId":1,"iconIdx":140},{"icon":{"paths":["M336.213 144.64l-54.613-65.28-196.267 164.267 55.040 65.28 195.84-164.267zM938.667 244.053l-196.267-164.693-55.040 65.28 196.267 164.693 55.040-65.28zM512 170.667c-212.053 0-384 171.947-384 384s171.52 384 384 384c212.053 0 384-171.947 384-384s-171.947-384-384-384zM512 853.333c-165.12 0-298.667-133.547-298.667-298.667s133.547-298.667 298.667-298.667 298.667 133.547 298.667 298.667-133.547 298.667-298.667 298.667zM554.667 384h-85.333v128h-128v85.333h128v128h85.333v-128h128v-85.333h-128v-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-alarm_add-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":833,"id":215,"name":"baseline-alarm_add-24px","prevSize":32,"code":59789},"setIdx":1,"setId":1,"iconIdx":141},{"icon":{"paths":["M512 256c165.12 0 298.667 133.547 298.667 298.667 0 35.84-6.827 70.4-18.347 102.4l64.853 64.853c24.747-50.773 38.827-107.093 38.827-167.253 0-212.053-171.947-384-384-384-60.16 0-116.48 14.080-167.253 38.827l64.853 64.853c32-11.52 66.56-18.347 102.4-18.347zM938.667 244.053l-196.267-164.693-55.040 65.28 196.267 164.693 55.040-65.28zM124.587 97.707l-54.187 54.613 56.747 56.747-47.36 39.68 60.587 60.587 47.36-40.107 34.133 34.133c-58.453 67.413-93.867 155.307-93.867 251.307 0 212.053 171.52 384 384 384 96 0 183.893-35.413 251.307-93.867l93.867 93.867 54.187-54.187-786.773-786.773zM702.72 784.64c-51.627 42.667-118.187 68.693-190.72 68.693-165.12 0-298.667-133.547-298.667-298.667 0-72.533 26.027-139.093 68.693-190.72l420.693 420.693zM342.187 139.947l-60.587-60.587-36.693 30.293 60.587 60.587 36.693-30.293z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-alarm_off-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":834,"id":214,"name":"baseline-alarm_off-24px","prevSize":32,"code":59790},"setIdx":1,"setId":1,"iconIdx":142},{"icon":{"paths":["M938.667 244.053l-196.267-164.693-55.040 65.28 196.267 164.693 55.040-65.28zM336.213 144.64l-54.613-65.28-196.267 164.267 55.040 65.28 195.84-164.267zM512 170.667c-212.053 0-384 171.947-384 384s171.52 384 384 384c212.053 0 384-171.947 384-384s-171.947-384-384-384zM512 853.333c-165.12 0-298.667-133.547-298.667-298.667s133.547-298.667 298.667-298.667 298.667 133.547 298.667 298.667-133.547 298.667-298.667 298.667zM449.707 619.947l-90.88-90.88-45.227 45.227 135.68 135.68 256-256-45.227-45.227-210.347 211.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-alarm_on-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":835,"id":213,"name":"baseline-alarm_on-24px","prevSize":32,"code":59791},"setIdx":1,"setId":1,"iconIdx":143},{"icon":{"paths":["M938.667 244.053l-196.267-164.693-55.040 65.28 196.267 164.693 55.040-65.28zM336.213 144.64l-54.613-65.28-196.267 164.267 55.040 65.28 195.84-164.267zM533.333 341.333h-64v256l202.667 121.6 32-52.48-170.667-101.12v-224zM512 170.667c-212.053 0-384 171.947-384 384s171.52 384 384 384c212.053 0 384-171.947 384-384s-171.947-384-384-384zM512 853.333c-165.12 0-298.667-133.547-298.667-298.667s133.547-298.667 298.667-298.667 298.667 133.547 298.667 298.667-133.547 298.667-298.667 298.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-alarm-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":836,"id":212,"name":"baseline-alarm-24px","prevSize":32,"code":59792},"setIdx":1,"setId":1,"iconIdx":144},{"icon":{"paths":["M597.333 298.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM588.8 489.813l8.533 0.853c35.413 0 64-28.587 64-64s-28.587-64-64-64-64 28.587-64 64l0.853 8.533c3.84 28.587 26.027 50.773 54.613 54.613zM597.333 149.333c11.947 0 21.333-9.387 21.333-21.333s-9.387-21.333-21.333-21.333-21.333 9.387-21.333 21.333 9.387 21.333 21.333 21.333zM426.667 149.333c11.947 0 21.333-9.387 21.333-21.333s-9.387-21.333-21.333-21.333-21.333 9.387-21.333 21.333 9.387 21.333 21.333 21.333zM896 448c11.947 0 21.333-9.387 21.333-21.333s-9.387-21.333-21.333-21.333-21.333 9.387-21.333 21.333 9.387 21.333 21.333 21.333zM426.667 298.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM768 640c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM768 469.333c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM768 298.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM597.333 874.667c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333 21.333-9.387 21.333-21.333-9.387-21.333-21.333-21.333zM106.667 224.853l161.28 161.28-11.947-2.133c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667c0-4.267-1.28-8.107-2.56-11.947l119.893 119.893c-30.293 4.693-53.333 31.147-53.333 62.72 0 35.413 28.587 64 64 64 31.573 0 58.027-23.040 62.72-53.333l119.893 119.893c-3.84-1.28-7.68-2.56-11.947-2.56-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667c0-4.267-1.28-8.107-2.56-11.947l161.28 161.28 54.613-54.187-692.48-692.48-54.187 54.187zM426.667 725.333c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667-19.2-42.667-42.667-42.667zM896 576c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333 21.333-9.387 21.333-21.333-9.387-21.333-21.333-21.333zM256 554.667c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667-19.2-42.667-42.667-42.667zM128 405.333c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333 21.333-9.387 21.333-21.333-9.387-21.333-21.333-21.333zM426.667 874.667c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333 21.333-9.387 21.333-21.333-9.387-21.333-21.333-21.333zM256 725.333c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667-19.2-42.667-42.667-42.667zM128 576c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333 21.333-9.387 21.333-21.333-9.387-21.333-21.333-21.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-blur_off-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":837,"id":210,"name":"baseline-blur_off-24px","prevSize":32,"code":59793},"setIdx":1,"setId":1,"iconIdx":145},{"icon":{"paths":["M725.333 128h-426.667c-46.933 0-84.907 38.4-84.907 85.333l-0.427 682.667 298.667-128 298.667 128v-682.667c0-46.933-38.4-85.333-85.333-85.333zM725.333 768l-213.333-93.013-213.333 93.013v-554.667h426.667v554.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-bookmark_border-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":838,"id":209,"name":"baseline-bookmark_border-24px","prevSize":32,"code":59794},"setIdx":1,"setId":1,"iconIdx":146},{"icon":{"paths":["M725.333 128h-426.667c-46.933 0-84.907 38.4-84.907 85.333l-0.427 682.667 298.667-128 298.667 128v-682.667c0-46.933-38.4-85.333-85.333-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-bookmark-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":839,"id":208,"name":"baseline-bookmark-24px","prevSize":32,"code":59795},"setIdx":1,"setId":1,"iconIdx":147},{"icon":{"paths":["M810.667 768l85.333 42.667v-682.667c0-46.933-38.4-85.333-85.333-85.333h-427.093c-46.933 0-84.907 38.4-84.907 85.333h426.667c46.933 0 85.333 38.4 85.333 85.333v554.667zM640 213.333h-426.667c-46.933 0-85.333 38.4-85.333 85.333v682.667l298.667-128 298.667 128v-682.667c0-46.933-38.4-85.333-85.333-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-bookmarks-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":840,"id":207,"name":"baseline-bookmarks-24px","prevSize":32,"code":59796},"setIdx":1,"setId":1,"iconIdx":148},{"icon":{"paths":["M810.667 341.333l-170.667 170.667h128c0 141.227-114.773 256-256 256-43.093 0-84.053-10.667-119.467-29.867l-62.293 62.293c52.48 33.28 114.773 52.907 181.76 52.907 188.587 0 341.333-152.747 341.333-341.333h128l-170.667-170.667zM256 512c0-141.227 114.773-256 256-256 43.093 0 84.053 10.667 119.467 29.867l62.293-62.293c-52.48-33.28-114.773-52.907-181.76-52.907-188.587 0-341.333 152.747-341.333 341.333h-128l170.667 170.667 170.667-170.667h-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-cached-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":841,"id":206,"name":"baseline-cached-24px","prevSize":32,"code":59797},"setIdx":1,"setId":1,"iconIdx":149},{"icon":{"paths":["M768 85.333h-512c-46.933 0-85.333 38.4-85.333 85.333v682.667c0 46.933 38.4 85.333 85.333 85.333h512c46.933 0 85.333-38.4 85.333-85.333v-682.667c0-46.933-38.4-85.333-85.333-85.333zM256 170.667h213.333v341.333l-106.667-64-106.667 64v-341.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-class-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":842,"id":205,"name":"baseline-class-24px","prevSize":32,"code":59798},"setIdx":1,"setId":1,"iconIdx":150},{"icon":{"paths":["M401.067 708.267l-196.267-196.267 196.267-196.267-59.733-59.733-256 256 256 256 59.733-59.733zM622.933 708.267l196.267-196.267-196.267-196.267 59.733-59.733 256 256-256 256-59.733-59.733z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-code-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":843,"id":204,"name":"baseline-code-24px","prevSize":32,"code":59799},"setIdx":1,"setId":1,"iconIdx":151},{"icon":{"paths":["M384.427 597.333h-299.093v85.333h299.093v128l170.24-170.667-170.24-170.667v128zM639.573 554.667v-128h299.093v-85.333h-299.093v-128l-170.24 170.667 170.24 170.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-compare_arrows-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":844,"id":203,"name":"baseline-compare_arrows-24px","prevSize":32,"code":59800},"setIdx":1,"setId":1,"iconIdx":152},{"icon":{"paths":["M256 810.667c0 46.933 38.4 85.333 85.333 85.333h341.333c46.933 0 85.333-38.4 85.333-85.333v-512h-512v512zM341.333 384h341.333v426.667h-341.333v-426.667zM661.333 170.667l-42.667-42.667h-213.333l-42.667 42.667h-149.333v85.333h597.333v-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-delete_outline-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":845,"id":202,"name":"baseline-delete_outline-24px","prevSize":32,"code":59801},"setIdx":1,"setId":1,"iconIdx":153},{"icon":{"paths":["M256 810.667c0 46.933 38.4 85.333 85.333 85.333h341.333c46.933 0 85.333-38.4 85.333-85.333v-512h-512v512zM810.667 170.667h-149.333l-42.667-42.667h-213.333l-42.667 42.667h-149.333v85.333h597.333v-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-delete-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":846,"id":201,"name":"baseline-delete-24px","prevSize":32,"code":59802},"setIdx":1,"setId":1,"iconIdx":154},{"icon":{"paths":["M469.333 768c0 46.933-38.4 85.333-85.333 85.333s-85.333-38.4-85.333-85.333 38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333zM384 426.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM384 170.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM640 341.333c46.933 0 85.333-38.4 85.333-85.333s-38.4-85.333-85.333-85.333-85.333 38.4-85.333 85.333 38.4 85.333 85.333 85.333zM640 426.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM640 682.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-drag_indicator-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":847,"id":200,"name":"baseline-drag_indicator-24px","prevSize":32,"code":59803},"setIdx":1,"setId":1,"iconIdx":155},{"icon":{"paths":["M725.333 512h-213.333v213.333h213.333v-213.333zM682.667 42.667v85.333h-341.333v-85.333h-85.333v85.333h-42.667c-47.36 0-84.907 38.4-84.907 85.333l-0.427 597.333c0 46.933 37.973 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333h-42.667v-85.333h-85.333zM810.667 810.667h-597.333v-469.333h597.333v469.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-event-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":848,"id":199,"name":"baseline-event-24px","prevSize":32,"code":59804},"setIdx":1,"setId":1,"iconIdx":156},{"icon":{"paths":["M605.44 605.44l-508.587-508.587-54.187 54.187 118.613 118.613c-4.693 6.827-8.96 13.653-13.227 20.48-1.707 2.987-3.84 5.973-5.547 8.96-3.84 6.4-7.253 13.227-10.667 20.053-2.133 4.267-4.267 8.96-6.827 13.653-2.56 5.973-5.547 11.947-8.107 18.347-4.267 10.24-8.107 20.48-11.52 31.147l-3.84 12.8c-2.133 8.533-4.267 16.64-5.973 25.173-0.853 4.693-1.707 9.387-2.987 14.080-1.707 8.533-2.987 17.067-3.84 26.027-0.427 4.267-1.28 8.533-1.28 12.8-1.28 12.373-2.133 25.6-2.133 38.827 0 235.52 191.147 426.667 426.667 426.667 13.227 0 26.453-0.853 39.253-2.133l12.8-1.28c8.533-0.853 17.493-2.56 26.027-3.84 4.693-0.853 9.387-1.707 14.080-2.987 8.533-1.707 16.64-3.84 24.747-6.4 4.267-1.28 8.533-2.133 12.8-3.84 10.667-3.413 20.907-7.253 31.147-11.52 6.4-2.56 12.373-5.547 18.347-8.107 4.693-2.133 9.387-4.267 14.080-6.827 6.827-3.413 13.227-6.827 19.627-10.667 2.987-1.707 5.973-3.84 8.96-5.547 6.827-4.267 13.653-8.533 20.48-13.227l118.613 119.040 54.187-54.187-321.707-321.707zM256 768l128-275.627 147.627 147.627-275.627 128zM938.667 512c0 13.227-0.853 26.453-2.133 39.253l-1.28 12.8c-0.853 8.533-2.56 17.493-3.84 26.027-0.853 4.693-1.707 9.387-2.987 14.080-1.707 8.533-3.84 16.64-6.4 24.747-1.28 4.267-2.133 8.96-3.84 13.227-3.413 10.667-7.253 20.907-11.52 31.147-2.56 6.4-5.547 12.373-8.107 18.347-2.133 4.693-4.267 9.387-6.827 14.080-3.413 6.827-6.827 13.227-10.667 19.627-1.707 2.987-3.84 5.973-5.547 8.96-4.267 6.827-8.533 13.653-13.227 20.48l-222.293-223.147 128-275.627-275.627 128-222.72-222.72c6.827-4.693 13.653-8.96 20.48-13.227 2.987-1.707 5.973-3.84 8.96-5.547 6.4-3.84 13.227-7.253 19.627-10.667 4.693-2.133 9.387-4.267 14.080-6.827 5.973-2.56 11.947-5.547 18.347-8.107 10.24-4.267 20.48-8.107 31.147-11.52l13.227-3.84c8.107-2.133 16.213-4.693 24.747-6.4 4.693-0.853 9.387-1.707 14.080-2.987 8.533-1.707 17.067-2.987 26.027-3.84 4.267-0.427 8.533-1.28 12.8-1.28 12.373-0.853 25.6-1.707 38.827-1.707 235.52 0 426.667 191.147 426.667 426.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-explore_off-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":849,"id":198,"name":"baseline-explore_off-24px","prevSize":32,"code":59805},"setIdx":1,"setId":1,"iconIdx":157},{"icon":{"paths":["M512 465.067c-26.027 0-46.933 20.907-46.933 46.933s20.907 46.933 46.933 46.933c26.027 0 46.933-20.907 46.933-46.933s-20.907-46.933-46.933-46.933zM512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM605.44 605.44l-349.44 162.56 162.56-349.44 349.44-162.56-162.56 349.44z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-explore-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":850,"id":197,"name":"baseline-explore-24px","prevSize":32,"code":59806},"setIdx":1,"setId":1,"iconIdx":158},{"icon":{"paths":["M704 128c-74.24 0-145.493 34.56-192 89.173-46.507-54.613-117.76-89.173-192-89.173-131.413 0-234.667 103.253-234.667 234.667 0 161.28 145.067 292.693 364.8 492.373l61.867 55.893 61.867-56.32c219.733-199.253 364.8-330.667 364.8-491.947 0-131.413-103.253-234.667-234.667-234.667zM516.267 791.467l-4.267 4.267-4.267-4.267c-203.093-183.893-337.067-305.493-337.067-428.8 0-85.333 64-149.333 149.333-149.333 65.707 0 129.707 42.24 152.32 100.693h79.787c22.187-58.453 86.187-100.693 151.893-100.693 85.333 0 149.333 64 149.333 149.333 0 123.307-133.973 244.907-337.067 428.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-favorite_border-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":851,"id":195,"name":"baseline-favorite_border-24px","prevSize":32,"code":59807},"setIdx":1,"setId":1,"iconIdx":159},{"icon":{"paths":["M512 910.933l-61.867-56.32c-219.733-199.253-364.8-330.667-364.8-491.947 0-131.413 103.253-234.667 234.667-234.667 74.24 0 145.493 34.56 192 89.173 46.507-54.613 117.76-89.173 192-89.173 131.413 0 234.667 103.253 234.667 234.667 0 161.28-145.067 292.693-364.8 492.373l-61.867 55.893z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-favorite-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":852,"id":194,"name":"baseline-favorite-24px","prevSize":32,"code":59808},"setIdx":1,"setId":1,"iconIdx":160},{"icon":{"paths":["M640 896h85.333v-85.333h-85.333v85.333zM810.667 384h85.333v-85.333h-85.333v85.333zM128 213.333v597.333c0 46.933 38.4 85.333 85.333 85.333h170.667v-85.333h-170.667v-597.333h170.667v-85.333h-170.667c-46.933 0-85.333 38.4-85.333 85.333zM810.667 128v85.333h85.333c0-46.933-38.4-85.333-85.333-85.333zM469.333 981.333h85.333v-938.667h-85.333v938.667zM810.667 725.333h85.333v-85.333h-85.333v85.333zM640 213.333h85.333v-85.333h-85.333v85.333zM810.667 554.667h85.333v-85.333h-85.333v85.333zM810.667 896c46.933 0 85.333-38.4 85.333-85.333h-85.333v85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-flip-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":853,"id":192,"name":"baseline-flip-24px","prevSize":32,"code":59809},"setIdx":1,"setId":1,"iconIdx":161},{"icon":{"paths":["M554.667 128c-212.053 0-384 171.947-384 384h-128l165.973 165.973 2.987 5.973 172.373-171.947h-128c0-165.12 133.547-298.667 298.667-298.667s298.667 133.547 298.667 298.667-133.547 298.667-298.667 298.667c-82.347 0-157.013-33.707-210.773-87.893l-60.587 60.587c69.547 69.547 165.12 112.64 271.36 112.64 212.053 0 384-171.947 384-384s-171.947-384-384-384zM512 341.333v213.333l182.613 108.373 30.72-51.627-149.333-88.747v-181.333h-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-history-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":854,"id":191,"name":"baseline-history-24px","prevSize":32,"code":59810},"setIdx":1,"setId":1,"iconIdx":162},{"icon":{"paths":["M256 85.333v256h0.427l-0.427 0.427 170.667 170.24-170.667 170.667 0.427 0.427h-0.427v255.573h512v-255.573h-0.427l0.427-0.427-170.667-170.667 170.667-170.24-0.427-0.427h0.427v-256h-512zM682.667 704v149.333h-341.333v-149.333l170.667-170.667 170.667 170.667zM512 490.667l-170.667-170.667v-149.333h341.333v149.333l-170.667 170.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-hourglass_empty-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":855,"id":190,"name":"baseline-hourglass_empty-24px","prevSize":32,"code":59811},"setIdx":1,"setId":1,"iconIdx":163},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM554.667 725.333h-85.333v-256h85.333v256zM554.667 384h-85.333v-85.333h85.333v85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-info-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":856,"id":189,"name":"baseline-info-24px","prevSize":32,"code":59812},"setIdx":1,"setId":1,"iconIdx":164},{"icon":{"paths":["M832 405.333c-43.947 0-81.067 26.453-97.707 64h-124.587c-16.64-37.547-53.76-64-97.707-64s-81.067 26.453-97.707 64h-124.587c-16.64-37.547-53.76-64-97.707-64-58.88 0-106.667 47.787-106.667 106.667s47.787 106.667 106.667 106.667c43.947 0 81.067-26.453 97.707-64h124.587c16.64 37.547 53.76 64 97.707 64s81.067-26.453 97.707-64h124.587c16.64 37.547 53.76 64 97.707 64 58.88 0 106.667-47.787 106.667-106.667s-47.787-106.667-106.667-106.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-linear_scale-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":857,"id":188,"name":"baseline-linear_scale-24px","prevSize":32,"code":59813},"setIdx":1,"setId":1,"iconIdx":165},{"icon":{"paths":["M768 170.667l-170.667 170.667h128v298.667c0 46.933-38.4 85.333-85.333 85.333s-85.333-38.4-85.333-85.333v-298.667c0-94.293-76.373-170.667-170.667-170.667s-170.667 76.373-170.667 170.667v298.667h-128l170.667 170.667 170.667-170.667h-128v-298.667c0-46.933 38.4-85.333 85.333-85.333s85.333 38.4 85.333 85.333v298.667c0 94.293 76.373 170.667 170.667 170.667s170.667-76.373 170.667-170.667v-298.667h128l-170.667-170.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["baseline-swap_calls-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":858,"id":187,"name":"baseline-swap_calls-24px","prevSize":32,"code":59814},"setIdx":1,"setId":1,"iconIdx":166},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM554.667 810.667h-85.333v-85.333h85.333v85.333zM642.987 480l-38.4 39.253c-30.72 31.147-49.92 56.747-49.92 120.747h-85.333v-21.333c0-46.933 19.2-89.6 49.92-120.747l52.907-53.76c15.787-15.36 25.173-36.693 25.173-60.16 0-46.933-38.4-85.333-85.333-85.333s-85.333 38.4-85.333 85.333h-85.333c0-94.293 76.373-170.667 170.667-170.667s170.667 76.373 170.667 170.667c0 37.547-15.36 71.68-39.68 96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["outline-help-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":859,"id":174,"name":"outline-help-24px","prevSize":32,"code":59815},"setIdx":1,"setId":1,"iconIdx":167},{"icon":{"paths":["M469.333 298.667h85.333v85.333h-85.333zM469.333 469.333h85.333v256h-85.333zM512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM512 853.333c-188.16 0-341.333-153.173-341.333-341.333s153.173-341.333 341.333-341.333 341.333 153.173 341.333 341.333-153.173 341.333-341.333 341.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["outline-info-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":860,"id":173,"name":"outline-info-24px","prevSize":32,"code":59816},"setIdx":1,"setId":1,"iconIdx":168},{"icon":{"paths":["M752.213 249.173c-15.36-21.76-40.96-35.84-69.547-35.84l-469.333 0.427c-46.933 0-85.333 37.973-85.333 84.907v426.667c0 46.933 38.4 84.907 85.333 84.907l469.333 0.427c28.587 0 54.187-14.080 69.547-35.84l186.453-262.827-186.453-262.827zM682.667 725.333h-469.333v-426.667h469.333l151.467 213.333-151.467 213.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["outline-label-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":861,"id":172,"name":"outline-label-24px","prevSize":32,"code":59817},"setIdx":1,"setId":1,"iconIdx":169},{"icon":{"paths":["M264.96 596.053l51.2 88.32c3.413 5.547 9.813 7.68 15.787 5.547l63.573-25.6c13.227 10.24 27.307 18.773 43.093 25.173l9.387 67.84c1.28 5.973 6.4 10.667 12.8 10.667h102.4c6.4 0 11.52-4.693 12.8-11.093l9.387-67.84c15.36-6.4 29.867-14.933 43.093-25.173l63.573 25.6c5.973 2.133 12.373 0 15.787-5.547l51.2-88.32c3.413-5.547 1.707-12.373-2.987-16.64l-54.187-42.24c1.28-8.107 1.707-16.64 1.707-24.747 0-8.533-0.853-16.64-1.707-25.173l54.187-42.24c4.693-3.84 6.4-11.093 2.987-16.64l-51.2-88.32c-3.413-5.547-9.813-7.68-15.787-5.547l-63.573 25.6c-13.227-10.24-27.307-18.773-43.093-25.173l-9.387-67.84c-1.28-5.973-6.4-10.667-12.8-10.667h-102.4c-6.4 0-11.52 4.693-12.8 11.093l-9.387 67.84c-15.36 6.4-30.293 14.507-43.093 24.747l-63.573-25.6c-5.973-2.133-12.373 0-15.787 5.547l-51.2 88.32c-3.413 5.547-1.707 12.373 2.987 16.64l54.187 42.24c-1.28 8.533-2.133 16.64-2.133 25.173s0.853 16.64 1.707 25.173l-54.187 42.24c-4.693 4.267-5.973 11.093-2.56 16.64zM512 439.040c40.107 0 72.96 32.853 72.96 72.96s-32.853 72.96-72.96 72.96-72.96-32.853-72.96-72.96 32.853-72.96 72.96-72.96zM810.667 128h-597.333c-47.36 0-85.333 38.4-85.333 85.333v597.333c0 46.933 37.973 85.333 85.333 85.333h597.333c47.36 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-37.973-85.333-85.333-85.333zM810.667 810.667h-597.333v-597.333h597.333v597.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["outline-settings_applications-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":862,"id":171,"name":"outline-settings_applications-24px","prevSize":32,"code":59818},"setIdx":1,"setId":1,"iconIdx":170},{"icon":{"paths":["M128 341.333c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-85.333h85.333c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-85.333v-85.333c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v85.333h-85.333c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h85.333v85.333z","M682.667 597.333c0 70.692-57.308 128-128 128s-128-57.308-128-128c0-70.692 57.308-128 128-128s128 57.308 128 128z","M896 256h-135.253l-52.907-57.6c-15.787-17.493-38.827-27.733-62.72-27.733h-273.067c7.253 12.8 11.947 26.88 11.947 42.667 0 46.933-38.4 85.333-85.333 85.333h-42.667v42.667c0 46.933-38.4 85.333-85.333 85.333-15.787 0-29.867-4.693-42.667-11.947v438.613c0 46.933 38.4 85.333 85.333 85.333h682.667c46.933 0 85.333-38.4 85.333-85.333v-512c0-46.933-38.4-85.333-85.333-85.333zM554.667 810.667c-117.76 0-213.333-95.573-213.333-213.333s95.573-213.333 213.333-213.333 213.333 95.573 213.333 213.333-95.573 213.333-213.333 213.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-add_a_photo-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":863,"id":170,"name":"round-add_a_photo-24px","prevSize":32,"code":59819},"setIdx":1,"setId":1,"iconIdx":171},{"icon":{"paths":["M512 981.333c46.933 0 84.907-37.973 84.907-84.907h-169.813c0 46.933 37.973 84.907 84.907 84.907zM810.667 725.333v-256c0-142.933-100.693-262.4-234.667-291.413v-49.92c0-35.413-28.587-64-64-64s-64 28.587-64 64v49.92c-133.973 29.013-234.667 148.48-234.667 291.413v256l-55.040 55.040c-26.88 26.88-8.107 72.96 29.867 72.96h647.253c37.973 0 57.173-46.080 30.293-72.96l-55.040-55.040zM640 555.093h-85.333v85.333c0 23.467-19.2 42.667-42.667 42.667s-42.667-19.2-42.667-42.667v-85.333h-85.333c-23.467 0-42.667-19.2-42.667-42.667v-0.427c0-23.467 19.2-42.667 42.667-42.667h85.333v-85.333c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667v85.333h85.333c23.467 0 42.667 19.2 42.667 42.667v0.427c0 23.467-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-add_alert-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":864,"id":169,"name":"round-add_alert-24px","prevSize":32,"code":59820},"setIdx":1,"setId":1,"iconIdx":172},{"icon":{"paths":["M810.667 128h-597.333c-47.36 0-85.333 38.4-85.333 85.333v597.333c0 46.933 37.973 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM682.667 554.667h-128v128c0 23.467-19.2 42.667-42.667 42.667s-42.667-19.2-42.667-42.667v-128h-128c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667h128v-128c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667v128h128c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-add_box-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":865,"id":168,"name":"round-add_box-24px","prevSize":32,"code":59821},"setIdx":1,"setId":1,"iconIdx":173},{"icon":{"paths":["M512 298.667c-23.467 0-42.667 19.2-42.667 42.667v128h-128c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h128v128c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-128h128c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-128v-128c0-23.467-19.2-42.667-42.667-42.667zM512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM512 853.333c-188.16 0-341.333-153.173-341.333-341.333s153.173-341.333 341.333-341.333 341.333 153.173 341.333 341.333-153.173 341.333-341.333 341.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-add_circle_outline-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":866,"id":167,"name":"round-add_circle_outline-24px","prevSize":32,"code":59822},"setIdx":1,"setId":1,"iconIdx":174},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM682.667 554.667h-128v128c0 23.467-19.2 42.667-42.667 42.667s-42.667-19.2-42.667-42.667v-128h-128c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667h128v-128c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667v128h128c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-add_circle-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":867,"id":166,"name":"round-add_circle-24px","prevSize":32,"code":59823},"setIdx":1,"setId":1,"iconIdx":175},{"icon":{"paths":["M896.853 213.333h-86.187v-86.187c0-23.040-18.773-41.813-41.813-41.813h-1.28c-23.467 0-42.24 18.773-42.24 41.813v86.187h-85.76c-23.040 0-41.813 18.773-42.24 41.813v1.28c0 23.467 18.773 42.24 42.24 42.24h85.76v85.76c0 23.040 18.773 42.24 42.24 41.813h1.28c23.040 0 41.813-18.773 41.813-41.813v-85.76h86.187c23.040 0 41.813-18.773 41.813-41.813v-1.707c0-23.040-18.773-41.813-41.813-41.813zM682.667 384.427v-43.093h-43.093c-22.613 0-43.947-8.96-60.16-24.747-15.787-16.213-24.747-37.547-24.747-61.44 0-15.36 4.267-29.44 11.52-41.813h-352.853c-46.933 0-85.333 38.4-85.333 85.333v512c0 46.933 38.4 85.333 85.333 85.333h512c46.933 0 85.333-38.4 85.333-85.333v-353.28c-12.8 7.253-27.307 11.947-43.52 11.947-46.507-0.427-84.48-38.4-84.48-84.907zM680.96 810.667h-424.96c-17.493 0-27.733-20.053-17.067-34.133l84.48-112.213c8.96-11.947 26.453-11.093 34.987 0.853l68.267 102.827 111.36-148.48c8.533-11.093 25.173-11.52 33.707-0.427l125.867 157.013c11.093 14.080 1.28 34.56-16.64 34.56z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-add_photo_alternate-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":868,"id":165,"name":"round-add_photo_alternate-24px","prevSize":32,"code":59824},"setIdx":1,"setId":1,"iconIdx":176},{"icon":{"paths":["M512 85.333c-235.093 0-426.667 191.573-426.667 426.667s191.573 426.667 426.667 426.667 426.667-191.573 426.667-426.667-191.573-426.667-426.667-426.667zM512 853.333c-188.16 0-341.333-153.173-341.333-341.333s153.173-341.333 341.333-341.333 341.333 153.173 341.333 341.333-153.173 341.333-341.333 341.333zM640 512c0 70.827-57.173 128-128 128s-128-57.173-128-128 57.173-128 128-128 128 57.173 128 128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-adjust-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":869,"id":164,"name":"round-adjust-24px","prevSize":32,"code":59825},"setIdx":1,"setId":1,"iconIdx":177},{"icon":{"paths":["M614.4 256l-10.24-51.2c-3.84-19.627-21.333-34.133-41.813-34.133h-306.347c-23.467 0-42.667 19.2-42.667 42.667v640c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-256h238.933l10.24 51.2c3.84 20.053 21.333 34.133 41.813 34.133h221.013c23.467 0 42.667-19.2 42.667-42.667v-341.333c0-23.467-19.2-42.667-42.667-42.667h-196.267z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-assistant_photo-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":870,"id":163,"name":"round-assistant_photo-24px","prevSize":32,"code":59826},"setIdx":1,"setId":1,"iconIdx":178},{"icon":{"paths":["M704 288v451.413c0 89.173-65.28 168.533-154.027 177.067-101.973 9.813-187.307-69.973-187.307-169.813v-527.36c0-55.893 40.107-106.667 95.573-112.213 64-6.4 117.76 43.52 117.76 106.24v448c0 23.467-19.2 42.667-42.667 42.667s-42.667-19.2-42.667-42.667v-373.333c0-17.493-14.507-32-32-32s-32 14.507-32 32v367.36c0 55.893 40.107 106.667 95.573 112.213 64 6.4 117.76-43.52 117.76-106.24v-440.747c0-89.173-65.28-168.533-154.027-177.067-101.547-9.813-187.307 69.973-187.307 169.813v523.52c0 122.453 89.6 232.107 211.627 243.627 140.373 12.8 257.707-96.427 257.707-233.813v-458.667c0-17.493-14.507-32-32-32s-32 14.507-32 32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-attach_file-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":871,"id":162,"name":"round-attach_file-24px","prevSize":32,"code":59827},"setIdx":1,"setId":1,"iconIdx":179},{"icon":{"paths":["M757.333 682.667h-451.413c-89.173 0-168.533-65.28-177.067-154.027-9.813-101.547 69.973-187.307 169.813-187.307h527.36c55.893 0 106.667 40.107 112.213 95.573 6.4 64-43.52 117.76-106.24 117.76h-448c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667h373.333c17.493 0 32-14.507 32-32s-14.507-32-32-32h-367.36c-55.893 0-106.667 40.107-112.213 95.573-6.4 64 43.52 117.76 106.24 117.76h440.747c89.173 0 168.533-65.28 177.067-154.027 9.813-101.973-69.973-187.307-169.813-187.307h-523.52c-122.453 0-232.107 89.6-243.627 211.627-12.8 140.373 96.427 257.707 233.813 257.707h458.667c17.493 0 32-14.507 32-32s-14.507-32-32-32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-attachment-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":872,"id":161,"name":"round-attachment-24px","prevSize":32,"code":59828},"setIdx":1,"setId":1,"iconIdx":180},{"icon":{"paths":["M426.667 384c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667-19.2-42.667-42.667-42.667zM426.667 554.667c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667-19.2-42.667-42.667-42.667zM298.667 405.333c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333 21.333-9.387 21.333-21.333-9.387-21.333-21.333-21.333zM426.667 704c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333 21.333-9.387 21.333-21.333-9.387-21.333-21.333-21.333zM298.667 576c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333 21.333-9.387 21.333-21.333-9.387-21.333-21.333-21.333zM426.667 320c11.947 0 21.333-9.387 21.333-21.333s-9.387-21.333-21.333-21.333-21.333 9.387-21.333 21.333 9.387 21.333 21.333 21.333zM597.333 384c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667-19.2-42.667-42.667-42.667zM597.333 320c11.947 0 21.333-9.387 21.333-21.333s-9.387-21.333-21.333-21.333-21.333 9.387-21.333 21.333 9.387 21.333 21.333 21.333zM725.333 576c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333 21.333-9.387 21.333-21.333-9.387-21.333-21.333-21.333zM725.333 405.333c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333 21.333-9.387 21.333-21.333-9.387-21.333-21.333-21.333zM512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM512 853.333c-188.587 0-341.333-152.747-341.333-341.333s152.747-341.333 341.333-341.333 341.333 152.747 341.333 341.333-152.747 341.333-341.333 341.333zM597.333 704c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333 21.333-9.387 21.333-21.333-9.387-21.333-21.333-21.333zM597.333 554.667c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667-19.2-42.667-42.667-42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-blur_circular-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":873,"id":160,"name":"round-blur_circular-24px","prevSize":32,"code":59829},"setIdx":1,"setId":1,"iconIdx":181},{"icon":{"paths":["M213.333 746.667c35.413 0 64-28.587 64-64s-28.587-64-64-64-64 28.587-64 64 28.587 64 64 64zM384 554.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM384 384c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM170.667 896h682.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-682.667c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667zM213.333 405.333c35.413 0 64-28.587 64-64s-28.587-64-64-64-64 28.587-64 64 28.587 64 64 64zM213.333 576c35.413 0 64-28.587 64-64s-28.587-64-64-64-64 28.587-64 64 28.587 64 64 64zM384 725.333c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM725.333 704c11.947 0 21.333-9.387 21.333-21.333s-9.387-21.333-21.333-21.333-21.333 9.387-21.333 21.333 9.387 21.333 21.333 21.333zM128 170.667c0 23.467 19.2 42.667 42.667 42.667h682.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-682.667c-23.467 0-42.667 19.2-42.667 42.667zM725.333 362.667c11.947 0 21.333-9.387 21.333-21.333s-9.387-21.333-21.333-21.333-21.333 9.387-21.333 21.333 9.387 21.333 21.333 21.333zM725.333 533.333c11.947 0 21.333-9.387 21.333-21.333s-9.387-21.333-21.333-21.333-21.333 9.387-21.333 21.333 9.387 21.333 21.333 21.333zM554.667 384c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM554.667 554.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM554.667 725.333c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-blur_linear-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":874,"id":159,"name":"round-blur_linear-24px","prevSize":32,"code":59830},"setIdx":1,"setId":1,"iconIdx":182},{"icon":{"paths":["M640 256c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667z","M588.8 489.813l8.533 0.853c35.413 0 64-28.587 64-64s-28.587-64-64-64-64 28.587-64 64l0.853 8.533c3.84 28.587 26.027 50.773 54.613 54.613zM597.333 149.333c11.947 0 21.333-9.387 21.333-21.333s-9.387-21.333-21.333-21.333-21.333 9.387-21.333 21.333 9.387 21.333 21.333 21.333zM426.667 149.333c11.947 0 21.333-9.387 21.333-21.333s-9.387-21.333-21.333-21.333-21.333 9.387-21.333 21.333 9.387 21.333 21.333 21.333z","M810.667 426.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667z","M810.667 256c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667z","M896 448c11.947 0 21.333-9.387 21.333-21.333s-9.387-21.333-21.333-21.333-21.333 9.387-21.333 21.333 9.387 21.333 21.333 21.333z","M469.333 256c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667z","M810.667 597.333c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667z","M298.667 768c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667z","M597.333 874.667c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333 21.333-9.387 21.333-21.333-9.387-21.333-21.333-21.333zM896 576c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333 21.333-9.387 21.333-21.333-9.387-21.333-21.333-21.333zM128 576c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333 21.333-9.387 21.333-21.333-9.387-21.333-21.333-21.333z","M469.333 768c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667z","M128 405.333c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333 21.333-9.387 21.333-21.333-9.387-21.333-21.333-21.333zM426.667 874.667c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333 21.333-9.387 21.333-21.333-9.387-21.333-21.333-21.333z","M298.667 597.333c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667z","M136.96 194.56c-16.64 16.64-16.64 43.52 0 60.16l130.987 130.987-11.947-1.707c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667c0-4.267-1.28-8.107-2.56-11.947l119.893 119.893c-30.293 4.693-53.333 31.147-53.333 62.72 0 35.413 28.587 64 64 64 31.573 0 58.027-23.040 62.72-53.333l119.893 119.893c-3.84-1.28-7.68-2.56-11.947-2.56-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667c0-4.267-1.28-8.107-2.56-11.947l131.413 130.987c16.64 16.64 43.52 16.64 60.16 0s16.64-43.52 0-60.587l-631.893-631.893c-16.64-16.64-43.52-16.64-60.16 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-blur_off-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":875,"id":158,"name":"round-blur_off-24px","prevSize":32,"code":59831},"setIdx":1,"setId":1,"iconIdx":183},{"icon":{"paths":["M256 554.667c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667-19.2-42.667-42.667-42.667zM256 725.333c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667-19.2-42.667-42.667-42.667zM256 384c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667-19.2-42.667-42.667-42.667zM128 405.333c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333 21.333-9.387 21.333-21.333-9.387-21.333-21.333-21.333zM256 213.333c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667-19.2-42.667-42.667-42.667zM896 448c11.947 0 21.333-9.387 21.333-21.333s-9.387-21.333-21.333-21.333-21.333 9.387-21.333 21.333 9.387 21.333 21.333 21.333zM597.333 298.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM597.333 149.333c11.947 0 21.333-9.387 21.333-21.333s-9.387-21.333-21.333-21.333-21.333 9.387-21.333 21.333 9.387 21.333 21.333 21.333zM128 576c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333 21.333-9.387 21.333-21.333-9.387-21.333-21.333-21.333zM426.667 874.667c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333 21.333-9.387 21.333-21.333-9.387-21.333-21.333-21.333zM426.667 149.333c11.947 0 21.333-9.387 21.333-21.333s-9.387-21.333-21.333-21.333-21.333 9.387-21.333 21.333 9.387 21.333 21.333 21.333zM426.667 298.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM426.667 533.333c-35.413 0-64 28.587-64 64s28.587 64 64 64 64-28.587 64-64-28.587-64-64-64zM768 554.667c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667-19.2-42.667-42.667-42.667zM768 725.333c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667-19.2-42.667-42.667-42.667zM768 384c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667-19.2-42.667-42.667-42.667zM768 213.333c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667-19.2-42.667-42.667-42.667zM896 576c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333 21.333-9.387 21.333-21.333-9.387-21.333-21.333-21.333zM597.333 725.333c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667-19.2-42.667-42.667-42.667zM597.333 874.667c-11.947 0-21.333 9.387-21.333 21.333s9.387 21.333 21.333 21.333 21.333-9.387 21.333-21.333-9.387-21.333-21.333-21.333zM426.667 362.667c-35.413 0-64 28.587-64 64s28.587 64 64 64 64-28.587 64-64-28.587-64-64-64zM426.667 725.333c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667-19.2-42.667-42.667-42.667zM597.333 533.333c-35.413 0-64 28.587-64 64s28.587 64 64 64 64-28.587 64-64-28.587-64-64-64zM597.333 362.667c-35.413 0-64 28.587-64 64s28.587 64 64 64 64-28.587 64-64-28.587-64-64-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-blur_on-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":876,"id":157,"name":"round-blur_on-24px","prevSize":32,"code":59832},"setIdx":1,"setId":1,"iconIdx":184},{"icon":{"paths":["M298.667 597.333c-70.827 0-128 57.173-128 128 0 55.893-49.493 85.333-85.333 85.333 39.253 52.053 106.24 85.333 170.667 85.333 94.293 0 170.667-76.373 170.667-170.667 0-70.827-57.173-128-128-128zM883.627 197.547l-57.173-57.173c-16.64-16.64-43.52-16.64-60.16 0l-382.293 382.293 117.333 117.333 382.293-382.293c16.64-16.64 16.64-43.52 0-60.16z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-brush-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":877,"id":156,"name":"round-brush-24px","prevSize":32,"code":59833},"setIdx":1,"setId":1,"iconIdx":185},{"icon":{"paths":["M443.733 614.4c0 75.405-61.128 136.533-136.533 136.533s-136.533-61.128-136.533-136.533c0-75.405 61.128-136.533 136.533-136.533s136.533 61.128 136.533 136.533z","M716.8 768c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333c0-47.128 38.205-85.333 85.333-85.333s85.333 38.205 85.333 85.333z","M853.333 375.467c0 113.108-91.692 204.8-204.8 204.8s-204.8-91.692-204.8-204.8c0-113.108 91.692-204.8 204.8-204.8s204.8 91.692 204.8 204.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-bubble_chart-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":878,"id":155,"name":"round-bubble_chart-24px","prevSize":32,"code":59834},"setIdx":1,"setId":1,"iconIdx":186},{"icon":{"paths":["M541.013 250.88c29.867-10.24 52.053-38.4 55.467-69.973 2.133-20.053-2.133-38.827-11.947-54.187l-54.613-94.72c-8.107-14.080-28.587-14.080-37.12 0l-54.613 94.72c-7.253 12.8-11.52 27.733-11.52 43.947 0 56.32 55.467 100.267 114.347 80.213zM705.28 679.253l-42.667-42.667-46.080 45.653c-55.467 55.467-152.747 55.893-208.64 0l-45.653-45.653-46.507 45.653c-27.733 27.733-64.853 43.093-104.107 43.093-31.147 0-59.733-9.813-83.627-26.027v154.027c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-154.027c-32 21.76-72.96 32-116.907 22.187-28.16-5.973-53.333-21.76-73.813-42.24zM768 384h-213.333v-42.667c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v42.667h-213.333c-70.827 0-128 57.173-128 128v62.293c0 36.267 21.333 71.253 55.893 82.773 31.147 10.24 64.853 2.56 86.613-19.627l91.307-90.88 90.88 90.88c32.427 32.427 85.76 32.427 118.187 0l91.307-90.88 90.88 90.88c18.347 18.347 43.947 26.88 70.4 23.467 42.24-5.547 72.107-45.227 72.107-87.893v-60.587c0.427-71.253-56.747-128.427-127.573-128.427z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-cake-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":879,"id":154,"name":"round-cake-24px","prevSize":32,"code":59835},"setIdx":1,"setId":1,"iconIdx":187},{"icon":{"paths":["M820.48 651.093l-108.373-12.373c-26.027-2.987-51.627 5.973-69.973 24.32l-78.507 78.507c-120.747-61.44-219.733-160-281.173-281.173l78.933-78.933c18.347-18.347 27.307-43.947 24.32-69.973l-12.373-107.52c-5.12-43.093-41.387-75.52-84.907-75.52h-73.813c-48.213 0-88.32 40.107-85.333 88.32 22.613 364.373 314.027 655.36 677.973 677.973 48.213 2.987 88.32-37.12 88.32-85.333v-73.813c0.427-43.093-32-79.36-75.093-84.48z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-call-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":880,"id":153,"name":"round-call-24px","prevSize":32,"code":59836},"setIdx":1,"setId":1,"iconIdx":188},{"icon":{"paths":["M640 512c0 70.692-57.308 128-128 128s-128-57.308-128-128c0-70.692 57.308-128 128-128s128 57.308 128 128z","M853.333 170.667h-135.253l-52.907-57.6c-15.787-17.493-38.827-27.733-62.72-27.733h-180.907c-23.893 0-46.933 10.24-63.147 27.733l-52.48 57.6h-135.253c-46.933 0-85.333 38.4-85.333 85.333v512c0 46.933 38.4 85.333 85.333 85.333h682.667c46.933 0 85.333-38.4 85.333-85.333v-512c0-46.933-38.4-85.333-85.333-85.333zM512 725.333c-117.76 0-213.333-95.573-213.333-213.333s95.573-213.333 213.333-213.333 213.333 95.573 213.333 213.333-95.573 213.333-213.333 213.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-camera_alt-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":881,"id":152,"name":"round-camera_alt-24px","prevSize":32,"code":59837},"setIdx":1,"setId":1,"iconIdx":189},{"icon":{"paths":["M589.227 122.027c7.253-12.8 0-29.867-14.933-31.573-111.787-15.787-226.133 11.947-317.44 79.36-8.107 6.4-10.667 18.347-5.12 27.733l128.427 222.72c8.107 14.080 28.587 14.080 37.12 0l171.947-298.24zM908.8 355.413c-41.813-105.387-124.587-190.293-228.267-234.667-9.813-4.267-21.333 0-26.88 9.387l-128.427 222.293c-8.107 13.653 2.133 31.573 18.773 31.573h344.747c14.933 0 25.6-14.933 20.053-28.587zM911.787 426.667h-264.533c-16.213 0-26.88 17.92-18.347 32l181.76 315.307c7.253 12.8 25.6 14.933 34.987 3.413 74.24-93.013 105.813-214.613 87.467-332.373-1.28-10.667-10.667-18.347-21.333-18.347zM178.347 247.040c-73.813 93.44-105.813 214.187-87.467 332.373 1.28 10.24 10.667 17.92 21.333 17.92h264.533c16.213 0 26.88-17.92 18.347-32l-181.76-314.88c-7.68-12.8-26.027-14.933-34.987-3.413zM115.2 668.587c41.813 105.387 124.587 190.293 228.267 234.667 9.813 4.267 21.333 0 26.88-9.387l128.427-222.293c8.107-14.080-2.133-32-18.347-32h-345.173c-14.933 0.427-25.6 15.36-20.053 29.013zM449.28 933.973c111.787 15.787 226.133-11.947 317.44-79.36 8.533-6.4 11.093-18.773 5.547-28.16l-128.427-222.72c-8.107-14.080-28.587-14.080-37.12 0l-172.373 298.24c-7.253 12.8 0.427 29.867 14.933 32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-camera-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":882,"id":151,"name":"round-camera-24px","prevSize":32,"code":59838},"setIdx":1,"setId":1,"iconIdx":190},{"icon":{"paths":["M512 85.333c-235.947 0-426.667 190.72-426.667 426.667s190.72 426.667 426.667 426.667 426.667-190.72 426.667-426.667-190.72-426.667-426.667-426.667zM695.467 695.467c-16.64 16.64-43.52 16.64-60.16 0l-123.307-123.307-123.307 123.307c-16.64 16.64-43.52 16.64-60.16 0s-16.64-43.52 0-60.16l123.307-123.307-123.307-123.307c-16.64-16.64-16.64-43.52 0-60.16s43.52-16.64 60.16 0l123.307 123.307 123.307-123.307c16.64-16.64 43.52-16.64 60.16 0s16.64 43.52 0 60.16l-123.307 123.307 123.307 123.307c16.213 16.213 16.213 43.52 0 60.16z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-cancel-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":883,"id":150,"name":"round-cancel-24px","prevSize":32,"code":59839},"setIdx":1,"setId":1,"iconIdx":191},{"icon":{"paths":["M810.667 128h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM456.96 695.040c-16.64 16.64-43.52 16.64-60.16 0l-153.173-153.173c-16.64-16.64-16.64-43.52 0-60.16s43.52-16.64 60.16 0l122.88 122.88 293.547-293.547c16.64-16.64 43.52-16.64 60.16 0s16.64 43.52 0 60.16l-323.413 323.84z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-check_box-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":884,"id":149,"name":"round-check_box-24px","prevSize":32,"code":59840},"setIdx":1,"setId":1,"iconIdx":192},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM704 682.667h-362.667c-70.827 0-128-57.173-128-128s57.173-128 128-128h5.973c18.773-73.813 84.907-128 164.693-128 94.293 0 170.667 76.373 170.667 170.667h21.333c58.88 0 106.667 47.787 106.667 106.667s-47.787 106.667-106.667 106.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-cloud_circle-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":885,"id":148,"name":"round-cloud_circle-24px","prevSize":32,"code":59841},"setIdx":1,"setId":1,"iconIdx":193},{"icon":{"paths":["M825.6 428.373c-29.013-147.2-158.293-257.707-313.6-257.707-123.307 0-230.4 69.973-283.733 172.373-128.427 13.653-228.267 122.453-228.267 254.293 0 141.227 114.773 256 256 256h554.667c117.76 0 213.333-95.573 213.333-213.333 0-112.64-87.467-203.947-198.4-211.627zM456.96 695.040c-16.64 16.64-43.52 16.64-60.16 0l-89.6-89.173c-16.64-16.64-16.64-43.52 0-60.16s43.52-16.64 60.16 0l59.307 59.307 191.147-191.147c16.64-16.64 43.52-16.64 60.16 0s16.64 43.52 0 60.16l-221.013 221.013z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-cloud_done-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":886,"id":147,"name":"round-cloud_done-24px","prevSize":32,"code":59842},"setIdx":1,"setId":1,"iconIdx":194},{"icon":{"paths":["M825.6 428.373c-29.013-147.2-158.293-257.707-313.6-257.707-123.307 0-230.4 69.973-283.733 172.373-128.427 13.653-228.267 122.453-228.267 254.293 0 141.227 114.773 256 256 256h554.667c117.76 0 213.333-95.573 213.333-213.333 0-112.64-87.467-203.947-198.4-211.627zM725.333 554.667l-198.4 198.4c-8.533 8.533-21.76 8.533-30.293 0l-197.973-198.4h128v-170.667h170.667v170.667h128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-cloud_download-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":887,"id":146,"name":"round-cloud_download-24px","prevSize":32,"code":59843},"setIdx":1,"setId":1,"iconIdx":195},{"icon":{"paths":["M1024 640c0-112.64-87.467-203.947-198.4-211.627-29.013-147.2-158.293-257.707-313.6-257.707-56.747 0-109.653 15.36-155.733 41.387l63.573 63.573c28.587-12.373 59.307-19.627 92.16-19.627 129.707 0 234.667 104.96 234.667 234.667v21.333h64c70.827 0 128 57.173 128 128 0 42.24-20.48 78.933-51.627 102.4l60.16 60.16c46.507-39.253 76.8-96.853 76.8-162.56zM158.293 194.56c-16.64 16.64-16.64 43.52 0 60.16l87.893 87.893h-17.92c-139.947 14.933-245.76 142.507-225.707 289.707 17.067 128.853 133.547 221.013 262.827 221.013h491.093l55.040 55.040c16.64 16.64 43.52 16.64 60.16 0s16.64-43.52 0-60.16l-653.227-653.653c-16.64-16.64-43.52-16.64-60.16 0zM256 768c-94.293 0-170.667-76.373-170.667-170.667s76.373-170.667 170.667-170.667h73.813l341.333 341.333h-415.147z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-cloud_off-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":888,"id":145,"name":"round-cloud_off-24px","prevSize":32,"code":59844},"setIdx":1,"setId":1,"iconIdx":196},{"icon":{"paths":["M825.6 428.373c-29.013-147.2-158.293-257.707-313.6-257.707-123.307 0-230.4 69.973-283.733 172.373-128.427 13.653-228.267 122.453-228.267 254.293 0 141.227 114.773 256 256 256h554.667c117.76 0 213.333-95.573 213.333-213.333 0-112.64-87.467-203.947-198.4-211.627zM810.667 768h-554.667c-94.293 0-170.667-76.373-170.667-170.667s76.373-170.667 170.667-170.667h30.293c28.16-98.56 118.187-170.667 225.707-170.667 129.707 0 234.667 104.96 234.667 234.667v21.333h64c70.827 0 128 57.173 128 128s-57.173 128-128 128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-cloud_queue-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":889,"id":144,"name":"round-cloud_queue-24px","prevSize":32,"code":59845},"setIdx":1,"setId":1,"iconIdx":197},{"icon":{"paths":["M825.6 428.373c-29.013-147.2-158.293-257.707-313.6-257.707-123.307 0-230.4 69.973-283.733 172.373-128.427 13.653-228.267 122.453-228.267 254.293 0 141.227 114.773 256 256 256h554.667c117.76 0 213.333-95.573 213.333-213.333 0-112.64-87.467-203.947-198.4-211.627zM597.333 554.667v170.667h-170.667v-170.667h-128l198.4-198.4c8.533-8.533 21.76-8.533 30.293 0l197.973 198.4h-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-cloud_upload-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":890,"id":143,"name":"round-cloud_upload-24px","prevSize":32,"code":59846},"setIdx":1,"setId":1,"iconIdx":198},{"icon":{"paths":["M825.6 428.373c-29.013-147.2-158.293-257.707-313.6-257.707-123.307 0-230.4 69.973-283.733 172.373-128.427 13.653-228.267 122.453-228.267 254.293 0 141.227 114.773 256 256 256h554.667c117.76 0 213.333-95.573 213.333-213.333 0-112.64-87.467-203.947-198.4-211.627z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-cloud-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":891,"id":142,"name":"round-cloud-24px","prevSize":32,"code":59847},"setIdx":1,"setId":1,"iconIdx":199},{"icon":{"paths":["M512 128c-212.053 0-384 171.947-384 384s171.947 384 384 384c35.413 0 64-28.587 64-64 0-16.64-6.4-31.573-16.64-43.093-9.813-11.093-16.213-26.027-16.213-42.24 0-35.413 28.587-64 64-64h75.52c117.76 0 213.333-95.573 213.333-213.333 0-188.587-171.947-341.333-384-341.333zM277.333 512c-35.413 0-64-28.587-64-64s28.587-64 64-64 64 28.587 64 64-28.587 64-64 64zM405.333 341.333c-35.413 0-64-28.587-64-64s28.587-64 64-64 64 28.587 64 64-28.587 64-64 64zM618.667 341.333c-35.413 0-64-28.587-64-64s28.587-64 64-64 64 28.587 64 64-28.587 64-64 64zM746.667 512c-35.413 0-64-28.587-64-64s28.587-64 64-64 64 28.587 64 64-28.587 64-64 64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-color_lens-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":892,"id":141,"name":"round-color_lens-24px","prevSize":32,"code":59848},"setIdx":1,"setId":1,"iconIdx":200},{"icon":{"paths":["M883.627 240.213l-99.84-99.84c-16.64-16.64-43.52-16.64-60.16 0l-133.12 133.12-52.48-51.627c-16.64-16.64-43.52-16.213-60.16 0-16.64 16.64-16.64 43.52 0 60.16l30.72 30.72-374.187 374.187c-4.267 4.267-6.4 9.387-6.4 15.36v172.373c0 11.947 9.387 21.333 21.333 21.333h172.373c5.547 0 11.093-2.133 14.933-6.4l374.187-374.187 30.72 30.72c16.64 16.64 43.52 16.64 60.16 0s16.64-43.52 0-60.16l-52.053-52.053 133.12-133.12c17.493-17.067 17.493-43.947 0.853-60.587zM295.253 810.667l-81.92-81.92 343.893-343.893 81.92 81.92-343.893 343.893z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-colorize-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":893,"id":140,"name":"round-colorize-24px","prevSize":32,"code":59849},"setIdx":1,"setId":1,"iconIdx":201},{"icon":{"paths":["M853.333 768c46.933 0 84.907-38.4 84.907-85.333l0.427-426.667c0-46.933-38.4-85.333-85.333-85.333h-682.667c-46.933 0-85.333 38.4-85.333 85.333v426.667c0 46.933 38.4 85.333 85.333 85.333h-128c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h938.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-128zM213.333 256h597.333c23.467 0 42.667 19.2 42.667 42.667v341.333c0 23.467-19.2 42.667-42.667 42.667h-597.333c-23.467 0-42.667-19.2-42.667-42.667v-341.333c0-23.467 19.2-42.667 42.667-42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-computer-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":894,"id":139,"name":"round-computer-24px","prevSize":32,"code":59850},"setIdx":1,"setId":1,"iconIdx":202},{"icon":{"paths":["M853.333 256h-341.333l-60.16-60.16c-16.213-16.213-37.973-25.173-60.587-25.173h-220.587c-47.36 0-84.907 37.973-84.907 85.333l-0.427 512c0 47.36 37.973 85.333 85.333 85.333h682.667c46.933 0 85.333-38.4 85.333-85.333v-426.667c0-46.933-38.4-85.333-85.333-85.333zM768 597.333h-85.333v85.333c0 23.467-19.2 42.667-42.667 42.667s-42.667-19.2-42.667-42.667v-85.333h-85.333c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667h85.333v-85.333c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667v85.333h85.333c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-create_new_folder-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":895,"id":138,"name":"round-create_new_folder-24px","prevSize":32,"code":59851},"setIdx":1,"setId":1,"iconIdx":203},{"icon":{"paths":["M128 744.96v129.707c0 11.947 9.387 21.333 21.333 21.333h129.707c5.547 0 11.093-2.133 14.933-6.4l465.92-465.493-160-160-465.493 465.493c-4.267 4.267-6.4 9.387-6.4 15.36zM883.627 300.373c16.64-16.64 16.64-43.52 0-60.16l-99.84-99.84c-16.64-16.64-43.52-16.64-60.16 0l-78.080 78.080 160 160 78.080-78.080z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-create-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":896,"id":137,"name":"round-create-24px","prevSize":32,"code":59852},"setIdx":1,"setId":1,"iconIdx":204},{"icon":{"paths":["M128 213.333v128c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-85.333c0-23.467 19.2-42.667 42.667-42.667h85.333c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-128c-46.933 0-85.333 38.4-85.333 85.333zM170.667 640c-23.467 0-42.667 19.2-42.667 42.667v128c0 46.933 38.4 85.333 85.333 85.333h128c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-85.333c-23.467 0-42.667-19.2-42.667-42.667v-85.333c0-23.467-19.2-42.667-42.667-42.667zM810.667 768c0 23.467-19.2 42.667-42.667 42.667h-85.333c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h128c46.933 0 85.333-38.4 85.333-85.333v-128c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v85.333zM810.667 128h-128c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h85.333c23.467 0 42.667 19.2 42.667 42.667v85.333c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-128c0-46.933-38.4-85.333-85.333-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-crop_free-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":897,"id":136,"name":"round-crop_free-24px","prevSize":32,"code":59853},"setIdx":1,"setId":1,"iconIdx":205},{"icon":{"paths":["M810.667 128h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM768 810.667h-512c-23.467 0-42.667-19.2-42.667-42.667v-512c0-23.467 19.2-42.667 42.667-42.667h512c23.467 0 42.667 19.2 42.667 42.667v512c0 23.467-19.2 42.667-42.667 42.667zM578.56 546.56l-100.267 128.853-66.56-80.213c-8.533-10.667-24.747-10.24-33.28 0.427l-74.24 95.147c-11.093 14.080-0.853 34.56 16.64 34.56h383.147c17.493 0 27.733-20.053 17.067-34.133l-108.8-144.64c-8.107-11.093-25.173-11.093-33.707 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-crop_original-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":898,"id":135,"name":"round-crop_original-24px","prevSize":32,"code":59854},"setIdx":1,"setId":1,"iconIdx":206},{"icon":{"paths":["M682.667 384v213.333h85.333v-256c0-46.933-38.4-85.333-85.333-85.333h-256v85.333h213.333c23.467 0 42.667 19.2 42.667 42.667zM810.667 682.667h-426.667c-23.467 0-42.667-19.2-42.667-42.667v-426.667c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v42.667h-42.667c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h42.667v341.333c0 46.933 38.4 85.333 85.333 85.333h341.333v42.667c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-42.667h42.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667zM753.493 59.733c-71.253-37.973-163.413-64.427-267.52-58.027l162.56 162.56 56.747-56.747c131.84 62.293 227.84 186.453 251.307 335.36 2.56 17.493 18.773 29.44 36.693 26.453 17.493-2.56 29.44-19.2 26.453-36.693-25.6-162.133-126.293-298.667-266.24-372.907zM318.72 916.907c-131.84-62.293-227.84-186.453-251.307-335.36-2.56-17.493-18.773-29.44-36.693-26.453-17.493 2.56-29.44 19.2-26.453 36.693 25.6 162.56 126.293 299.093 266.24 373.333 71.253 37.973 163.413 64.427 267.52 58.027l-162.56-162.987-56.747 56.747z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-crop_rotate-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":899,"id":134,"name":"round-crop_rotate-24px","prevSize":32,"code":59855},"setIdx":1,"setId":1,"iconIdx":207},{"icon":{"paths":["M725.333 640h85.333v-341.333c0-46.933-38.4-85.333-85.333-85.333h-341.333v85.333h298.667c23.467 0 42.667 19.2 42.667 42.667v298.667zM341.333 725.333c-23.467 0-42.667-19.2-42.667-42.667v-597.333c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v128h-128c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h128v426.667c0 46.933 38.4 85.333 85.333 85.333h426.667v128c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-128h128c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-597.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-crop-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":900,"id":133,"name":"round-crop-24px","prevSize":32,"code":59856},"setIdx":1,"setId":1,"iconIdx":208},{"icon":{"paths":["M512 298.667c23.467 0 42.667 19.2 42.667 42.667v170.667c0 23.467-19.2 42.667-42.667 42.667s-42.667-19.2-42.667-42.667v-170.667c0-23.467 19.2-42.667 42.667-42.667zM511.573 85.333c-235.52 0-426.24 191.147-426.24 426.667s190.72 426.667 426.24 426.667c235.947 0 427.093-191.147 427.093-426.667s-191.147-426.667-427.093-426.667zM512 853.333c-188.587 0-341.333-152.747-341.333-341.333s152.747-341.333 341.333-341.333 341.333 152.747 341.333 341.333-152.747 341.333-341.333 341.333zM554.667 725.333h-85.333v-85.333h85.333v85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-error_outline-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":901,"id":132,"name":"round-error_outline-24px","prevSize":32,"code":59857},"setIdx":1,"setId":1,"iconIdx":209},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM512 554.667c-23.467 0-42.667-19.2-42.667-42.667v-170.667c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667v170.667c0 23.467-19.2 42.667-42.667 42.667zM554.667 725.333h-85.333v-85.333h85.333v85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-error-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":902,"id":131,"name":"round-error-24px","prevSize":32,"code":59858},"setIdx":1,"setId":1,"iconIdx":210},{"icon":{"paths":["M682.667 449.28c-12.373-12.373-32.853-12.373-45.227 0l-185.6 185.6-67.84-67.84c-12.373-12.373-32.853-12.373-45.227 0s-12.373 32.853 0 45.227l82.773 82.773c16.64 16.64 43.52 16.64 60.16 0l200.533-200.533c12.8-12.373 12.8-32.853 0.427-45.227zM810.667 128h-42.667v-42.667c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v42.667h-341.333v-42.667c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v42.667h-42.667c-47.36 0-84.907 38.4-84.907 85.333l-0.427 597.333c0 46.933 37.973 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM768 810.667h-512c-23.467 0-42.667-19.2-42.667-42.667v-426.667h597.333v426.667c0 23.467-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-event_available-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":903,"id":130,"name":"round-event_available-24px","prevSize":32,"code":59859},"setIdx":1,"setId":1,"iconIdx":211},{"icon":{"paths":["M419.84 702.72l81.493-81.493 81.493 81.493c12.373 12.373 32.853 12.373 45.227 0s12.373-32.853 0-45.227l-81.493-81.493 81.493-81.493c12.373-12.373 12.373-32.853 0-45.227s-32.853-12.373-45.227 0l-81.493 81.493-81.493-81.493c-12.373-12.373-32.853-12.373-45.227 0s-12.373 32.853 0 45.227l81.493 81.493-81.493 81.493c-12.373 12.373-12.373 32.853 0 45.227s32.853 12.373 45.227 0zM810.667 128h-42.667v-42.667c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v42.667h-341.333v-42.667c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v42.667h-42.667c-47.36 0-84.907 38.4-84.907 85.333l-0.427 597.333c0 46.933 37.973 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM768 810.667h-512c-23.467 0-42.667-19.2-42.667-42.667v-426.667h597.333v426.667c0 23.467-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-event_busy-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":904,"id":129,"name":"round-event_busy-24px","prevSize":32,"code":59860},"setIdx":1,"setId":1,"iconIdx":212},{"icon":{"paths":["M682.667 426.667h-341.333c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h341.333c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667zM810.667 128h-42.667v-42.667c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v42.667h-341.333v-42.667c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v42.667h-42.667c-47.36 0-85.333 38.4-85.333 85.333v597.333c0 46.933 37.973 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM768 810.667h-512c-23.467 0-42.667-19.2-42.667-42.667v-426.667h597.333v426.667c0 23.467-19.2 42.667-42.667 42.667zM554.667 597.333h-213.333c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h213.333c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-event_note-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":905,"id":128,"name":"round-event_note-24px","prevSize":32,"code":59861},"setIdx":1,"setId":1,"iconIdx":213},{"icon":{"paths":["M810.667 128h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM288 298.667h149.333c17.493 0 32 14.507 32 32s-14.507 32-32 32h-149.333c-17.493 0-32-14.507-32-32s14.507-32 32-32zM768 810.667h-554.667l597.333-597.333v554.667c0 23.467-19.2 42.667-42.667 42.667zM618.667 682.667v53.333c0 17.493 14.507 32 32 32s32-14.507 32-32v-53.333h53.333c17.493 0 32-14.507 32-32s-14.507-32-32-32h-53.333v-53.333c0-17.493-14.507-32-32-32s-32 14.507-32 32v53.333h-53.333c-17.493 0-32 14.507-32 32s14.507 32 32 32h53.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-exposure-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":906,"id":127,"name":"round-exposure-24px","prevSize":32,"code":59862},"setIdx":1,"setId":1,"iconIdx":214},{"icon":{"paths":["M238.080 720.64l246.187-173.653c23.893-17.067 23.893-52.907 0-69.547l-246.187-174.080c-28.587-19.627-67.413 0.427-67.413 34.987v347.307c0 34.56 38.827 54.613 67.413 34.987zM554.667 338.347v347.307c0 34.56 38.827 54.613 67.413 34.987l246.187-173.653c23.893-17.067 23.893-52.907 0-69.547l-246.187-173.653c-28.587-20.053-67.413 0-67.413 34.56z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-fast_forward-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":907,"id":126,"name":"round-fast_forward-24px","prevSize":32,"code":59863},"setIdx":1,"setId":1,"iconIdx":215},{"icon":{"paths":["M469.333 685.653v-347.307c0-34.56-38.827-54.613-67.413-34.987l-246.187 173.653c-23.893 17.067-23.893 52.907 0 69.547l246.187 173.653c28.587 20.053 67.413 0 67.413-34.56zM540.16 546.987l246.187 173.653c28.16 20.053 67.413-0.427 67.413-34.987v-347.307c0-34.56-38.827-54.613-67.413-34.987l-246.187 173.653c-24.32 17.067-24.32 52.907 0 69.973z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-fast_rewind-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":908,"id":125,"name":"round-fast_rewind-24px","prevSize":32,"code":59864},"setIdx":1,"setId":1,"iconIdx":216},{"icon":{"paths":["M563.2 301.653l-125.867 167.68 96 128c14.080 18.773 10.24 45.653-8.533 59.733s-45.653 10.667-59.733-8.533c-44.8-59.733-98.56-130.987-132.267-176.64-17.067-22.613-51.2-22.613-68.267 0l-170.667 227.413c-20.907 28.587-0.853 68.693 34.133 68.693h768c34.987 0 55.040-40.107 34.133-68.267l-298.667-398.080c-17.067-23.040-51.2-23.040-68.267 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-filter_hdr-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":909,"id":124,"name":"round-filter_hdr-24px","prevSize":32,"code":59865},"setIdx":1,"setId":1,"iconIdx":217},{"icon":{"paths":["M755.2 677.973l-165.547-165.973 165.973-165.973c16.64-16.64 16.64-43.52 0-60.16s-43.52-16.64-60.16 0l-195.84 195.84c-16.64 16.64-16.64 43.52 0 60.16l195.84 195.84c16.64 16.64 43.52 16.64 60.16 0 16.213-16.213 16.213-43.52-0.427-59.733zM298.667 256c23.467 0 42.667 19.2 42.667 42.667v426.667c0 23.467-19.2 42.667-42.667 42.667s-42.667-19.2-42.667-42.667v-426.667c0-23.467 19.2-42.667 42.667-42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-first_page-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":910,"id":123,"name":"round-first_page-24px","prevSize":32,"code":59866},"setIdx":1,"setId":1,"iconIdx":218},{"icon":{"paths":["M687.787 490.667c16.64-28.587-3.84-64-36.693-64h-79.787l97.28 97.28 19.2-33.28zM694.613 147.2c14.080-28.587-6.4-61.867-38.4-61.867h-314.88c-23.467 0-42.667 19.2-42.667 42.667v26.027l261.547 261.547 134.4-268.373zM786.773 762.88l-610.987-610.987c-16.64-16.64-43.52-16.64-60.16 0s-16.64 43.52 0 60.16l183.040 183.467v116.48c0 23.467 19.2 42.667 42.667 42.667h85.333v305.067c0 21.76 28.587 29.44 39.68 10.667l113.067-194.133 146.773 146.773c16.64 16.64 43.52 16.64 60.16 0 17.067-16.64 17.067-43.52 0.427-60.16z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-flash_off-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":911,"id":122,"name":"round-flash_off-24px","prevSize":32,"code":59867},"setIdx":1,"setId":1,"iconIdx":219},{"icon":{"paths":["M298.667 128v384c0 23.467 19.2 42.667 42.667 42.667h85.333v305.067c0 21.76 28.587 29.44 39.68 10.667l221.44-379.733c16.64-28.587-3.84-64-36.693-64h-96.427l106.24-283.733c10.667-27.733-9.813-57.6-39.68-57.6h-279.893c-23.467 0-42.667 19.2-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-flash_on-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":912,"id":121,"name":"round-flash_on-24px","prevSize":32,"code":59868},"setIdx":1,"setId":1,"iconIdx":220},{"icon":{"paths":["M853.333 256h-341.333l-60.16-60.16c-16.213-16.213-37.973-25.173-60.587-25.173h-220.587c-46.933 0-84.907 38.4-84.907 85.333l-0.427 512c0 46.933 38.4 85.333 85.333 85.333h682.667c46.933 0 85.333-38.4 85.333-85.333v-426.667c0-46.933-38.4-85.333-85.333-85.333zM810.667 768h-597.333c-23.467 0-42.667-19.2-42.667-42.667v-341.333c0-23.467 19.2-42.667 42.667-42.667h597.333c23.467 0 42.667 19.2 42.667 42.667v341.333c0 23.467-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-folder_open-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":913,"id":120,"name":"round-folder_open-24px","prevSize":32,"code":59869},"setIdx":1,"setId":1,"iconIdx":221},{"icon":{"paths":["M853.333 256h-341.333l-60.16-60.16c-16.213-16.213-37.973-25.173-60.587-25.173h-220.587c-46.933 0-84.907 38.4-84.907 85.333l-0.427 512c0 46.933 38.4 85.333 85.333 85.333h682.667c46.933 0 85.333-38.4 85.333-85.333v-426.667c0-46.933-38.4-85.333-85.333-85.333zM640 384c46.933 0 85.333 38.4 85.333 85.333s-38.4 85.333-85.333 85.333-85.333-38.4-85.333-85.333 38.4-85.333 85.333-85.333zM810.667 725.333h-341.333v-42.667c0-56.747 113.92-85.333 170.667-85.333s170.667 28.587 170.667 85.333v42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-folder_shared-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":914,"id":119,"name":"round-folder_shared-24px","prevSize":32,"code":59870},"setIdx":1,"setId":1,"iconIdx":222},{"icon":{"paths":["M853.333 256h-341.333l-60.16-60.16c-16.213-16.213-37.973-25.173-60.587-25.173h-220.587c-46.933 0-85.333 38.4-85.333 85.333v512c0 46.933 38.4 85.333 85.333 85.333h682.667c46.933 0 85.333-38.4 85.333-85.333v-426.667c0-46.933-38.4-85.333-85.333-85.333zM722.773 700.16l-82.773-48.213-82.773 48.213c-16.213 9.387-35.84-5.12-31.573-23.467l21.76-93.867-72.107-62.293c-14.080-12.373-6.827-35.84 11.947-37.547l95.147-8.107 37.547-87.893c7.253-17.067 32-17.067 39.253 0l37.547 87.893 95.147 8.107c18.773 1.707 26.453 25.173 11.947 37.547l-72.107 62.293 21.76 93.867c4.693 18.347-14.933 32.853-30.72 23.467z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-folder_special-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":915,"id":118,"name":"round-folder_special-24px","prevSize":32,"code":59871},"setIdx":1,"setId":1,"iconIdx":223},{"icon":{"paths":["M451.84 195.84c-16.213-16.213-37.973-25.173-60.587-25.173h-220.587c-46.933 0-84.907 38.4-84.907 85.333l-0.427 512c0 46.933 38.4 85.333 85.333 85.333h682.667c46.933 0 85.333-38.4 85.333-85.333v-426.667c0-46.933-38.4-85.333-85.333-85.333h-341.333l-60.16-60.16z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-folder-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":916,"id":117,"name":"round-folder-24px","prevSize":32,"code":59872},"setIdx":1,"setId":1,"iconIdx":224},{"icon":{"paths":["M768 597.333c0-131.84-153.6-336.213-223.147-421.12-17.067-20.907-49.067-20.907-66.133 0-19.627 24.32-46.080 58.027-73.813 96.853l360.107 360.107c1.707-11.947 2.987-23.893 2.987-35.84zM823.040 811.093l-561.92-561.92c-16.64-16.64-43.52-16.64-60.16 0s-16.64 43.52 0 60.16l111.36 111.36c-32.853 62.72-56.32 125.013-56.32 176.64 0 141.227 114.773 256 256 256 64.853 0 123.733-24.32 168.533-64l81.92 81.92c16.64 16.64 43.52 16.64 60.16 0 17.067-16.213 17.067-43.52 0.427-60.16z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-format_color_reset-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":917,"id":116,"name":"round-format_color_reset-24px","prevSize":32,"code":59873},"setIdx":1,"setId":1,"iconIdx":225},{"icon":{"paths":["M853.333 256h-42.667v341.333c0 23.467-19.2 42.667-42.667 42.667h-512v42.667c0 46.933 38.4 85.333 85.333 85.333h426.667l170.667 170.667v-597.333c0-46.933-38.4-85.333-85.333-85.333zM725.333 469.333v-298.667c0-46.933-38.4-85.333-85.333-85.333h-469.333c-46.933 0-85.333 38.4-85.333 85.333v554.667l170.667-170.667h384c46.933 0 85.333-38.4 85.333-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-forum-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":918,"id":115,"name":"round-forum-24px","prevSize":32,"code":59874},"setIdx":1,"setId":1,"iconIdx":226},{"icon":{"paths":["M805.12 554.667c-21.333 0-38.827 15.787-41.813 36.693-20.48 143.787-160.853 249.173-316.587 211.627-96-23.040-166.827-96.853-187.307-193.28-34.56-165.12 91.307-311.040 250.453-311.040v119.040c0 19.2 23.040 28.587 36.267 14.933l161.707-161.707c8.533-8.533 8.533-21.76 0-30.293l-161.707-161.707c-13.227-13.227-36.267-3.84-36.267 14.933v119.467c-210.773 0-377.173 191.147-334.507 409.6 25.6 132.693 123.733 234.667 255.573 264.107 206.080 46.080 390.4-93.867 416.853-284.587 3.84-25.173-17.067-47.787-42.667-47.787zM530.347 646.4c-2.133 2.987-4.693 5.547-7.68 7.253s-7.253 2.56-11.52 2.56c-7.253 0-13.227-2.133-17.92-6.4s-7.253-10.24-8.107-17.493h-35.84c0.427 8.533 2.133 15.787 5.547 22.613s8.107 11.947 13.653 16.64 12.373 8.107 19.627 10.24 14.933 3.413 22.613 3.413c10.24 0 19.627-1.707 27.307-5.12s14.080-7.68 19.2-13.227 8.96-11.947 11.52-19.2 3.84-14.933 3.84-23.040c0-9.387-1.28-18.347-3.84-25.6s-5.973-14.080-10.667-19.2-10.667-9.387-17.493-11.947-14.507-4.267-23.467-4.267c-2.987 0-5.973 0.427-8.533 0.853s-5.547 0.853-7.68 1.707-4.267 1.28-6.4 2.133-3.413 1.707-4.693 2.133l4.693-39.253h72.533v-30.293h-101.973l-10.667 92.587 28.587 7.253c1.28-1.28 2.56-2.56 4.267-3.84s2.987-2.133 5.12-2.987 4.267-1.707 6.4-2.133 5.547-0.853 8.533-0.853c5.12 0 9.387 0.853 12.8 2.133s6.827 3.84 8.96 6.4 4.267 5.973 5.547 10.24 1.707 8.107 1.707 13.227-0.427 9.387-1.28 13.227-2.56 7.253-4.693 10.24z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-forward_5-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":919,"id":114,"name":"round-forward_5-24px","prevSize":32,"code":59875},"setIdx":1,"setId":1,"iconIdx":227},{"icon":{"paths":["M807.253 554.667c-21.333 0-38.827 15.787-41.813 36.693-20.48 143.787-160.853 249.173-316.587 211.627-96-23.040-166.827-96.853-187.307-193.28-34.56-165.12 91.307-311.040 250.453-311.040v119.040c0 19.2 23.040 28.587 36.267 14.933l161.707-161.707c8.533-8.533 8.533-21.76 0-30.293l-161.707-161.707c-13.227-13.227-36.267-3.84-36.267 15.36v119.040c-210.773 0-377.173 191.147-334.507 409.6 25.6 132.693 123.733 234.667 255.573 264.107 206.080 46.080 390.4-93.867 416.853-284.587 3.84-25.173-17.067-47.787-42.667-47.787zM465.067 682.667v-182.187h-3.84l-75.52 26.88v29.44l43.093-13.227v139.093zM610.987 502.613c-7.68-2.987-15.787-4.267-25.173-4.267s-17.493 1.28-25.173 4.267-14.080 7.68-19.2 14.080-9.813 14.507-12.373 24.32-4.267 21.333-4.267 34.987v31.573c0 13.653 1.707 25.6 4.693 34.987s7.253 17.92 12.8 24.32 11.947 11.093 19.627 14.080 15.787 4.267 25.173 4.267 17.493-1.28 25.173-4.267 14.080-7.68 19.2-14.080 9.387-14.507 12.373-24.32 4.267-21.333 4.267-34.987v-31.573c0-13.653-1.707-25.6-4.693-34.987s-7.253-17.92-12.8-24.32-12.373-11.093-19.627-14.080zM611.413 612.267c0 8.107-0.427 14.933-1.707 20.48s-2.56 10.24-4.693 13.653-4.693 5.973-8.107 7.253-6.827 2.133-10.667 2.133-7.68-0.853-10.667-2.133-5.973-3.84-8.107-7.253-3.84-8.107-5.12-13.653-1.707-12.373-1.707-20.48v-41.387c0-8.107 0.427-14.933 1.707-20.48s2.56-9.813 5.12-13.227 4.693-5.973 8.107-7.253 6.827-2.133 10.667-2.133 7.68 0.853 10.667 2.133 5.973 3.84 8.107 7.253 3.84 7.68 5.12 13.227 1.707 12.373 1.707 20.48v41.387z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-forward_10-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":920,"id":113,"name":"round-forward_10-24px","prevSize":32,"code":59876},"setIdx":1,"setId":1,"iconIdx":228},{"icon":{"paths":["M807.253 554.667c-21.333 0-38.827 15.787-41.813 36.693-20.48 143.787-160.853 249.173-316.587 211.627-96-23.040-166.827-96.853-187.307-193.28-34.56-165.12 91.307-311.040 250.453-311.040v119.040c0 19.2 23.040 28.587 36.267 14.933l161.707-161.707c8.533-8.533 8.533-21.76 0-30.293l-161.707-161.707c-13.227-13.227-36.267-3.84-36.267 15.36v119.040c-210.773 0-377.173 191.147-334.507 409.6 25.6 132.693 123.733 234.667 255.573 264.107 206.080 46.080 390.4-93.867 416.853-284.587 3.84-25.173-17.067-47.787-42.667-47.787zM449.707 649.387c-2.56 2.133-5.12 3.84-8.533 5.12s-7.253 1.707-11.52 1.707c-3.84 0-7.253-0.427-10.667-1.707s-5.973-2.56-8.533-4.693-4.267-4.267-5.547-7.253-2.133-5.973-2.133-9.387h-36.267c0 8.96 1.707 16.64 5.12 23.467s8.107 11.947 14.080 16.213 12.373 7.68 19.627 9.813 14.933 2.987 22.613 2.987c8.96 0 17.493-1.28 25.6-3.413s14.507-5.973 20.48-10.24 10.24-10.24 13.653-16.64 5.12-14.080 5.12-22.613c0-9.813-2.56-18.773-7.68-26.027s-12.8-12.8-23.040-16.64c4.267-2.133 8.533-4.267 11.947-7.253s6.4-5.973 8.533-9.387 4.267-6.827 5.547-10.667 1.707-7.68 1.707-11.52c0-8.533-1.707-15.787-4.693-22.613s-7.253-11.947-12.8-16.213-11.947-7.68-19.627-9.813-15.787-3.413-25.173-3.413c-8.107 0-16.213 1.28-23.040 3.413s-13.653 5.547-18.773 9.813-9.813 9.387-12.8 15.787-4.693 12.8-4.693 20.48h36.267c0-2.987 0.853-5.973 2.133-8.533s2.987-4.693 5.12-6.4 4.693-2.987 7.68-4.267 5.973-1.28 9.387-1.28c4.267 0 7.68 0.427 10.667 1.707s5.547 2.56 7.68 4.693 3.413 4.693 4.693 7.253 1.707 5.973 1.707 9.387c0 7.68-2.133 13.653-6.827 18.347s-11.093 6.827-20.48 6.827h-18.347v28.16h19.2c4.693 0 8.533 0.427 12.373 1.707s6.827 2.56 9.387 4.693 4.693 5.12 5.973 8.533 2.133 7.68 2.133 12.373c0 3.84-0.427 7.253-1.707 10.24s-3.413 4.693-5.547 7.253zM616.107 502.613c-7.68-2.987-15.787-4.267-25.173-4.267s-17.493 1.28-25.173 4.267-14.080 7.68-19.2 14.080-9.813 14.507-12.373 24.32-4.267 21.333-4.267 34.987v31.573c0 13.653 1.707 25.6 4.693 34.987s7.253 17.92 12.8 24.32 11.947 11.093 19.627 14.080 15.787 4.267 25.173 4.267 17.493-1.28 25.173-4.267 14.080-7.68 19.2-14.080 9.387-14.507 12.373-24.32 4.267-21.333 4.267-34.987v-31.573c0-13.653-1.707-25.6-4.693-34.987s-7.253-17.92-12.8-24.32-11.947-11.093-19.627-14.080zM616.533 612.267c0 8.107-0.427 14.933-1.707 20.48s-2.56 10.24-4.693 13.653-4.693 5.973-8.107 7.253-6.827 2.133-10.667 2.133-7.68-0.853-10.667-2.133-5.973-3.84-8.107-7.253-3.84-8.107-5.12-13.653-1.707-12.373-1.707-20.48v-41.387c0-8.107 0.427-14.933 1.707-20.48s2.56-9.813 5.12-13.227 4.693-5.973 8.107-7.253 6.827-2.133 10.667-2.133 7.68 0.853 10.667 2.133 5.973 3.84 8.107 7.253 3.84 7.68 5.12 13.227 1.707 12.373 1.707 20.48v41.387z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-forward_30-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":921,"id":112,"name":"round-forward_30-24px","prevSize":32,"code":59877},"setIdx":1,"setId":1,"iconIdx":229},{"icon":{"paths":["M158.72 257.707c20.053 19.627 51.627 20.48 72.96 2.56 15.787-13.653 29.44-21.76 37.12-18.347 21.333 8.533 0 43.947-12.8 64.853-10.667 17.92-122.027 165.973-122.027 269.227 0 54.613 20.48 99.84 57.173 127.147 32 23.893 74.24 31.147 112.64 19.627 45.653-13.227 83.2-59.733 130.56-118.187 51.627-63.573 120.747-146.773 174.080-146.773 69.547 0 70.4 43.093 75.093 76.373-161.28 27.307-229.547 156.587-229.547 229.12s61.44 131.84 136.96 131.84c69.547 0 183.040-56.747 200.107-260.267h51.627c29.44 0 53.333-23.893 53.333-53.333s-23.893-53.333-53.333-53.333h-52.053c-6.4-70.4-46.507-179.2-171.947-179.2-96 0-178.347 81.493-210.773 121.173-24.747 31.147-87.893 105.813-97.707 116.053-10.667 12.8-29.013 35.84-47.36 35.84-19.2 0-30.72-35.413-15.36-81.92 14.933-46.507 59.733-122.027 78.933-150.187 33.28-48.64 55.467-81.92 55.467-139.947-0-92.587-69.973-122.027-107.093-122.027-46.507 0-87.040 26.88-115.2 52.053-22.613 20.48-22.613 56.32-0.853 77.653zM592.213 791.467c-13.227 0-31.573-11.093-31.573-30.72 0-25.6 31.147-93.867 122.453-117.76-12.8 114.773-61.013 148.48-90.88 148.48z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-gesture-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":922,"id":111,"name":"round-gesture-24px","prevSize":32,"code":59878},"setIdx":1,"setId":1,"iconIdx":230},{"icon":{"paths":["M512 736.853l220.587 133.12c16.213 9.813 36.267-4.693 32-23.040l-58.453-250.88 194.56-168.533c14.080-12.373 6.827-35.84-12.373-37.547l-256.427-21.76-100.267-236.373c-7.253-17.493-32-17.493-39.253 0l-100.267 236.373-256.427 21.76c-18.773 1.707-26.453 25.173-11.947 37.547l194.56 168.533-58.453 250.88c-4.267 18.347 15.787 32.853 32 23.040l220.16-133.12z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-grade-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":923,"id":110,"name":"round-grade-24px","prevSize":32,"code":59879},"setIdx":1,"setId":1,"iconIdx":231},{"icon":{"paths":["M426.667 512c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM256 341.333c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM256 682.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM768 341.333c46.933 0 85.333-38.4 85.333-85.333s-38.4-85.333-85.333-85.333-85.333 38.4-85.333 85.333 38.4 85.333 85.333 85.333zM597.333 682.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM768 512c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM597.333 341.333c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM426.667 170.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-grain-24px (1)"],"colorPermutations":{}},"attrs":[],"properties":{"order":924,"id":109,"name":"round-grain-24px-1","prevSize":32,"code":59880},"setIdx":1,"setId":1,"iconIdx":232},{"icon":{"paths":["M426.667 512c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM256 341.333c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM256 682.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM768 341.333c46.933 0 85.333-38.4 85.333-85.333s-38.4-85.333-85.333-85.333-85.333 38.4-85.333 85.333 38.4 85.333 85.333 85.333zM597.333 682.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM768 512c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM597.333 341.333c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM426.667 170.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-grain-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":925,"id":108,"name":"round-grain-24px","prevSize":32,"code":59881},"setIdx":1,"setId":1,"iconIdx":233},{"icon":{"paths":["M341.333 170.667v37.973l85.333 85.333v-123.307h170.667v170.667h-123.307l85.333 85.333h37.973v37.973l85.333 85.333v-123.307h170.667v170.667h-123.307l85.333 85.333h37.973v37.973l85.333 85.333v-635.307c0-46.933-38.4-85.333-85.333-85.333h-635.307l85.333 85.333h37.973zM682.667 170.667h128c23.467 0 42.667 19.2 42.667 42.667v128h-170.667v-170.667zM945.493 933.547l-855.040-855.040c-16.64-16.64-43.52-16.64-60.16 0s-16.64 43.52 0 60.16l55.040 55.467v659.2c0 46.933 38.4 85.333 85.333 85.333h659.2l55.467 55.467c16.64 16.64 43.52 16.64 60.16 0s16.64-43.947 0-60.587zM426.667 535.467l61.867 61.867h-61.867v-61.867zM170.667 279.467l61.867 61.867h-61.867v-61.867zM341.333 853.333h-128c-23.467 0-42.667-19.2-42.667-42.667v-128h170.667v170.667zM341.333 597.333h-170.667v-170.667h147.2l23.467 23.467v147.2zM597.333 853.333h-170.667v-170.667h147.2l23.467 23.467v147.2zM682.667 853.333v-61.867l61.867 61.867h-61.867z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-grid_off-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":926,"id":107,"name":"round-grid_off-24px","prevSize":32,"code":59882},"setIdx":1,"setId":1,"iconIdx":234},{"icon":{"paths":["M853.333 85.333h-682.667c-46.933 0-85.333 38.4-85.333 85.333v682.667c0 46.933 38.4 85.333 85.333 85.333h682.667c46.933 0 85.333-38.4 85.333-85.333v-682.667c0-46.933-38.4-85.333-85.333-85.333zM341.333 853.333h-128c-23.467 0-42.667-19.2-42.667-42.667v-128h170.667v170.667zM341.333 597.333h-170.667v-170.667h170.667v170.667zM341.333 341.333h-170.667v-128c0-23.467 19.2-42.667 42.667-42.667h128v170.667zM597.333 853.333h-170.667v-170.667h170.667v170.667zM597.333 597.333h-170.667v-170.667h170.667v170.667zM597.333 341.333h-170.667v-170.667h170.667v170.667zM810.667 853.333h-128v-170.667h170.667v128c0 23.467-19.2 42.667-42.667 42.667zM853.333 597.333h-170.667v-170.667h170.667v170.667zM853.333 341.333h-170.667v-170.667h128c23.467 0 42.667 19.2 42.667 42.667v128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-grid_on-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":927,"id":106,"name":"round-grid_on-24px","prevSize":32,"code":59883},"setIdx":1,"setId":1,"iconIdx":235},{"icon":{"paths":["M298.667 426.667h-85.333v-85.333c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v85.333h-85.333c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h85.333v85.333c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-85.333h85.333c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667zM768 469.333c70.827 0 127.573-57.173 127.573-128s-56.747-128-127.573-128c-13.653 0-26.88 2.133-38.827 5.973 24.32 34.56 38.4 76.373 38.4 122.027s-14.507 87.040-38.4 122.027c11.947 3.84 25.173 5.973 38.827 5.973zM554.667 469.333c70.827 0 127.573-57.173 127.573-128s-56.747-128-127.573-128-128 57.173-128 128 57.173 128 128 128zM554.667 554.667c-85.333 0-256 42.667-256 128v42.667c0 23.467 19.2 42.667 42.667 42.667h426.667c23.467 0 42.667-19.2 42.667-42.667v-42.667c0-85.333-170.667-128-256-128zM837.12 561.493c35.413 31.147 58.88 70.827 58.88 121.173v64c0 7.253-0.853 14.507-2.133 21.333h108.8c11.947 0 21.333-9.387 21.333-21.333v-64c0-65.707-101.12-106.24-186.88-121.173z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-group_add-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":928,"id":105,"name":"round-group_add-24px","prevSize":32,"code":59884},"setIdx":1,"setId":1,"iconIdx":236},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM554.667 810.667h-85.333v-85.333h85.333v85.333zM642.987 480l-38.4 39.253c-21.333 21.76-36.693 41.387-44.373 72.107-3.413 13.653-5.547 29.013-5.547 48.64h-85.333v-21.333c0-19.627 3.413-38.4 9.387-55.893 8.533-24.747 22.613-46.933 40.533-64.853l52.907-53.76c19.627-18.773 29.013-46.933 23.467-76.8-5.547-30.72-29.44-56.747-59.307-65.28-47.36-13.227-91.307 13.653-105.387 54.187-5.12 15.787-18.347 27.733-34.987 27.733h-12.8c-24.747 0-41.813-23.893-34.987-47.787 18.347-62.72 71.68-110.507 137.813-120.747 64.853-10.24 126.72 23.467 165.12 76.8 50.347 69.547 35.413 144.213-8.107 187.733z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-help-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":929,"id":104,"name":"round-help-24px","prevSize":32,"code":59885},"setIdx":1,"setId":1,"iconIdx":237},{"icon":{"paths":["M592.64 371.2l-80.64 80.64-80.64-80.64c-16.64-16.64-43.52-16.64-60.16 0s-16.64 43.52 0 60.16l80.64 80.64-80.64 80.64c-16.64 16.64-16.64 43.52 0 60.16s43.52 16.64 60.16 0l80.64-80.64 80.64 80.64c16.64 16.64 43.52 16.64 60.16 0s16.64-43.52 0-60.16l-80.64-80.64 80.64-80.64c16.64-16.64 16.64-43.52 0-60.16-16.64-16.213-43.947-16.213-60.16 0zM512 85.333c-235.947 0-426.667 190.72-426.667 426.667s190.72 426.667 426.667 426.667 426.667-190.72 426.667-426.667-190.72-426.667-426.667-426.667zM512 853.333c-188.16 0-341.333-153.173-341.333-341.333s153.173-341.333 341.333-341.333 341.333 153.173 341.333 341.333-153.173 341.333-341.333 341.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-highlight_off-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":930,"id":103,"name":"round-highlight_off-24px","prevSize":32,"code":59886},"setIdx":1,"setId":1,"iconIdx":238},{"icon":{"paths":["M426.667 810.667v-213.333h170.667v213.333c0 23.467 19.2 42.667 42.667 42.667h128c23.467 0 42.667-19.2 42.667-42.667v-298.667h72.533c19.627 0 29.013-24.32 14.080-37.12l-356.693-321.28c-16.213-14.507-40.96-14.507-57.173 0l-356.693 321.28c-14.507 12.8-5.547 37.12 14.080 37.12h72.533v298.667c0 23.467 19.2 42.667 42.667 42.667h128c23.467 0 42.667-19.2 42.667-42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-home-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":931,"id":102,"name":"round-home-24px","prevSize":32,"code":59887},"setIdx":1,"setId":1,"iconIdx":239},{"icon":{"paths":["M341.333 85.333c-46.933 0-85.333 38.4-85.333 85.333v135.253c0 22.613 8.96 44.373 25.173 60.587l145.493 145.493-145.92 145.92c-15.787 16.213-24.747 37.973-24.747 60.587v134.827c0 46.933 38.4 85.333 85.333 85.333h341.333c46.933 0 85.333-38.4 85.333-85.333v-134.827c0-22.613-8.96-44.373-24.747-60.16l-145.92-146.347 145.493-145.067c16.213-16.213 25.173-37.973 25.173-60.587v-135.68c0-46.933-38.4-85.333-85.333-85.333h-341.333zM682.667 704v106.667c0 23.467-19.2 42.667-42.667 42.667h-256c-23.467 0-42.667-19.2-42.667-42.667v-106.667l170.667-170.667 170.667 170.667zM512 490.667l-170.667-170.667v-106.667c0-23.467 19.2-42.667 42.667-42.667h256c23.467 0 42.667 19.2 42.667 42.667v106.667l-170.667 170.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-hourglass_empty-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":932,"id":101,"name":"round-hourglass_empty-24px","prevSize":32,"code":59888},"setIdx":1,"setId":1,"iconIdx":240},{"icon":{"paths":["M256 170.667v135.253c0 22.613 8.96 44.373 25.173 60.587l145.493 145.493-145.92 145.92c-15.787 16.213-24.747 37.973-24.747 60.587v134.827c0 46.933 38.4 85.333 85.333 85.333h341.333c46.933 0 85.333-38.4 85.333-85.333v-134.827c0-22.613-8.96-44.373-24.747-60.16l-145.92-146.347 145.493-145.067c16.213-16.213 25.173-37.973 25.173-60.587v-135.68c0-46.933-38.4-85.333-85.333-85.333h-341.333c-46.933 0-85.333 38.4-85.333 85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-hourglass_full-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":933,"id":100,"name":"round-hourglass_full-24px","prevSize":32,"code":59889},"setIdx":1,"setId":1,"iconIdx":241},{"icon":{"paths":["M768 640v170.667c0 23.467-19.2 42.667-42.667 42.667h-512c-23.467 0-42.667-19.2-42.667-42.667v-512c0-23.467 19.2-42.667 42.667-42.667h128.853c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-171.52c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-213.333c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667zM661.333 768h-383.147c-17.92 0-27.733-20.48-16.64-34.56l74.24-95.147c8.533-10.667 24.747-11.093 33.28-0.427l66.56 80.213 100.267-128.853c8.533-11.093 25.6-11.093 33.707 0.427l108.8 144.64c10.667 13.653 0.427 33.707-17.067 33.707zM823.467 379.307c20.48-32.853 32-71.253 29.44-113.493-5.547-91.733-78.507-169.387-169.387-179.2-116.053-12.8-214.187 77.227-214.187 190.72 0 106.24 85.76 192 191.573 192 37.547 0 72.533-11.093 101.973-29.867l102.827 102.827c16.64 16.64 43.947 16.64 60.587 0s16.64-43.947 0-60.587l-102.827-102.4zM661.333 384c-58.88 0-106.667-47.787-106.667-106.667s47.787-106.667 106.667-106.667 106.667 47.787 106.667 106.667-47.787 106.667-106.667 106.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-image_search-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":934,"id":99,"name":"round-image_search-24px","prevSize":32,"code":59890},"setIdx":1,"setId":1,"iconIdx":242},{"icon":{"paths":["M810.667 128h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM682.667 554.667h-341.333c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667h341.333c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-indeterminate_check_box-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":935,"id":98,"name":"round-indeterminate_check_box-24px","prevSize":32,"code":59891},"setIdx":1,"setId":1,"iconIdx":243},{"icon":{"paths":["M341.333 725.333c-23.467 0-42.667-19.2-42.667-42.667v-213.333c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667v213.333c0 23.467-19.2 42.667-42.667 42.667zM512 725.333c-23.467 0-42.667-19.2-42.667-42.667v-341.333c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667v341.333c0 23.467-19.2 42.667-42.667 42.667zM682.667 725.333c-23.467 0-42.667-19.2-42.667-42.667v-85.333c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667v85.333c0 23.467-19.2 42.667-42.667 42.667zM768 810.667h-512c-23.467 0-42.667-19.2-42.667-42.667v-512c0-23.467 19.2-42.667 42.667-42.667h512c23.467 0 42.667 19.2 42.667 42.667v512c0 23.467-19.2 42.667-42.667 42.667zM810.667 128h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-insert_chart_outlined-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":936,"id":97,"name":"round-insert_chart_outlined-24px","prevSize":32,"code":59892},"setIdx":1,"setId":1,"iconIdx":244},{"icon":{"paths":["M810.667 128h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM341.333 725.333c-23.467 0-42.667-19.2-42.667-42.667v-213.333c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667v213.333c0 23.467-19.2 42.667-42.667 42.667zM512 725.333c-23.467 0-42.667-19.2-42.667-42.667v-341.333c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667v341.333c0 23.467-19.2 42.667-42.667 42.667zM682.667 725.333c-23.467 0-42.667-19.2-42.667-42.667v-85.333c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667v85.333c0 23.467-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-insert_chart-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":937,"id":96,"name":"round-insert_chart-24px","prevSize":32,"code":59893},"setIdx":1,"setId":1,"iconIdx":245},{"icon":{"paths":["M896 810.667v-597.333c0-46.933-38.4-85.333-85.333-85.333h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333zM379.733 596.48l89.6 107.947 132.267-170.24c8.533-11.093 25.6-11.093 34.133 0.427l149.76 199.68c10.667 14.080 0.427 34.133-17.067 34.133h-511.573c-17.92 0-27.733-20.48-16.64-34.56l106.24-136.533c8.107-11.093 24.32-11.52 33.28-0.853z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-insert_photo-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":938,"id":95,"name":"round-insert_photo-24px","prevSize":32,"code":59894},"setIdx":1,"setId":1,"iconIdx":246},{"icon":{"paths":["M270.507 338.347c-133.12 133.12-133.12 349.44 0 482.56 66.56 66.56 154.027 99.84 241.493 99.84s174.933-33.28 241.493-99.84c133.12-133.12 133.12-349.44 0-482.56l-211.2-211.2c-16.64-16.64-43.52-16.64-60.16 0l-211.627 211.2zM512 835.84c-68.267 0-132.693-26.453-180.907-75.093-48.64-48.64-75.093-112.64-75.093-180.907s26.453-132.693 75.093-180.907l180.907-181.333v618.24z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-invert_colors-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":939,"id":94,"name":"round-invert_colors-24px","prevSize":32,"code":59895},"setIdx":1,"setId":1,"iconIdx":247},{"icon":{"paths":["M512 358.827l165.973 165.973c16.64 16.64 43.52 16.64 60.16 0s16.64-43.52 0-60.16l-195.84-195.84c-16.64-16.64-43.52-16.64-60.16 0l-196.267 195.84c-16.64 16.64-16.64 43.52 0 60.16s43.52 16.64 60.16 0l165.973-165.973zM298.667 768h426.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-426.667c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-keyboard_capslock-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":940,"id":93,"name":"round-keyboard_capslock-24px","prevSize":32,"code":59896},"setIdx":1,"setId":1,"iconIdx":248},{"icon":{"paths":["M511.573 85.333c-235.52 0-426.24 191.147-426.24 426.667s190.72 426.667 426.24 426.667c235.947 0 427.093-191.147 427.093-426.667s-191.147-426.667-427.093-426.667zM807.253 341.333h-125.867c-13.653-53.333-33.28-104.533-58.88-151.893 78.507 26.88 143.787 81.493 184.747 151.893zM512 172.373c35.413 51.2 63.147 107.947 81.493 168.96h-162.987c18.347-61.013 46.080-117.76 81.493-168.96zM181.76 597.333c-6.827-27.307-11.093-55.893-11.093-85.333s4.267-58.027 11.093-85.333h144.213c-3.413 28.16-5.973 56.32-5.973 85.333s2.56 57.173 5.973 85.333h-144.213zM216.747 682.667h125.867c13.653 53.333 33.28 104.533 58.88 151.893-78.507-26.88-143.787-81.067-184.747-151.893zM342.613 341.333h-125.867c40.96-70.827 106.24-125.013 184.747-151.893-25.6 47.36-45.227 98.56-58.88 151.893zM512 851.627c-35.413-51.2-63.147-107.947-81.493-168.96h162.987c-18.347 61.013-46.080 117.76-81.493 168.96zM611.84 597.333h-199.68c-3.84-28.16-6.827-56.32-6.827-85.333s2.987-57.6 6.827-85.333h199.68c3.84 27.733 6.827 56.32 6.827 85.333s-2.987 57.173-6.827 85.333zM622.507 834.56c25.6-47.36 45.227-98.56 58.88-151.893h125.867c-40.96 70.4-106.24 125.013-184.747 151.893zM698.027 597.333c3.413-28.16 5.973-56.32 5.973-85.333s-2.56-57.173-5.973-85.333h144.213c6.827 27.307 11.093 55.893 11.093 85.333s-4.267 58.027-11.093 85.333h-144.213z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-language-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":941,"id":92,"name":"round-language-24px","prevSize":32,"code":59897},"setIdx":1,"setId":1,"iconIdx":249},{"icon":{"paths":["M268.373 346.027l165.973 165.973-165.973 165.973c-16.64 16.64-16.64 43.52 0 60.16s43.52 16.64 60.16 0l195.84-195.84c16.64-16.64 16.64-43.52 0-60.16l-195.84-196.267c-16.64-16.64-43.52-16.64-60.16 0-16.213 16.64-16.213 43.947 0 60.16zM725.333 256c23.467 0 42.667 19.2 42.667 42.667v426.667c0 23.467-19.2 42.667-42.667 42.667s-42.667-19.2-42.667-42.667v-426.667c0-23.467 19.2-42.667 42.667-42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-last_page-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":942,"id":91,"name":"round-last_page-24px","prevSize":32,"code":59898},"setIdx":1,"setId":1,"iconIdx":250},{"icon":{"paths":["M170.667 682.667h128c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-128c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667zM448 682.667h128c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-128c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667zM725.333 682.667h128c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-128c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667zM170.667 853.333c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM341.333 853.333c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM512 853.333c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM682.667 853.333c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM853.333 853.333c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM170.667 512h256c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-256c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667zM597.333 512h256c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-256c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667zM128 213.333v85.333c0 23.467 19.2 42.667 42.667 42.667h682.667c23.467 0 42.667-19.2 42.667-42.667v-85.333c0-23.467-19.2-42.667-42.667-42.667h-682.667c-23.467 0-42.667 19.2-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-line_style-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":943,"id":90,"name":"round-line_style-24px","prevSize":32,"code":59899},"setIdx":1,"setId":1,"iconIdx":251},{"icon":{"paths":["M832 405.333c-43.947 0-81.067 26.453-97.707 64h-124.587c-16.64-37.547-53.76-64-97.707-64s-81.067 26.453-97.707 64h-124.587c-16.64-37.547-53.76-64-97.707-64-58.88 0-106.667 47.787-106.667 106.667s47.787 106.667 106.667 106.667c43.947 0 81.067-26.453 97.707-64h124.587c16.64 37.547 53.76 64 97.707 64s81.067-26.453 97.707-64h124.587c16.64 37.547 53.76 64 97.707 64 58.88 0 106.667-47.787 106.667-106.667s-47.787-106.667-106.667-106.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-linear_scale-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":944,"id":89,"name":"round-linear_scale-24px","prevSize":32,"code":59900},"setIdx":1,"setId":1,"iconIdx":252},{"icon":{"paths":["M936.107 479.147c-15.787-105.387-111.787-180.48-218.453-180.48h-122.453c-22.187 0-40.533 18.347-40.533 40.533s18.347 40.533 40.533 40.533h123.733c68.267 0 129.707 48.64 137.387 116.48 7.253 61.013-27.307 114.773-78.933 137.387l59.733 59.733c69.547-43.52 112.64-124.16 98.987-214.187zM175.787 151.893c-16.64-16.64-43.52-16.64-60.16 0s-16.64 43.52 0 60.16l102.4 102.4c-82.773 34.133-139.52 118.187-131.84 215.040 8.96 112.64 109.653 195.84 222.293 195.84h120.32c22.187 0 40.533-18.347 40.533-40.533s-18.347-40.533-40.533-40.533h-123.307c-69.547 0-132.267-50.773-138.667-120.32-6.4-73.387 47.36-135.253 117.333-142.933l89.6 89.6c-18.347 3.84-32.427 19.627-32.427 39.253v4.267c0 22.187 18.347 40.533 40.533 40.533h75.947l96.853 96.853v73.813h73.813l140.8 140.8c16.64 16.64 43.52 16.64 60.16 0s16.64-43.52 0-60.16l-653.653-654.080zM682.667 509.867c0-22.187-18.347-40.533-40.533-40.533h-28.16l63.573 63.573c2.987-5.547 5.12-11.947 5.12-18.773v-4.267z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-link_off-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":945,"id":88,"name":"round-link_off-24px","prevSize":32,"code":59901},"setIdx":1,"setId":1,"iconIdx":253},{"icon":{"paths":["M725.333 298.667h-128c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h128c70.4 0 128 57.6 128 128s-57.6 128-128 128h-128c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h128c117.76 0 213.333-95.573 213.333-213.333s-95.573-213.333-213.333-213.333zM341.333 512c0 23.467 19.2 42.667 42.667 42.667h256c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-256c-23.467 0-42.667 19.2-42.667 42.667zM426.667 640h-128c-70.4 0-128-57.6-128-128s57.6-128 128-128h128c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-128c-117.76 0-213.333 95.573-213.333 213.333s95.573 213.333 213.333 213.333h128c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-link-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":946,"id":87,"name":"round-link-24px","prevSize":32,"code":59902},"setIdx":1,"setId":1,"iconIdx":254},{"icon":{"paths":["M170.667 554.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM170.667 725.333c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM170.667 384c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM341.333 554.667h512c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-512c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667zM341.333 725.333h512c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-512c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667zM298.667 341.333c0 23.467 19.2 42.667 42.667 42.667h512c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-512c-23.467 0-42.667 19.2-42.667 42.667zM170.667 554.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM170.667 725.333c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM170.667 384c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667zM341.333 554.667h512c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-512c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667zM341.333 725.333h512c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-512c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667zM298.667 341.333c0 23.467 19.2 42.667 42.667 42.667h512c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-512c-23.467 0-42.667 19.2-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-list-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":947,"id":86,"name":"round-list-24px","prevSize":32,"code":59903},"setIdx":1,"setId":1,"iconIdx":255},{"icon":{"paths":["M768 170.667v42.667h-85.333v-42.667c0-23.467-19.2-42.667-42.667-42.667h-256c-23.467 0-42.667 19.2-42.667 42.667v42.667h-85.333v-42.667c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v682.667c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-42.667h85.333v42.667c0 23.467 19.2 42.667 42.667 42.667h256c23.467 0 42.667-19.2 42.667-42.667v-42.667h85.333v42.667c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-682.667c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667zM341.333 725.333h-85.333v-85.333h85.333v85.333zM341.333 554.667h-85.333v-85.333h85.333v85.333zM341.333 384h-85.333v-85.333h85.333v85.333zM768 725.333h-85.333v-85.333h85.333v85.333zM768 554.667h-85.333v-85.333h85.333v85.333zM768 384h-85.333v-85.333h85.333v85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-local_movies-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":948,"id":85,"name":"round-local_movies-24px","prevSize":32,"code":59904},"setIdx":1,"setId":1,"iconIdx":256},{"icon":{"paths":["M115.627 151.893c-16.64 16.64-16.64 43.52 0 60.16l105.387 105.387c-4.693 21.76-7.68 43.947-7.68 66.56 0 177.92 188.587 423.253 265.813 516.693 17.067 20.48 48.213 20.48 65.28 0 27.733-33.28 69.12-85.76 111.36-147.627l113.067 113.067c16.64 16.64 43.52 16.64 60.16 0s16.64-43.52 0-60.16l-653.227-654.080c-16.64-16.64-43.52-16.64-60.16 0zM512 85.333c-78.507 0-149.333 30.293-202.667 79.36l136.107 136.107c18.347-14.507 41.387-23.467 66.56-23.467 58.88 0 106.667 47.787 106.667 106.667 0 25.173-8.96 48.213-23.893 66.56l151.467 151.467c37.547-74.667 64.427-151.040 64.427-218.027 0-165.12-133.547-298.667-298.667-298.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-location_off-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":949,"id":84,"name":"round-location_off-24px","prevSize":32,"code":59905},"setIdx":1,"setId":1,"iconIdx":257},{"icon":{"paths":["M512 85.333c-165.12 0-298.667 133.547-298.667 298.667 0 177.92 188.587 423.253 266.24 516.693 17.067 20.48 48.213 20.48 65.28 0 77.227-93.44 265.813-338.773 265.813-516.693 0-165.12-133.547-298.667-298.667-298.667zM512 490.667c-58.88 0-106.667-47.787-106.667-106.667s47.787-106.667 106.667-106.667 106.667 47.787 106.667 106.667-47.787 106.667-106.667 106.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-location_on-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":950,"id":83,"name":"round-location_on-24px","prevSize":32,"code":59906},"setIdx":1,"setId":1,"iconIdx":258},{"icon":{"paths":["M893.44 469.333c-19.627-177.92-160.853-319.147-338.773-338.773v-45.227c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v45.227c-177.92 19.627-319.147 160.853-338.773 338.773h-45.227c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h45.227c19.627 177.92 160.853 319.147 338.773 338.773v45.227c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-45.227c177.92-19.627 319.147-160.853 338.773-338.773h45.227c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-45.227zM512 810.667c-165.12 0-298.667-133.547-298.667-298.667s133.547-298.667 298.667-298.667 298.667 133.547 298.667 298.667-133.547 298.667-298.667 298.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-location_searching-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":951,"id":82,"name":"round-location_searching-24px","prevSize":32,"code":59907},"setIdx":1,"setId":1,"iconIdx":259},{"icon":{"paths":["M85.333 213.333c-23.467 0-42.667 19.2-42.667 42.667v640c0 46.933 38.4 85.333 85.333 85.333h640c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-597.333c-23.467 0-42.667-19.2-42.667-42.667v-597.333c0-23.467-19.2-42.667-42.667-42.667zM640 640c23.467 0 42.667-19.2 42.667-42.667v-341.333c0-23.467-19.2-42.667-42.667-42.667h-85.333c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h42.667v298.667c0 23.467 19.2 42.667 42.667 42.667zM896 42.667h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM853.333 725.333h-512c-23.467 0-42.667-19.2-42.667-42.667v-512c0-23.467 19.2-42.667 42.667-42.667h512c23.467 0 42.667 19.2 42.667 42.667v512c0 23.467-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-filter_1-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":952,"id":242,"name":"round-filter_1-24px","prevSize":32,"code":59908},"setIdx":1,"setId":1,"iconIdx":260},{"icon":{"paths":["M85.333 213.333c-23.467 0-42.667 19.2-42.667 42.667v640c0 46.933 38.4 85.333 85.333 85.333h640c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-597.333c-23.467 0-42.667-19.2-42.667-42.667v-597.333c0-23.467-19.2-42.667-42.667-42.667zM896 42.667h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM853.333 725.333h-512c-23.467 0-42.667-19.2-42.667-42.667v-512c0-23.467 19.2-42.667 42.667-42.667h512c23.467 0 42.667 19.2 42.667 42.667v512c0 23.467-19.2 42.667-42.667 42.667zM682.667 554.667h-128v-85.333h85.333c46.933 0 85.333-38.4 85.333-85.333v-85.333c0-46.933-38.4-85.333-85.333-85.333h-128c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h128v85.333h-85.333c-46.933 0-85.333 38.4-85.333 85.333v128c0 23.467 19.2 42.667 42.667 42.667h170.667c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-filter_2-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":953,"id":241,"name":"round-filter_2-24px","prevSize":32,"code":59909},"setIdx":1,"setId":1,"iconIdx":261},{"icon":{"paths":["M896 42.667h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM853.333 725.333h-512c-23.467 0-42.667-19.2-42.667-42.667v-512c0-23.467 19.2-42.667 42.667-42.667h512c23.467 0 42.667 19.2 42.667 42.667v512c0 23.467-19.2 42.667-42.667 42.667zM85.333 213.333c-23.467 0-42.667 19.2-42.667 42.667v640c0 46.933 38.4 85.333 85.333 85.333h640c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-597.333c-23.467 0-42.667-19.2-42.667-42.667v-597.333c0-23.467-19.2-42.667-42.667-42.667zM725.333 554.667v-64c0-35.413-28.587-64-64-64 35.413 0 64-28.587 64-64v-64c0-46.933-38.4-85.333-85.333-85.333h-128c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h128v85.333h-42.667c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h42.667v85.333h-128c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h128c46.933 0 85.333-38.4 85.333-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-filter_3-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":954,"id":240,"name":"round-filter_3-24px","prevSize":32,"code":59910},"setIdx":1,"setId":1,"iconIdx":262},{"icon":{"paths":["M85.333 213.333c-23.467 0-42.667 19.2-42.667 42.667v640c0 46.933 38.4 85.333 85.333 85.333h640c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-597.333c-23.467 0-42.667-19.2-42.667-42.667v-597.333c0-23.467-19.2-42.667-42.667-42.667zM682.667 640c23.467 0 42.667-19.2 42.667-42.667v-341.333c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v128h-85.333v-128c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v170.667c0 23.467 19.2 42.667 42.667 42.667h128v128c0 23.467 19.2 42.667 42.667 42.667zM896 42.667h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM853.333 725.333h-512c-23.467 0-42.667-19.2-42.667-42.667v-512c0-23.467 19.2-42.667 42.667-42.667h512c23.467 0 42.667 19.2 42.667 42.667v512c0 23.467-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-filter_4-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":955,"id":239,"name":"round-filter_4-24px","prevSize":32,"code":59911},"setIdx":1,"setId":1,"iconIdx":263},{"icon":{"paths":["M896 42.667h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM853.333 725.333h-512c-23.467 0-42.667-19.2-42.667-42.667v-512c0-23.467 19.2-42.667 42.667-42.667h512c23.467 0 42.667 19.2 42.667 42.667v512c0 23.467-19.2 42.667-42.667 42.667zM85.333 213.333c-23.467 0-42.667 19.2-42.667 42.667v640c0 46.933 38.4 85.333 85.333 85.333h640c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-597.333c-23.467 0-42.667-19.2-42.667-42.667v-597.333c0-23.467-19.2-42.667-42.667-42.667zM725.333 554.667v-85.333c0-46.933-38.4-85.333-85.333-85.333h-85.333v-85.333h128c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-170.667c-23.467 0-42.667 19.2-42.667 42.667v170.667c0 23.467 19.2 42.667 42.667 42.667h128v85.333h-128c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h128c46.933 0 85.333-38.4 85.333-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-filter_5-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":956,"id":238,"name":"round-filter_5-24px","prevSize":32,"code":59912},"setIdx":1,"setId":1,"iconIdx":264},{"icon":{"paths":["M85.333 213.333c-23.467 0-42.667 19.2-42.667 42.667v640c0 46.933 38.4 85.333 85.333 85.333h640c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-597.333c-23.467 0-42.667-19.2-42.667-42.667v-597.333c0-23.467-19.2-42.667-42.667-42.667zM896 42.667h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM853.333 725.333h-512c-23.467 0-42.667-19.2-42.667-42.667v-512c0-23.467 19.2-42.667 42.667-42.667h512c23.467 0 42.667 19.2 42.667 42.667v512c0 23.467-19.2 42.667-42.667 42.667zM554.667 640h85.333c46.933 0 85.333-38.4 85.333-85.333v-85.333c0-46.933-38.4-85.333-85.333-85.333h-85.333v-85.333h128c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-128c-46.933 0-85.333 38.4-85.333 85.333v256c0 46.933 38.4 85.333 85.333 85.333zM554.667 469.333h85.333v85.333h-85.333v-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-filter_6-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":957,"id":237,"name":"round-filter_6-24px","prevSize":32,"code":59913},"setIdx":1,"setId":1,"iconIdx":265},{"icon":{"paths":["M85.333 213.333c-23.467 0-42.667 19.2-42.667 42.667v640c0 46.933 38.4 85.333 85.333 85.333h640c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-597.333c-23.467 0-42.667-19.2-42.667-42.667v-597.333c0-23.467-19.2-42.667-42.667-42.667zM896 42.667h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM853.333 725.333h-512c-23.467 0-42.667-19.2-42.667-42.667v-512c0-23.467 19.2-42.667 42.667-42.667h512c23.467 0 42.667 19.2 42.667 42.667v512c0 23.467-19.2 42.667-42.667 42.667zM565.333 619.093l152.747-305.92c4.693-9.387 7.253-20.053 7.253-30.72 0-38.4-30.72-69.12-69.12-69.12h-144.213c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h128l-143.36 286.293c-12.8 25.173 5.547 55.040 34.133 55.040h0.427c14.507 0 27.733-8.107 34.133-20.907z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-filter_7-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":958,"id":236,"name":"round-filter_7-24px","prevSize":32,"code":59914},"setIdx":1,"setId":1,"iconIdx":266},{"icon":{"paths":["M85.333 213.333c-23.467 0-42.667 19.2-42.667 42.667v640c0 46.933 38.4 85.333 85.333 85.333h640c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-597.333c-23.467 0-42.667-19.2-42.667-42.667v-597.333c0-23.467-19.2-42.667-42.667-42.667zM896 42.667h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM853.333 725.333h-512c-23.467 0-42.667-19.2-42.667-42.667v-512c0-23.467 19.2-42.667 42.667-42.667h512c23.467 0 42.667 19.2 42.667 42.667v512c0 23.467-19.2 42.667-42.667 42.667zM554.667 640h85.333c46.933 0 85.333-37.973 85.333-85.333v-64c0-35.413-28.587-64-64-64 35.413 0 64-28.587 64-64v-64c0-47.36-38.4-85.333-85.333-85.333h-85.333c-46.933 0-85.333 37.973-85.333 85.333v64c0 35.413 28.587 64 64 64-35.413 0-64 28.587-64 64v64c0 47.36 38.4 85.333 85.333 85.333zM554.667 298.667h85.333v85.333h-85.333v-85.333zM554.667 469.333h85.333v85.333h-85.333v-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-filter_8-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":959,"id":235,"name":"round-filter_8-24px","prevSize":32,"code":59915},"setIdx":1,"setId":1,"iconIdx":267},{"icon":{"paths":["M85.333 213.333c-23.467 0-42.667 19.2-42.667 42.667v640c0 46.933 38.4 85.333 85.333 85.333h640c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-597.333c-23.467 0-42.667-19.2-42.667-42.667v-597.333c0-23.467-19.2-42.667-42.667-42.667zM896 42.667h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM853.333 725.333h-512c-23.467 0-42.667-19.2-42.667-42.667v-512c0-23.467 19.2-42.667 42.667-42.667h512c23.467 0 42.667 19.2 42.667 42.667v512c0 23.467-19.2 42.667-42.667 42.667zM640 213.333h-85.333c-46.933 0-85.333 38.4-85.333 85.333v85.333c0 46.933 38.4 85.333 85.333 85.333h85.333v85.333h-128c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h128c46.933 0 85.333-38.4 85.333-85.333v-256c0-46.933-38.4-85.333-85.333-85.333zM640 384h-85.333v-85.333h85.333v85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-filter_9-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":960,"id":233,"name":"round-filter_9-24px","prevSize":32,"code":59916},"setIdx":1,"setId":1,"iconIdx":268},{"icon":{"paths":["M85.333 213.333c-23.467 0-42.667 19.2-42.667 42.667v640c0 46.933 38.4 85.333 85.333 85.333h640c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-597.333c-23.467 0-42.667-19.2-42.667-42.667v-597.333c0-23.467-19.2-42.667-42.667-42.667zM597.333 512v-170.667c0-46.933-38.4-85.333-85.333-85.333h-42.667c-46.933 0-85.333 38.4-85.333 85.333v42.667c0 46.933 38.4 85.333 85.333 85.333h42.667v42.667h-85.333c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h85.333c46.933 0 85.333-38.4 85.333-85.333zM469.333 384v-42.667h42.667v42.667h-42.667zM896 42.667h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM853.333 725.333h-512c-23.467 0-42.667-19.2-42.667-42.667v-512c0-23.467 19.2-42.667 42.667-42.667h512c23.467 0 42.667 19.2 42.667 42.667v512c0 23.467-19.2 42.667-42.667 42.667zM896 426.667c0-23.467-19.2-42.667-42.667-42.667h-42.667v-42.667c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v42.667h-42.667c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h42.667v42.667c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-42.667h42.667c23.467 0 42.667-19.2 42.667-42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-filter_9_plus-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":961,"id":234,"name":"round-filter_9_plus-24px","prevSize":32,"code":59917},"setIdx":1,"setId":1,"iconIdx":269},{"icon":{"paths":["M810.667 128h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM554.667 725.333c-23.467 0-42.667-19.2-42.667-42.667v-298.667h-42.667c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667h85.333c23.467 0 42.667 19.2 42.667 42.667v341.333c0 23.467-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-looks_one-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":962,"id":77,"name":"round-looks_one-24px","prevSize":32,"code":59918},"setIdx":1,"setId":1,"iconIdx":270},{"icon":{"paths":["M810.667 128h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM640 469.333c0 46.933-38.4 85.333-85.333 85.333h-85.333v85.333h128c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667h-170.667c-23.467 0-42.667-19.2-42.667-42.667v-128c0-46.933 38.4-85.333 85.333-85.333h85.333v-85.333h-128c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667h128c46.933 0 85.333 38.4 85.333 85.333v85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-looks_two-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":963,"id":76,"name":"round-looks_two-24px","prevSize":32,"code":59919},"setIdx":1,"setId":1,"iconIdx":271},{"icon":{"paths":["M810.667 128h-596.907c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h596.907c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM640.427 448c0 35.413-28.587 64-64 64 35.413 0 64 28.587 64 64v64c0 47.36-38.4 85.333-85.333 85.333h-128.427c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667h128.427l-0.427-85.333h-42.667c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667h42.667l0.427-85.333h-128.427c-23.467 0-42.24-19.2-42.24-42.667s18.773-42.667 42.24-42.667h128.427c46.933 0 85.333 38.4 85.333 85.333v64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-looks_3-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":964,"id":81,"name":"round-looks_3-24px","prevSize":32,"code":59920},"setIdx":1,"setId":1,"iconIdx":272},{"icon":{"paths":["M812.373 128h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM599.040 725.333c-23.467 0-42.667-19.2-42.667-42.667v-128h-128c-23.467 0-42.667-19.2-42.667-42.667v-170.667c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667v128h85.333v-128c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667v341.333c0 23.467-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-looks_4-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":965,"id":80,"name":"round-looks_4-24px","prevSize":32,"code":59921},"setIdx":1,"setId":1,"iconIdx":273},{"icon":{"paths":["M810.667 128h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM597.333 384h-128v85.333h85.333c46.933 0 85.333 38.4 85.333 85.333v85.333c0 47.36-38.4 85.333-85.333 85.333h-128c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667h128v-85.333h-128c-23.467 0-42.667-19.2-42.667-42.667v-170.667c0-23.467 19.2-42.667 42.667-42.667h170.667c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-looks_5-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":966,"id":79,"name":"round-looks_5-24px","prevSize":32,"code":59922},"setIdx":1,"setId":1,"iconIdx":274},{"icon":{"paths":["M469.333 640h85.333v-85.333h-85.333v85.333zM810.667 128h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM597.333 384h-128v85.333h85.333c46.933 0 85.333 38.4 85.333 85.333v85.333c0 47.36-38.4 85.333-85.333 85.333h-85.333c-46.933 0-85.333-37.973-85.333-85.333v-256c0-46.933 38.4-85.333 85.333-85.333h128c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-looks_6-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":967,"id":78,"name":"round-looks_6-24px","prevSize":32,"code":59923},"setIdx":1,"setId":1,"iconIdx":275},{"icon":{"paths":["M853.333 170.667h-682.667c-46.933 0-85.333 38.4-85.333 85.333v512c0 46.933 38.4 85.333 85.333 85.333h682.667c46.933 0 85.333-38.4 85.333-85.333v-512c0-46.933-38.4-85.333-85.333-85.333zM836.267 352l-279.040 174.507c-27.733 17.493-62.72 17.493-90.453 0l-279.040-174.507c-10.667-6.827-17.067-18.347-17.067-30.72 0-28.587 31.147-45.653 55.467-30.72l285.867 178.773 285.867-178.773c24.32-14.933 55.467 2.133 55.467 30.72 0 12.373-6.4 23.893-17.067 30.72z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-mail-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":968,"id":75,"name":"round-mail-24px","prevSize":32,"code":59924},"setIdx":1,"setId":1,"iconIdx":276},{"icon":{"paths":["M512 597.333c70.827 0 128-57.173 128-128v-256c0-70.827-57.173-128-128-128s-128 57.173-128 128v256c0 70.827 57.173 128 128 128zM469.333 213.333c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667v256c0 23.467-19.2 42.667-42.667 42.667s-42.667-19.2-42.667-42.667v-256zM764.16 469.333c-20.907 0-38.4 15.36-41.813 36.267-17.493 100.267-104.96 177.067-210.347 177.067s-192.853-76.8-210.347-177.067c-3.413-20.907-20.907-36.267-41.813-36.267-26.027 0-46.507 23.040-42.667 48.64 20.907 128 123.307 228.267 252.16 246.613v88.747c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-88.747c128.853-18.347 231.253-118.613 252.16-246.613 4.267-25.6-16.64-48.64-42.667-48.64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-mic_none-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":969,"id":74,"name":"round-mic_none-24px","prevSize":32,"code":59925},"setIdx":1,"setId":1,"iconIdx":277},{"icon":{"paths":["M640 452.267v-238.933c0-70.827-57.173-128-128-128-65.707 0-119.040 49.493-126.293 113.067l254.293 253.867zM771.413 469.333c-17.493 0-32.853 12.8-35.413 30.293-2.133 13.653-5.12 27.307-9.387 39.68l54.187 54.187c12.8-25.6 22.187-53.333 26.88-82.773 2.987-21.76-14.080-41.387-36.267-41.387zM158.293 151.893c-16.64 16.64-16.64 43.52 0 60.16l225.707 226.133v18.347c0 50.773 25.6 98.987 69.547 124.16 32 18.347 60.16 18.773 86.187 13.227l70.827 70.827c-30.293 14.080-64 22.187-98.56 22.187-108.373 0-208.213-75.52-224-187.307-2.56-17.493-17.92-30.293-35.413-30.293-22.187 0-39.253 19.627-36.267 41.387 19.627 126.293 126.293 226.133 253.013 245.333v97.28c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-97.28c38.827-5.547 75.52-19.2 108.8-38.4l148.907 148.907c16.64 16.64 43.52 16.64 60.16 0s16.64-43.52 0-60.16l-654.080-654.507c-16.64-16.64-43.52-16.64-60.16 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-mic_off-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":970,"id":73,"name":"round-mic_off-24px","prevSize":32,"code":59926},"setIdx":1,"setId":1,"iconIdx":278},{"icon":{"paths":["M512 597.333c70.827 0 128-57.173 128-128v-256c0-70.827-57.173-128-128-128s-128 57.173-128 128v256c0 70.827 57.173 128 128 128zM764.16 469.333c-20.907 0-38.4 15.36-41.813 36.267-17.493 100.267-104.96 177.067-210.347 177.067s-192.853-76.8-210.347-177.067c-3.413-20.907-20.907-36.267-41.813-36.267-26.027 0-46.507 23.040-42.667 48.64 20.907 128 123.307 228.267 252.16 246.613v88.747c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-88.747c128.853-18.347 231.253-118.613 252.16-246.613 4.267-25.6-16.64-48.64-42.667-48.64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-mic-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":971,"id":72,"name":"round-mic-24px","prevSize":32,"code":59927},"setIdx":1,"setId":1,"iconIdx":279},{"icon":{"paths":["M256 426.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM768 426.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM512 426.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-more_horiz-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":972,"id":71,"name":"round-more_horiz-24px","prevSize":32,"code":59928},"setIdx":1,"setId":1,"iconIdx":280},{"icon":{"paths":["M917.333 170.667h-149.333l74.24 111.36c4.693 7.253-0.427 16.64-8.96 16.64h-85.333c-14.080 0-27.733-7.253-35.413-19.2l-72.533-108.8h-85.333l74.24 111.36c4.693 7.253-0.427 16.64-8.96 16.64h-85.333c-14.080 0-27.733-7.253-35.413-19.2l-72.533-108.8h-85.333l74.24 111.36c4.693 7.253-0.427 16.64-8.96 16.64h-85.333c-14.080 0-27.307-7.253-35.413-19.2l-72.533-108.8h-42.667c-46.933 0-84.907 38.4-84.907 85.333l-0.427 512c0 46.933 38.4 85.333 85.333 85.333h682.667c46.933 0 85.333-38.4 85.333-85.333v-576c0-11.947-9.387-21.333-21.333-21.333zM480 650.667l-53.333 117.333-53.333-117.333-117.333-53.333 117.333-53.333 53.333-117.333 53.333 117.333 117.333 53.333-117.333 53.333zM722.773 509.44l-40.107 87.893-40.107-87.893-87.893-40.107 87.893-40.107 40.107-87.893 40.107 87.893 87.893 40.107-87.893 40.107z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-movie_filter-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":973,"id":70,"name":"round-movie_filter-24px","prevSize":32,"code":59929},"setIdx":1,"setId":1,"iconIdx":281},{"icon":{"paths":["M768 170.667l77.653 155.307c3.413 6.827-1.707 15.36-9.387 15.36h-84.48c-16.213 0-31.147-8.96-37.973-23.467l-73.813-147.2h-85.333l77.653 155.307c3.413 6.827-1.707 15.36-9.387 15.36h-84.48c-16.213 0-31.147-8.96-37.973-23.467l-73.813-147.2h-85.333l77.653 155.307c3.413 6.827-1.707 15.36-9.387 15.36h-84.48c-16.213 0-31.147-8.96-38.4-23.467l-73.387-147.2h-42.667c-46.933 0-85.333 38.4-85.333 85.333v512c0 46.933 38.4 85.333 85.333 85.333h682.667c46.933 0 85.333-38.4 85.333-85.333v-554.667c0-23.467-19.2-42.667-42.667-42.667h-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-movie-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":974,"id":69,"name":"round-movie-24px","prevSize":32,"code":59930},"setIdx":1,"setId":1,"iconIdx":282},{"icon":{"paths":["M896 128h-768c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h768c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM853.333 810.667h-682.667c-23.467 0-42.667-19.2-42.667-42.667v-512c0-23.467 19.2-42.667 42.667-42.667h682.667c23.467 0 42.667 19.2 42.667 42.667v512c0 23.467-19.2 42.667-42.667 42.667zM343.467 663.040c-14.080-81.067 47.36-151.040 125.867-151.040 14.933 0 29.44 2.987 42.667 7.68v-178.347c0-46.933 38.4-85.333 85.333-85.333h85.333c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667h-85.333v299.947c-0.853 77.653-70.827 139.093-151.467 124.587-51.627-8.96-93.867-51.2-102.4-102.827z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-music_video-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":975,"id":68,"name":"round-music_video-24px","prevSize":32,"code":59931},"setIdx":1,"setId":1,"iconIdx":283},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM512 853.333c-188.587 0-341.333-152.747-341.333-341.333 0-78.933 26.88-151.467 72.107-209.067l478.293 478.293c-57.6 45.227-130.133 72.107-209.067 72.107zM781.227 721.067l-478.293-478.293c57.6-45.227 130.133-72.107 209.067-72.107 188.587 0 341.333 152.747 341.333 341.333 0 78.933-26.88 151.467-72.107 209.067z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-not_interested-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":976,"id":67,"name":"round-not_interested-24px","prevSize":32,"code":59932},"setIdx":1,"setId":1,"iconIdx":284},{"icon":{"paths":["M512 86.187c-235.093 0-425.813 190.72-425.813 425.813s190.72 425.813 425.813 425.813 425.813-190.72 425.813-425.813-190.72-425.813-425.813-425.813zM489.813 762.88v-176.64h-113.493c-15.787 0-26.453-17.067-18.773-31.147l157.013-305.92c9.813-20.053 40.107-12.8 40.107 9.813v178.773h108.373c15.787 0 26.027 16.64 19.2 30.72l-151.893 303.787c-10.24 20.48-40.533 13.227-40.533-9.387z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-offline_bolt-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":977,"id":66,"name":"round-offline_bolt-24px","prevSize":32,"code":59933},"setIdx":1,"setId":1,"iconIdx":285},{"icon":{"paths":["M753.493 341.333l-211.2-210.773c-16.64-16.64-43.52-16.64-60.16 0l-211.627 210.773c-66.56 66.56-99.84 155.307-99.84 240.64s33.28 175.36 99.84 241.92 154.027 100.267 241.493 100.267 174.933-33.707 241.493-100.267 99.84-156.587 99.84-241.92-33.28-174.080-99.84-240.64zM256 597.333c0.427-85.333 26.453-139.52 75.093-187.733l180.907-184.747 180.907 186.88c48.64 47.787 74.667 100.267 75.093 185.6h-512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-opacity-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":978,"id":65,"name":"round-opacity-24px","prevSize":32,"code":59934},"setIdx":1,"setId":1,"iconIdx":286},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM426.667 682.667c-23.467 0-42.667-19.2-42.667-42.667v-256c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667v256c0 23.467-19.2 42.667-42.667 42.667zM597.333 682.667c-23.467 0-42.667-19.2-42.667-42.667v-256c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667v256c0 23.467-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-pause_circle_filled-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":979,"id":64,"name":"round-pause_circle_filled-24px","prevSize":32,"code":59935},"setIdx":1,"setId":1,"iconIdx":287},{"icon":{"paths":["M426.667 682.667c23.467 0 42.667-19.2 42.667-42.667v-256c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v256c0 23.467 19.2 42.667 42.667 42.667zM512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM512 853.333c-188.16 0-341.333-153.173-341.333-341.333s153.173-341.333 341.333-341.333 341.333 153.173 341.333 341.333-153.173 341.333-341.333 341.333zM597.333 682.667c23.467 0 42.667-19.2 42.667-42.667v-256c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v256c0 23.467 19.2 42.667 42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-pause_circle_outline-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":980,"id":63,"name":"round-pause_circle_outline-24px","prevSize":32,"code":59936},"setIdx":1,"setId":1,"iconIdx":288},{"icon":{"paths":["M341.333 810.667c46.933 0 85.333-38.4 85.333-85.333v-426.667c0-46.933-38.4-85.333-85.333-85.333s-85.333 38.4-85.333 85.333v426.667c0 46.933 38.4 85.333 85.333 85.333zM597.333 298.667v426.667c0 46.933 38.4 85.333 85.333 85.333s85.333-38.4 85.333-85.333v-426.667c0-46.933-38.4-85.333-85.333-85.333s-85.333 38.4-85.333 85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-pause-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":981,"id":62,"name":"round-pause-24px","prevSize":32,"code":59937},"setIdx":1,"setId":1,"iconIdx":289},{"icon":{"paths":["M810.667 128h-42.667v-42.667c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v42.667h-341.333v-42.667c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v42.667h-42.667c-47.36 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM512 256c70.827 0 128 57.173 128 128s-57.173 128-128 128-128-57.173-128-128 57.173-128 128-128zM768 768h-512v-42.667c0-85.333 170.667-132.267 256-132.267s256 46.933 256 132.267v42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-perm_contact_calendar-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":982,"id":61,"name":"round-perm_contact_calendar-24px","prevSize":32,"code":59938},"setIdx":1,"setId":1,"iconIdx":290},{"icon":{"paths":["M42.667 256c-23.467 0-42.667 19.2-42.667 42.667v170.667h0.427l-0.427 384c0 46.933 38.4 85.333 85.333 85.333h725.333c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-682.667c-23.467 0-42.667-19.2-42.667-42.667v-512c0-23.467-19.2-42.667-42.667-42.667zM938.667 170.667h-341.333l-60.16-60.16c-16.213-16.213-37.973-25.173-60.587-25.173h-220.587c-46.933 0-84.907 38.4-84.907 85.333l-0.427 512c0 46.933 38.4 85.333 85.333 85.333h682.667c46.933 0 85.333-38.4 85.333-85.333v-426.667c0-46.933-38.4-85.333-85.333-85.333zM324.267 605.867l149.76-199.68c8.533-11.093 25.173-11.52 34.133-0.427l132.267 170.24 89.6-107.947c8.533-10.667 24.747-10.24 33.28 0.427l106.24 136.533c11.093 14.080 0.853 34.56-16.64 34.56h-511.573c-17.493 0.427-27.733-19.627-17.067-33.707z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-perm_media-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":983,"id":60,"name":"round-perm_media-24px","prevSize":32,"code":59939},"setIdx":1,"setId":1,"iconIdx":291},{"icon":{"paths":["M853.333 128h-298.667c-23.467 0-42.667 19.2-42.667 42.667v384l128-128h213.333c23.467 0 42.667-19.2 42.667-42.667v-213.333c0-23.467-19.2-42.667-42.667-42.667zM820.48 651.093l-108.373-12.373c-26.027-2.987-51.627 5.973-69.973 24.32l-78.507 78.507c-120.747-61.44-219.733-160-281.173-281.173l78.933-78.933c18.347-18.347 27.307-43.947 24.32-69.973l-12.373-107.52c-5.12-43.093-41.387-75.52-84.907-75.52h-73.813c-48.213 0-88.32 40.107-85.333 88.32 22.613 364.373 314.027 655.36 677.973 677.973 48.213 2.987 88.32-37.12 88.32-85.333v-73.813c0.427-43.093-32-79.36-75.093-84.48z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-perm_phone_msg-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":984,"id":59,"name":"round-perm_phone_msg-24px","prevSize":32,"code":59940},"setIdx":1,"setId":1,"iconIdx":292},{"icon":{"paths":["M512 85.333c-164.693 0-298.667 133.973-298.667 298.667 0 177.92 188.587 423.253 266.24 516.693 17.067 20.48 48.213 20.48 65.28 0 77.227-93.44 265.813-338.773 265.813-516.693 0-164.693-133.973-298.667-298.667-298.667zM512 170.667c46.933 0 85.333 38.4 85.333 85.333 0 47.36-38.4 85.333-85.333 85.333s-85.333-37.973-85.333-85.333c0-46.933 38.4-85.333 85.333-85.333zM512 597.333c-71.253 0-133.973-36.267-170.667-91.733 0.853-56.32 113.92-87.467 170.667-87.467s169.813 31.147 170.667 87.467c-36.693 55.467-99.413 91.733-170.667 91.733z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-person_pin_circle-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":985,"id":58,"name":"round-person_pin_circle-24px","prevSize":32,"code":59941},"setIdx":1,"setId":1,"iconIdx":293},{"icon":{"paths":["M810.667 85.333h-597.333c-47.36 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h170.667l97.707 97.707c16.64 16.64 43.52 16.64 60.16 0l98.133-97.707h170.667c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM512 226.133c63.573 0 115.2 51.627 115.2 115.2s-51.627 115.2-115.2 115.2-115.2-51.627-115.2-115.2 51.627-115.2 115.2-115.2zM768 682.667h-512v-38.4c0-85.333 170.667-132.267 256-132.267s256 46.933 256 132.267v38.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-person_pin-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":986,"id":57,"name":"round-person_pin-24px","prevSize":32,"code":59942},"setIdx":1,"setId":1,"iconIdx":294},{"icon":{"paths":["M768 341.333c0-141.227-114.773-256-256-256s-256 114.773-256 256c0 148.907 154.453 349.44 223.147 431.787 17.067 20.48 48.213 20.48 65.28 0 69.12-82.347 223.573-282.88 223.573-431.787zM426.667 341.333c0-46.933 38.4-85.333 85.333-85.333s85.333 38.4 85.333 85.333-37.973 85.333-85.333 85.333c-46.933 0-85.333-38.4-85.333-85.333zM213.333 896c0 23.467 19.2 42.667 42.667 42.667h512c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-512c-23.467 0-42.667 19.2-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-pin_drop-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":987,"id":56,"name":"round-pin_drop-24px","prevSize":32,"code":59943},"setIdx":1,"setId":1,"iconIdx":295},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM426.667 661.333v-298.667c0-17.493 20.053-27.733 34.133-17.067l199.253 149.333c11.52 8.533 11.52 25.6 0 34.133l-199.253 149.333c-14.080 10.667-34.133 0.427-34.133-17.067z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-play_circle_filled_white-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":988,"id":55,"name":"round-play_circle_filled_white-24px","prevSize":32,"code":59944},"setIdx":1,"setId":1,"iconIdx":296},{"icon":{"paths":["M460.8 678.4l199.253-149.333c11.52-8.533 11.52-25.6 0-34.133l-199.253-149.333c-14.080-10.667-34.133-0.427-34.133 17.067v298.667c0 17.493 20.053 27.733 34.133 17.067zM512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM512 853.333c-188.16 0-341.333-153.173-341.333-341.333s153.173-341.333 341.333-341.333 341.333 153.173 341.333 341.333-153.173 341.333-341.333 341.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-play_circle_outline-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":989,"id":54,"name":"round-play_circle_outline-24px","prevSize":32,"code":59945},"setIdx":1,"setId":1,"iconIdx":297},{"icon":{"paths":["M512 522.667c52.907 0 96-43.093 96-96s-43.093-96-96-96-96 43.093-96 96 43.093 96 96 96zM704 693.333c0-64-128-96-192-96s-192 32-192 96v32h384v-32zM810.667 128h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM768 810.667h-512c-23.467 0-42.667-19.2-42.667-42.667v-512c0-23.467 19.2-42.667 42.667-42.667h512c23.467 0 42.667 19.2 42.667 42.667v512c0 23.467-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-portrait-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":990,"id":53,"name":"round-portrait-24px","prevSize":32,"code":59946},"setIdx":1,"setId":1,"iconIdx":298},{"icon":{"paths":["M512 128c-23.467 0-42.667 19.2-42.667 42.667v341.333c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-341.333c0-23.467-19.2-42.667-42.667-42.667zM731.307 250.027c-16.64 16.64-16.213 42.667-0.427 59.307 48.213 51.2 78.080 119.467 79.787 194.987 3.84 163.413-131.413 304.213-294.827 305.92-166.827 2.56-302.507-131.84-302.507-298.24 0-78.507 30.293-149.76 79.787-203.093 15.787-16.64 15.787-42.667-0.427-58.88-17.067-17.067-44.8-16.64-61.013 0.853-61.867 65.707-100.693 153.173-103.68 250.027-5.973 208.213 163.413 388.267 371.627 394.667 217.6 6.827 396.373-167.68 396.373-384 0-101.12-39.253-192.427-103.253-260.693-16.213-17.493-44.373-17.92-61.44-0.853z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-power_settings_new-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":991,"id":52,"name":"round-power_settings_new-24px","prevSize":32,"code":59947},"setIdx":1,"setId":1,"iconIdx":299},{"icon":{"paths":["M810.667 341.333h-597.333c-70.827 0-128 57.173-128 128v170.667c0 46.933 38.4 85.333 85.333 85.333h85.333v85.333c0 46.933 38.4 85.333 85.333 85.333h341.333c46.933 0 85.333-38.4 85.333-85.333v-85.333h85.333c46.933 0 85.333-38.4 85.333-85.333v-170.667c0-70.827-57.173-128-128-128zM640 810.667h-256c-23.467 0-42.667-19.2-42.667-42.667v-170.667h341.333v170.667c0 23.467-19.2 42.667-42.667 42.667zM810.667 512c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667 42.667 19.2 42.667 42.667-19.2 42.667-42.667 42.667zM725.333 128h-426.667c-23.467 0-42.667 19.2-42.667 42.667v85.333c0 23.467 19.2 42.667 42.667 42.667h426.667c23.467 0 42.667-19.2 42.667-42.667v-85.333c0-23.467-19.2-42.667-42.667-42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-print-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":992,"id":51,"name":"round-print-24px","prevSize":32,"code":59948},"setIdx":1,"setId":1,"iconIdx":300},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM469.333 850.347c-168.533-20.907-298.667-164.267-298.667-338.347 0-26.453 3.413-51.627 8.96-76.373l204.373 204.373v42.667c0 46.933 38.4 85.333 85.333 85.333v82.347zM763.733 741.973c-11.093-34.56-42.667-59.307-81.067-59.307h-42.667v-128c0-23.467-19.2-42.667-42.667-42.667h-256v-85.333h85.333c23.467 0 42.667-19.2 42.667-42.667v-85.333h85.333c46.933 0 85.333-38.4 85.333-85.333v-17.493c125.013 50.773 213.333 173.227 213.333 316.16 0 88.747-34.133 169.387-89.6 229.973z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-public-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":993,"id":50,"name":"round-public-24px","prevSize":32,"code":59949},"setIdx":1,"setId":1,"iconIdx":301},{"icon":{"paths":["M511.573 85.333c-235.52 0-426.24 191.147-426.24 426.667s190.72 426.667 426.24 426.667c235.947 0 427.093-191.147 427.093-426.667s-191.147-426.667-427.093-426.667zM512 853.333c-188.587 0-341.333-152.747-341.333-341.333s152.747-341.333 341.333-341.333 341.333 152.747 341.333 341.333-152.747 341.333-341.333 341.333zM502.613 298.667h-2.56c-17.067 0-30.72 13.653-30.72 30.72v201.387c0 14.933 7.68 29.013 20.907 36.693l177.067 106.24c14.507 8.533 33.28 4.267 41.813-10.24 8.96-14.507 4.267-33.707-10.667-42.24l-165.12-98.133v-193.707c0-17.067-13.653-30.72-30.72-30.72z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-query_builder-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":994,"id":49,"name":"round-query_builder-24px","prevSize":32,"code":59950},"setIdx":1,"setId":1,"iconIdx":302},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM512 853.333c-188.587 0-341.333-152.747-341.333-341.333s152.747-341.333 341.333-341.333 341.333 152.747 341.333 341.333-152.747 341.333-341.333 341.333z","M725.333 512c0 117.821-95.513 213.333-213.333 213.333s-213.333-95.513-213.333-213.333c0-117.821 95.513-213.333 213.333-213.333s213.333 95.513 213.333 213.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-radio_button_checked-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":995,"id":48,"name":"round-radio_button_checked-24px","prevSize":32,"code":59951},"setIdx":1,"setId":1,"iconIdx":303},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM512 853.333c-188.587 0-341.333-152.747-341.333-341.333s152.747-341.333 341.333-341.333 341.333 152.747 341.333 341.333-152.747 341.333-341.333 341.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-radio_button_unchecked-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":996,"id":47,"name":"round-radio_button_unchecked-24px","prevSize":32,"code":59952},"setIdx":1,"setId":1,"iconIdx":304},{"icon":{"paths":["M896 256v512c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-512c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667zM768 810.667c23.467 0 42.667-19.2 42.667-42.667v-512c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v512c0 23.467 19.2 42.667 42.667 42.667zM597.333 213.333h-512c-23.467 0-42.667 19.2-42.667 42.667v512c0 23.467 19.2 42.667 42.667 42.667h512c23.467 0 42.667-19.2 42.667-42.667v-512c0-23.467-19.2-42.667-42.667-42.667zM341.333 330.667c52.907 0 96 43.093 96 96s-43.093 96-96 96-96-43.093-96-96 43.093-96 96-96zM533.333 725.333h-384v-32c0-64 128-96 192-96s192 32 192 96v32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-recent_actors-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":997,"id":46,"name":"round-recent_actors-24px","prevSize":32,"code":59953},"setIdx":1,"setId":1,"iconIdx":305},{"icon":{"paths":["M298.667 298.667h426.667v76.373c0 19.2 23.040 28.587 36.267 14.933l119.040-119.040c8.533-8.533 8.533-21.76 0-30.293l-119.040-119.040c-13.227-13.227-36.267-3.84-36.267 15.36v76.373h-469.333c-23.467 0-42.667 19.2-42.667 42.667v170.667c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-128zM725.333 725.333h-426.667v-76.373c0-19.2-23.040-28.587-36.267-14.933l-119.040 119.040c-8.533 8.533-8.533 21.76 0 30.293l119.040 119.040c13.227 13.227 36.267 3.84 36.267-15.36v-76.373h469.333c23.467 0 42.667-19.2 42.667-42.667v-170.667c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-repeat-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":998,"id":45,"name":"round-repeat-24px","prevSize":32,"code":59954},"setIdx":1,"setId":1,"iconIdx":306},{"icon":{"paths":["M512 213.333v-119.040c0-19.2-23.040-28.587-36.267-14.933l-162.133 161.707c-8.533 8.533-8.533 21.76 0 30.293l161.707 161.707c13.653 13.227 36.693 3.84 36.693-15.36v-119.040c159.147 0 285.013 145.92 250.027 311.040-20.053 96.427-91.307 170.24-187.307 193.28-155.307 37.547-295.68-68.267-316.587-211.627-2.56-20.907-20.48-36.693-41.387-36.693-25.6 0-46.080 22.613-42.667 48.213 26.88 190.72 210.773 330.667 416.853 284.587 131.84-29.44 229.973-131.413 255.573-264.107 42.667-218.88-123.733-410.027-334.507-410.027zM456.107 593.067l10.667-92.587h101.973v30.293h-72.533l-4.693 39.253c1.28-0.853 2.987-1.28 4.693-2.133s3.84-1.707 6.4-2.133 5.12-1.28 7.68-1.707 5.547-0.853 8.533-0.853c8.96 0 16.64 1.28 23.467 4.267s12.8 6.827 17.493 11.947 8.533 11.52 10.667 19.2 3.84 16.213 3.84 25.6c0 8.107-1.28 15.787-3.84 23.040s-6.4 13.653-11.52 19.2-11.52 10.24-19.2 13.227-16.64 5.12-27.307 5.12c-7.68 0-15.36-1.28-22.613-3.413s-13.653-5.973-19.627-10.24-10.24-10.24-13.653-16.64-5.547-14.080-5.547-22.613h35.84c0.853 7.68 3.413 13.653 8.107 17.493s10.667 6.4 17.92 6.4c4.693 0 8.533-0.853 11.52-2.56s5.973-4.267 7.68-7.253 3.413-6.4 4.693-10.667 1.28-8.533 1.28-13.227-0.427-8.96-1.707-13.227-2.987-7.253-5.547-10.24-5.547-5.12-8.96-6.4-8.107-2.133-12.8-2.133c-3.413 0-6.4 0.427-8.533 0.853s-4.693 1.28-6.4 2.133-3.413 2.133-5.12 2.987-2.987 2.56-4.267 3.84l-28.587-6.827z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-replay_5-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":999,"id":44,"name":"round-replay_5-24px","prevSize":32,"code":59955},"setIdx":1,"setId":1,"iconIdx":307},{"icon":{"paths":["M511.573 213.333v-119.040c0-19.2-23.040-28.587-36.267-14.933l-161.707 161.707c-8.533 8.533-8.533 21.76 0 30.293l161.707 161.707c13.227 13.227 36.267 3.84 36.267-14.933v-119.467c159.147 0 285.013 145.92 250.027 311.040-20.053 96.853-98.56 174.933-194.987 194.987-152.32 32-288-72.533-308.48-213.76-2.56-20.48-20.48-36.267-41.813-36.267-25.6 0-46.080 22.613-42.667 48.213 26.453 187.307 204.8 325.973 406.613 286.72 133.12-26.027 240.213-133.12 266.24-266.24 42.24-218.88-123.733-410.027-334.933-410.027zM464.64 682.667h-36.267v-139.093l-43.093 13.227v-29.44l75.52-26.88h3.84v182.187zM647.253 607.573c0 13.653-1.28 25.6-4.267 34.987s-7.253 17.92-12.373 24.32-11.947 11.093-19.2 14.080-15.787 4.267-25.173 4.267-17.493-1.28-25.173-4.267-14.080-7.68-19.627-14.080-9.813-14.507-12.8-24.32-4.693-21.333-4.693-34.987v-31.573c0-13.653 1.28-25.6 4.267-34.987s7.253-17.92 12.373-24.32 11.947-11.093 19.2-14.080 15.787-4.267 25.173-4.267 17.493 1.28 25.173 4.267 14.080 7.68 19.627 14.080 9.813 14.507 12.8 24.32 4.693 21.333 4.693 34.987v31.573zM610.987 570.88c0-8.107-0.427-14.933-1.707-20.48s-2.987-9.813-5.12-13.227-4.693-5.973-8.107-7.253-6.827-2.133-10.667-2.133-7.68 0.853-10.667 2.133-5.973 3.84-8.107 7.253-3.84 7.68-5.12 13.227-1.707 12.373-1.707 20.48v41.387c0 8.107 0.427 14.933 1.707 20.48s2.987 10.24 5.12 13.653 4.693 5.973 8.107 7.253 6.827 2.133 10.667 2.133 7.68-0.853 10.667-2.133 5.973-3.84 8.107-7.253 3.84-8.107 4.693-13.653 1.707-12.373 1.707-20.48v-41.387z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-replay_10-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1000,"id":43,"name":"round-replay_10-24px","prevSize":32,"code":59956},"setIdx":1,"setId":1,"iconIdx":308},{"icon":{"paths":["M512 213.333v-119.040c0-19.2-23.040-28.587-36.267-14.933l-162.133 161.707c-8.533 8.533-8.533 21.76 0 30.293l161.707 161.707c13.653 13.227 36.693 3.84 36.693-15.36v-119.040c159.147 0 285.013 145.92 250.027 311.040-20.053 96.853-98.56 174.933-194.987 194.987-152.32 32-288-72.533-308.48-213.76-2.987-20.48-20.907-36.267-41.813-36.267-25.6 0-46.080 22.613-42.667 48.213 26.453 187.307 204.8 325.973 406.613 286.72 133.12-26.027 240.213-133.12 266.24-266.24 42.24-218.88-124.16-410.027-334.933-410.027zM407.893 575.573h19.2c8.96 0 15.787-2.133 20.48-6.827s6.827-10.667 6.827-18.347c0-3.413-0.427-6.4-1.707-9.387s-2.56-5.12-4.693-7.253-4.693-3.84-7.68-4.693-6.827-1.707-10.667-1.707c-3.413 0-6.4 0.427-9.387 1.28s-5.547 2.133-7.68 4.267-3.84 3.84-5.12 6.4-2.133 5.547-2.133 8.533h-36.267c0-7.68 1.707-14.507 4.693-20.48s7.253-11.52 12.8-15.787 11.52-7.68 18.773-9.813 14.933-3.413 23.040-3.413c8.96 0 17.493 1.28 25.173 3.413s14.080 5.547 19.627 9.813 9.813 9.813 12.8 16.213 4.693 14.080 4.693 22.613c0 3.84-0.427 7.68-1.707 11.52s-2.987 7.253-5.547 10.667-5.12 6.4-8.533 9.387-7.253 5.12-11.947 7.253c10.24 3.84 17.92 8.96 23.040 16.64s7.68 16.213 7.68 26.027c0 8.533-1.707 16.213-5.12 22.613s-7.68 12.373-13.653 16.64-12.373 8.107-20.48 10.24-16.213 3.413-25.6 3.413c-7.68 0-15.36-0.853-22.613-2.987s-14.080-5.12-19.627-9.813-10.667-9.813-14.080-16.213-5.12-14.507-5.12-23.467h36.267c0 3.413 0.853 6.4 2.133 9.387s2.987 5.12 5.547 7.253 5.12 3.84 8.533 4.693 6.827 1.707 10.667 1.707c4.267 0 8.107-0.427 11.52-1.707s6.4-2.987 8.533-5.12 4.267-4.693 5.547-7.68 1.707-6.4 1.707-10.24c0-4.693-0.853-8.96-2.133-12.373s-3.413-6.4-5.973-8.533-5.547-3.84-9.387-4.693-7.68-1.707-12.373-1.707h-20.053v-27.733zM652.8 607.573c0 13.653-1.28 25.6-4.267 34.987s-7.253 17.92-12.373 24.32-11.947 11.093-19.2 14.080-15.787 4.267-25.173 4.267-17.493-1.28-25.173-4.267-14.080-7.68-19.627-14.080-9.813-14.507-12.8-24.32-4.693-21.333-4.693-34.987v-31.573c0-13.653 1.28-25.6 4.267-34.987s7.253-17.92 12.373-24.32 11.947-11.093 19.2-14.080 15.787-4.267 25.173-4.267 17.493 1.28 25.173 4.267 14.080 7.68 19.627 14.080 9.813 14.507 12.8 24.32 4.693 21.333 4.693 34.987v31.573zM616.533 570.88c0-8.107-0.427-14.933-1.707-20.48s-2.987-9.813-5.12-13.227-4.693-5.973-8.107-7.253-6.827-2.133-10.667-2.133-7.68 0.853-10.667 2.133-5.973 3.84-8.107 7.253-3.84 7.68-5.12 13.227-1.707 12.373-1.707 20.48v41.387c0 8.107 0.427 14.933 1.707 20.48s2.987 10.24 5.12 13.653 4.693 5.973 8.107 7.253 6.827 2.133 10.667 2.133 7.68-0.853 10.667-2.133 5.973-3.84 8.107-7.253 3.84-8.107 4.693-13.653c1.28-5.547 1.707-12.373 1.707-20.48v-41.387z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-replay_30-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1001,"id":42,"name":"round-replay_30-24px","prevSize":32,"code":59957},"setIdx":1,"setId":1,"iconIdx":309},{"icon":{"paths":["M116.48 896h790.613c32.853 0 53.333-35.413 37.12-64l-395.52-682.667c-16.64-28.587-57.6-28.587-73.813 0l-395.52 682.667c-16.213 28.587 4.267 64 37.12 64zM554.667 768h-85.333v-85.333h85.333v85.333zM512 597.333c-23.467 0-42.667-19.2-42.667-42.667v-85.333c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667v85.333c0 23.467-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-report_problem-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1002,"id":41,"name":"round-report_problem-24px","prevSize":32,"code":59958},"setIdx":1,"setId":1,"iconIdx":310},{"icon":{"paths":["M426.667 597.333c0 70.692-57.308 128-128 128s-128-57.308-128-128c0-70.692 57.308-128 128-128s128 57.308 128 128z","M597.333 256c0 70.692-57.308 128-128 128s-128-57.308-128-128c0-70.692 57.308-128 128-128s128 57.308 128 128z","M836.267 750.933c0 70.692-57.308 128-128 128s-128-57.308-128-128c0-70.692 57.308-128 128-128s128 57.308 128 128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-scatter_plot-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1003,"id":40,"name":"round-scatter_plot-24px","prevSize":32,"code":59959},"setIdx":1,"setId":1,"iconIdx":311},{"icon":{"paths":["M145.067 870.4l744.533-319.147c34.56-14.933 34.56-63.573 0-78.507l-744.533-319.147c-28.16-12.373-59.307 8.533-59.307 38.827l-0.427 196.693c0 21.333 15.787 39.68 37.12 42.24l602.88 80.64-602.88 80.213c-21.333 2.987-37.12 21.333-37.12 42.667l0.427 196.693c0 30.293 31.147 51.2 59.307 38.827z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-send-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1004,"id":39,"name":"round-send-24px","prevSize":32,"code":59960},"setIdx":1,"setId":1,"iconIdx":312},{"icon":{"paths":["M512 426.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM810.667 128h-597.333c-47.36 0-85.333 38.4-85.333 85.333v597.333c0 46.933 37.973 85.333 85.333 85.333h597.333c47.36 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-37.973-85.333-85.333-85.333zM736 512c0 9.813-0.853 19.627-2.133 29.013l63.147 49.493c5.547 4.693 7.253 12.8 3.413 19.2l-59.733 103.253c-3.84 6.4-11.52 8.96-18.347 6.4l-74.24-29.867c-15.36 11.947-32.427 21.76-50.347 29.44l-11.093 78.933c-1.28 7.253-7.68 12.8-14.933 12.8h-119.467c-7.253 0-13.653-5.547-14.933-12.373l-11.093-78.933c-18.347-7.68-34.987-17.493-50.347-29.44l-74.24 29.867c-6.827 2.56-14.507 0-18.347-6.4l-59.733-103.253c-3.84-6.4-2.133-14.507 3.413-19.2l63.147-49.493c-1.28-9.813-2.133-19.627-2.133-29.44s0.853-19.627 2.133-29.013l-63.147-49.493c-5.547-4.693-7.253-12.8-3.413-19.2l59.733-103.253c3.84-6.4 11.52-8.96 18.347-6.4l74.24 29.867c15.36-11.947 32.427-21.76 50.347-29.44l11.093-78.933c1.28-7.253 7.68-12.8 14.933-12.8h119.467c7.253 0 13.653 5.547 14.933 12.373l11.093 78.933c18.347 7.68 34.987 17.493 50.347 29.44l74.24-29.867c6.827-2.56 14.507 0 18.347 6.4l59.733 103.253c3.84 6.4 2.133 14.507-3.413 19.2l-63.147 49.493c1.28 9.813 2.133 19.627 2.133 29.44z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-settings_applications-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1005,"id":38,"name":"round-settings_applications-24px","prevSize":32,"code":59961},"setIdx":1,"setId":1,"iconIdx":313},{"icon":{"paths":["M298.667 261.12c-18.347-14.933-45.227-12.8-60.16 5.547l-180.907 218.027c-13.227 15.787-13.227 38.827 0 54.613l180.907 218.027c14.933 18.347 41.813 20.48 60.16 5.547s20.48-41.813 5.547-60.16l-158.293-190.72 158.293-190.72c14.933-18.347 12.8-45.227-5.547-60.16zM298.667 554.667h85.333v-85.333h-85.333v85.333zM725.333 469.333h-85.333v85.333h85.333v-85.333zM469.333 554.667h85.333v-85.333h-85.333v85.333zM725.333 261.12c-18.347 14.933-20.48 41.813-5.547 60.16l158.293 190.72-158.293 190.72c-14.933 18.347-12.373 45.227 5.547 60.16 18.347 14.933 45.227 12.8 60.16-5.547l180.907-218.027c13.227-15.787 13.227-38.827 0-54.613l-180.907-218.027c-14.933-17.92-42.24-20.48-60.16-5.547z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-settings_ethernet-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1006,"id":37,"name":"round-settings_ethernet-24px","prevSize":32,"code":59962},"setIdx":1,"setId":1,"iconIdx":314},{"icon":{"paths":["M298.667 1024h85.333v-85.333h-85.333v85.333zM512 554.667c70.827 0 127.573-57.173 127.573-128l0.427-256c0-70.827-57.173-128-128-128s-128 57.173-128 128v256c0 70.827 57.173 128 128 128zM469.333 1024h85.333v-85.333h-85.333v85.333zM640 1024h85.333v-85.333h-85.333v85.333zM771.413 426.667c-17.92 0-32.853 12.8-35.413 30.293-15.787 111.36-116.053 187.307-224 187.307s-208.213-75.52-224-187.307c-2.56-17.493-17.92-30.293-35.413-30.293-22.187 0-39.253 19.627-36.267 41.387 19.627 126.293 126.293 226.133 253.013 245.333v97.28c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-97.28c126.293-18.773 233.387-119.040 253.013-245.333 2.987-21.76-14.080-41.387-36.267-41.387z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-settings_voice-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1007,"id":36,"name":"round-settings_voice-24px","prevSize":32,"code":59963},"setIdx":1,"setId":1,"iconIdx":315},{"icon":{"paths":["M853.333 85.333h-682.667c-46.933 0-85.333 38.4-85.333 85.333v768l170.667-170.667h597.333c46.933 0 85.333-38.4 85.333-85.333v-512c0-46.933-38.4-85.333-85.333-85.333zM554.667 597.333h-85.333v-85.333h85.333v85.333zM512 426.667c-23.467 0-42.667-19.2-42.667-42.667v-85.333c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667v85.333c0 23.467-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-sms_failed-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1008,"id":35,"name":"round-sms_failed-24px","prevSize":32,"code":59964},"setIdx":1,"setId":1,"iconIdx":316},{"icon":{"paths":["M853.333 85.333h-682.667c-46.933 0-85.333 38.4-85.333 85.333v768l170.667-170.667h597.333c46.933 0 85.333-38.4 85.333-85.333v-512c0-46.933-38.4-85.333-85.333-85.333zM384 469.333h-85.333v-85.333h85.333v85.333zM554.667 469.333h-85.333v-85.333h85.333v85.333zM725.333 469.333h-85.333v-85.333h85.333v85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-sms-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1009,"id":34,"name":"round-sms-24px","prevSize":32,"code":59965},"setIdx":1,"setId":1,"iconIdx":317},{"icon":{"paths":["M81.493 100.693c-14.933-14.933-39.253-14.933-54.187 0s-14.933 39.253 0 54.187l58.88 58.88-0.853 724.907 170.667-170.667h384l217.173 217.173c14.933 14.933 39.253 14.933 54.187 0s14.933-39.253 0-54.187l-829.867-830.293zM298.667 597.333c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667 42.667 19.2 42.667 42.667-19.2 42.667-42.667 42.667zM298.667 469.333c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667 42.667 19.2 42.667 42.667-19.2 42.667-42.667 42.667zM853.333 85.333h-679.253l298.667 298.667h252.587c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667h-167.253l298.24 298.24c45.653-1.707 82.347-38.827 82.347-84.907v-512c0-46.933-38.4-85.333-85.333-85.333zM725.333 341.333h-256c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667h256c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-speaker_notes_off-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1010,"id":33,"name":"round-speaker_notes_off-24px","prevSize":32,"code":59966},"setIdx":1,"setId":1,"iconIdx":318},{"icon":{"paths":["M853.333 85.333h-682.667c-46.933 0-84.907 38.4-84.907 85.333l-0.427 768 170.667-170.667h597.333c46.933 0 85.333-38.4 85.333-85.333v-512c0-46.933-38.4-85.333-85.333-85.333zM341.333 597.333h-85.333v-85.333h85.333v85.333zM341.333 469.333h-85.333v-85.333h85.333v85.333zM341.333 341.333h-85.333v-85.333h85.333v85.333zM597.333 597.333h-128c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667h128c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667zM725.333 469.333h-256c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667h256c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667zM725.333 341.333h-256c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667h256c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-speaker_notes-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1011,"id":32,"name":"round-speaker_notes-24px","prevSize":32,"code":59967},"setIdx":1,"setId":1,"iconIdx":319},{"icon":{"paths":["M511.573 85.333c-235.52 0-426.24 191.147-426.24 426.667s190.72 426.667 426.24 426.667c235.947 0 427.093-191.147 427.093-426.667s-191.147-426.667-427.093-426.667zM649.387 741.973l-137.387-82.773-137.387 82.773c-16.213 9.813-36.267-4.693-32-23.040l36.267-156.16-120.747-104.533c-14.080-12.373-6.4-35.84 12.373-37.547l159.573-13.653 62.293-147.2c7.253-17.493 32-17.493 39.253 0l62.293 146.773 159.573 13.653c18.773 1.707 26.453 25.173 11.947 37.547l-120.747 104.533 36.267 156.587c4.267 18.347-15.36 32.853-31.573 23.040z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-stars-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1012,"id":31,"name":"round-stars-24px","prevSize":32,"code":59968},"setIdx":1,"setId":1,"iconIdx":320},{"icon":{"paths":["M107.947 838.4l57.173 23.893v-385.28l-103.68 250.027c-17.493 43.52 3.413 93.44 46.507 111.36zM939.947 680.533l-211.627-510.72c-13.227-32-44.373-51.627-77.227-52.48-11.093 0-22.613 1.707-33.707 6.4l-314.453 130.133c-32 13.227-51.627 43.947-52.48 76.8-0.427 11.52 1.707 23.040 6.4 34.133l211.627 510.72c13.227 32.427 44.8 52.053 78.080 52.48 11.093 0 22.187-2.133 32.853-6.4l314.027-130.133c43.52-17.92 64.427-67.84 46.507-110.933zM336.213 373.333c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667 42.667 19.2 42.667 42.667-19.2 42.667-42.667 42.667zM250.88 842.667c0 46.933 38.4 85.333 85.333 85.333h61.867l-147.2-355.84v270.507z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-style-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1013,"id":30,"name":"round-style-24px","prevSize":32,"code":59969},"setIdx":1,"setId":1,"iconIdx":321},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM666.027 355.84c45.653 0 82.347 36.693 82.347 82.347s-36.693 82.347-82.347 82.347-82.347-36.693-82.347-82.347c-0.427-45.653 36.693-82.347 82.347-82.347zM410.027 288.427c55.467 0 100.693 45.227 100.693 100.693s-45.227 100.693-100.693 100.693-100.693-45.227-100.693-100.693c0-55.893 44.8-100.693 100.693-100.693zM410.027 677.973v160c-102.4-32-183.467-110.933-219.307-211.627 44.8-47.787 156.587-72.107 219.307-72.107 22.613 0 51.2 3.413 81.067 9.387-69.973 37.12-81.067 86.187-81.067 114.347zM512 853.333c-11.52 0-22.613-0.427-33.707-1.707v-173.653c0-60.587 125.44-90.88 187.733-90.88 45.653 0 124.587 16.64 163.84 49.067-49.92 126.72-173.227 217.173-317.867 217.173z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-supervised_user_circle-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1014,"id":29,"name":"round-supervised_user_circle-24px","prevSize":32,"code":59970},"setIdx":1,"setId":1,"iconIdx":322},{"icon":{"paths":["M261.973 506.027l-118.613 119.040c-8.107 8.533-8.107 21.76 0 30.293l118.613 119.040c13.227 13.653 36.267 3.84 36.267-14.933v-76.8h256.427c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-256.427v-76.373c0-19.2-23.040-28.587-36.267-14.933zM881.067 369.067l-118.613-119.040c-13.227-13.653-36.267-3.84-36.267 14.933v76.373h-256.853c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h256.427v76.373c0 19.2 23.040 28.587 36.267 14.933l118.613-119.040c8.533-8.107 8.533-21.76 0.427-29.867z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-swap_horiz-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1015,"id":28,"name":"round-swap_horiz-24px","prevSize":32,"code":59971},"setIdx":1,"setId":1,"iconIdx":323},{"icon":{"paths":["M938.667 512c0-235.52-191.147-426.667-426.667-426.667s-426.667 191.147-426.667 426.667 191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667zM640 277.333l134.4 134.4c8.533 8.533 8.533 21.76 0 30.293l-134.4 133.973v-106.667h-170.667v-85.333h170.667v-106.667zM384 746.667l-134.4-134.4c-8.533-8.533-8.533-21.76 0-30.293l134.4-133.973v106.667h170.667v85.333h-170.667v106.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-swap_horizontal_circle-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1016,"id":27,"name":"round-swap_horizontal_circle-24px","prevSize":32,"code":59972},"setIdx":1,"setId":1,"iconIdx":324},{"icon":{"paths":["M682.667 725.76v-256.427c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v256.427h-76.373c-19.2 0-28.587 23.040-14.933 36.267l119.040 118.613c8.533 8.107 21.76 8.107 30.293 0l119.040-118.613c13.653-13.227 3.84-36.267-14.933-36.267h-76.8zM369.067 142.933l-119.040 119.040c-13.653 13.227-4.267 36.267 14.933 36.267h76.373v256.427c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-256.427h76.373c19.2 0 28.587-23.040 14.933-36.267l-119.040-119.040c-8.107-8.107-21.76-8.107-29.867 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-swap_vert-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1017,"id":26,"name":"round-swap_vert-24px","prevSize":32,"code":59973},"setIdx":1,"setId":1,"iconIdx":325},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM277.333 384l134.4-134.4c8.533-8.533 21.76-8.533 30.293 0l133.973 134.4h-106.667v170.667h-85.333v-170.667h-106.667zM612.267 774.4c-8.533 8.533-21.76 8.533-30.293 0l-133.973-134.4h106.667v-170.667h85.333v170.667h106.667l-134.4 134.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-swap_vertical_circle-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1018,"id":25,"name":"round-swap_vertical_circle-24px","prevSize":32,"code":59974},"setIdx":1,"setId":1,"iconIdx":326},{"icon":{"paths":["M981.333 341.333c0 46.933-38.4 85.333-85.333 85.333-7.68 0-14.933-0.853-21.76-2.987l-151.893 151.467c2.133 6.827 2.987 14.507 2.987 22.187 0 46.933-38.4 85.333-85.333 85.333s-85.333-38.4-85.333-85.333c0-7.68 0.853-15.36 2.987-22.187l-108.8-108.8c-6.827 2.133-14.507 2.987-22.187 2.987s-15.36-0.853-22.187-2.987l-194.133 194.56c2.133 6.827 2.987 14.080 2.987 21.76 0 46.933-38.4 85.333-85.333 85.333s-85.333-38.4-85.333-85.333 38.4-85.333 85.333-85.333c7.68 0 14.933 0.853 21.76 2.987l194.56-194.133c-2.133-6.827-2.987-14.507-2.987-22.187 0-46.933 38.4-85.333 85.333-85.333s85.333 38.4 85.333 85.333c0 7.68-0.853 15.36-2.987 22.187l108.8 108.8c6.827-2.133 14.507-2.987 22.187-2.987s15.36 0.853 22.187 2.987l151.467-151.893c-2.133-6.827-2.987-14.080-2.987-21.76 0-46.933 38.4-85.333 85.333-85.333s85.333 38.4 85.333 85.333zM981.333 341.333c0 46.933-38.4 85.333-85.333 85.333-7.68 0-14.933-0.853-21.76-2.987l-151.893 151.467c2.133 6.827 2.987 14.507 2.987 22.187 0 46.933-38.4 85.333-85.333 85.333s-85.333-38.4-85.333-85.333c0-7.68 0.853-15.36 2.987-22.187l-108.8-108.8c-6.827 2.133-14.507 2.987-22.187 2.987s-15.36-0.853-22.187-2.987l-194.133 194.56c2.133 6.827 2.987 14.080 2.987 21.76 0 46.933-38.4 85.333-85.333 85.333s-85.333-38.4-85.333-85.333 38.4-85.333 85.333-85.333c7.68 0 14.933 0.853 21.76 2.987l194.56-194.133c-2.133-6.827-2.987-14.507-2.987-22.187 0-46.933 38.4-85.333 85.333-85.333s85.333 38.4 85.333 85.333c0 7.68-0.853 15.36-2.987 22.187l108.8 108.8c6.827-2.133 14.507-2.987 22.187-2.987s15.36 0.853 22.187 2.987l151.467-151.893c-2.133-6.827-2.987-14.080-2.987-21.76 0-46.933 38.4-85.333 85.333-85.333s85.333 38.4 85.333 85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-timeline-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1019,"id":24,"name":"round-timeline-24px","prevSize":32,"code":59975},"setIdx":1,"setId":1,"iconIdx":327},{"icon":{"paths":["M725.333 298.667h-426.667c-117.76 0-213.333 95.573-213.333 213.333s95.573 213.333 213.333 213.333h426.667c117.76 0 213.333-95.573 213.333-213.333s-95.573-213.333-213.333-213.333zM298.667 640c-70.827 0-128-57.173-128-128s57.173-128 128-128 128 57.173 128 128-57.173 128-128 128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-toggle_off-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1020,"id":23,"name":"round-toggle_off-24px","prevSize":32,"code":59976},"setIdx":1,"setId":1,"iconIdx":328},{"icon":{"paths":["M725.333 298.667h-426.667c-117.76 0-213.333 95.573-213.333 213.333s95.573 213.333 213.333 213.333h426.667c117.76 0 213.333-95.573 213.333-213.333s-95.573-213.333-213.333-213.333zM725.333 640c-70.827 0-128-57.173-128-128s57.173-128 128-128 128 57.173 128 128-57.173 128-128 128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-toggle_on-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1021,"id":22,"name":"round-toggle_on-24px","prevSize":32,"code":59977},"setIdx":1,"setId":1,"iconIdx":329},{"icon":{"paths":["M539.733 668.587c5.973-15.36 2.133-32.853-9.813-44.8l-89.173-87.893 1.28-1.28c74.24-82.773 127.147-177.92 158.293-278.613h82.773c23.040 0 42.24-19.2 42.24-42.24v-0.853c0-23.040-19.2-42.24-42.24-42.24h-256.427v-42.667c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v42.667h-256.427c-23.040 0-42.24 19.2-42.24 42.24 0 23.467 19.2 42.24 42.24 42.24h434.347c-28.587 82.773-73.813 160.853-135.253 229.12-34.56-37.973-63.573-79.36-87.893-122.88-6.827-12.373-19.2-20.053-33.28-20.053-29.44 0-48.213 32-33.707 57.6 26.88 48.213 59.733 94.293 98.133 136.96l-186.453 183.893c-17.067 16.64-17.067 43.947 0 60.587 16.64 16.64 43.52 16.64 60.587 0l182.613-183.040 86.187 86.187c21.76 21.76 58.88 13.653 69.547-14.933zM746.667 426.667c-25.6 0-48.64 15.787-57.6 40.107l-156.587 418.133c-10.24 26.027 9.387 53.76 37.12 53.76 16.64 0 31.573-10.24 37.547-26.027l37.973-101.973h202.667l38.4 101.973c5.973 15.36 20.907 26.027 37.547 26.027 27.733 0 47.36-27.733 37.547-53.76l-156.587-418.133c-9.387-24.32-32.427-40.107-58.027-40.107zM677.547 725.333l69.12-184.747 69.12 184.747h-138.24z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-translate-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1022,"id":21,"name":"round-translate-24px","prevSize":32,"code":59978},"setIdx":1,"setId":1,"iconIdx":330},{"icon":{"paths":["M718.933 731.733l61.44-61.44-208.213-208.213-140.373 140.373c-16.64 16.64-43.52 16.64-60.16 0l-256-256.427c-16.64-16.64-16.64-43.52 0-60.16s43.52-16.64 60.16 0l225.707 226.133 140.373-140.373c16.64-16.64 43.52-16.64 60.16 0l238.507 238.080 61.44-61.44c13.227-13.227 36.267-3.84 36.267 14.933v183.040c0 11.947-9.387 21.333-21.333 21.333h-183.040c-18.773 0.427-28.16-22.613-14.933-35.84z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-trending_down-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1023,"id":20,"name":"round-trending_down-24px","prevSize":32,"code":59979},"setIdx":1,"setId":1,"iconIdx":331},{"icon":{"paths":["M718.933 292.267l61.44 61.44-208.213 208.213-140.373-140.373c-16.64-16.64-43.52-16.64-60.16 0l-256 256.427c-16.64 16.64-16.64 43.52 0 60.16s43.52 16.64 60.16 0l225.707-226.133 140.373 140.373c16.64 16.64 43.52 16.64 60.16 0l238.507-238.080 61.44 61.44c13.227 13.227 36.267 3.84 36.267-14.933v-183.467c0.427-11.947-8.96-21.333-20.907-21.333h-183.040c-19.2 0-28.587 23.040-15.36 36.267z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-trending_up-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1024,"id":19,"name":"round-trending_up-24px","prevSize":32,"code":59980},"setIdx":1,"setId":1,"iconIdx":332},{"icon":{"paths":["M346.453 823.467c16.64 16.64 43.52 16.64 60.16 0l105.387-105.387 105.387 105.387c16.64 16.64 43.52 16.64 60.16 0s16.64-43.52 0-60.16l-135.253-135.253c-16.64-16.64-43.52-16.64-60.16 0l-135.253 135.253c-17.067 16.213-17.067 43.52-0.427 60.16zM677.547 200.533c-16.64-16.64-43.52-16.64-60.16 0l-105.387 105.387-105.387-105.387c-16.64-16.64-43.52-16.64-60.16 0s-16.64 43.947 0 60.587l135.253 135.253c16.64 16.64 43.52 16.64 60.16 0l135.253-135.253c17.067-16.64 17.067-43.947 0.427-60.587z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-unfold_less-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1025,"id":18,"name":"round-unfold_less-24px","prevSize":32,"code":59981},"setIdx":1,"setId":1,"iconIdx":333},{"icon":{"paths":["M512 248.747l104.96 104.96c16.64 16.64 43.52 16.64 60.16 0s16.64-43.52 0-60.16l-135.253-135.68c-16.64-16.64-43.52-16.64-60.16 0l-135.253 135.68c-16.64 16.64-16.64 43.52 0 60.16s43.52 16.64 60.16 0l105.387-104.96zM512 775.253l-104.96-104.96c-16.64-16.64-43.52-16.64-60.16 0s-16.64 43.52 0 60.16l135.253 135.68c16.64 16.64 43.52 16.64 60.16 0l135.253-135.253c16.64-16.64 16.64-43.52 0-60.16s-43.52-16.64-60.16 0l-105.387 104.533z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-unfold_more-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1026,"id":17,"name":"round-unfold_more-24px","prevSize":32,"code":59982},"setIdx":1,"setId":1,"iconIdx":334},{"icon":{"paths":["M341.333 810.667h341.333c23.467 0 42.667-19.2 42.667-42.667v-554.667c0-23.467-19.2-42.667-42.667-42.667h-341.333c-23.467 0-42.667 19.2-42.667 42.667v554.667c0 23.467 19.2 42.667 42.667 42.667zM128 725.333h85.333c23.467 0 42.667-19.2 42.667-42.667v-384c0-23.467-19.2-42.667-42.667-42.667h-85.333c-23.467 0-42.667 19.2-42.667 42.667v384c0 23.467 19.2 42.667 42.667 42.667zM768 298.667v384c0 23.467 19.2 42.667 42.667 42.667h85.333c23.467 0 42.667-19.2 42.667-42.667v-384c0-23.467-19.2-42.667-42.667-42.667h-85.333c-23.467 0-42.667 19.2-42.667 42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-view_carousel-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1027,"id":16,"name":"round-view_carousel-24px","prevSize":32,"code":59983},"setIdx":1,"setId":1,"iconIdx":335},{"icon":{"paths":["M512 277.333c117.76 0 213.333 95.573 213.333 213.333 0 21.76-4.267 42.667-10.24 62.293l130.56 130.56c59.307-52.48 106.24-118.187 135.68-193.28-73.813-186.88-256-319.573-469.333-319.573-54.187 0-106.24 8.533-155.307 24.32l92.587 92.587c20.053-5.973 40.96-10.24 62.72-10.24zM115.627 134.827c-16.64 16.64-16.64 43.52 0 60.16l84.053 84.053c-69.12 55.040-124.16 127.573-157.013 211.627 73.813 187.307 256 320 469.333 320 64.853 0 126.72-12.8 183.893-34.987l116.053 116.053c16.64 16.64 43.52 16.64 60.16 0s16.64-43.52 0-60.16l-695.893-696.747c-16.64-16.64-43.947-16.64-60.587 0zM512 704c-117.76 0-213.333-95.573-213.333-213.333 0-32.853 7.68-64 20.907-91.307l66.987 66.987c-1.28 7.68-2.56 15.787-2.56 24.32 0 70.827 57.173 128 128 128 8.533 0 16.213-1.28 24.32-2.987l66.987 66.987c-27.733 13.653-58.453 21.333-91.307 21.333zM638.72 476.587c-6.4-59.733-53.333-106.24-112.64-112.64l112.64 112.64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-visibility_off-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1028,"id":15,"name":"round-visibility_off-24px","prevSize":32,"code":59984},"setIdx":1,"setId":1,"iconIdx":336},{"icon":{"paths":["M512 170.667c-213.333 0-395.52 132.693-469.333 320 73.813 187.307 256 320 469.333 320s395.52-132.693 469.333-320c-73.813-187.307-256-320-469.333-320zM512 704c-117.76 0-213.333-95.573-213.333-213.333s95.573-213.333 213.333-213.333 213.333 95.573 213.333 213.333-95.573 213.333-213.333 213.333zM512 362.667c-70.827 0-128 57.173-128 128s57.173 128 128 128 128-57.173 128-128-57.173-128-128-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-visibility-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1029,"id":14,"name":"round-visibility-24px","prevSize":32,"code":59985},"setIdx":1,"setId":1,"iconIdx":337},{"icon":{"paths":["M154.88 154.88c-16.64 16.64-16.64 43.52 0 60.16l156.16 156.16-12.373 12.8h-128c-23.467 0-42.667 19.2-42.667 42.667v170.667c0 23.467 19.2 42.667 42.667 42.667h128l140.373 140.373c26.88 26.88 72.96 7.68 72.96-30.293v-177.92l178.347 178.347c-20.907 15.787-43.52 29.013-68.267 38.827-15.36 6.4-24.747 22.613-24.747 39.253 0 30.72 31.147 50.347 59.307 38.827 34.133-14.080 66.133-32.853 94.72-55.893l57.173 57.173c16.64 16.64 43.52 16.64 60.16 0s16.64-43.52 0-60.16l-653.227-653.653c-16.64-16.64-43.52-16.64-60.587 0zM810.667 512c0 34.987-6.4 68.693-17.493 99.84l65.28 65.28c23.893-49.92 37.547-105.813 37.547-165.12 0-163.413-102.4-303.36-246.613-358.4-25.173-9.813-52.053 9.813-52.053 36.693v8.107c0 16.213 10.667 30.293 26.027 36.267 109.653 44.373 187.307 151.893 187.307 277.333zM439.040 243.627l-7.253 7.253 80.213 80.213v-57.6c0-37.973-46.080-56.747-72.96-29.867zM704 512c0-75.52-43.52-140.373-106.667-171.947v76.373l105.813 105.813c0.427-3.413 0.853-6.827 0.853-10.24z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-volume_off-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1030,"id":13,"name":"round-volume_off-24px","prevSize":32,"code":59986},"setIdx":1,"setId":1,"iconIdx":338},{"icon":{"paths":["M128 426.667v170.667c0 23.467 19.2 42.667 42.667 42.667h128l140.373 140.373c26.88 26.88 72.96 7.68 72.96-30.293v-476.587c0-37.973-46.080-57.173-72.96-30.293l-140.373 140.8h-128c-23.467 0-42.667 19.2-42.667 42.667zM704 512c0-75.52-43.52-140.373-106.667-171.947v343.467c63.147-31.147 106.667-96 106.667-171.52zM597.333 189.867v8.533c0 16.213 10.667 30.293 25.6 36.267 110.080 43.947 187.733 151.893 187.733 277.333s-77.653 233.387-187.733 277.333c-15.36 5.973-25.6 20.053-25.6 36.267v8.533c0 26.88 26.88 45.653 51.627 36.267 144.64-55.040 247.040-194.56 247.040-358.4s-102.4-303.36-247.040-358.4c-24.747-9.813-51.627 9.387-51.627 36.267z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-volume_up-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1031,"id":12,"name":"round-volume_up-24px","prevSize":32,"code":59987},"setIdx":1,"setId":1,"iconIdx":339},{"icon":{"paths":["M170.667 213.333c0-23.467 19.2-42.667 42.667-42.667h213.333c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-256c-46.933 0-85.333 38.4-85.333 85.333v256c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-213.333zM410.027 575.573l-126.293 157.867c-11.093 14.080-1.28 34.56 16.64 34.56h424.96c17.493 0 27.733-20.053 17.067-34.133l-85.333-113.92c-8.533-11.52-25.6-11.52-34.133 0l-69.547 93.013-110.080-137.387c-8.533-10.667-24.747-10.667-33.28 0zM725.333 362.667c0-35.413-28.587-64-64-64s-64 28.587-64 64 28.587 64 64 64 64-28.587 64-64zM853.333 85.333h-256c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h213.333c23.467 0 42.667 19.2 42.667 42.667v213.333c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667v-256c0-46.933-38.4-85.333-85.333-85.333zM853.333 810.667c0 23.467-19.2 42.667-42.667 42.667h-213.333c-23.467 0-42.667 19.2-42.667 42.667s19.2 42.667 42.667 42.667h256c46.933 0 85.333-38.4 85.333-85.333v-256c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667v213.333zM128 554.667c-23.467 0-42.667 19.2-42.667 42.667v256c0 46.933 38.4 85.333 85.333 85.333h256c23.467 0 42.667-19.2 42.667-42.667s-19.2-42.667-42.667-42.667h-213.333c-23.467 0-42.667-19.2-42.667-42.667v-213.333c0-23.467-19.2-42.667-42.667-42.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-wallpaper-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1032,"id":11,"name":"round-wallpaper-24px","prevSize":32,"code":59988},"setIdx":1,"setId":1,"iconIdx":340},{"icon":{"paths":["M190.72 896h642.56c65.707 0 106.667-71.253 73.813-128l-321.28-555.093c-32.853-56.747-114.773-56.747-147.627 0l-321.28 555.093c-32.853 56.747 8.107 128 73.813 128zM512 597.333c-23.467 0-42.667-19.2-42.667-42.667v-85.333c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667v85.333c0 23.467-19.2 42.667-42.667 42.667zM554.667 768h-85.333v-85.333h85.333v85.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-warning-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1033,"id":10,"name":"round-warning-24px","prevSize":32,"code":59989},"setIdx":1,"setId":1,"iconIdx":341},{"icon":{"paths":["M512 85.333c-234.667 0-426.667 192-426.667 426.667s192 426.667 426.667 426.667 426.667-192 426.667-426.667-192-426.667-426.667-426.667zM663.467 674.133l-174.080-107.093c-12.8-7.68-20.48-21.333-20.48-36.267v-200.107c0.427-17.493 14.933-32 32.427-32s32 14.507 32 32v189.867l163.84 98.56c15.36 9.387 20.48 29.44 11.093 44.8-9.387 14.933-29.44 19.627-44.8 10.24z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-watch_later-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1034,"id":9,"name":"round-watch_later-24px","prevSize":32,"code":59990},"setIdx":1,"setId":1,"iconIdx":342},{"icon":{"paths":["M725.76 597.333h-34.133l-11.52-11.52c49.067-57.173 75.093-133.973 64.427-217.173-14.507-112.64-100.267-207.36-211.2-232.96-180.907-41.813-340.907 100.267-340.907 269.653h-89.6c-20.053 0-29.013 25.173-13.227 37.973l145.067 117.333c8.107 8.533 21.76 8.96 30.293 0.427l123.733-119.040c13.653-13.227 4.267-36.693-14.933-36.693h-96c0-106.24 85.333-191.147 190.293-192 104.107-0.853 193.707 87.467 193.707 191.573 0 105.813-86.187 192.427-192 192.427-19.2 0-37.973-2.987-55.467-8.107-14.507-4.267-30.293 0-40.96 11.093-22.613 22.613-13.653 61.867 16.64 70.827 25.173 7.253 52.053 11.52 79.787 11.52 68.693 0 131.413-25.173 180.053-66.987l11.52 11.52v33.707l182.187 181.333c17.493 17.493 45.653 17.493 63.147 0s17.493-46.080 0-63.573l-180.907-181.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-youtube_searched_for-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1035,"id":8,"name":"round-youtube_searched_for-24px","prevSize":32,"code":59991},"setIdx":1,"setId":1,"iconIdx":343},{"icon":{"paths":["M676.267 164.267l61.867 61.867-93.013 92.16c-16.64 16.64-16.64 43.947 0 60.587s43.947 16.64 60.587 0l92.16-93.013 61.867 61.867c13.227 13.227 36.267 3.84 36.267-15.36v-183.040c0-11.947-9.387-21.333-21.333-21.333h-183.040c-19.2 0-28.587 23.040-15.36 36.267zM164.267 347.733l61.867-61.867 92.16 93.013c16.64 16.64 43.947 16.64 60.587 0s16.64-43.947 0-60.587l-93.013-92.16 61.867-61.867c13.227-13.227 3.84-36.267-15.36-36.267h-183.040c-11.947 0-21.333 9.387-21.333 21.333v183.040c0 19.2 23.040 28.587 36.267 15.36zM347.733 859.733l-61.867-61.867 93.013-92.16c16.64-16.64 16.64-43.947 0-60.587s-43.947-16.64-60.587 0l-92.16 93.013-61.867-61.867c-13.227-13.227-36.267-3.84-36.267 15.36v183.040c0 11.947 9.387 21.333 21.333 21.333h183.040c19.2 0 28.587-23.040 15.36-36.267zM859.733 676.267l-61.867 61.867-92.16-93.013c-16.64-16.64-43.947-16.64-60.587 0s-16.64 43.947 0 60.587l93.013 92.16-61.867 61.867c-13.227 13.227-3.84 36.267 15.36 36.267h183.040c11.947 0 21.333-9.387 21.333-21.333v-183.040c0-19.2-23.040-28.587-36.267-15.36z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["round-zoom_out_map-24px"],"colorPermutations":{}},"attrs":[],"properties":{"order":1036,"id":7,"name":"round-zoom_out_map-24px","prevSize":32,"code":59992},"setIdx":1,"setId":1,"iconIdx":344}],"height":1024,"metadata":{"name":"icomoon"},"preferences":{"showGlyphs":true,"showCodes":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"icomoon","majorVersion":1,"minorVersion":0},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false,"autoHost":true,"showMetrics":false,"showMetadata":false,"showVersion":false},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215},"historySize":50,"gridSize":16,"quickUsageToken":{"icon-alchemy":"NDcwYTI2OTBkYmY0ZjNkOTBiMzg2Yjk2OWZlNjY2YTMjMSMxNTM4NTczNzc3IyMj"},"showLiga":false}} \ No newline at end of file diff --git a/resources/www/common/styles/fonts/PhraseanetIcomoon/style.css b/resources/www/common/styles/fonts/PhraseanetIcomoon/style.css new file mode 100644 index 0000000000..566f9d5786 --- /dev/null +++ b/resources/www/common/styles/fonts/PhraseanetIcomoon/style.css @@ -0,0 +1,1061 @@ +@font-face { + font-family: 'icomoon'; + src: url('fonts/icomoon.eot?81kpnc'); + src: url('fonts/icomoon.eot?81kpnc#iefix') format('embedded-opentype'), + url('fonts/icomoon.ttf?81kpnc') format('truetype'), + url('fonts/icomoon.woff?81kpnc') format('woff'), + url('fonts/icomoon.svg?81kpnc#icomoon') format('svg'); + font-weight: normal; + font-style: normal; +} + +[class^="icon-"], [class*=" icon-"] { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'icomoon' !important; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.icon-search:before { + content: "\e913"; +} +.icon-interrogation:before { + content: "\e936"; +} +.icon-i-information:before { + content: "\e958"; +} +.icon-baseline-add_box-24px:before { + content: "\e900"; +} +.icon-pencil:before { + content: "\e966"; +} +.icon-baseline-chat-24px:before { + content: "\e901"; +} +.icon-baseline-mms-24px:before { + content: "\e902"; +} +.icon-baseline-chat_bubble_outline-24px:before { + content: "\e903"; +} +.icon-baseline-mode_comment-24px:before { + content: "\e904"; +} +.icon-baseline-chat_bubble-24px:before { + content: "\e905"; +} +.icon-baseline-add_comment-24px:before { + content: "\e906"; +} +.icon-bubble-talk:before { + content: "\e907"; +} +.icon-baseline-add_location-24px:before { + content: "\e908"; +} +.icon-baseline-add-24px:before { + content: "\e909"; +} +.icon-baseline-airplanemode_active-24px:before { + content: "\e90a"; +} +.icon-baseline-airplanemode_inactive-24px:before { + content: "\e90b"; +} +.icon-baseline-ac_unit-24px:before { + content: "\e90c"; +} +.icon-baseline-whatshot-24px:before { + content: "\e90d"; +} +.icon-baseline-all_inclusive-24px:before { + content: "\e90e"; +} +.icon-baseline-apps-24px:before { + content: "\e90f"; +} +.icon-display-grid:before { + content: "\e910"; +} +.icon-baseline-beach_access-24px:before { + content: "\e911"; +} +.icon-baseline-border_color-24px:before { + content: "\e912"; +} +.icon-baseline-casino-24px:before { + content: "\e914"; +} +.icon-baseline-check_box_outline_blank-24px:before { + content: "\e915"; +} +.icon-baseline-check_box-24px:before { + content: "\e916"; +} +.icon-baseline-edit_attributes-24px:before { + content: "\e917"; +} +.icon-baseline-edit_location-24px:before { + content: "\e918"; +} +.icon-baseline-spellcheck-24px:before { + content: "\e919"; +} +.icon-letter-arrow:before { + content: "\e91a"; +} +.icon-baseline-font_download-24px:before { + content: "\e91b"; +} +.icon-baseline-title-24px:before { + content: "\e91c"; +} +.icon-baseline-text_fields-24px:before { + content: "\e91d"; +} +.icon-baseline-indeterminate_check_box-24px:before { + content: "\e91e"; +} +.icon-baseline-laptop_mac-24px:before { + content: "\e91f"; +} +.icon-baseline-live_help-24px:before { + content: "\e920"; +} +.icon-baseline-location_disabled-24px:before { + content: "\e921"; +} +.icon-baseline-mail_outline-24px:before { + content: "\e922"; +} +.icon-baseline-mail-24px:before { + content: "\e923"; +} +.icon-baseline-message-24px:before { + content: "\e924"; +} +.icon-baseline-mobile_friendly-24px:before { + content: "\e925"; +} +.icon-baseline-mobile_screen_share-24px:before { + content: "\e926"; +} +.icon-baseline-person_pin-24px:before { + content: "\e927"; +} +.icon-loope-less:before { + content: "\e928"; +} +.icon-loope-more:before { + content: "\e929"; +} +.icon-baseline-remove_circle_outline-24px:before { + content: "\e92a"; +} +.icon-baseline-remove_circle-24px:before { + content: "\e92b"; +} +.icon-baseline-reply_all-24px:before { + content: "\e92d"; +} +.icon-baseline-reply-24px:before { + content: "\e92e"; +} +.icon-baseline-subdirectory_arrow_left-24px:before { + content: "\e92f"; +} +.icon-baseline-subdirectory_arrow_right-24px:before { + content: "\e930"; +} +.icon-baseline-report_off-24px:before { + content: "\e931"; +} +.icon-baseline-report-24px:before { + content: "\e932"; +} +.icon-baseline-smoke_free-24px:before { + content: "\e933"; +} +.icon-baseline-smoking_rooms-24px:before { + content: "\e934"; +} +.icon-baseline-spa-24px:before { + content: "\e935"; +} +.icon-baseline-star_half-24px:before { + content: "\e937"; +} +.icon-baseline-screen_rotation-24px:before { + content: "\e938"; +} +.icon-baseline-screen_lock_rotation-24px:before { + content: "\e939"; +} +.icon-baseline-stay_primary_portrait-24px:before { + content: "\e93a"; +} +.icon-baseline-storage-24px:before { + content: "\e93b"; +} +.icon-baseline-textsms-24px:before { + content: "\e93c"; +} +.icon-baseline-toys-24px:before { + content: "\e93d"; +} +.icon-baseline-tv-24px:before { + content: "\e93e"; +} +.icon-baseline-waves-24px:before { + content: "\e93f"; +} +.icon-baseline-widgets-24px:before { + content: "\e940"; +} +.icon-calendar-date:before { + content: "\e941"; +} +.icon-pin:before { + content: "\e942"; +} +.icon-unpin:before { + content: "\e943"; +} +.icon-save:before { + content: "\e944"; +} +.icon-folder:before { + content: "\e945"; +} +.icon-trash:before { + content: "\e946"; +} +.icon-Share:before { + content: "\e947"; +} +.icon-Order:before { + content: "\e948"; +} +.icon-rectangular:before { + content: "\e949"; +} +.icon-rectangular-curve:before { + content: "\e94a"; +} +.icon-circle:before { + content: "\e94b"; +} +.icon-baseline-fingerprint-24px:before { + content: "\e94c"; +} +.icon-baseline-touch_app-24px:before { + content: "\e94d"; +} +.icon-Hand:before { + content: "\e94e"; +} +.icon-baseline-assignment_ind-24px:before { + content: "\e94f"; +} +.icon-baseline-person-24px:before { + content: "\e950"; +} +.icon-baseline-person_add-24px:before { + content: "\e951"; +} +.icon-baseline-account_box-24px:before { + content: "\e952"; +} +.icon-baseline-account_circle-24px:before { + content: "\e953"; +} +.icon-round-how_to_reg-24px:before { + content: "\e954"; +} +.icon-round-group-24px:before { + content: "\e955"; +} +.icon-user-three:before { + content: "\e956"; +} +.icon-user-circle-line:before { + content: "\e957"; +} +.icon-user-talk:before { + content: "\e959"; +} +.icon-clean-order:before { + content: "\e95a"; +} +.icon-comment:before { + content: "\e95b"; +} +.icon-baseline-dialpad-24px:before { + content: "\e95c"; +} +.icon-baseline-beenhere-24px:before { + content: "\e95d"; +} +.icon-baseline-verified_user-24px:before { + content: "\e95e"; +} +.icon-baseline-done-24px:before { + content: "\e95f"; +} +.icon-baseline-show_chart-24px:before { + content: "\e960"; +} +.icon-baseline-snooze-24px:before { + content: "\e961"; +} +.icon-Calendar:before { + content: "\e962"; +} +.icon-Basket:before { + content: "\e963"; +} +.icon-baseline-extension-24px:before { + content: "\e964"; +} +.icon-Drag-and-drop:before { + content: "\e965"; +} +.icon-Artboard-2:before { + content: "\e967"; +} +.icon-baseline-build-24px:before { + content: "\e968"; +} +.icon-round-expand_less-24px:before { + content: "\e969"; +} +.icon-round-expand_more-24px:before { + content: "\e96a"; +} +.icon-baseline-chevron_left-24px:before { + content: "\e96b"; +} +.icon-double-arrows:before { + content: "\e92c"; +} +.icon-baseline-chevron_right-24px:before { + content: "\e96c"; +} +.icon-baseline-play_arrow-24px:before { + content: "\e96d"; +} +.icon-round-chevron_right-24px:before { + content: "\e96e"; +} +.icon-round-chevron_left-24px:before { + content: "\e96f"; +} +.icon-baseline-close-24px:before { + content: "\e970"; +} +.icon-round-close-24px:before { + content: "\e971"; +} +.icon-cross-rectangular:before { + content: "\e972"; +} +.icon-baseline-delete_forever-24px:before { + content: "\e973"; +} +.icon-baseline-error_outline-24px:before { + content: "\e974"; +} +.icon-baseline-error-24px:before { + content: "\e975"; +} +.icon-baseline-expand_less-24px:before { + content: "\e976"; +} +.icon-baseline-expand_more-24px:before { + content: "\e977"; +} +.icon-baseline-find_replace-24px:before { + content: "\e978"; +} +.icon-baseline-group_add-24px:before { + content: "\e979"; +} +.icon-baseline-group-24px:before { + content: "\e97a"; +} +.icon-baseline-hearing-24px:before { + content: "\e97b"; +} +.icon-baseline-thumb_up-24px:before { + content: "\e97c"; +} +.icon-baseline-thumbs_up_down-24px:before { + content: "\e97d"; +} +.icon-round-delete_sweep-24px:before { + content: "\e97e"; +} +.icon-baseline-restore_from_trash-24px:before { + content: "\e97f"; +} +.icon-round-library_music-24px:before { + content: "\e980"; +} +.icon-round-music_note-24px:before { + content: "\e981"; +} +.icon-round-music_off-24px:before { + content: "\e982"; +} +.icon-round-person_add_disabled-24px:before { + content: "\e983"; +} +.icon-round-person_add-24px:before { + content: "\e984"; +} +.icon-round-playlist_add_check-24px:before { + content: "\e985"; +} +.icon-round-playlist_add-24px:before { + content: "\e986"; +} +.icon-round-queue_music-24px:before { + content: "\e987"; +} +.icon-round-work_off-24px:before { + content: "\e988"; +} +.icon-round-work_outline-24px:before { + content: "\e989"; +} +.icon-round-work-24px:before { + content: "\e98a"; +} +.icon-round-zoom_in-24px:before { + content: "\e98b"; +} +.icon-round-zoom_out-24px:before { + content: "\e98c"; +} +.icon-baseline-alarm_add-24px:before { + content: "\e98d"; +} +.icon-baseline-alarm_off-24px:before { + content: "\e98e"; +} +.icon-baseline-alarm_on-24px:before { + content: "\e98f"; +} +.icon-baseline-alarm-24px:before { + content: "\e990"; +} +.icon-baseline-blur_off-24px:before { + content: "\e991"; +} +.icon-baseline-bookmark_border-24px:before { + content: "\e992"; +} +.icon-baseline-bookmark-24px:before { + content: "\e993"; +} +.icon-baseline-bookmarks-24px:before { + content: "\e994"; +} +.icon-baseline-cached-24px:before { + content: "\e995"; +} +.icon-baseline-class-24px:before { + content: "\e996"; +} +.icon-baseline-code-24px:before { + content: "\e997"; +} +.icon-baseline-compare_arrows-24px:before { + content: "\e998"; +} +.icon-baseline-delete_outline-24px:before { + content: "\e999"; +} +.icon-baseline-delete-24px:before { + content: "\e99a"; +} +.icon-baseline-drag_indicator-24px:before { + content: "\e99b"; +} +.icon-baseline-event-24px:before { + content: "\e99c"; +} +.icon-baseline-explore_off-24px:before { + content: "\e99d"; +} +.icon-baseline-explore-24px:before { + content: "\e99e"; +} +.icon-baseline-favorite_border-24px:before { + content: "\e99f"; +} +.icon-baseline-favorite-24px:before { + content: "\e9a0"; +} +.icon-baseline-flip-24px:before { + content: "\e9a1"; +} +.icon-baseline-history-24px:before { + content: "\e9a2"; +} +.icon-baseline-hourglass_empty-24px:before { + content: "\e9a3"; +} +.icon-baseline-info-24px:before { + content: "\e9a4"; +} +.icon-baseline-linear_scale-24px:before { + content: "\e9a5"; +} +.icon-baseline-swap_calls-24px:before { + content: "\e9a6"; +} +.icon-outline-help-24px:before { + content: "\e9a7"; +} +.icon-outline-info-24px:before { + content: "\e9a8"; +} +.icon-outline-label-24px:before { + content: "\e9a9"; +} +.icon-outline-settings_applications-24px:before { + content: "\e9aa"; +} +.icon-round-add_a_photo-24px:before { + content: "\e9ab"; +} +.icon-round-add_alert-24px:before { + content: "\e9ac"; +} +.icon-round-add_box-24px:before { + content: "\e9ad"; +} +.icon-round-add_circle_outline-24px:before { + content: "\e9ae"; +} +.icon-round-add_circle-24px:before { + content: "\e9af"; +} +.icon-round-add_photo_alternate-24px:before { + content: "\e9b0"; +} +.icon-round-adjust-24px:before { + content: "\e9b1"; +} +.icon-round-assistant_photo-24px:before { + content: "\e9b2"; +} +.icon-round-attach_file-24px:before { + content: "\e9b3"; +} +.icon-round-attachment-24px:before { + content: "\e9b4"; +} +.icon-round-blur_circular-24px:before { + content: "\e9b5"; +} +.icon-round-blur_linear-24px:before { + content: "\e9b6"; +} +.icon-round-blur_off-24px:before { + content: "\e9b7"; +} +.icon-round-blur_on-24px:before { + content: "\e9b8"; +} +.icon-round-brush-24px:before { + content: "\e9b9"; +} +.icon-round-bubble_chart-24px:before { + content: "\e9ba"; +} +.icon-round-cake-24px:before { + content: "\e9bb"; +} +.icon-round-call-24px:before { + content: "\e9bc"; +} +.icon-round-camera_alt-24px:before { + content: "\e9bd"; +} +.icon-round-camera-24px:before { + content: "\e9be"; +} +.icon-round-cancel-24px:before { + content: "\e9bf"; +} +.icon-round-check_box-24px:before { + content: "\e9c0"; +} +.icon-round-cloud_circle-24px:before { + content: "\e9c1"; +} +.icon-round-cloud_done-24px:before { + content: "\e9c2"; +} +.icon-round-cloud_download-24px:before { + content: "\e9c3"; +} +.icon-round-cloud_off-24px:before { + content: "\e9c4"; +} +.icon-round-cloud_queue-24px:before { + content: "\e9c5"; +} +.icon-round-cloud_upload-24px:before { + content: "\e9c6"; +} +.icon-round-cloud-24px:before { + content: "\e9c7"; +} +.icon-round-color_lens-24px:before { + content: "\e9c8"; +} +.icon-round-colorize-24px:before { + content: "\e9c9"; +} +.icon-round-computer-24px:before { + content: "\e9ca"; +} +.icon-round-create_new_folder-24px:before { + content: "\e9cb"; +} +.icon-round-create-24px:before { + content: "\e9cc"; +} +.icon-round-crop_free-24px:before { + content: "\e9cd"; +} +.icon-round-crop_original-24px:before { + content: "\e9ce"; +} +.icon-round-crop_rotate-24px:before { + content: "\e9cf"; +} +.icon-round-crop-24px:before { + content: "\e9d0"; +} +.icon-round-error_outline-24px:before { + content: "\e9d1"; +} +.icon-round-error-24px:before { + content: "\e9d2"; +} +.icon-round-event_available-24px:before { + content: "\e9d3"; +} +.icon-round-event_busy-24px:before { + content: "\e9d4"; +} +.icon-round-event_note-24px:before { + content: "\e9d5"; +} +.icon-round-exposure-24px:before { + content: "\e9d6"; +} +.icon-round-fast_forward-24px:before { + content: "\e9d7"; +} +.icon-round-fast_rewind-24px:before { + content: "\e9d8"; +} +.icon-round-filter_hdr-24px:before { + content: "\e9d9"; +} +.icon-round-first_page-24px:before { + content: "\e9da"; +} +.icon-round-flash_off-24px:before { + content: "\e9db"; +} +.icon-round-flash_on-24px:before { + content: "\e9dc"; +} +.icon-round-folder_open-24px:before { + content: "\e9dd"; +} +.icon-round-folder_shared-24px:before { + content: "\e9de"; +} +.icon-round-folder_special-24px:before { + content: "\e9df"; +} +.icon-round-folder-24px:before { + content: "\e9e0"; +} +.icon-round-format_color_reset-24px:before { + content: "\e9e1"; +} +.icon-round-forum-24px:before { + content: "\e9e2"; +} +.icon-round-forward_5-24px:before { + content: "\e9e3"; +} +.icon-round-forward_10-24px:before { + content: "\e9e4"; +} +.icon-round-forward_30-24px:before { + content: "\e9e5"; +} +.icon-round-gesture-24px:before { + content: "\e9e6"; +} +.icon-round-grade-24px:before { + content: "\e9e7"; +} +.icon-round-grain-24px-1:before { + content: "\e9e8"; +} +.icon-round-grain-24px:before { + content: "\e9e9"; +} +.icon-round-grid_off-24px:before { + content: "\e9ea"; +} +.icon-round-grid_on-24px:before { + content: "\e9eb"; +} +.icon-round-group_add-24px:before { + content: "\e9ec"; +} +.icon-round-help-24px:before { + content: "\e9ed"; +} +.icon-round-highlight_off-24px:before { + content: "\e9ee"; +} +.icon-round-home-24px:before { + content: "\e9ef"; +} +.icon-round-hourglass_empty-24px:before { + content: "\e9f0"; +} +.icon-round-hourglass_full-24px:before { + content: "\e9f1"; +} +.icon-round-image_search-24px:before { + content: "\e9f2"; +} +.icon-round-indeterminate_check_box-24px:before { + content: "\e9f3"; +} +.icon-round-insert_chart_outlined-24px:before { + content: "\e9f4"; +} +.icon-round-insert_chart-24px:before { + content: "\e9f5"; +} +.icon-round-insert_photo-24px:before { + content: "\e9f6"; +} +.icon-round-invert_colors-24px:before { + content: "\e9f7"; +} +.icon-round-keyboard_capslock-24px:before { + content: "\e9f8"; +} +.icon-round-language-24px:before { + content: "\e9f9"; +} +.icon-round-last_page-24px:before { + content: "\e9fa"; +} +.icon-round-line_style-24px:before { + content: "\e9fb"; +} +.icon-round-linear_scale-24px:before { + content: "\e9fc"; +} +.icon-round-link_off-24px:before { + content: "\e9fd"; +} +.icon-round-link-24px:before { + content: "\e9fe"; +} +.icon-round-list-24px:before { + content: "\e9ff"; +} +.icon-round-local_movies-24px:before { + content: "\ea00"; +} +.icon-round-location_off-24px:before { + content: "\ea01"; +} +.icon-round-location_on-24px:before { + content: "\ea02"; +} +.icon-round-location_searching-24px:before { + content: "\ea03"; +} +.icon-round-filter_1-24px:before { + content: "\ea04"; +} +.icon-round-filter_2-24px:before { + content: "\ea05"; +} +.icon-round-filter_3-24px:before { + content: "\ea06"; +} +.icon-round-filter_4-24px:before { + content: "\ea07"; +} +.icon-round-filter_5-24px:before { + content: "\ea08"; +} +.icon-round-filter_6-24px:before { + content: "\ea09"; +} +.icon-round-filter_7-24px:before { + content: "\ea0a"; +} +.icon-round-filter_8-24px:before { + content: "\ea0b"; +} +.icon-round-filter_9-24px:before { + content: "\ea0c"; +} +.icon-round-filter_9_plus-24px:before { + content: "\ea0d"; +} +.icon-round-looks_one-24px:before { + content: "\ea0e"; +} +.icon-round-looks_two-24px:before { + content: "\ea0f"; +} +.icon-round-looks_3-24px:before { + content: "\ea10"; +} +.icon-round-looks_4-24px:before { + content: "\ea11"; +} +.icon-round-looks_5-24px:before { + content: "\ea12"; +} +.icon-round-looks_6-24px:before { + content: "\ea13"; +} +.icon-round-mail-24px:before { + content: "\ea14"; +} +.icon-round-mic_none-24px:before { + content: "\ea15"; +} +.icon-round-mic_off-24px:before { + content: "\ea16"; +} +.icon-round-mic-24px:before { + content: "\ea17"; +} +.icon-round-more_horiz-24px:before { + content: "\ea18"; +} +.icon-round-movie_filter-24px:before { + content: "\ea19"; +} +.icon-round-movie-24px:before { + content: "\ea1a"; +} +.icon-round-music_video-24px:before { + content: "\ea1b"; +} +.icon-round-not_interested-24px:before { + content: "\ea1c"; +} +.icon-round-offline_bolt-24px:before { + content: "\ea1d"; +} +.icon-round-opacity-24px:before { + content: "\ea1e"; +} +.icon-round-pause_circle_filled-24px:before { + content: "\ea1f"; +} +.icon-round-pause_circle_outline-24px:before { + content: "\ea20"; +} +.icon-round-pause-24px:before { + content: "\ea21"; +} +.icon-round-perm_contact_calendar-24px:before { + content: "\ea22"; +} +.icon-round-perm_media-24px:before { + content: "\ea23"; +} +.icon-round-perm_phone_msg-24px:before { + content: "\ea24"; +} +.icon-round-person_pin_circle-24px:before { + content: "\ea25"; +} +.icon-round-person_pin-24px:before { + content: "\ea26"; +} +.icon-round-pin_drop-24px:before { + content: "\ea27"; +} +.icon-round-play_circle_filled_white-24px:before { + content: "\ea28"; +} +.icon-round-play_circle_outline-24px:before { + content: "\ea29"; +} +.icon-round-portrait-24px:before { + content: "\ea2a"; +} +.icon-round-power_settings_new-24px:before { + content: "\ea2b"; +} +.icon-round-print-24px:before { + content: "\ea2c"; +} +.icon-round-public-24px:before { + content: "\ea2d"; +} +.icon-round-query_builder-24px:before { + content: "\ea2e"; +} +.icon-round-radio_button_checked-24px:before { + content: "\ea2f"; +} +.icon-round-radio_button_unchecked-24px:before { + content: "\ea30"; +} +.icon-round-recent_actors-24px:before { + content: "\ea31"; +} +.icon-round-repeat-24px:before { + content: "\ea32"; +} +.icon-round-replay_5-24px:before { + content: "\ea33"; +} +.icon-round-replay_10-24px:before { + content: "\ea34"; +} +.icon-round-replay_30-24px:before { + content: "\ea35"; +} +.icon-round-report_problem-24px:before { + content: "\ea36"; +} +.icon-round-scatter_plot-24px:before { + content: "\ea37"; +} +.icon-round-send-24px:before { + content: "\ea38"; +} +.icon-round-settings_applications-24px:before { + content: "\ea39"; +} +.icon-round-settings_ethernet-24px:before { + content: "\ea3a"; +} +.icon-round-settings_voice-24px:before { + content: "\ea3b"; +} +.icon-round-sms_failed-24px:before { + content: "\ea3c"; +} +.icon-round-sms-24px:before { + content: "\ea3d"; +} +.icon-round-speaker_notes_off-24px:before { + content: "\ea3e"; +} +.icon-round-speaker_notes-24px:before { + content: "\ea3f"; +} +.icon-round-stars-24px:before { + content: "\ea40"; +} +.icon-round-style-24px:before { + content: "\ea41"; +} +.icon-round-supervised_user_circle-24px:before { + content: "\ea42"; +} +.icon-round-swap_horiz-24px:before { + content: "\ea43"; +} +.icon-round-swap_horizontal_circle-24px:before { + content: "\ea44"; +} +.icon-round-swap_vert-24px:before { + content: "\ea45"; +} +.icon-round-swap_vertical_circle-24px:before { + content: "\ea46"; +} +.icon-round-timeline-24px:before { + content: "\ea47"; +} +.icon-round-toggle_off-24px:before { + content: "\ea48"; +} +.icon-round-toggle_on-24px:before { + content: "\ea49"; +} +.icon-round-translate-24px:before { + content: "\ea4a"; +} +.icon-round-trending_down-24px:before { + content: "\ea4b"; +} +.icon-round-trending_up-24px:before { + content: "\ea4c"; +} +.icon-round-unfold_less-24px:before { + content: "\ea4d"; +} +.icon-round-unfold_more-24px:before { + content: "\ea4e"; +} +.icon-round-view_carousel-24px:before { + content: "\ea4f"; +} +.icon-round-visibility_off-24px:before { + content: "\ea50"; +} +.icon-round-visibility-24px:before { + content: "\ea51"; +} +.icon-round-volume_off-24px:before { + content: "\ea52"; +} +.icon-round-volume_up-24px:before { + content: "\ea53"; +} +.icon-round-wallpaper-24px:before { + content: "\ea54"; +} +.icon-round-warning-24px:before { + content: "\ea55"; +} +.icon-round-watch_later-24px:before { + content: "\ea56"; +} +.icon-round-youtube_searched_for-24px:before { + content: "\ea57"; +} +.icon-round-zoom_out_map-24px:before { + content: "\ea58"; +} diff --git a/resources/www/common/styles/main.scss b/resources/www/common/styles/main.scss index ad1e9e34cd..abcf466262 100644 --- a/resources/www/common/styles/main.scss +++ b/resources/www/common/styles/main.scss @@ -1,8 +1,20 @@ +@font-face { + font-family: 'icomoon'; + src: url('../fonts/PhraseanetIcomoon/fonts/icomoon.eot?xt8hfo'); + src: url('../fonts/PhraseanetIcomoon/fonts/icomoon.eot?xt8hfo#iefix') format('embedded-opentype'), + url('../fonts/PhraseanetIcomoon/fonts/icomoon.ttf?xt8hfo') format('truetype'), + url('../fonts/PhraseanetIcomoon/fonts/icomoon.woff?xt8hfo') format('woff'), + url('../fonts/PhraseanetIcomoon/fonts/icomoon.svg?xt8hfo#icomoon') format('svg'); + font-weight: normal; + font-style: normal; +} /** * Common stylesheet, builded into assets/common/styles/common.css */ @import '../../../../node_modules/font-awesome/scss/font-awesome.scss'; +@import './fonts/PhraseanetIcomoon/style'; @import './roboto.scss'; +@import './colorpicker.scss'; @import '../../_shared/styles/variables'; @import '../../vendors/bootstrap/bootstrap'; @import '../../vendors/bootstrap/responsive'; @@ -38,5 +50,60 @@ $mainMenuLinkBackgroundHoverColor: transparent; } } +[class*=" icon-"].fa, [class^=icon-].fa, .fa { + font-family: Fontawesome!important; +} +[class^="icon-"], [class*=" icon-"].icomoon { + display: inline-block; + width: inherit; + height: inherit; + margin-right: inherit; + line-height: inherit; + vertical-align: inherit; + background-image:none; + margin-top: inherit; +} +.icon-round-more_horiz-24px { + font-size: 2em; +} +.icon-round-list-24px { + font-size: 1.5em; +} +.macroFileEdit { + width: 24px; + height: 24px; + background: url(../images/icons/file-edit.png) no-repeat center; + cursor: help; + display: inline-block; + transition: 0.3s all; + &:hover, &:focus { + background-image: url(../images/icons/file-edit-hover.png); + } +} +.icomoon{ + font-family: 'icomoon'; + &.with-shadow { + box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2); + } + &.with-white-shadow { + box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.39); + } +} +/*Help menu*/ +.contextMenu.helpcontextmenu { + display: none; + &.shown { + display: block; + position: absolute; + z-index: 101; + } +} +.help-trigger { + display:inline-block; + cursor:pointer; + padding: 0 4px; + border:none; + margin-left: -12px; +} diff --git a/resources/www/lightbox/images/lightbox-icon.png b/resources/www/lightbox/images/lightbox-icon.png new file mode 100644 index 0000000000..ef9f72ec70 Binary files /dev/null and b/resources/www/lightbox/images/lightbox-icon.png differ diff --git a/resources/www/permaview/styles/main.scss b/resources/www/permaview/styles/main.scss index 8f347b1541..0bf3be49a0 100644 --- a/resources/www/permaview/styles/main.scss +++ b/resources/www/permaview/styles/main.scss @@ -40,6 +40,7 @@ h1 { font-size: 26px; font-weight: bold; padding: 30px 0 20px; + word-break: break-all; } .content-container { @@ -65,6 +66,9 @@ h1 { dl { margin-bottom: 20px; + &.dl-horizontal { + word-break: break-all; + } } dt, @@ -105,3 +109,48 @@ dd { float: left; } } + +/*Help menu*/ +.contextMenu.helpcontextmenu { + display: none; + &.shown { + display: block; + position: absolute; + z-index: 101; + } +} +.help-trigger { + display:inline-block; + cursor:pointer; + padding: 0 4px; + border:none; + margin-left: -12px; + margin-right: 94px; + .fa-caret-down:before { + content: "\25BC"; + font-size: 11px; + } +} +.context-menu-theme-vista { + background-image: none; + background-color: #414141; + border-bottom-left-radius: 2px; + border-bottom-right-radius: 2px; + + .context-menu-item { + transition: 500ms; + &:hover { + background-image: none; + background-color: #75abff; + border: none; + } + .context-menu-item-inner { + padding: 4px 12px; + margin-left: 0; + font-family: Helvetica; + font-size: 12px; + font-weight: 700; + color: #fff; + } + } +} diff --git a/resources/www/prod/images/Basket/Browser/archive.png b/resources/www/prod/images/Basket/Browser/archive.png index f7373f9614..ab89643a35 100644 Binary files a/resources/www/prod/images/Basket/Browser/archive.png and b/resources/www/prod/images/Basket/Browser/archive.png differ diff --git a/resources/www/prod/images/Basket/Browser/archived.png b/resources/www/prod/images/Basket/Browser/archived.png index 3e34e45736..6015eafc48 100644 Binary files a/resources/www/prod/images/Basket/Browser/archived.png and b/resources/www/prod/images/Basket/Browser/archived.png differ diff --git a/resources/www/report/images/arrow_down.png b/resources/www/report/images/arrow_down.png deleted file mode 100644 index e3e43ec2bd..0000000000 Binary files a/resources/www/report/images/arrow_down.png and /dev/null differ diff --git a/resources/www/report/images/arrow_up.png b/resources/www/report/images/arrow_up.png deleted file mode 100644 index 9921c35e58..0000000000 Binary files a/resources/www/report/images/arrow_up.png and /dev/null differ diff --git a/resources/www/report/images/checkbox_checked.png b/resources/www/report/images/checkbox_checked.png deleted file mode 100644 index 6a3a8d470f..0000000000 Binary files a/resources/www/report/images/checkbox_checked.png and /dev/null differ diff --git a/resources/www/report/images/checkbox_unchecked.png b/resources/www/report/images/checkbox_unchecked.png deleted file mode 100644 index e4ab2932a0..0000000000 Binary files a/resources/www/report/images/checkbox_unchecked.png and /dev/null differ diff --git a/resources/www/report/images/config.png b/resources/www/report/images/config.png deleted file mode 100644 index f028e35624..0000000000 Binary files a/resources/www/report/images/config.png and /dev/null differ diff --git a/resources/www/report/images/csv.gif b/resources/www/report/images/csv.gif deleted file mode 100644 index 09550dfa3c..0000000000 Binary files a/resources/www/report/images/csv.gif and /dev/null differ diff --git a/resources/www/report/images/dash-ajax-loader.gif b/resources/www/report/images/dash-ajax-loader.gif deleted file mode 100644 index 85e107f90b..0000000000 Binary files a/resources/www/report/images/dash-ajax-loader.gif and /dev/null differ diff --git a/resources/www/report/images/filter.png b/resources/www/report/images/filter.png deleted file mode 100644 index 3b65d5c1a7..0000000000 Binary files a/resources/www/report/images/filter.png and /dev/null differ diff --git a/resources/www/report/images/filter_on.png b/resources/www/report/images/filter_on.png deleted file mode 100644 index 46f8b5794a..0000000000 Binary files a/resources/www/report/images/filter_on.png and /dev/null differ diff --git a/resources/www/report/images/group.png b/resources/www/report/images/group.png deleted file mode 100644 index 002d00c83a..0000000000 Binary files a/resources/www/report/images/group.png and /dev/null differ diff --git a/resources/www/report/images/loupe2.png b/resources/www/report/images/loupe2.png deleted file mode 100644 index 82763e47e1..0000000000 Binary files a/resources/www/report/images/loupe2.png and /dev/null differ diff --git a/resources/www/report/images/noresults.png b/resources/www/report/images/noresults.png deleted file mode 100644 index 127eda87a9..0000000000 Binary files a/resources/www/report/images/noresults.png and /dev/null differ diff --git a/resources/www/report/images/print.png b/resources/www/report/images/print.png deleted file mode 100644 index eb355fc5c7..0000000000 Binary files a/resources/www/report/images/print.png and /dev/null differ diff --git a/resources/www/report/images/white-arrow.gif b/resources/www/report/images/white-arrow.gif deleted file mode 100644 index 19ecebb38e..0000000000 Binary files a/resources/www/report/images/white-arrow.gif and /dev/null differ diff --git a/resources/www/report/js/jquery.cluetip.js b/resources/www/report/js/jquery.cluetip.js deleted file mode 100644 index 544c62e911..0000000000 --- a/resources/www/report/js/jquery.cluetip.js +++ /dev/null @@ -1,632 +0,0 @@ -/* - * jQuery clueTip plugin - * Version 1.1pre (May 16, 2010) - * @requires jQuery v1.3+ - * - * Dual licensed under the MIT and GPL licenses: - * http://www.opensource.org/licenses/mit-license.php - * http://www.gnu.org/licenses/gpl.html - * - */ - -/* - * - * Full list of options/settings can be found at the bottom of this file and at http://plugins.learningjquery.com/cluetip/ - * - * Examples can be found at http://plugins.learningjquery.com/cluetip/demo/ - * -*/ - -(function($) { - $.cluetip = {version: '1.1pre'}; - var $cluetip, $cluetipInner, $cluetipOuter, $cluetipTitle, $cluetipArrows, $cluetipWait, $dropShadow, imgCount; - var insertionType = 'appendTo', insertionElement = 'body'; - - - $.fn.cluetip = function(js, options) { - if (typeof js == 'object') { - options = js; - js = null; - } - if (js == 'destroy') { - return this.removeData('cluetip').unbind('.cluetip'); - } - - // merge per-call options with defaults - options = $.extend(true, {}, $.fn.cluetip.defaults, options || {}); - - /** =create cluetip divs **/ - - if (!$('#cluetip').length) { - $(['
', - '
', - '

', - '
', - '
', - '
', - '
', - '
'].join('')) - [insertionType](insertionElement).hide(); - - var cluezIndex = +options.cluezIndex; - - $cluetip = $('#cluetip').css({position: 'absolute'}); - $cluetipOuter = $('#cluetip-outer').css({position: 'relative', zIndex: cluezIndex}); - $cluetipInner = $('#cluetip-inner'); - $cluetipTitle = $('#cluetip-title'); - $cluetipArrows = $('#cluetip-arrows'); - $cluetipWait = $('
') - .css({position: 'absolute'}).insertBefore($cluetip).hide(); - } - var cluetipPadding = (parseInt($cluetip.css('paddingLeft'),10)||0) + (parseInt($cluetip.css('paddingRight'),10)||0); - - - this.each(function(index) { - var link = this, $this = $(this); - - // support metadata plugin (v1.0 and 2.0) - var opts = $.extend(true, {}, options, $.metadata ? $this.metadata() : $.meta ? $this.data() : {}); - - - // start out with no contents (for ajax activation) - var cluetipContents = false; - - cluezIndex = +opts.cluezIndex; - $this.data('cluetip', {title: link.title, zIndex: cluezIndex}); - var isActive = false, closeOnDelay = 0; - - var tipAttribute = $this.attr(opts.attribute), ctClass = opts.cluetipClass; - if (!tipAttribute && !opts.splitTitle && !js) { - return true; - } - // if hideLocal is set to true, on DOM ready hide the local content that will be displayed in the clueTip - if (opts.local && opts.localPrefix) {tipAttribute = opts.localPrefix + tipAttribute;} - if (opts.local && opts.hideLocal) { $(tipAttribute + ':first').hide(); } - var tOffset = parseInt(opts.topOffset, 10), lOffset = parseInt(opts.leftOffset, 10); - // vertical measurement variables - var tipHeight, wHeight, - defHeight = isNaN(parseInt(opts.height, 10)) ? 'auto' : (/\D/g).test(opts.height) ? opts.height : opts.height + 'px'; - var sTop, linkTop, posY, tipY, mouseY, baseline; - // horizontal measurement variables - var tipInnerWidth = parseInt(opts.width, 10) || 275, - tipWidth = tipInnerWidth + cluetipPadding + opts.dropShadowSteps, - linkWidth = this.offsetWidth, - linkLeft, posX, tipX, mouseX, winWidth; - - // parse the title - var tipParts; - var tipTitle = (opts.attribute != 'title') ? $this.attr(opts.titleAttribute) : ''; - if (opts.splitTitle) { - if (tipTitle == undefined) {tipTitle = '';} - tipParts = tipTitle.split(opts.splitTitle); - tipTitle = tipParts.shift(); - } - if (opts.escapeTitle) { - tipTitle = tipTitle.replace(/&/g,'&').replace(/>/g,'>').replace(/ linkLeft && linkLeft > tipWidth) - || linkLeft + linkWidth + tipWidth + lOffset > winWidth - ? linkLeft - tipWidth - lOffset - : linkWidth + linkLeft + lOffset; - if (link.tagName.toLowerCase() == 'area' || opts.positionBy == 'mouse' || linkWidth + tipWidth > winWidth) { // position by mouse - if (mouseX + 20 + tipWidth > winWidth) { - $cluetip.addClass(' cluetip-' + ctClass); - posX = (mouseX - tipWidth - lOffset) >= 0 ? mouseX - tipWidth - lOffset - parseInt($cluetip.css('marginLeft'),10) + parseInt($cluetipInner.css('marginRight'),10) : mouseX - (tipWidth/2); - } else { - posX = mouseX + lOffset; - } - } - var pY = posX < 0 ? event.pageY + tOffset : event.pageY; - $cluetip.css({ - left: (posX > 0 && opts.positionBy != 'bottomTop') ? posX : (mouseX + (tipWidth/2) > winWidth) ? winWidth/2 - tipWidth/2 : Math.max(mouseX - (tipWidth/2),0), - zIndex: $this.data('cluetip').zIndex - }); - $cluetipArrows.css({zIndex: $this.data('cluetip').zIndex+1}); - } - wHeight = $(window).height(); - -/*************************************** -* load a string from cluetip method's first argument -***************************************/ - if (js) { - if (typeof js == 'function') { - js = js.call(link); - } - $cluetipInner.html(js); - cluetipShow(pY); - } -/*************************************** -* load the title attribute only (or user-selected attribute). -* clueTip title is the string before the first delimiter -* subsequent delimiters place clueTip body text on separate lines -***************************************/ - - else if (tipParts) { - var tpl = tipParts.length; - $cluetipInner.html(tpl ? tipParts[0] : ''); - if (tpl > 1) { - for (var i=1; i < tpl; i++){ - $cluetipInner.append('
' + tipParts[i] + '
'); - } - } - cluetipShow(pY); - } -/*************************************** -* load external file via ajax -***************************************/ - - else if (!opts.local && tipAttribute.indexOf('#') !== 0) { - if (/\.(jpe?g|tiff?|gif|png)$/i.test(tipAttribute)) { - $cluetipInner.html('' + tipTitle + ''); - cluetipShow(pY); - } else if (cluetipContents && opts.ajaxCache) { - $cluetipInner.html(cluetipContents); - cluetipShow(pY); - } else { - var optionBeforeSend = opts.ajaxSettings.beforeSend, - optionError = opts.ajaxSettings.error, - optionSuccess = opts.ajaxSettings.success, - optionComplete = opts.ajaxSettings.complete; - var ajaxSettings = { - cache: false, // force requested page not to be cached by browser - url: tipAttribute, - beforeSend: function(xhr) { - if (optionBeforeSend) {optionBeforeSend.call(link, xhr, $cluetip, $cluetipInner);} - $cluetipOuter.children().empty(); - if (opts.waitImage) { - $cluetipWait - .css({top: mouseY+20, left: mouseX+20, zIndex: $this.data('cluetip').zIndex-1}) - .show(); - } - }, - error: function(xhr, textStatus) { - if (isActive) { - if (optionError) { - optionError.call(link, xhr, textStatus, $cluetip, $cluetipInner); - } else { - $cluetipInner.html('sorry, the contents could not be loaded'); - } - } - }, - success: function(data, textStatus) { - cluetipContents = opts.ajaxProcess.call(link, data); - if (isActive) { - if (optionSuccess) {optionSuccess.call(link, data, textStatus, $cluetip, $cluetipInner);} - $cluetipInner.html(cluetipContents); - } - }, - complete: function(xhr, textStatus) { - if (optionComplete) {optionComplete.call(link, xhr, textStatus, $cluetip, $cluetipInner);} - var imgs = $cluetipInner[0].getElementsByTagName('img'); - imgCount = imgs.length; - for (var i=0, l = imgs.length; i < l; i++) { - if (imgs[i].complete) { - imgCount--; - } - } - if (imgCount && !$.browser.opera) { - $(imgs).bind('load error', function() { - imgCount--; - if (imgCount<1) { - $cluetipWait.hide(); - if (isActive) { cluetipShow(pY); } - } - }); - } else { - $cluetipWait.hide(); - if (isActive) { cluetipShow(pY); } - } - } - }; - var ajaxMergedSettings = $.extend(true, {}, opts.ajaxSettings, ajaxSettings); - - $.ajax(ajaxMergedSettings); - } - -/*************************************** -* load an element from the same page -***************************************/ - } else if (opts.local) { - - var $localContent = $(tipAttribute + (/#\S+$/.test(tipAttribute) ? '' : ':eq(' + index + ')')).clone(true).show(); - if (opts.localIdSuffix) { - $localContent.attr('id', $localContent[0].id + opts.localIdSuffix); - } - $cluetipInner.html($localContent); - cluetipShow(pY); - } - }; - -// get dimensions and options for cluetip and prepare it to be shown - var cluetipShow = function(bpY) { - $cluetip.addClass('cluetip-' + ctClass); - if (opts.truncate) { - var $truncloaded = $cluetipInner.text().slice(0,opts.truncate) + '...'; - $cluetipInner.html($truncloaded); - } - - function doNothing() {}; //empty function - tipTitle ? $cluetipTitle.show().html(tipTitle) : (opts.showTitle) ? $cluetipTitle.show().html(' ') : $cluetipTitle.hide(); - if (opts.sticky) { - var $closeLink = $(''); - (opts.closePosition == 'bottom') ? $closeLink.appendTo($cluetipInner) : (opts.closePosition == 'title') ? $closeLink.prependTo($cluetipTitle) : $closeLink.prependTo($cluetipInner); - $closeLink.bind('click.cluetip', function() { - cluetipClose(); - return false; - }); - if (opts.mouseOutClose) { - $cluetip.bind('mouseleave.cluetip', function() { - cluetipClose(); - }); - } else { - $cluetip.unbind('mouseleave.cluetip'); - } - } -// now that content is loaded, finish the positioning - var direction = ''; - $cluetipOuter.css({zIndex: $this.data('cluetip').zIndex, overflow: defHeight == 'auto' ? 'visible' : 'auto', height: defHeight}); - tipHeight = defHeight == 'auto' ? Math.max($cluetip.outerHeight(),$cluetip.height()) : parseInt(defHeight,10); - tipY = posY; - baseline = sTop + wHeight; - if (opts.positionBy == 'fixed') { - tipY = posY - opts.dropShadowSteps + tOffset; - } else if ( (posX < mouseX && Math.max(posX, 0) + tipWidth > mouseX) || opts.positionBy == 'bottomTop') { - if (posY + tipHeight + tOffset > baseline && mouseY - sTop > tipHeight + tOffset) { - tipY = mouseY - tipHeight - tOffset; - direction = 'top'; - } else { - tipY = mouseY + tOffset; - direction = 'bottom'; - } - } else if ( posY + tipHeight + tOffset > baseline ) { - tipY = (tipHeight >= wHeight) ? sTop : baseline - tipHeight - tOffset; - } else if ($this.css('display') == 'block' || link.tagName.toLowerCase() == 'area' || opts.positionBy == "mouse") { - tipY = bpY - tOffset; - } else { - tipY = posY - opts.dropShadowSteps; - } - if (direction == '') { - posX < linkLeft ? direction = 'left' : direction = 'right'; - } - $cluetip.css({top: tipY + 'px'}).removeClass().addClass('clue-' + direction + '-' + ctClass).addClass(' cluetip-' + ctClass); - if (opts.arrows) { // set up arrow positioning to align with element - var bgY = (posY - tipY - opts.dropShadowSteps); - $cluetipArrows.css({top: (/(left|right)/.test(direction) && posX >=0 && bgY > 0) ? bgY + 'px' : /(left|right)/.test(direction) ? 0 : ''}).show(); - } else { - $cluetipArrows.hide(); - } - -// (first hide, then) ***SHOW THE CLUETIP*** - // handle dropshadow divs first - $dropShadow = createDropShadows(opts); - if ($dropShadow && $dropShadow.length) { - $dropShadow.hide().css({height: tipHeight, width: tipInnerWidth, zIndex: $this.data('cluetip').zIndex-1}).show(); - } - - $cluetip.hide()[opts.fx.open](opts.fx.openSpeed || 0); - if ($.fn.bgiframe) { $cluetip.bgiframe(); } - // delayed close (not fully tested) - if (opts.delayedClose > 0) { - closeOnDelay = setTimeout(cluetipClose, opts.delayedClose); - } - // trigger the optional onShow function - opts.onShow.call(link, $cluetip, $cluetipInner); - }; - -/*************************************** - =INACTIVATION --------------------------------------- */ - var inactivate = function(event) { - isActive = false; - $cluetipWait.hide(); - if (!opts.sticky || (/click|toggle/).test(opts.activation) ) { - cluetipClose(); - clearTimeout(closeOnDelay); - } - if (opts.hoverClass) { - $this.removeClass(opts.hoverClass); - } - }; -// close cluetip and reset some things - var cluetipClose = function() { - $cluetipOuter - .parent().hide().removeClass(); - opts.onHide.call(link, $cluetip, $cluetipInner); - $this.removeClass('cluetip-clicked'); - if (tipTitle) { - $this.attr(opts.titleAttribute, tipTitle); - } - $this.css('cursor',''); - if (opts.arrows) { - $cluetipArrows.css({top: ''}); - } - }; - - $(document).bind('hideCluetip', function(e) { - cluetipClose(); - }); -/*************************************** - =BIND EVENTS --------------------------------------- */ - // activate by click - if ( (/click|toggle/).test(opts.activation) ) { - $this.bind('click.cluetip', function(event) { - if ($cluetip.is(':hidden') || !$this.is('.cluetip-clicked')) { - activate(event); - $('.cluetip-clicked').removeClass('cluetip-clicked'); - $this.addClass('cluetip-clicked'); - } else { - inactivate(event); - } - this.blur(); - return false; - }); - // activate by focus; inactivate by blur - } else if (opts.activation == 'focus') { - $this.bind('focus.cluetip', function(event) { - activate(event); - }); - $this.bind('blur.cluetip', function(event) { - inactivate(event); - }); - // activate by hover - } else { - // clicking is returned false if clickThrough option is set to false - $this[opts.clickThrough ? 'unbind' : 'bind']('click', returnFalse); - //set up mouse tracking - var mouseTracks = function(evt) { - if (opts.tracking == true) { - var trackX = posX - evt.pageX; - var trackY = tipY ? tipY - evt.pageY : posY - evt.pageY; - $this.bind('mousemove.cluetip', function(evt) { - $cluetip.css({left: evt.pageX + trackX, top: evt.pageY + trackY }); - }); - } - }; - if ($.fn.hoverIntent && opts.hoverIntent) { - $this.hoverIntent({ - sensitivity: opts.hoverIntent.sensitivity, - interval: opts.hoverIntent.interval, - over: function(event) { - activate(event); - mouseTracks(event); - }, - timeout: opts.hoverIntent.timeout, - out: function(event) {inactivate(event); $this.unbind('mousemove.cluetip');} - }); - } else { - $this.bind('mouseenter.cluetip', function(event) { - activate(event); - mouseTracks(event); - }) - .bind('mouseleave.cluetip', function(event) { - inactivate(event); - $this.unbind('mousemove.cluetip'); - }); - } - - $this.bind('mouseover.cluetip', function(event) { - $this.attr('title',''); - }).bind('mouseleave.cluetip', function(event) { - $this.attr('title', $this.data('cluetip').title); - }); - } - }); - - /** =private functions - ************************************************************/ - /** =create dropshadow divs **/ - - function createDropShadows(options, newDropShadow) { - var dropShadowSteps = (options.dropShadow && options.dropShadowSteps) ? +options.dropShadowSteps : 0; - if ($.support.boxShadow) { - var dsOffsets = dropShadowSteps === 0 ? '0 0 ' : '1px 1px '; - $('#cluetip').css($.support.boxShadow, dsOffsets + dropShadowSteps + 'px rgba(0,0,0,0.5)'); - return false; - } - var oldDropShadow = $('#cluetip .cluetip-drop-shadow'); - if (dropShadowSteps == oldDropShadow.length) { - return oldDropShadow; - } - oldDropShadow.remove(); - var dropShadows = []; - for (var i=0; i < dropShadowSteps;) { - dropShadows[i++] = '
'; - } - - newDropShadow = $(dropShadows.join('')) - .css({ - position: 'absolute', - backgroundColor: '#FFF', - zIndex: cluezIndex -1 - }) - .addClass('cluetip-drop-shadow') - .prependTo('#cluetip'); - return newDropShadow; - - } - - - return this; - }; - - (function() { - $.support = $.support || {}; - // check support for CSS3 properties (currently only boxShadow) - var div = document.createElement('div'), - divStyle = div.style, - styleProps = ['boxShadow'], - prefixes = ['moz', 'Moz', 'webkit', 'o']; - - for (var i=0, sl = styleProps.length; i < sl; i++) { - var prop = styleProps[i], - uProp = prop.charAt(0).toUpperCase() + prop.slice(1); - - if ( typeof divStyle[ prop ] !== 'undefined' ) { - $.support[ prop ] = prop; - } else { - for (var j=0, pl = prefixes.length; j < pl; j++) { - - if (typeof divStyle[ prefixes[j] + uProp ] !== 'undefined') { - $.support[ prop ] = prefixes[j] + uProp; - break; - } - } - } - } - div = null; delete div; - })(); - -/* - * options for clueTip - * - * each one can be explicitly overridden by changing its value. - * for example: $.fn.cluetip.defaults.width = 200; - * would change the default width for all clueTips to 200. - * - * each one can also be overridden by passing an options map to the cluetip method. - * for example: $('a.example').cluetip({width: 200}); - * would change the default width to 200 for clueTips invoked by a link with class of "example" - * - */ - - $.fn.cluetip.defaults = { // set up default options - width: 'auto', // The width of the clueTip - height: 'auto', // The height of the clueTip - cluezIndex: 9999, // Sets the z-index style property of the clueTip - positionBy: 'auto', // Sets the type of positioning: 'auto', 'mouse','bottomTop', 'fixed' - topOffset: 5, // Number of px to offset clueTip from top of invoking element - leftOffset: 5, // Number of px to offset clueTip from left of invoking element - local: false, // Whether to use content from the same page for the clueTip's body - localPrefix: null, // string to be prepended to the tip attribute if local is true - localIdSuffix: null, // string to be appended to the cluetip content element's id if local is true - hideLocal: true, // If local option is set to true, this determines whether local content - // to be shown in clueTip should be hidden at its original location - attribute: 'rel', // the attribute to be used for fetching the clueTip's body content - titleAttribute: 'title', // the attribute to be used for fetching the clueTip's title - splitTitle: '', // A character used to split the title attribute into the clueTip title and divs - // within the clueTip body. more info below [6] - escapeTitle: false, // whether to html escape the title attribute - showTitle: false, // show title bar of the clueTip, even if title attribute not set - cluetipClass: '',// class added to outermost clueTip div in the form of 'cluetip-' + clueTipClass. - hoverClass: '', // class applied to the invoking element onmouseover and removed onmouseout - waitImage: true, // whether to show a "loading" img, which is set in jquery.cluetip.css - cursor: 'help', - arrows: false, // if true, displays arrow on appropriate side of clueTip - dropShadow: false, // set to false if you don't want the drop-shadow effect on the clueTip - dropShadowSteps: 6, // adjusts the size of the drop shadow - sticky: false, // keep visible until manually closed - mouseOutClose: false, // close when clueTip is moused out - activation: 'hover', // set to 'click' to force user to click to show clueTip - // set to 'focus' to show on focus of a form element and hide on blur - clickThrough: false, // if true, and activation is not 'click', then clicking on link will take user to the link's href, - // even if href and tipAttribute are equal - tracking: false, // if true, clueTip will track mouse movement (experimental) - delayedClose: 0, // close clueTip on a timed delay (experimental) - closePosition: 'top', // location of close text for sticky cluetips; can be 'top' or 'bottom' or 'title' - closeText: 'Close', // text (or HTML) to to be clicked to close sticky clueTips - truncate: 0, // number of characters to truncate clueTip's contents. if 0, no truncation occurs - - // effect and speed for opening clueTips - fx: { - open: 'show', // can be 'show' or 'slideDown' or 'fadeIn' - openSpeed: '' - }, - - // settings for when hoverIntent plugin is used - hoverIntent: { - sensitivity: 3, - interval: 50, - timeout: 0 - }, - - // short-circuit function to run just before clueTip is shown. - onActivate: function(e) {return true;}, - // function to run just after clueTip is shown. - onShow: function(ct, ci){}, - // function to run just after clueTip is hidden. - onHide: function(ct, ci){}, - // whether to cache results of ajax request to avoid unnecessary hits to server - ajaxCache: true, - - // process data retrieved via xhr before it's displayed - ajaxProcess: function(data) { - data = data.replace(/<(script|style|title)[^<]+<\/(script|style|title)>/gm, '').replace(/<(link|meta)[^>]+>/g,''); - return data; - }, - - // can pass in standard $.ajax() parameters. Callback functions, such as beforeSend, - // will be queued first within the default callbacks. - // The only exception is error, which overrides the default - ajaxSettings: { - // error: function(ct, ci) { /* override default error callback */ } - // beforeSend: function(ct, ci) { /* called first within default beforeSend callback } - dataType: 'html' - }, - debug: false - }; - - -/* - * Global defaults for clueTips. Apply to all calls to the clueTip plugin. - * - * @example $.cluetip.setup({ - * insertionType: 'prependTo', - * insertionElement: '#container' - * }); - * - * @property - * @name $.cluetip.setup - * @type Map - * @cat Plugins/tooltip - * @option String insertionType: Default is 'appendTo'. Determines the method to be used for inserting the clueTip into the DOM. Permitted values are 'appendTo', 'prependTo', 'insertBefore', and 'insertAfter' - * @option String insertionElement: Default is 'body'. Determines which element in the DOM the plugin will reference when inserting the clueTip. - * - */ - - var insertionType = 'appendTo', insertionElement = 'body'; - - $.cluetip.setup = function(options) { - if (options && options.insertionType && (options.insertionType).match(/appendTo|prependTo|insertBefore|insertAfter/)) { - insertionType = options.insertionType; - } - if (options && options.insertionElement) { - insertionElement = options.insertionElement; - } - }; - -})(jQuery); diff --git a/resources/www/report/js/jquery.gvChart-0.1.js b/resources/www/report/js/jquery.gvChart-0.1.js deleted file mode 100644 index 8d69a9436b..0000000000 --- a/resources/www/report/js/jquery.gvChart-0.1.js +++ /dev/null @@ -1,86 +0,0 @@ -/* - * jQuery gvChart plugin - * This plugin was created to simplify things when using Google Visualisation Charts. - * It still needs to be used with google script import tag, however now you can - * crate chart from your table. - * All examples you will find on http://www.ivellios.toron.pl/technikalia/demos/gvChart/ - * @name jquery.gvChart-1.0.1.js - * @author Janusz Kamieński - http://www.ivellios.toron.pl/technikalia - * @version 1.0.1 - * @date December 04, 2010 - * @category jQuery plugin google charts - * @copyright (c) 2010 Janusz Kamieński (www.ivellios.toron.pl) - * @license CC Attribution Works 3.0 Poland - http://creativecommons.org/licenses/by/3.0/pl/deed.en_US - * @example Visit http://www.ivellios.toron.pl/technikalia/demos/gvChart/ for more informations about this jQuery plugin - */ -(function (jQuery){ - jQuery.fn.gvChart = function(settings){ - - defaults={ - hideTable: true, - chartType: 'AreaChart', - chartDivID: 'gvChartDiv', - gvSettings: null - }; - - var el = document.createElement('div'); - jQuery(el).insertBefore(this); - gvChartCount++; - gvChartID = defaults.chartDivID+gvChartCount; - jQuery(el).attr('id',gvChartID); - jQuery(el).addClass('gvChart'); - - if(settings){ - jQuery.extend(defaults,settings); - } - - if(defaults.hideTable) - $(this).hide(); - - var data = new google.visualization.DataTable(); - - // add X label - data.addColumn('string','X labels'); - - var a = new Array(); - - var headers = $(this).find('thead').find('th'); - var rows = $(this).find('tbody').find('tr'); - - rows.each(function(index){ - data.addColumn('number',$(this).find('th').text()); - }); - - data.addRows(headers.length-1); - - headers.each(function(index){ - if(index){ - data.setCell(index-1, 0, $(this).text()); - } - }); - - rows.each(function(index){ - $(this).find('td').each(function(index2){ - data.setCell(index2, index+1, parseFloat($(this).text())); - }); - }); - - chartSettings = { - title : $(this).find('caption').text() - }; - - if(defaults.gvSettings){ - jQuery.extend(chartSettings,defaults.gvSettings); - } - - eval("var chart = new google.visualization."+defaults.chartType+"(document.getElementById('"+gvChartID+"'))"); - chart.draw(data, chartSettings); - } -})(jQuery); - - -function gvChartInit(){ - gvChartCount = 0; - google.load('visualization', '1', {packages: ['corechart']}); -} - diff --git a/resources/www/report/js/jquery.nicoslider.js b/resources/www/report/js/jquery.nicoslider.js deleted file mode 100644 index 10acff56fa..0000000000 --- a/resources/www/report/js/jquery.nicoslider.js +++ /dev/null @@ -1,138 +0,0 @@ -(function ($) { - $.fn.nicoslider = function (options) { - var defaults = { - start: 0, - color: '#F6F2F1', - sliderHeight: false - }; - - var opts = $.extend({}, $.fn.nicoslider.defaults, defaults, options); - - return this.each(function () { - new nicoslide(this, opts); - }); - }; - - - var nicoslide = function (slider, o) { - var $slider = $(slider); - - $sliderWidth = $slider.parent().innerWidth(); - - $sliderCss = { - 'width': $sliderWidth, - 'background-color': o.color - }; - - $slider.css($sliderCss); - - var ul = $slider.find("ul"); - var ulWidth = 0; - var liHeight = 0; - - $slider.find("li").each(function () { - ulWidth += $(this).width() + 5; - ulWidth += parseInt($(this).css("padding-left")); - ulWidth += parseInt($(this).css("padding-right")); - ulWidth += parseInt($(this).css("margin-left")); - ulWidth += parseInt($(this).css("margin-right")); - liHeight = Math.max(liHeight, $(this).outerHeight()); - }); - //5 % of slider width - $scrollWidth = Math.round(parseInt($sliderWidth) * parseFloat("0.05")); - //min 30 px; - if ($scrollWidth < 30) { - $scrollWidth = 30; - } - - var $wrapperWidth = Math.round(parseInt($sliderWidth) - ( 2 * $scrollWidth )); - - if (ulWidth > $wrapperWidth) { - ul.wrapAll("
"); - $wrapper = $slider.find(".wrapper"); - $ulHeight = ul.height(); - $wrapper.width($wrapperWidth); - $wrapper.height($ulHeight); - - $wrapperCss = { - 'overflow': 'hidden', - 'float': 'left', - 'position': 'relative' - }; - - $wrapper.css($wrapperCss); - ul.css('position', 'absolute'); - ul.width(ulWidth); - $slider.prepend("
"); - $slider.append("
"); - - var rightScroll = $slider.find(".scrollright"); - var leftScroll = $slider.find(".scrollleft"); - - rightScroll.append("
>
"); - leftScroll.append("
<
"); - - $("div.rb").css('float', 'right'); - - rightCss = { - 'width': $scrollWidth - ($wrapper.outerWidth(true) - $wrapper.innerWidth()), - 'height': liHeight + 5, - 'float': 'right', - 'background-color': o.color, - 'cursor': 'pointer', - ' user-select': 'none' - }; - - leftCss = { - 'width': $scrollWidth - ($wrapper.outerWidth(true) - $wrapper.innerWidth()), - 'height': liHeight + 5, - 'float': 'left', - 'background-color': o.color, - 'cursor': 'pointer', - ' user-select': 'none' - }; - - leftScroll.css(leftCss); - rightScroll.css(rightCss); - - var rightScrollWidth = rightScroll.width(); - var leftScrollWidth = leftScroll.width(); - var scrollXpos = 0; - var scrollStepSpeed = 40; - var speed = 8; - var shift = o.start; - - - //scroll a droite - rightScroll.bind("click", function (e) { - var x = e.pageX - ($(this).offset().left); - scrollXpos = Math.round((x / rightScrollWidth) * scrollStepSpeed); - shift += (scrollXpos * speed); - - if (shift > (ulWidth - $wrapperWidth) + 50) { - shift = (ulWidth - $wrapperWidth) + 50; - } - ul.animate({ - left: -shift - }, 1); - }); - - //scroll a gauche - leftScroll.bind("click", function (e) { - var x = $(this).innerWidth() - (e.pageX - $(this).offset().left); - - scrollXpos = Math.round((x / leftScrollWidth) * scrollStepSpeed); - shift -= (scrollXpos * speed); - - if (shift < 0) { - shift = 0; - } - - ul.animate({ - left: -shift - }, 1); - - }); - } - }; -})(jQuery); diff --git a/resources/www/report/js/jquery.print.js b/resources/www/report/js/jquery.print.js deleted file mode 100644 index 8a2cd7bb66..0000000000 --- a/resources/www/report/js/jquery.print.js +++ /dev/null @@ -1,75 +0,0 @@ -// ----------------------------------------------------------------------- -// Eros Fratini - eros@recoding.it -// jqprint 0.3 -// -// - 19/06/2009 - some new implementations, added Opera support -// - 11/05/2009 - first sketch -// -// Printing plug-in for jQuery, evolution of jPrintArea: http://plugins.jquery.com/project/jPrintArea -// requires jQuery 1.3.x -// -// Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php -//------------------------------------------------------------------------ - -(function($) { - var opt; - - $.fn.jqprint = function (options) { - opt = $.extend({}, $.fn.jqprint.defaults, options); - - var $element = (this instanceof jQuery) ? this : $(this), doc; - - if (opt.operaSupport && $.browser.opera) - { - var tab = window.open("","jqPrint-preview"); - tab.document.open(); - - doc = tab.document; - } - else - { - var $iframe = $(" - {% elseif record_type == 'FLEXPAPER' %} + {% elseif record_type == 'FLEXPAPER' or record_type == 'PDF' %}
- + @@ -72,7 +78,7 @@ {{ senderMail }}
{% endif %}
- {{ messageText | nl2br }} + {{ messageText | raw | nl2br }}
diff --git a/templates/web/lightbox/IE6/feed.html.twig b/templates/web/lightbox/IE6/feed.html.twig index eb76cafc57..4b5e132c4c 100644 --- a/templates/web/lightbox/IE6/feed.html.twig +++ b/templates/web/lightbox/IE6/feed.html.twig @@ -1,7 +1,7 @@ {% extends "lightbox/index_layout.html.twig" %} {% import 'common/thumbnail.html.twig' as thumbnail %} -{% import 'common/macros.html.twig' as macro %} +{% import 'common/macro_caption.html.twig' as macro_caption %} {% block javascript %} @@ -84,7 +84,7 @@ diff --git a/templates/web/lightbox/IE6/validate.html.twig b/templates/web/lightbox/IE6/validate.html.twig index 10e36c5899..bb60a470f3 100644 --- a/templates/web/lightbox/IE6/validate.html.twig +++ b/templates/web/lightbox/IE6/validate.html.twig @@ -1,7 +1,7 @@ {% extends "lightbox/index_layout.html.twig" %} {% import 'common/thumbnail.html.twig' as thumbnail %} -{% import 'common/macros.html.twig' as macro %} +{% import 'common/macro_caption.html.twig' as macro_caption %} {% block javascript %} @@ -95,7 +95,7 @@ diff --git a/templates/web/lightbox/feed.html.twig b/templates/web/lightbox/feed.html.twig index 721797b88b..0dc742d47d 100644 --- a/templates/web/lightbox/feed.html.twig +++ b/templates/web/lightbox/feed.html.twig @@ -1,7 +1,7 @@ {% extends "lightbox/index_layout.html.twig" %} {% import 'common/thumbnail.html.twig' as thumbnail %} -{% import 'common/macros.html.twig' as macro %} +{% import 'common/macro_caption.html.twig' as macro_caption %} {% block javascript %} @@ -81,7 +81,7 @@ diff --git a/templates/web/lightbox/index.html.twig b/templates/web/lightbox/index.html.twig index 9ff76249e1..70fb42608b 100644 --- a/templates/web/lightbox/index.html.twig +++ b/templates/web/lightbox/index.html.twig @@ -51,7 +51,7 @@
{{ subject }}

- {{basket.getName()|raw}} + {{basket.getName()|e}}

{% if basket.getValidation().isFinished() %} {{ '(validation) session terminee' | trans }} @@ -116,7 +116,7 @@

- {{ basket.getName()|raw}} + {{ basket.getName()|e}}

diff --git a/templates/web/lightbox/validate.html.twig b/templates/web/lightbox/validate.html.twig index 5ca17f41c5..fbb1561817 100644 --- a/templates/web/lightbox/validate.html.twig +++ b/templates/web/lightbox/validate.html.twig @@ -1,7 +1,7 @@ {% extends "lightbox/index_layout.html.twig" %} {% import 'common/thumbnail.html.twig' as thumbnail %} -{% import 'common/macros.html.twig' as macro %} +{% import 'common/macro_caption.html.twig' as macro_caption %} {% block javascript %} @@ -95,7 +95,7 @@ diff --git a/templates/web/login/index.html.twig b/templates/web/login/index.html.twig index 4cbe37ba8f..6cca5039fe 100644 --- a/templates/web/login/index.html.twig +++ b/templates/web/login/index.html.twig @@ -1,6 +1,6 @@ {% extends "login/layout/sidebar-layout.html.twig" %} -{% import "common/macros.html.twig" as macro %} +{% import "common/macro_captcha.html.twig" as macro_captcha %} {% import "login/common/macros.html.twig" as auth_macro %} {% block main_title %} @@ -70,10 +70,11 @@ {{ "Forgot password?" | trans }} + {% if recaptcha_display %}
- {{ macro.captcha() }} + {{ macro_captcha.captcha() }}
{% endif %} diff --git a/templates/web/login/layout/base-layout.html.twig b/templates/web/login/layout/base-layout.html.twig index bd2b5b9e03..8d96cea003 100644 --- a/templates/web/login/layout/base-layout.html.twig +++ b/templates/web/login/layout/base-layout.html.twig @@ -44,6 +44,7 @@ {% include "login/common/templates.html.twig" %} + {% endblock header_javascript %} {% endblock header %} diff --git a/templates/web/login/providers/bind.html.twig b/templates/web/login/providers/bind.html.twig index adce1a0263..41ce1530d5 100644 --- a/templates/web/login/providers/bind.html.twig +++ b/templates/web/login/providers/bind.html.twig @@ -1,6 +1,6 @@ {% extends "login/layout/sidebar-layout.html.twig" %} -{% import "common/macros.html.twig" as macro %} +{% import "common/macro_captcha.html.twig" as macro_captcha %} {% import "login/common/macros.html.twig" as auth_macro %} {% block title %} @@ -60,7 +60,7 @@ {% if recaptcha_display %}
- {{ macro.captcha() }} + {{ macro_captcha.captcha() }}
{% endif %} diff --git a/templates/web/login/providers/mapping.html.twig b/templates/web/login/providers/mapping.html.twig index 1016fa21e7..2a73222f4f 100644 --- a/templates/web/login/providers/mapping.html.twig +++ b/templates/web/login/providers/mapping.html.twig @@ -1,6 +1,6 @@ {% extends "login/layout/sidebar-layout.html.twig" %} -{% import "common/macros.html.twig" as macro %} +{% import "common/macro_captcha.html.twig" as macro_captcha %} {% import "login/common/macros.html.twig" as auth_macro %} {% block title %} @@ -76,7 +76,7 @@ {% if recaptcha_display %}
- {{ macro.captcha() }} + {{ macro_captcha.captcha() }}
{% endif %} diff --git a/templates/web/login/register-classic.html.twig b/templates/web/login/register-classic.html.twig index 9b31038a33..6d62cb45a8 100644 --- a/templates/web/login/register-classic.html.twig +++ b/templates/web/login/register-classic.html.twig @@ -1,7 +1,7 @@ {% extends "login/layout/sidebar-layout.html.twig" %} {% import "login/common/macros.html.twig" as auth_macro %} -{% import "common/macros.html.twig" as macro %} +{% import "common/macro_captcha.html.twig" as macro_captcha %} {% block title %} {{ "Register" | trans }} @@ -85,7 +85,7 @@ {% if recaptcha_display %}
- {{ macro.captcha() }} + {{ macro_captcha.captcha() }}
{% endif %} diff --git a/templates/web/overview.html.twig b/templates/web/overview.html.twig index 8f8fd83bee..2643b530e8 100644 --- a/templates/web/overview.html.twig +++ b/templates/web/overview.html.twig @@ -36,7 +36,7 @@ lang: "{{ app.locale }}", baseUrl: '{{ app['request'].getUriForPath('/') }}', basePath: '{{ app.request.basePath|e('js') }}', - recordUrl: '{{ url('alchemy_embed_view', {url: recordUrl|trim, autoplay: autoplay|default('false') }) }}', + recordUrl: '{{ url('alchemy_embed_view', {url: recordUrl|trim, autoplay: autoplay|default('false'), t: currentTime|trim }) | e('js')}}', debug: {% if app.debug == true %}true{% else %}false{% endif %} }); diff --git a/templates/web/prod/Share/record.html.twig b/templates/web/prod/Share/record.html.twig index 3873e093a3..553ea0c11d 100644 --- a/templates/web/prod/Share/record.html.twig +++ b/templates/web/prod/Share/record.html.twig @@ -33,6 +33,12 @@

+

+ + + {% trans %}Send to Linkedin{% endtrans %} +

+
diff --git a/templates/web/prod/WorkZone/Basket.html.twig b/templates/web/prod/WorkZone/Basket.html.twig index fd5662fea0..8b8d724b66 100644 --- a/templates/web/prod/WorkZone/Basket.html.twig +++ b/templates/web/prod/WorkZone/Basket.html.twig @@ -1,5 +1,5 @@
- +
{% if Page - 1 > 0 %} - - - +   {% endif %} Page {{ Page }} / {{ MaxPage }} {% if Page + 1 <= MaxPage %} - - - +   {% endif %}
+ diff --git a/templates/web/prod/WorkZone/Macros.html.twig b/templates/web/prod/WorkZone/Macros.html.twig index 04f3d3d735..de3d0f4316 100644 --- a/templates/web/prod/WorkZone/Macros.html.twig +++ b/templates/web/prod/WorkZone/Macros.html.twig @@ -19,7 +19,7 @@ {% endif %} - {{basket.getName()}} + {{basket.getName()|e}}