From 9e0203c6b7a9e0bdc9519eea2fb195f274aa47a8 Mon Sep 17 00:00:00 2001 From: Alexandre BRACH Date: Mon, 13 May 2019 11:06:03 +0200 Subject: [PATCH 01/18] Multistage build --- Dockerfile | 150 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 150 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000..601a2aef9f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,150 @@ +FROM php:7.1-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 \ + supervisor \ + 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/* \ + && mkdir -p /var/log/supervisor + #&& chown -R app: /var/log/supervisor + +RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" \ + && php -r "if (hash_file('sha384', 'composer-setup.php') === '48e3236262b34d30969dca3c37281b3b4bbe3221bda826ac6a9a62d6444cdb0dcd0615698a5cbe587c3f0fe57a54d8f5') { 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 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 + + +ADD ./docker/phraseanet/ / + +WORKDIR /var/alchemy/ + +COPY config /var/alchemy/config +COPY grammar /var/alchemy/grammar +COPY lib /var/alchemy/lib +COPY resources /var/alchemy/resources +COPY templates-profiler /var/alchemy/templates-profiler +COPY templates /var/alchemy/templates +COPY tests /var/alchemy/tests +COPY tmp /var/alchemy/tmp +COPY www /var/alchemy/www +COPY composer.json /var/alchemy/ +COPY composer.lock /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/ + +RUN make install_composer +RUN make clean_assets +RUN make install_asset_dependencies +RUN make install_assets + +FROM php:7.1-fpm-stretch as phraseanet + +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 \ + supervisor \ + 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/* \ + && mkdir -p /var/log/supervisor + +RUN mkdir -p /var/alchemy/logs && chmod 777 /var/alchemy/logs \ + && mkdir -p /var/alchemy/cache && chmod 777 /var/alchemy/cache +COPY --from=builder [^(www)] /var/alchemy /var/alchemy + +CMD ["php-fpm"] + +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 + From f09c991b3f379d0419301c419b0f4da4fbeb2c2a Mon Sep 17 00:00:00 2001 From: Nicolas Maillat Date: Mon, 13 May 2019 14:38:15 +0200 Subject: [PATCH 02/18] Update Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 5d993b4a8d..faddad5734 100644 --- a/Dockerfile +++ b/Dockerfile @@ -149,3 +149,4 @@ ADD ./docker/nginx/ / COPY --from=builder /var/alchemy/www /var/alchemy/Phraseanet/www + From 52b4e0014b6da8fa508332f969b5ee70820dfe06 Mon Sep 17 00:00:00 2001 From: Harrys Ravalomanana Date: Tue, 14 May 2019 15:47:11 +0400 Subject: [PATCH 03/18] PHRAS-2552-embed-bundle-edit-workflow --- resources/gulp/components/vendors/alchemy-embed.js | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) 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; From 0e150f07a5faac48e472fac7b0ece92a7fc8fb7b Mon Sep 17 00:00:00 2001 From: Harrys Ravalomanana Date: Tue, 14 May 2019 16:46:37 +0400 Subject: [PATCH 04/18] PHRAS-2552_embed_bundle_update_workflow --- composer.json | 2 +- composer.lock | 14 +- package.json | 1 - yarn.lock | 1796 +++++++++---------------------------------------- 4 files changed, 312 insertions(+), 1501 deletions(-) diff --git a/composer.json b/composer.json index 671105c888..08370448c0 100644 --- a/composer.json +++ b/composer.json @@ -47,7 +47,7 @@ "php": ">=5.5.9", "ext-intl": "*", "alchemy-fr/tcpdf-clone": "~6.0", - "alchemy/embed-bundle": "2.0.0", + "alchemy/embed-bundle": "2.0.1", "alchemy/geonames-api-consumer": "~0.1.0", "alchemy/mediavorus": "^0.4.4", "alchemy/oauth2php": "1.1.0", diff --git a/composer.lock b/composer.lock index a5d77e021e..37acc17bdb 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "7ca4c4391d40525bba738af12c0a43d7", + "content-hash": "f7b0fedd863f0f1aa5841665b563305d", "packages": [ { "name": "alchemy-fr/tcpdf-clone", @@ -131,16 +131,16 @@ }, { "name": "alchemy/embed-bundle", - "version": "2.0.0", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/alchemy-fr/embed-bundle.git", - "reference": "ef1eeb45b246a93bcf098e42faba0885a8f44762" + "reference": "36c788a38bfed3ed19fdc4e1cc0290f0a674e4b9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/alchemy-fr/embed-bundle/zipball/ef1eeb45b246a93bcf098e42faba0885a8f44762", - "reference": "ef1eeb45b246a93bcf098e42faba0885a8f44762", + "url": "https://api.github.com/repos/alchemy-fr/embed-bundle/zipball/36c788a38bfed3ed19fdc4e1cc0290f0a674e4b9", + "reference": "36c788a38bfed3ed19fdc4e1cc0290f0a674e4b9", "shasum": "" }, "require-dev": { @@ -178,10 +178,10 @@ ], "description": "Embed resources bundle", "support": { - "source": "https://github.com/alchemy-fr/embed-bundle/tree/2.0.0", + "source": "https://github.com/alchemy-fr/embed-bundle/tree/2.0.1", "issues": "https://github.com/alchemy-fr/embed-bundle/issues" }, - "time": "2019-05-09T19:58:13+00:00" + "time": "2019-05-14T12:25:18+00:00" }, { "name": "alchemy/geonames-api-consumer", diff --git a/package.json b/package.json index be105e798a..26a23d6279 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,6 @@ }, "dependencies": { "JSON2": "^0.1.0", - "alchemy-embed-medias": "0.5.5-dev", "backbone": "^1.3.3", "blueimp-file-upload": "^8.3.0", "blueimp-load-image": "^2.17.1", diff --git a/yarn.lock b/yarn.lock index 6d5eeee0d1..e307354fa5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3,9 +3,9 @@ "@babel/runtime@^7.2.0": - version "7.4.2" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.4.2.tgz#f5ab6897320f16decd855eed70b705908a313fe8" - integrity sha512-7Bl2rALb7HpvXFL7TETNzKSAeBVCPHELzc0C//9FCxN8nsiueWSJBqaF+2oIJScyILStASR/Cx5WMkXGYTiJFA== + version "7.4.4" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.4.4.tgz#dc2e34982eb236803aa27a07fea6857af1b9171d" + integrity sha512-w0+uT71b6Yi7i5SE0co4NioIpSYS6lLiXvCzWzGSKvpK5vdQtCbICHMj+gbAKAOtxiV6HsVh/MBdaF9EQ6faSg== dependencies: regenerator-runtime "^0.13.2" @@ -1297,16 +1297,16 @@ "@turf/invariant" "^5.1.5" d3-voronoi "1.1.2" -"@videojs/http-streaming@1.5.1": - version "1.5.1" - resolved "https://registry.yarnpkg.com/@videojs/http-streaming/-/http-streaming-1.5.1.tgz#b6c81ec1f1ec93ee57c261f34c144f5493c9fc31" - integrity sha512-Pc3aVr4SRINFLhUWjTofVjQ9iMjs9myXnyfJ0AdW0c4bLwJ0Fw7HUsbns+qseuBzVJe01i7J2R/DE1Y4hFgblA== +"@videojs/http-streaming@1.9.3": + version "1.9.3" + resolved "https://registry.yarnpkg.com/@videojs/http-streaming/-/http-streaming-1.9.3.tgz#c971050495fb58d2b4c6ee0246bb03cc750635b1" + integrity sha512-gNdqyvhxTU67optzxiywHXi/z2+Ju0b6hNth0V7BsL7YAH+R1StIKmmp6SsfFZQfrNW5ykYFoR95M/AT5cg9Ug== dependencies: aes-decrypter "3.0.0" global "^4.3.0" - m3u8-parser "4.2.0" + m3u8-parser "4.3.0" mpd-parser "0.7.0" - mux.js "5.0.1" + mux.js "5.1.1" url-toolkit "^2.1.3" video.js "^6.8.0 || ^7.0.0" @@ -1339,19 +1339,12 @@ abbrev@1.0.x: integrity sha1-kbR5JYinc4wl813W9jdSovh3YTU= accepts@~1.3.4: - version "1.3.5" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2" - integrity sha1-63d99gEXI6OxTopywIBcjoZ0a9I= + version "1.3.7" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" + integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== dependencies: - mime-types "~2.1.18" - negotiator "0.6.1" - -acorn-dynamic-import@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" - integrity sha1-x1K9IQvvZ5UBtsbLf8hPj0cVjMQ= - dependencies: - acorn "^4.0.3" + mime-types "~2.1.24" + negotiator "0.6.2" acorn-jsx@^3.0.1: version "3.0.1" @@ -1372,7 +1365,7 @@ acorn@^3.0.4, acorn@^3.1.0, acorn@^3.3.0: resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" integrity sha1-ReN/s56No/JbruP/U2niu18iAXo= -acorn@^4.0.0, acorn@^4.0.3: +acorn@^4.0.0: version "4.0.13" resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" integrity sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c= @@ -1410,22 +1403,7 @@ agentkeepalive@^3.4.1: dependencies: humanize-ms "^1.2.1" -ajv-keywords@^3.1.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.0.tgz#4b831e7b531415a7cc518cd404e73f6193c6349d" - integrity sha512-aUjdRFISbuFOl0EIZc+9e4FfZp0bDZgAdOOf30bJmw8VM9v84SHyVyxDfbWxpGYbdZD/9XoKxfHVNmxPkhwyGw== - -ajv@^5.0.0: - version "5.5.2" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" - integrity sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU= - dependencies: - co "^4.6.0" - fast-deep-equal "^1.0.0" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.3.0" - -ajv@^6.1.0, ajv@^6.5.5: +ajv@^6.5.5: version "6.10.0" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.0.tgz#90d0d54439da587cd7e843bfb7045f50bd22bdf1" integrity sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg== @@ -1435,29 +1413,6 @@ ajv@^6.1.0, ajv@^6.5.5: json-schema-traverse "^0.4.1" uri-js "^4.2.2" -alchemy-embed-medias@0.5.5-dev: - version "0.5.5-dev" - resolved "https://registry.yarnpkg.com/alchemy-embed-medias/-/alchemy-embed-medias-0.5.5-dev.tgz#24ec4a2a97b99172c3f48161ab06dbe21db70865" - integrity sha512-FUmV4/YKnWUNNbvfvFp7DKphf7wayT1e1EteWmQXXz4fy7gI170pHQJy04+RmcuUOVqyOxOMsUTQXqnYog9zRA== - dependencies: - es5-shim "^4.3.1" - flowplayer "^6.0.4" - gulp-install "^1.0.0" - html5shiv "~3.7.3" - jquery "~1.11.3" - lodash.merge "^3.3.2" - modernizr "^3.7.1" - natives "^1.1.6" - pdfjs-dist "1.8.366" - pym.js "^1.3.2" - screenfull "^2.0.0" - swfobject "^2.2.1" - underscore "^1.8.3" - video.js "5.5.3" - videojs-chapter-thumbnails "1.1.2" - webl10n "^1.0.0" - webpack "^3.10.0" - align-text@^0.1.1, align-text@^0.1.3: version "0.1.4" resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" @@ -1717,11 +1672,6 @@ ansi-regex@^3.0.0: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= -ansi-regex@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" - integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== - ansi-reset@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/ansi-reset/-/ansi-reset-0.1.1.tgz#e7e71292c3c7ddcd4d62ef4a6c7c05980911c3b7" @@ -1746,7 +1696,7 @@ ansi-styles@^2.2.1: resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= -ansi-styles@^3.2.0, ansi-styles@^3.2.1: +ansi-styles@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== @@ -1959,15 +1909,6 @@ asap@^2.0.0: resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= -asn1.js@^4.0.0: - version "4.10.1" - resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" - integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== - dependencies: - bn.js "^4.0.0" - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - asn1@~0.2.3: version "0.2.4" resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" @@ -2053,13 +1994,6 @@ assert-plus@1.0.0, assert-plus@^1.0.0: resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= -assert@^1.1.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" - integrity sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE= - dependencies: - util "0.10.3" - assertion-error@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.0.tgz#c7f85438fdd466bc7ca16ab90c81513797a5d23b" @@ -2120,9 +2054,9 @@ async-each-series@^1.1.0: integrity sha1-9C/YFV048hpbjqB8KOBj7RcAsTg= async-each@^1.0.0, async-each@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.2.tgz#8b8a7ca2a658f927e9f307d6d1a42f4199f0f735" - integrity sha512-6xrbvN0MOBKSJDdonmSSz2OwFSgxRaVtBDes26mj9KIGtDo+g9xosFRSC+i1gQh2oAN/tQ62AI/pGZGQjVOiRg== + version "1.0.3" + resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" + integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== async-foreach@^0.1.3: version "0.1.3" @@ -2159,13 +2093,6 @@ async@1.5.2, async@1.x, async@^1.5.2: resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo= -async@^2.1.2: - version "2.6.2" - resolved "https://registry.yarnpkg.com/async/-/async-2.6.2.tgz#18330ea7e6e313887f5d2f2a904bac6fe4dd5381" - integrity sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg== - dependencies: - lodash "^4.17.11" - async@~0.2.6: version "0.2.10" resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" @@ -2596,11 +2523,6 @@ base64-arraybuffer@0.1.5: resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" integrity sha1-c5JncZI7Whl0etZmqlzUv5xunOg= -base64-js@^1.0.2: - version "1.3.0" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" - integrity sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw== - base64id@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/base64id/-/base64id-1.0.0.tgz#47688cb99bb6804f0e06d3e763b1c32e57d8e6b6" @@ -2699,9 +2621,9 @@ block-stream@*: inherits "~2.0.0" bluebird@^3.5.0, bluebird@^3.5.1, bluebird@^3.5.3: - version "3.5.3" - resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.3.tgz#7d01c6f9616c9a51ab0f8c549a79dfe6ec33efa7" - integrity sha512-/qKPUQlaW1OyR51WeCPBvRnAlnZFUJkCSG5HzGnuIqhgyJtF+T94lFnn33eiazjRm2LAHVy2guNnaq48X9SJuw== + version "3.5.4" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.4.tgz#d6cc661595de30d5b3af5fcedd3c0b3ef6ec5714" + integrity sha512-FG+nFEZChJrbQ9tIccIfZJBz3J7mLrAhxakAbnrJWn8d7aKOC+LWifa0G+p4ZqKp4y13T7juYvdhq9NzKdsrjw== blueimp-canvas-to-blob@3.5.0: version "3.5.0" @@ -2724,9 +2646,9 @@ blueimp-file-upload@^8.3.0: jquery ">=1.6" blueimp-file-upload@^9.18.0: - version "9.28.0" - resolved "https://registry.yarnpkg.com/blueimp-file-upload/-/blueimp-file-upload-9.28.0.tgz#e11a7eac367d2b3fc0f1cd9d1717299686bd98b4" - integrity sha512-Qvb5/CFlmIZ2cBoItpU2zQhUIvtZsSk9tV+X632uyrDpdpvdaJxDR9Wo8i7aUhfnbO1dbLuS5/auaA04Vk+XHw== + version "9.30.0" + resolved "https://registry.yarnpkg.com/blueimp-file-upload/-/blueimp-file-upload-9.30.0.tgz#c6f255ce8cbfb21d6f22fabd8dddea6e704227f3" + integrity sha512-+xuYMzWREjm2MgQMRlftThDBdP4DklKjC++VihDNW0iwBLfziS4B/BAYGuQxMY8MsxAwVQk3ogxaczsaNVVVEg== optionalDependencies: blueimp-canvas-to-blob "3.5.0" blueimp-load-image "2.12.2" @@ -2738,9 +2660,9 @@ blueimp-load-image@2.12.2: integrity sha1-ahdZiquFjU+/AVQ+BjEUG1EFfIc= blueimp-load-image@>=1.9.1, blueimp-load-image@^2.14.0, blueimp-load-image@^2.17.1: - version "2.20.1" - resolved "https://registry.yarnpkg.com/blueimp-load-image/-/blueimp-load-image-2.20.1.tgz#8cf677f3cd0368548bf0108997ba09ea2e331c1b" - integrity sha512-GacvACFcxv5MV+m24ylTte2ycWMeSZqdmChAM5kSBCJOyFSY8jkQgBpGM3Mn+l1p/seGtrnRss+8QL2k+FXO4A== + version "2.21.0" + resolved "https://registry.yarnpkg.com/blueimp-load-image/-/blueimp-load-image-2.21.0.tgz#aac5b65e9ed3325af4f4967fecb435cbf0bfe777" + integrity sha512-A+psaqgeYRepWous4OFL2H8XwonuMRs96JYgC9Ndmmnq+dosmiuReA6A16EpjK1cxntQC/RDWMr3s1sutX9dgg== blueimp-tmpl@3.6.0: version "3.6.0" @@ -2752,11 +2674,6 @@ blueimp-tmpl@>=2.3.0: resolved "https://registry.yarnpkg.com/blueimp-tmpl/-/blueimp-tmpl-3.11.0.tgz#47e78cbab16770e3922b019a250b4ad9c7b20f8f" integrity sha512-+nzph90GQ7YzYdOJNLm1hHJrzWnWbxUGJyJVrLBD+q7HF6PIIjJVNrJCgLkFmNcNvJRKICvWuItL8NpH9Z8J5A== -bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: - version "4.11.8" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" - integrity sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA== - bootstrap-multiselect@^0.9.13-1: version "0.9.13-1" resolved "https://registry.yarnpkg.com/bootstrap-multiselect/-/bootstrap-multiselect-0.9.13-1.tgz#2c57cee260b18d7f01a4edd9d65f25df0425fd2a" @@ -2823,30 +2740,25 @@ brfs@^1.4.0: static-module "^2.2.0" through2 "^2.0.0" -brorand@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" - integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= - browser-stdout@1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" integrity sha1-81HTKWnTL6XXpVZxVCY9korjvR8= -browser-sync-client@^2.26.2: - version "2.26.2" - resolved "https://registry.yarnpkg.com/browser-sync-client/-/browser-sync-client-2.26.2.tgz#dd0070c80bdc6d9021e89f7837ee70ed0a8acf91" - integrity sha512-FEuVJD41fI24HJ30XOT2RyF5WcnEtdJhhTqeyDlnMk/8Ox9MZw109rvk9pdfRWye4soZLe+xcAo9tHSMxvgAdw== +browser-sync-client@^2.26.4: + version "2.26.4" + resolved "https://registry.yarnpkg.com/browser-sync-client/-/browser-sync-client-2.26.4.tgz#2b2972579139ce73bfaf0d165c31ef2fecdf02f9" + integrity sha512-mQiDp5/tf79VezDS5j/EExU4Ze6f5DQYuL0Z7VdJgBbNLTHDfkYGi2R620qc6HkY9XZA0m4/UwihT7J42RBIJA== dependencies: etag "1.8.1" fresh "0.5.2" mitt "^1.1.3" rxjs "^5.5.6" -browser-sync-ui@^2.26.2: - version "2.26.2" - resolved "https://registry.yarnpkg.com/browser-sync-ui/-/browser-sync-ui-2.26.2.tgz#a1d8e107cfed5849d77e3bbd84ae5d566beb4ea0" - integrity sha512-LF7GMWo8ELOE0eAlxuRCfnGQT1ZxKP9flCfGgZdXFc6BwmoqaJHlYe7MmVvykKkXjolRXTz8ztXAKGVqNwJ3EQ== +browser-sync-ui@^2.26.4: + version "2.26.4" + resolved "https://registry.yarnpkg.com/browser-sync-ui/-/browser-sync-ui-2.26.4.tgz#3772f13c6b93f2d7d333f4be0ca1ec02aae97dba" + integrity sha512-u20P3EsZoM8Pt+puoi3BU3KlbQAH1lAcV+/O4saF26qokrBqIDotmGonfWwoRbUmdxZkM9MBmA0K39ZTG1h4sA== dependencies: async-each-series "0.1.1" connect-history-api-fallback "^1" @@ -2856,12 +2768,12 @@ browser-sync-ui@^2.26.2: stream-throttle "^0.1.3" browser-sync@^2.10.0: - version "2.26.3" - resolved "https://registry.yarnpkg.com/browser-sync/-/browser-sync-2.26.3.tgz#1b59bd5935938a5b0fa73b3d78ef1050bd2bf912" - integrity sha512-VLzpjCA4uXqfzkwqWtMM6hvPm2PNHp2RcmzBXcbi6C9WpkUhhFb8SVAr4CFrCsFxDg+oY6HalOjn8F+egyvhag== + version "2.26.5" + resolved "https://registry.yarnpkg.com/browser-sync/-/browser-sync-2.26.5.tgz#c11353ffd4694be88a34b9a5d2a5a0ba789587d0" + integrity sha512-zVa6MmadAFgl5Uk53Yy5cw5tGTO7xSGAWK3Yx70GJ1t5jK+r6B4q3xq+1XbYfLt1SbeFg7WoNWneNhMT4B9jFw== dependencies: - browser-sync-client "^2.26.2" - browser-sync-ui "^2.26.2" + browser-sync-client "^2.26.4" + browser-sync-ui "^2.26.4" bs-recipes "1.3.4" bs-snippet-injector "^2.0.1" chokidar "^2.0.4" @@ -2876,7 +2788,7 @@ browser-sync@^2.10.0: http-proxy "1.15.2" immutable "^3" localtunnel "1.9.1" - micromatch "2.3.11" + micromatch "^3.1.10" opn "5.3.0" portscanner "2.1.1" qs "6.2.3" @@ -2891,63 +2803,11 @@ browser-sync@^2.10.0: ua-parser-js "0.7.17" yargs "6.4.0" -browserify-aes@^1.0.0, browserify-aes@^1.0.4: - version "1.2.0" - resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" - integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== - dependencies: - buffer-xor "^1.0.3" - cipher-base "^1.0.0" - create-hash "^1.1.0" - evp_bytestokey "^1.0.3" - inherits "^2.0.1" - safe-buffer "^5.0.1" - -browserify-cipher@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" - integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== - dependencies: - browserify-aes "^1.0.4" - browserify-des "^1.0.0" - evp_bytestokey "^1.0.0" - -browserify-des@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" - integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== - dependencies: - cipher-base "^1.0.1" - des.js "^1.0.0" - inherits "^2.0.1" - safe-buffer "^5.1.2" - browserify-package-json@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/browserify-package-json/-/browserify-package-json-1.0.1.tgz#98dde8aa5c561fd6d3fe49bbaa102b74b396fdea" integrity sha1-mN3oqlxWH9bT/km7qhArdLOW/eo= -browserify-rsa@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" - integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ= - dependencies: - bn.js "^4.1.0" - randombytes "^2.0.1" - -browserify-sign@^4.0.0: - version "4.0.4" - resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" - integrity sha1-qk62jl17ZYuqa/alfmMMvXqT0pg= - dependencies: - bn.js "^4.1.1" - browserify-rsa "^4.0.0" - create-hash "^1.1.0" - create-hmac "^1.1.2" - elliptic "^6.0.0" - inherits "^2.0.1" - parse-asn1 "^5.0.0" - browserify-zlib@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" @@ -2955,13 +2815,6 @@ browserify-zlib@^0.1.4: dependencies: pako "~0.2.0" -browserify-zlib@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" - integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== - dependencies: - pako "~1.0.5" - browserslist@^1.7.6: version "1.7.7" resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" @@ -3029,30 +2882,11 @@ buffer-from@^1.0.0: resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== -buffer-xor@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" - integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= - -buffer@^4.3.0: - version "4.9.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" - integrity sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg= - dependencies: - base64-js "^1.0.2" - ieee754 "^1.1.4" - isarray "^1.0.0" - builtin-modules@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" integrity sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8= -builtin-status-codes@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" - integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= - builtins@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" @@ -3068,10 +2902,10 @@ byte-size@^5.0.1: resolved "https://registry.yarnpkg.com/byte-size/-/byte-size-5.0.1.tgz#4b651039a5ecd96767e71a3d7ed380e48bed4191" integrity sha512-/XuKeqWocKsYa/cBY1YbSJSWWqTi4cFgr9S6OyM7PBaPbr9zvNGwWP33vt0uqGhwDdN+y3yhbXVILEUpnwEWGw== -bytes@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" - integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg= +bytes@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" + integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== bytes@^2.4.0: version "2.5.0" @@ -3185,15 +3019,10 @@ camelcase@^4.0.0, camelcase@^4.1.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= -camelcase@^5.0.0: - version "5.3.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: - version "1.0.30000954" - resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000954.tgz#ab9b0000d92a055747f380701684b9c9d017fca4" - integrity sha512-Rwd/JRb1/7wXzSOS5AQHXp4RBWXeNNPZW/9Gmv1kfO14ayrssFOM+vbu/0CPkYOCSZK6QZGMlrzaXznGLPkBAA== + version "1.0.30000967" + resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000967.tgz#a2e9e6260e026208250f3b2d587ef02314cefa86" + integrity sha512-70gk6cLSD5rItxnZ7WUxyCpM9LAjEb1tVzlENQfXQXZS/IiGnfAC6u32G5cZFlDBKjNPBIta/QSx5CZLZepxRA== capture-stack-trace@^1.0.0: version "1.0.1" @@ -3290,7 +3119,7 @@ chokidar@^1.6.1: optionalDependencies: fsevents "^1.0.0" -chokidar@^2.0.2, chokidar@^2.0.4: +chokidar@^2.0.4: version "2.1.5" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.5.tgz#0ae8434d962281a5f56c72869e79cb6d9d86ad4d" integrity sha512-i0TprVWp+Kj4WRPtInjexJ8Q+BqTE909VpH8xVhXrJkoc5QC8VO9TryGOqTr+2hljzc1sC62t22h5tZePodM/A== @@ -3331,14 +3160,6 @@ cidr-regex@^2.0.10: dependencies: ip-regex "^2.1.0" -cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" - integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - class-utils@^0.3.2, class-utils@^0.3.5: version "0.3.6" resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" @@ -3438,15 +3259,6 @@ cliui@^4.0.0: strip-ansi "^4.0.0" wrap-ansi "^2.0.0" -cliui@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" - integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== - dependencies: - string-width "^3.1.0" - strip-ansi "^5.2.0" - wrap-ansi "^5.1.0" - clone-buffer@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58" @@ -3568,9 +3380,9 @@ columnify@~1.5.4: wcwidth "^1.0.0" combined-stream@^1.0.6, combined-stream@~1.0.6: - version "1.0.7" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.7.tgz#2d1d24317afb8abe95d6d2c0b07b57813539d828" - integrity sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w== + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== dependencies: delayed-stream "~1.0.0" @@ -3579,10 +3391,10 @@ commander@0.6.1: resolved "https://registry.yarnpkg.com/commander/-/commander-0.6.1.tgz#fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06" integrity sha1-+mihT2qUXVTbvlDYzbMyDp47GgY= -commander@2, commander@^2.2.0, commander@^2.9.0, commander@~2.19.0: - version "2.19.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a" - integrity sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg== +commander@2, commander@^2.2.0, commander@^2.9.0, commander@~2.20.0: + version "2.20.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" + integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ== commander@2.0.0: version "2.0.0" @@ -3625,12 +3437,12 @@ component-bind@1.0.0: resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" integrity sha1-AMYIq33Nk4l8AAllGx06jh5zu9E= -component-emitter@1.2.1, component-emitter@^1.2.1: +component-emitter@1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY= -component-emitter@^1.2.0: +component-emitter@^1.2.0, component-emitter@^1.2.1: version "1.3.0" resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== @@ -3726,23 +3538,11 @@ connect@3.6.6: parseurl "~1.3.2" utils-merge "1.0.1" -console-browserify@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" - integrity sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA= - dependencies: - date-now "^0.1.4" - console-control-strings@^1.0.0, console-control-strings@^1.1.0, console-control-strings@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= -constants-browserify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" - integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= - contains-path@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" @@ -3797,14 +3597,6 @@ corslite@0.0.6: resolved "https://registry.yarnpkg.com/corslite/-/corslite-0.0.6.tgz#622954e14c33852123c4c68fa3deffa9e2d1c896" integrity sha1-YilU4UwzhSEjxMaPo97/qeLRyJY= -create-ecdh@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" - integrity sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw== - dependencies: - bn.js "^4.1.0" - elliptic "^6.0.0" - create-error-class@^3.0.0: version "3.0.2" resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" @@ -3812,29 +3604,6 @@ create-error-class@^3.0.0: dependencies: capture-stack-trace "^1.0.0" -create-hash@^1.1.0, create-hash@^1.1.2: - version "1.2.0" - resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" - integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== - dependencies: - cipher-base "^1.0.1" - inherits "^2.0.1" - md5.js "^1.3.4" - ripemd160 "^2.0.1" - sha.js "^2.4.0" - -create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: - version "1.1.7" - resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" - integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== - dependencies: - cipher-base "^1.0.3" - create-hash "^1.1.0" - inherits "^2.0.1" - ripemd160 "^2.0.0" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - cross-spawn@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" @@ -3852,34 +3621,6 @@ cross-spawn@^5.0.1: shebang-command "^1.2.0" which "^1.2.9" -cross-spawn@^6.0.0: - version "6.0.5" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" - integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== - dependencies: - nice-try "^1.0.4" - path-key "^2.0.1" - semver "^5.5.0" - shebang-command "^1.2.0" - which "^1.2.9" - -crypto-browserify@^3.11.0: - version "3.12.0" - resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" - integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== - dependencies: - browserify-cipher "^1.0.0" - browserify-sign "^4.0.0" - create-ecdh "^4.0.0" - create-hash "^1.1.0" - create-hmac "^1.1.0" - diffie-hellman "^5.0.0" - inherits "^2.0.1" - pbkdf2 "^3.0.3" - public-encrypt "^4.0.0" - randombytes "^2.0.0" - randomfill "^1.0.3" - crypto-random-string@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" @@ -3934,18 +3675,6 @@ d3-voronoi@1.1.2: resolved "https://registry.yarnpkg.com/d3-voronoi/-/d3-voronoi-1.1.2.tgz#1687667e8f13a2d158c80c1480c5a29cb0d8973c" integrity sha1-Fodmfo8TotFYyAwUgMWinLDYlzw= -d@1: - version "1.0.0" - resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" - integrity sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8= - dependencies: - es5-ext "^0.10.9" - -dargs@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/dargs/-/dargs-5.1.0.tgz#ec7ea50c78564cd36c9d5ec18f66329fade27829" - integrity sha1-7H6lDHhWTNNsnV7Bj2Yyn63ieCk= - dashdash@^1.12.0: version "1.14.1" resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" @@ -3972,11 +3701,6 @@ data-store@^0.16.0, data-store@^0.16.1: rimraf "^2.5.3" union-value "^0.2.3" -date-now@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" - integrity sha1-6vQ5/U1ISK105cx9vvIAZyueNFs= - dateformat@^1.0.7-1.2.3: version "1.0.12" resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" @@ -4000,14 +3724,14 @@ death@^1.0.0: resolved "https://registry.yarnpkg.com/death/-/death-1.1.0.tgz#01aa9c401edd92750514470b8266390c66c67318" integrity sha1-AaqcQB7dknUFFEcLgmY5DGbGcxg= -debug@*: +debug@*, debug@^4.1.0: version "4.1.1" resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== dependencies: ms "^2.1.1" -debug@2.6.9, debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.4.1, debug@^2.6.0, debug@^2.6.2, debug@^2.6.3, debug@^2.6.6, debug@^2.6.8: +debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.4.1, debug@^2.6.0, debug@^2.6.2, debug@^2.6.3, debug@^2.6.6, debug@^2.6.8: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== @@ -4028,12 +3752,12 @@ debug@^3.0.0, debug@^3.1.0, debug@^3.2.6: dependencies: ms "^2.1.1" -debuglog@^1.0.1: +debuglog@*, debuglog@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492" integrity sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI= -decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2, decamelize@^1.2.0: +decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= @@ -4095,7 +3819,7 @@ defaults@^1.0.0, defaults@^1.0.3: dependencies: clone "^1.0.2" -define-properties@^1.1.2: +define-properties@^1.1.2, define-properties@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== @@ -4177,14 +3901,6 @@ deprecated@^0.0.1: resolved "https://registry.yarnpkg.com/deprecated/-/deprecated-0.0.1.tgz#f9c9af5464afa1e7a971458a8bdef2aa94d5bb19" integrity sha1-+cmvVGSvoeepcUWKi97yqpTVuxk= -des.js@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" - integrity sha1-wHTS4qpqipoH29YfmhXCzYPsjsw= - dependencies: - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - destroy@~1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" @@ -4233,32 +3949,11 @@ diff@3.3.1: resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.1.tgz#aa8567a6eed03c531fc89d3f711cd0e5259dec75" integrity sha512-MKPHZDMB0o6yHyDryUOScqZibp914ksXwAMYMTHj6KO8UeKsRYNJD3oNCKjTqZon+V488P7N/HzXF8t7ZR95ww== -diffie-hellman@^5.0.0: - version "5.0.3" - resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" - integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== - dependencies: - bn.js "^4.1.0" - miller-rabin "^4.0.0" - randombytes "^2.0.0" - -doctrine@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" - integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== - dependencies: - esutils "^2.0.2" - dom-walk@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018" integrity sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg= -domain-browser@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" - integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== - dot-prop@^4.1.0: version "4.2.0" resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" @@ -4343,27 +4038,9 @@ ee-first@1.1.1: integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= electron-to-chromium@^1.2.7: - version "1.3.119" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.119.tgz#9a7770da667252aeb81f667853f67c2b26e00197" - integrity sha512-3mtqcAWa4HgG+Djh/oNXlPH0cOH6MmtwxN1nHSaReb9P0Vn51qYPqYwLeoSuAX9loU1wrOBhFbiX3CkeIxPfgg== - -elliptic@^6.0.0: - version "6.4.1" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.1.tgz#c2d0b7776911b86722c632c3c06c60f2f819939a" - integrity sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ== - dependencies: - bn.js "^4.4.0" - brorand "^1.0.1" - hash.js "^1.0.0" - hmac-drbg "^1.0.0" - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.0" - -emoji-regex@^7.0.1: - version "7.0.3" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" - integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== + version "1.3.133" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.133.tgz#c47639c19b91feee3e22fad69f5556142007008c" + integrity sha512-lyoC8aoqbbDqsprb6aPdt9n3DpOZZzdz/T4IZKsR0/dkZIxnJVUjjcpOSwA66jPRIOyDAamCTAUqweU05kKNSg== emojis-list@^2.0.0: version "2.1.0" @@ -4516,27 +4193,12 @@ engine@^0.1.12, engine@^0.1.5: object.omit "^2.0.0" set-value "^0.2.0" -enhanced-resolve@^3.4.0: - version "3.4.1" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" - integrity sha1-BCHjOf1xQZs9oT0Smzl5BAIwR24= - dependencies: - graceful-fs "^4.1.2" - memory-fs "^0.4.0" - object-assign "^4.0.1" - tapable "^0.2.7" - -entities@~1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" - integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== - err-code@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/err-code/-/err-code-1.1.2.tgz#06e0116d3028f6aef4806849eb0ea6a748ae6960" integrity sha1-BuARbTAo9q70gGhJ6w6mp0iuaWA= -errno@^0.1.3, errno@~0.1.7: +errno@~0.1.7: version "0.1.7" resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg== @@ -4555,7 +4217,7 @@ error-symbol@^0.1.0: resolved "https://registry.yarnpkg.com/error-symbol/-/error-symbol-0.1.0.tgz#0a4dae37d600d15a29ba453d8ef920f1844333f6" integrity sha1-Ck2uN9YA0VopukU9jvkg8YRDM/Y= -es-abstract@^1.5.0: +es-abstract@^1.12.0, es-abstract@^1.5.0: version "1.13.0" resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9" integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg== @@ -4576,40 +4238,10 @@ es-to-primitive@^1.2.0: is-date-object "^1.0.1" is-symbol "^1.0.2" -es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14: - version "0.10.49" - resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.49.tgz#059a239de862c94494fec28f8150c977028c6c5e" - integrity sha512-3NMEhi57E31qdzmYp2jwRArIUsj1HI/RxbQ4bgnSB+AIKIxsAmTiK83bYMifIcpWvEc3P1X30DhUKOqEtF/kvg== - dependencies: - es6-iterator "~2.0.3" - es6-symbol "~3.1.1" - next-tick "^1.0.0" - -es5-shim@^4.3.1, es5-shim@^4.5.1: - version "4.5.12" - resolved "https://registry.yarnpkg.com/es5-shim/-/es5-shim-4.5.12.tgz#508c13dda1c87dd3df1b50e69e7b96b82149b649" - integrity sha512-MjoCAHE6P2Dirme70Cxd9i2Ng8rhXiaVSsxDWdSwimfLERJL/ypR2ed2rTYkeeYrMk8gq281dzKLiGcdrmc8qg== - -es6-iterator@^2.0.1, es6-iterator@~2.0.1, es6-iterator@~2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" - integrity sha1-p96IkUGgWpSwhUQDstCg+/qY87c= - dependencies: - d "1" - es5-ext "^0.10.35" - es6-symbol "^3.1.1" - -es6-map@^0.1.3: - version "0.1.5" - resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" - integrity sha1-kTbgUD3MBqMBaQ8LsU/042TpSfA= - dependencies: - d "1" - es5-ext "~0.10.14" - es6-iterator "~2.0.1" - es6-set "~0.1.5" - es6-symbol "~3.1.1" - event-emitter "~0.3.5" +es5-shim@^4.5.1: + version "4.5.13" + resolved "https://registry.yarnpkg.com/es5-shim/-/es5-shim-4.5.13.tgz#5d88062de049f8969f83783f4a4884395f21d28b" + integrity sha512-xi6hh6gsvDE0MaW4Vp1lgNEBpVcCXRWfPXj5egDvtgLz4L9MEvNwYEMdJH+JJinWkwa8c3c3o5HduV7dB/e1Hw== es6-promise@^4.0.3, es6-promise@^4.0.5, es6-promise@^4.1.1: version "4.2.6" @@ -4623,35 +4255,6 @@ es6-promisify@^5.0.0: dependencies: es6-promise "^4.0.3" -es6-set@~0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" - integrity sha1-0rPsXU2ADO2BjbU40ol02wpzzLE= - dependencies: - d "1" - es5-ext "~0.10.14" - es6-iterator "~2.0.1" - es6-symbol "3.1.1" - event-emitter "~0.3.5" - -es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" - integrity sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc= - dependencies: - d "1" - es5-ext "~0.10.14" - -es6-weak-map@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" - integrity sha1-XjqzIlH/0VOKH45f+hNXdy+S2W8= - dependencies: - d "1" - es5-ext "^0.10.14" - es6-iterator "^2.0.1" - es6-symbol "^3.1.1" - escape-html@~1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" @@ -4698,16 +4301,6 @@ escodegen@~1.9.0: optionalDependencies: source-map "~0.6.1" -escope@^3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" - integrity sha1-4Bl16BJ4GhY6ba392AOY3GTIicM= - dependencies: - es6-map "^0.1.3" - es6-weak-map "^2.0.1" - esrecurse "^4.1.0" - estraverse "^4.1.1" - esprima@2.7.x, esprima@^2.7.1: version "2.7.3" resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" @@ -4735,19 +4328,12 @@ espurify@^1.3.0, espurify@^1.6.0: dependencies: core-js "^2.0.0" -esrecurse@^4.1.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" - integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== - dependencies: - estraverse "^4.1.0" - estraverse@^1.9.1: version "1.9.3" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" integrity sha1-r2fy3JIlgkFZUJJgkaQAXSnJu0Q= -estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: +estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM= @@ -4762,14 +4348,6 @@ etag@1.8.1, etag@^1.8.1, etag@~1.8.1: resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= -event-emitter@~0.3.5: - version "0.3.5" - resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" - integrity sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk= - dependencies: - d "1" - es5-ext "~0.10.14" - eventemitter3@1.x.x: version "1.2.0" resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" @@ -4780,19 +4358,6 @@ events@^1.1.1: resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" integrity sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ= -events@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/events/-/events-3.0.0.tgz#9a0a0dfaf62893d92b875b8f2698ca4114973e88" - integrity sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA== - -evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" - integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== - dependencies: - md5.js "^1.3.4" - safe-buffer "^5.1.1" - execa@^0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" @@ -4806,19 +4371,6 @@ execa@^0.7.0: signal-exit "^3.0.0" strip-eof "^1.0.0" -execa@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" - integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== - dependencies: - cross-spawn "^6.0.0" - get-stream "^4.0.0" - is-stream "^1.1.0" - npm-run-path "^2.0.0" - p-finally "^1.0.0" - signal-exit "^3.0.0" - strip-eof "^1.0.0" - exit-hook@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" @@ -4908,11 +4460,6 @@ expand-tilde@^2.0.0, expand-tilde@^2.0.1, expand-tilde@^2.0.2: dependencies: homedir-polyfill "^1.0.1" -expect.js@~0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/expect.js/-/expect.js-0.2.0.tgz#1028533d2c1c363f74a6796ff57ec0520ded2be1" - integrity sha1-EChTPSwcNj90pnlv9X7AUg3tK+E= - export-files@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/export-files/-/export-files-2.1.1.tgz#bbf64574053a09e4eb98e5f43501d572b2c3ce7f" @@ -5024,11 +4571,6 @@ fancy-log@^1.0.0, fancy-log@^1.1.0: parse-node-version "^1.0.0" time-stamp "^1.0.0" -fast-deep-equal@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" - integrity sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ= - fast-deep-equal@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" @@ -5120,11 +4662,6 @@ file-stat@^0.1.0: lazy-cache "^0.2.3" through2 "^2.0.0" -file@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/file/-/file-0.2.2.tgz#c3dfd8f8cf3535ae455c2b423c2e52635d76b4d3" - integrity sha1-w9/Y+M81Na5FXCtCPC5SY112tNM= - filelist@0.0.x: version "0.0.6" resolved "https://registry.yarnpkg.com/filelist/-/filelist-0.0.6.tgz#58a641ad1f57574a27fe87a440ef318834b55719" @@ -5210,7 +4747,7 @@ find-up@^1.0.0: path-exists "^2.0.0" pinkie-promise "^2.0.0" -find-up@^2.0.0, find-up@^2.1.0: +find-up@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= @@ -5235,9 +4772,9 @@ findup-sync@^2.0.0: resolve-dir "^1.0.1" fined@^1.0.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/fined/-/fined-1.1.1.tgz#95d88ff329123dd1a6950fdfcd321f746271e01f" - integrity sha512-jQp949ZmEbiYHk3gkbdtpJ0G1+kgtLQBNdP5edFP7Fh+WAYceLQz6yO1SBj72Xkg8GVyTB3bBzAYrHJVh5Xd5g== + version "1.2.0" + resolved "https://registry.yarnpkg.com/fined/-/fined-1.2.0.tgz#d00beccf1aa2b475d16d423b0238b713a2c4a37b" + integrity sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng== dependencies: expand-tilde "^2.0.2" is-plain-object "^2.0.3" @@ -5270,11 +4807,6 @@ flow-remove-types@^1.1.2: babylon "^6.15.0" vlq "^0.2.1" -flowplayer@^6.0.4: - version "6.0.5" - resolved "https://registry.yarnpkg.com/flowplayer/-/flowplayer-6.0.5.tgz#2493f2165d46873ac47e9938cda68195d92aef23" - integrity sha1-JJPyFl1GhzrEfpk4zaaBldkq7yM= - flush-write-stream@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8" @@ -5450,12 +4982,12 @@ fs@0.0.2: integrity sha1-4fJE7zkzwbKmS9R5kTYGDQ9ZFPg= fsevents@^1.0.0, fsevents@^1.1.2, fsevents@^1.2.7: - version "1.2.7" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.7.tgz#4851b664a3783e52003b3c66eb0eee1074933aa4" - integrity sha512-Pxm6sI2MeBD7RdD12RYsqaP0nMiwx8eZBXCa6z2L+mRHm2DYrOYwihmhjpkdjUHwQhslWQjRpEgNq4XvBmaAuw== + version "1.2.9" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f" + integrity sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw== dependencies: - nan "^2.9.2" - node-pre-gyp "^0.10.0" + nan "^2.12.1" + node-pre-gyp "^0.12.0" fstream@^1.0.0, fstream@^1.0.2: version "1.0.11" @@ -5567,11 +5099,6 @@ get-caller-file@^1.0.1: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== -get-caller-file@^2.0.1: - version "2.0.5" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - get-closest@*: version "0.0.4" resolved "https://registry.yarnpkg.com/get-closest/-/get-closest-0.0.4.tgz#269ac776d1e6022aa0fd586dd708e8a7d32269af" @@ -5754,9 +5281,9 @@ glob@^5.0.15, glob@^5.0.3: path-is-absolute "^1.0.0" glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@~7.1.1: - version "7.1.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" - integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ== + version "7.1.4" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" + integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== dependencies: fs.realpath "^1.0.0" inflight "^1.0.4" @@ -6030,18 +5557,6 @@ gulp-install@^0.6.0: through2 "^2.0.0" which "^1.0.9" -gulp-install@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/gulp-install/-/gulp-install-1.1.0.tgz#9386b46cb4669b47257b6adf4e3ea2e83c928a1a" - integrity sha1-k4a0bLRmm0cle2rfTj6i6DySiho= - dependencies: - dargs "^5.1.0" - gulp-util "^3.0.7" - lodash.groupby "^4.6.0" - p-queue "^1.0.0" - through2 "^2.0.3" - which "^1.2.14" - gulp-match@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/gulp-match/-/gulp-match-1.0.3.tgz#91c7c0d7f29becd6606d57d80a7f8776a87aba8e" @@ -6201,9 +5716,9 @@ gunzip-maybe@^1.4.0: through2 "^2.0.3" handlebars@^4.0.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.1.tgz#6e4e41c18ebe7719ae4d38e5aca3d32fa3dd23d3" - integrity sha512-3Zhi6C0euYZL5sM0Zcy7lInLXKQ+YLcF/olbN010mzGQ4XVm50JeyBnMqofHh696GrciGruC7kCcApPDJvVgwA== + version "4.1.2" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.2.tgz#b6b37c1ced0306b221e094fc7aca3ec23b131b67" + integrity sha512-nvfrjqvt9xQ8Z/w0ijewdD/vvWDTOweBUm96NTr66Wfvo1mJenBLwcYmPs3TIBP5ruzYGD7Hx/DaM9RmhroGPw== dependencies: neo-async "^2.6.0" optimist "^0.6.1" @@ -6344,22 +5859,6 @@ has@^1.0.1, has@^1.0.3: dependencies: function-bind "^1.1.1" -hash-base@^3.0.0: - version "3.0.4" - resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" - integrity sha1-X8hoaEfs1zSZQDMZprCj8/auSRg= - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - -hash.js@^1.0.0, hash.js@^1.0.3: - version "1.1.7" - resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" - integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== - dependencies: - inherits "^2.0.3" - minimalistic-assert "^1.0.1" - hasha@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/hasha/-/hasha-2.2.0.tgz#78d7cbfc1e6d66303fe79837365984517b2f6ee1" @@ -6382,15 +5881,6 @@ helper-cache@^0.7.2: lazy-cache "^0.2.3" lodash.bind "^3.1.0" -hmac-drbg@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" - integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= - dependencies: - hash.js "^1.0.3" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.1" - homedir-polyfill@^1.0.0, homedir-polyfill@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" @@ -6403,7 +5893,7 @@ hosted-git-info@^2.1.4, hosted-git-info@^2.6.0, hosted-git-info@^2.7.1: resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" integrity sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w== -html5shiv@^3.7.3, html5shiv@~3.7.3: +html5shiv@^3.7.3: version "3.7.3" resolved "https://registry.yarnpkg.com/html5shiv/-/html5shiv-3.7.3.tgz#d78a84a367bcb9a710100d57802c387b084631d2" integrity sha1-14qEo2e8uacQEA1XgCw4ewhGMdI= @@ -6413,7 +5903,18 @@ http-cache-semantics@^3.8.1: resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2" integrity sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w== -http-errors@1.6.3, http-errors@~1.6.2: +http-errors@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" + integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== + dependencies: + depd "~1.1.2" + inherits "2.0.3" + setprototypeof "1.1.1" + statuses ">= 1.5.0 < 2" + toidentifier "1.0.0" + +http-errors@~1.6.2: version "1.6.3" resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0= @@ -6448,11 +5949,6 @@ http-signature@~1.2.0: jsprim "^1.2.2" sshpk "^1.7.0" -https-browserify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" - integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= - https-proxy-agent@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz#51552970fa04d723e04c56d04178c3f92592bbc0" @@ -6483,21 +5979,14 @@ i18next@^8.4.3: resolved "https://registry.yarnpkg.com/i18next/-/i18next-8.4.3.tgz#36b6ff516c4f992010eedcce24a36c4609e8c7dc" integrity sha1-Nrb/UWxPmSAQ7tzOJKNsRgnox9w= -iconv-lite@0.4.23: - version "0.4.23" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" - integrity sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA== - dependencies: - safer-buffer ">= 2.1.2 < 3" - -iconv-lite@^0.4.17, iconv-lite@^0.4.4, iconv-lite@~0.4.13: +iconv-lite@0.4.24, iconv-lite@^0.4.17, iconv-lite@^0.4.4, iconv-lite@~0.4.13: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== dependencies: safer-buffer ">= 2.1.2 < 3" -ieee754@^1.1.12, ieee754@^1.1.4: +ieee754@^1.1.12: version "1.1.13" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== @@ -6537,7 +6026,7 @@ imports-loader@^0.7.1: loader-utils "^1.0.2" source-map "^0.5.6" -imurmurhash@^0.1.4: +imurmurhash@*, imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= @@ -6592,11 +6081,6 @@ inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, i resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= -inherits@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" - integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= - ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: version "1.3.5" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" @@ -6683,11 +6167,6 @@ invert-kv@^1.0.0: resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= -invert-kv@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" - integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA== - ip-regex@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" @@ -6742,7 +6221,7 @@ is-answer@^0.1.0: is-primitive "^2.0.0" omit-empty "^0.4.1" -is-arguments@^1.0.2: +is-arguments@^1.0.2, is-arguments@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.0.4.tgz#3faf966c7cba0ff437fb31f6250082fcf0448cf3" integrity sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA== @@ -6897,6 +6376,11 @@ is-function@^1.0.1: resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5" integrity sha1-Es+5i2W1fdPRk6MSH19uL0N2ArU= +is-generator-function@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.7.tgz#d2132e529bb0000a7f80794d4bdf5cd5e5813522" + integrity sha512-YZc5EwyO4f2kWCax7oegfuSr9mFz1ZvieNYBEjmukLxgXfBUbxAWGVF7GZf0zidYtoBl3WvC07YK0wT76a+Rtw== + is-generator@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/is-generator/-/is-generator-1.0.3.tgz#c14c21057ed36e328db80347966c693f886389f3" @@ -6917,9 +6401,9 @@ is-glob@^3.0.0, is-glob@^3.1.0: is-extglob "^2.1.0" is-glob@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" - integrity sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A= + version "4.0.1" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" + integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== dependencies: is-extglob "^2.1.1" @@ -7187,7 +6671,7 @@ isarray@0.0.1: resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= -isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: +isarray@1.0.0, isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= @@ -7273,14 +6757,10 @@ jquery-simplecolorpicker@^0.3.1: resolved "https://registry.yarnpkg.com/jquery-simplecolorpicker/-/jquery-simplecolorpicker-0.3.1.tgz#4f6befd380ab05470f585d5482e5180556e460eb" integrity sha1-T2vv04CrBUcPWF1UguUYBVbkYOs= -"jquery-treeview@git+https://github.com/alchemy-fr/jquery-treeview.git#1e9e5a49d2875b878801e904cd08c2d25e85af1e": - version "1.4.2" - resolved "git+https://github.com/alchemy-fr/jquery-treeview.git#1e9e5a49d2875b878801e904cd08c2d25e85af1e" - -"jquery-treeview@https://github.com/alchemy-fr/jquery-treeview.git": +"jquery-treeview@git+https://github.com/alchemy-fr/jquery-treeview.git", "jquery-treeview@git+https://github.com/alchemy-fr/jquery-treeview.git#1e9e5a49d2875b878801e904cd08c2d25e85af1e": version "1.4.2" uid "1e9e5a49d2875b878801e904cd08c2d25e85af1e" - resolved "https://github.com/alchemy-fr/jquery-treeview.git#1e9e5a49d2875b878801e904cd08c2d25e85af1e" + resolved "git+https://github.com/alchemy-fr/jquery-treeview.git#1e9e5a49d2875b878801e904cd08c2d25e85af1e" jquery-ui-datepicker-with-i18n@^1.10.4: version "1.10.4" @@ -7327,9 +6807,9 @@ jquery.tree@0.0.5: jquery "~2.1.1" jquery@>=1.6, jquery@>=1.9, jquery@>=1.9.0, jquery@^3.2.1: - version "3.3.1" - resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.3.1.tgz#958ce29e81c9790f31be7792df5d4d95fc57fbca" - integrity sha512-Ubldcmxp5np52/ENotGxlLe6aGMvmF4R8S6tZjsP6Knsaxd/xp3Zrh50cG93lR6nPXyUFwzN3ZSOQI0wRJNdGg== + version "3.4.1" + resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.4.1.tgz#714f1f8d9dde4bdfa55764ba37ef214630d80ef2" + integrity sha512-36+AdBzCL+y6qjw5Tx7HgzeGCzC81MDDgaUP8ld2zhx58HdqXGoBd+tHdrBMiyjGQs0Hxs/MLZTu/eHNJJuWPw== jquery@~1.11.3: version "1.11.3" @@ -7364,9 +6844,9 @@ js-fixtures@^1.5.3: integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== js-yaml@3.x, js-yaml@^3.10.0: - version "3.13.0" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.0.tgz#38ee7178ac0eea2c97ff6d96fff4b18c7d8cf98e" - integrity sha512-pZZoSxcCYco+DIKBTimr67J6Hy+EYGZDY/HCWC+iAEA9h1ByhMXAIVUXMcMFpOCxQ/xjXmPI2MkDL5HRm5eFrQ== + version "3.13.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" + integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== dependencies: argparse "^1.0.7" esprima "^4.0.0" @@ -7376,21 +6856,11 @@ jsbn@~0.1.0: resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= -json-loader@^0.5.4: - version "0.5.7" - resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" - integrity sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w== - json-parse-better-errors@^1.0.0, json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== -json-schema-traverse@^0.3.0: - version "0.3.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" - integrity sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A= - json-schema-traverse@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" @@ -7411,11 +6881,6 @@ json-stringify-safe@~5.0.1: resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= -json5@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" - integrity sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE= - json5@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" @@ -7470,6 +6935,11 @@ kew@^0.7.0: resolved "https://registry.yarnpkg.com/kew/-/kew-0.7.0.tgz#79d93d2d33363d6fdd2970b335d9141ad591d79b" integrity sha1-edk9LTM2PW/dKXCzNdkUGtWR15s= +keycode@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/keycode/-/keycode-2.2.0.tgz#3d0af56dc7b8b8e5cba8d0a97f107204eec22b04" + integrity sha1-PQr1bce4uOXLqNCpfxByBO7CKwQ= + kind-of@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-1.1.0.tgz#140a3d2d41a36d2efcfa9377b62c24f8495a5c44" @@ -7566,13 +7036,6 @@ lcid@^1.0.0: dependencies: invert-kv "^1.0.0" -lcid@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" - integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA== - dependencies: - invert-kv "^2.0.0" - leaflet-contextmenu@^1.0.0: version "1.4.0" resolved "https://registry.yarnpkg.com/leaflet-contextmenu/-/leaflet-contextmenu-1.4.0.tgz#e2bda481af1026080eabaa32997e531fd44f605c" @@ -7648,7 +7111,7 @@ libnpm@^2.0.1: read-package-json "^2.0.13" stringify-package "^1.0.0" -libnpmaccess@^3.0.1: +libnpmaccess@*, libnpmaccess@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/libnpmaccess/-/libnpmaccess-3.0.1.tgz#5b3a9de621f293d425191aa2e779102f84167fa8" integrity sha512-RlZ7PNarCBt+XbnP7R6PoVgOq9t+kou5rvhaInoNibhPO7eMlRfS0B8yjatgn2yaHIwWNyoJDolC/6Lc5L/IQA== @@ -7677,7 +7140,7 @@ libnpmhook@^5.0.2: get-stream "^4.0.0" npm-registry-fetch "^3.8.0" -libnpmorg@^1.0.0: +libnpmorg@*, libnpmorg@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/libnpmorg/-/libnpmorg-1.0.0.tgz#979b868c48ba28c5820e3bb9d9e73c883c16a232" integrity sha512-o+4eVJBoDGMgRwh2lJY0a8pRV2c/tQM/SxlqXezjcAg26Qe9jigYVs+Xk0vvlYDWCDhP0g74J8UwWeAgsB7gGw== @@ -7702,7 +7165,7 @@ libnpmpublish@^1.1.0: semver "^5.5.1" ssri "^6.0.1" -libnpmsearch@^2.0.0: +libnpmsearch@*, libnpmsearch@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/libnpmsearch/-/libnpmsearch-2.0.0.tgz#de05af47ada81554a5f64276a69599070d4a5685" integrity sha512-vd+JWbTGzOSfiOc+72MU6y7WqmBXn49egCCrIXp27iE/88bX8EpG64ST1blWQI1bSMUr9l1AKPMVsqa2tS5KWA== @@ -7711,7 +7174,7 @@ libnpmsearch@^2.0.0: get-stream "^4.0.0" npm-registry-fetch "^3.8.0" -libnpmteam@^1.0.1: +libnpmteam@*, libnpmteam@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/libnpmteam/-/libnpmteam-1.0.1.tgz#ff704b1b6c06ea674b3b1101ac3e305f5114f213" integrity sha512-gDdrflKFCX7TNwOMX1snWojCoDE5LoRWcfOC0C/fqF7mBq8Uz9zWAX4B2RllYETNO7pBupBaSyBDkTAC15cAMg== @@ -7759,13 +7222,6 @@ lineclip@^1.1.5: resolved "https://registry.yarnpkg.com/lineclip/-/lineclip-1.1.5.tgz#2bf26067d94354feabf91e42768236db5616fd13" integrity sha1-K/JgZ9lDVP6r+R5CdoI221YW/RM= -linkify-it@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.1.0.tgz#c4caf38a6cd7ac2212ef3c7d2bde30a91561f9db" - integrity sha512-4REs8/062kV2DSHxNfq5183zrqXMl7WP0WzABH9IeJI+NLm429FgE1PDecltYfnOoFDFlZGh2T8PfZn0r+GTRg== - dependencies: - uc.micro "^1.0.1" - load-helpers@^0.2.11: version "0.2.11" resolved "https://registry.yarnpkg.com/load-helpers/-/load-helpers-0.2.11.tgz#f4bd8b218435c052e5e39dfa7713229d571ea423" @@ -7788,16 +7244,6 @@ load-json-file@^1.0.0: pinkie-promise "^2.0.0" strip-bom "^2.0.0" -load-json-file@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" - integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= - dependencies: - graceful-fs "^4.1.2" - parse-json "^2.2.0" - pify "^2.0.0" - strip-bom "^3.0.0" - load-pkg@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/load-pkg/-/load-pkg-3.0.1.tgz#9230b37ec04e569003060bc58951e3ed508d594f" @@ -7833,12 +7279,7 @@ load-templates@^1.0.2: matched "^0.4.4" vinyl "^2.0.1" -loader-runner@^2.3.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" - integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== - -loader-utils@^1.0.2, loader-utils@^1.1.0: +loader-utils@^1.0.2: version "1.2.3" resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA== @@ -7888,21 +7329,6 @@ lockfile@^1.0.4: dependencies: signal-exit "^3.0.2" -lodash-compat@^3.9.3: - version "3.10.2" - resolved "https://registry.yarnpkg.com/lodash-compat/-/lodash-compat-3.10.2.tgz#c6940128a9d30f8e902cd2cf99fd0cba4ecfc183" - integrity sha1-xpQBKKnTD46QLNLPmf0Muk7PwYM= - -lodash._arraycopy@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz#76e7b7c1f1fb92547374878a562ed06a3e50f6e1" - integrity sha1-due3wfH7klRzdIeKVi7Qaj5Q9uE= - -lodash._arrayeach@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz#bab156b2a90d3f1bbd5c653403349e5e5933ef9e" - integrity sha1-urFWsqkNPxu9XGU0AzSeXlkz754= - lodash._arrayfilter@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/lodash._arrayfilter/-/lodash._arrayfilter-3.0.0.tgz#2debe11eec69e5dcc6f4b86137128a48f1524237" @@ -7945,10 +7371,10 @@ lodash._basefilter@^3.0.0: dependencies: lodash._baseeach "^3.0.0" -lodash._basefor@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/lodash._basefor/-/lodash._basefor-3.0.3.tgz#7550b4e9218ef09fad24343b612021c79b4c20c2" - integrity sha1-dVC06SGO8J+tJDQ7YSAhx5tMIMI= +lodash._baseindexof@*: + version "3.1.0" + resolved "https://registry.yarnpkg.com/lodash._baseindexof/-/lodash._baseindexof-3.1.0.tgz#fe52b53a1c6761e42618d654e4a25789ed61822c" + integrity sha1-/lK1OhxnYeQmGNZU5KJXie1hgiw= lodash._baseisequal@^3.0.0: version "3.0.7" @@ -7992,11 +7418,16 @@ lodash._basevalues@^3.0.0: resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7" integrity sha1-W3dXYoAr3j0yl1A+JjAIIP32Ybc= -lodash._bindcallback@^3.0.0: +lodash._bindcallback@*, lodash._bindcallback@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" integrity sha1-5THCdkTPi1epnhftlbNcdIeJOS4= +lodash._cacheindexof@*: + version "3.0.2" + resolved "https://registry.yarnpkg.com/lodash._cacheindexof/-/lodash._cacheindexof-3.0.2.tgz#3dc69ac82498d2ee5e3ce56091bafd2adc7bde92" + integrity sha1-PcaayCSY0u5ePOVgkbr9Ktx73pI= + lodash._createassigner@^3.0.0: version "3.1.1" resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" @@ -8006,6 +7437,13 @@ lodash._createassigner@^3.0.0: lodash._isiterateecall "^3.0.0" lodash.restparam "^3.0.0" +lodash._createcache@*: + version "3.1.2" + resolved "https://registry.yarnpkg.com/lodash._createcache/-/lodash._createcache-3.1.2.tgz#56d6a064017625e79ebca6b8018e17440bdcf093" + integrity sha1-VtagZAF2JeeevKa4AY4XRAvc8JM= + dependencies: + lodash._getnative "^3.0.0" + lodash._createset@~4.0.0: version "4.0.3" resolved "https://registry.yarnpkg.com/lodash._createset/-/lodash._createset-4.0.3.tgz#0f4659fbb09d75194fa9e2b88a6644d363c9fe26" @@ -8030,7 +7468,7 @@ lodash._escapestringchar@~2.4.1: resolved "https://registry.yarnpkg.com/lodash._escapestringchar/-/lodash._escapestringchar-2.4.1.tgz#ecfe22618a2ade50bfeea43937e51df66f0edb72" integrity sha1-7P4iYYoq3lC/7qQ5N+Ud9m8O23I= -lodash._getnative@^3.0.0: +lodash._getnative@*, lodash._getnative@^3.0.0: version "3.9.1" resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" integrity sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U= @@ -8109,7 +7547,7 @@ lodash.assign@^3.2.0: lodash._createassigner "^3.0.0" lodash.keys "^3.0.0" -lodash.assign@^4.0.6, lodash.assign@^4.2.0: +lodash.assign@^4.0.6: version "4.2.0" resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" integrity sha1-DZnzzNem0mHRm9rrkkUAXShYCOc= @@ -8172,11 +7610,6 @@ lodash.foreach@^4.0.0: resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" integrity sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM= -lodash.groupby@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/lodash.groupby/-/lodash.groupby-4.6.0.tgz#0b08a1dcf68397c397855c3239783832df7403d1" - integrity sha1-Cwih3PaDl8OXhVwyOXg4Mt90A9E= - lodash.initial@^4.0.1: version "4.1.1" resolved "https://registry.yarnpkg.com/lodash.initial/-/lodash.initial-4.1.1.tgz#e53f64891265ddc404e986d2c28f77bed943591a" @@ -8209,15 +7642,6 @@ lodash.isobject@~2.4.1: dependencies: lodash._objecttypes "~2.4.1" -lodash.isplainobject@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-3.2.0.tgz#9a8238ae16b200432960cd7346512d0123fbf4c5" - integrity sha1-moI4rhayAEMpYM1zRlEtASP79MU= - dependencies: - lodash._basefor "^3.0.0" - lodash.isarguments "^3.0.0" - lodash.keysin "^3.0.0" - lodash.istypedarray@^3.0.0: version "3.0.6" resolved "https://registry.yarnpkg.com/lodash.istypedarray/-/lodash.istypedarray-3.0.6.tgz#c9a477498607501d8e8494d283b87c39281cef62" @@ -8241,14 +7665,6 @@ lodash.keys@~2.4.1: lodash._shimkeys "~2.4.1" lodash.isobject "~2.4.1" -lodash.keysin@^3.0.0: - version "3.0.8" - resolved "https://registry.yarnpkg.com/lodash.keysin/-/lodash.keysin-3.0.8.tgz#22c4493ebbedb1427962a54b445b2c8a767fb47f" - integrity sha1-IsRJPrvtsUJ5YqVLRFssinZ/tH8= - dependencies: - lodash.isarguments "^3.0.0" - lodash.isarray "^3.0.0" - lodash.last@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/lodash.last/-/lodash.last-3.0.0.tgz#242f663112dd4c6e63728c60a3c909d1bdadbd4c" @@ -8259,33 +7675,11 @@ lodash.map@^4.1.0: resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" integrity sha1-dx7Hg540c9nEzeKLGTlMNWL09tM= -lodash.merge@^3.3.2: - version "3.3.2" - resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-3.3.2.tgz#0d90d93ed637b1878437bb3e21601260d7afe994" - integrity sha1-DZDZPtY3sYeEN7s+IWASYNev6ZQ= - dependencies: - lodash._arraycopy "^3.0.0" - lodash._arrayeach "^3.0.0" - lodash._createassigner "^3.0.0" - lodash._getnative "^3.0.0" - lodash.isarguments "^3.0.0" - lodash.isarray "^3.0.0" - lodash.isplainobject "^3.0.0" - lodash.istypedarray "^3.0.0" - lodash.keys "^3.0.0" - lodash.keysin "^3.0.0" - lodash.toplainobject "^3.0.0" - lodash.merge@^4.6.0: version "4.6.1" resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.1.tgz#adc25d9cb99b9391c59624f379fbba60d7111d54" integrity sha512-AOYza4+Hf5z1/0Hztxpm2/xiPZgi/cjMqdnKTUWTBSKchJlxXXuUSxCCl8rJlf4g6yww/j6mA8nC8Hw/EZWxKQ== -lodash.mergewith@^4.6.0: - version "4.6.1" - resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.1.tgz#639057e726c3afbdb3e7d42741caa8d6e4335927" - integrity sha512-eWw5r+PYICtEBgrBE5hhlT6aAa75f411bgDz/ZL2KZqYV03USvucsxcHUIlGTDTECs1eunpI7HOV7U+WLDvNdQ== - lodash.pairs@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/lodash.pairs/-/lodash.pairs-3.0.1.tgz#bbe08d5786eeeaa09a15c91ebf0dcb7d2be326a9" @@ -8293,7 +7687,7 @@ lodash.pairs@^3.0.0: dependencies: lodash.keys "^3.0.0" -lodash.restparam@^3.0.0: +lodash.restparam@*, lodash.restparam@^3.0.0: version "3.6.1" resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" integrity sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU= @@ -8347,14 +7741,6 @@ lodash.toarray@^4.4.0: resolved "https://registry.yarnpkg.com/lodash.toarray/-/lodash.toarray-4.4.0.tgz#24c4bfcd6b2fba38bfd0594db1179d8e9b656561" integrity sha1-JMS/zWsvuji/0FlNsRedjptlZWE= -lodash.toplainobject@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/lodash.toplainobject/-/lodash.toplainobject-3.0.0.tgz#28790ad942d293d78aa663a07ecf7f52ca04198d" - integrity sha1-KHkK2ULSk9eKpmOgfs9/UsoEGY0= - dependencies: - lodash._basecopy "^3.0.0" - lodash.keysin "^3.0.0" - lodash.union@~4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash.union/-/lodash.union-4.6.0.tgz#48bb5088409f16f1821666641c44dd1aaae3cd88" @@ -8487,10 +7873,12 @@ lru-cache@^5.1.1: dependencies: yallist "^3.0.2" -m3u8-parser@4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/m3u8-parser/-/m3u8-parser-4.2.0.tgz#c8e0785fd17f741f4408b49466889274a9e36447" - integrity sha512-LVHw0U6IPJjwk9i9f7Xe26NqaUHTNlIt4SSWoEfYFROeVKHN6MIjOhbRheI3dg8Jbq5WCuMFQ0QU3EgZpmzFPg== +m3u8-parser@4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/m3u8-parser/-/m3u8-parser-4.3.0.tgz#4b4e988f87b6d8b2401d209a1d17798285a9da04" + integrity sha512-bVbjuBMoVIgFL1vpXVIxjeaoB5TPDJRb0m5qiTdM738SGqv/LAmsnVVPlKjM4fulm/rr1XZsKM+owHm+zvqxYA== + dependencies: + global "^4.3.2" magic-string@^0.14.0: version "0.14.0" @@ -8537,13 +7925,6 @@ make-iterator@^1.0.0: dependencies: kind-of "^6.0.2" -map-age-cleaner@^0.1.1: - version "0.1.3" - resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" - integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== - dependencies: - p-defer "^1.0.0" - map-cache@^0.2.0, map-cache@^0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" @@ -8705,17 +8086,6 @@ mapbox@^1.0.0-beta10: es6-promise "^4.0.5" rest "^2.0.0" -markdown-it@^8.4.2: - version "8.4.2" - resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-8.4.2.tgz#386f98998dc15a37722aa7722084f4020bdd9b54" - integrity sha512-GcRz3AWTqSUphY3vsUqQSFMbgR38a4Lh3GWlHRh/7MRwz8mcu9n2IO7HOh+bXHrR9kOPDl5RNCaEsrneb+xhHQ== - dependencies: - argparse "^1.0.7" - entities "~1.1.1" - linkify-it "^2.0.0" - mdurl "^1.0.1" - uc.micro "^1.0.5" - match-file@^0.2.0, match-file@^0.2.1: version "0.2.2" resolved "https://registry.yarnpkg.com/match-file/-/match-file-0.2.2.tgz#26e6bcf1b390a661f6126faf8ac501e33eccfae9" @@ -8757,20 +8127,6 @@ math-random@^1.0.1: resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.4.tgz#5dd6943c938548267016d4e34f057583080c514c" integrity sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A== -md5.js@^1.3.4: - version "1.3.5" - resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" - integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== - dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" - safe-buffer "^5.1.2" - -mdurl@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" - integrity sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4= - meant@~1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/meant/-/meant-1.0.1.tgz#66044fea2f23230ec806fb515efea29c44d2115d" @@ -8783,23 +8139,6 @@ mem@^1.1.0: dependencies: mimic-fn "^1.0.0" -mem@^4.0.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" - integrity sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w== - dependencies: - map-age-cleaner "^0.1.1" - mimic-fn "^2.0.0" - p-is-promise "^2.0.0" - -memory-fs@^0.4.0, memory-fs@~0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" - integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI= - dependencies: - errno "^0.1.3" - readable-stream "^2.0.1" - meow@^3.3.0, meow@^3.7.0: version "3.7.0" resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" @@ -8856,7 +8195,7 @@ merge-value@^1.0.0: mixin-deep "^1.2.0" set-value "^2.0.0" -micromatch@2.3.11, micromatch@^2.1.5, micromatch@^2.3.10, micromatch@^2.3.11, micromatch@^2.3.7, micromatch@^2.3.8: +micromatch@^2.1.5, micromatch@^2.3.10, micromatch@^2.3.11, micromatch@^2.3.7, micromatch@^2.3.8: version "2.3.11" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" integrity sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU= @@ -8894,25 +8233,17 @@ micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4: snapdragon "^0.8.1" to-regex "^3.0.2" -miller-rabin@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" - integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== - dependencies: - bn.js "^4.0.0" - brorand "^1.0.1" +mime-db@1.40.0: + version "1.40.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32" + integrity sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA== -mime-db@~1.38.0: - version "1.38.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.38.0.tgz#1a2aab16da9eb167b49c6e4df2d9c68d63d8e2ad" - integrity sha512-bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg== - -mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.18, mime-types@~2.1.19: - version "2.1.22" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.22.tgz#fe6b355a190926ab7698c9a0556a11199b2199bd" - integrity sha512-aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog== +mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24: + version "2.1.24" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81" + integrity sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ== dependencies: - mime-db "~1.38.0" + mime-db "1.40.0" mime@1.4.1: version "1.4.1" @@ -8924,11 +8255,6 @@ mimic-fn@^1.0.0: resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== -mimic-fn@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - min-document@^2.19.0: version "2.19.0" resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" @@ -8936,16 +8262,6 @@ min-document@^2.19.0: dependencies: dom-walk "^0.1.0" -minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" - integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== - -minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" - integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= - "minimatch@2 || 3", minimatch@3.x, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4, minimatch@~3.0.2: version "3.0.4" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" @@ -9091,19 +8407,6 @@ mocha@~1.17.1: jade "0.26.3" mkdirp "0.3.5" -modernizr@^3.7.1: - version "3.7.1" - resolved "https://registry.yarnpkg.com/modernizr/-/modernizr-3.7.1.tgz#c35048554879e5d60213b7771a9f593e178f8a3b" - integrity sha512-pewTfEGiY5pHRnJNKFALn/nkYpWmEOtZ+iRMzQUjexkOum3X4v+xAZ9AqgXdjnDBh37HNCDP6ieq68NGPYvkTA== - dependencies: - doctrine "^3.0.0" - file "^0.2.2" - lodash "^4.17.11" - markdown-it "^8.4.2" - mkdirp "^0.5.1" - requirejs "^2.3.6" - yargs "^13.2.1" - monotone-convex-hull-2d@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/monotone-convex-hull-2d/-/monotone-convex-hull-2d-1.0.1.tgz#47f5daeadf3c4afd37764baa1aa8787a40eee08c" @@ -9175,12 +8478,12 @@ mute-stream@~0.0.4: resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== -mux.js@5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/mux.js/-/mux.js-5.0.1.tgz#ccf757d18f30e65179bd38d60ccc9f04e9cb1e3a" - integrity sha512-yfmJ9CaLGSyRnEwqwzvISSZe6EdcvXIsgapZfuNNFuUQUlYDwltnCgZqV6IG90daY4dYTemK/hxMoxI1bB6RjA== +mux.js@5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/mux.js/-/mux.js-5.1.1.tgz#0e95f048b4ac51d413c9ddc2d78e4cefad8d06de" + integrity sha512-Mf/UYmh5b8jvUP+jmrTbETnyFZprMdbT0RxKm/lJ/4d2Q3xdc5GaHaRPI1zVV5D3+6uxArVPm78QEb1RsrmaQw== -nan@^2.10.0, nan@^2.9.2: +nan@^2.12.1, nan@^2.13.2: version "2.13.2" resolved "https://registry.yarnpkg.com/nan/-/nan-2.13.2.tgz#f51dc7ae66ba7d5d55e1e6d4d8092e802c9aefe7" integrity sha512-TghvYc72wlMGMVMluVo9WRJc0mB8KxxF/gZ4YYFy7V2ZQX9l7rgbPg7vjS9mt6U5HXODVFVI2bOduCzwOMv/lw== @@ -9207,45 +8510,35 @@ nanoseconds@^0.1.0: resolved "https://registry.yarnpkg.com/nanoseconds/-/nanoseconds-0.1.0.tgz#69ec39fcd00e77ab3a72de0a43342824cd79233a" integrity sha1-aew5/NAOd6s6ct4KQzQoJM15Izo= -natives@^1.1.0, natives@^1.1.6: +natives@^1.1.0: version "1.1.6" resolved "https://registry.yarnpkg.com/natives/-/natives-1.1.6.tgz#a603b4a498ab77173612b9ea1acdec4d980f00bb" integrity sha512-6+TDFewD4yxY14ptjKaS63GVdtKiES1pTPyxn9Jb0rBqPMZ7VcCiooEhPNsr+mqHtMGxa/5c/HhcC4uPEUw/nA== needle@^2.2.1: - version "2.2.4" - resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.4.tgz#51931bff82533b1928b7d1d69e01f1b00ffd2a4e" - integrity sha512-HyoqEb4wr/rsoaIDfTH2aVL9nWtQqba2/HvMv+++m8u0dz808MaagKILxtfeSN7QU7nvbQ79zk3vYOJp9zsNEA== + version "2.3.1" + resolved "https://registry.yarnpkg.com/needle/-/needle-2.3.1.tgz#d272f2f4034afb9c4c9ab1379aabc17fc85c9388" + integrity sha512-CaLXV3W8Vnbps8ZANqDGz7j4x7Yj1LW4TWF/TQuDfj7Cfx4nAPTvw98qgTevtto1oHDrh3pQkaODbqupXlsWTg== dependencies: - debug "^2.1.2" + debug "^4.1.0" iconv-lite "^0.4.4" sax "^1.2.4" -negotiator@0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" - integrity sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk= +negotiator@0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" + integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== -neo-async@^2.5.0, neo-async@^2.6.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.0.tgz#b9d15e4d71c6762908654b5183ed38b753340835" - integrity sha512-MFh0d/Wa7vkKO3Y3LlacqAEeHK0mckVqzDieUKTT+KGxi+zIpeVsFxymkIiRpbpDziHc290Xr9A1O4Om7otoRA== +neo-async@^2.6.0: + version "2.6.1" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" + integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== next-tick@^0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-0.2.2.tgz#75da4a927ee5887e39065880065b7336413b310d" integrity sha1-ddpKkn7liH45BliABltzNkE7MQ0= -next-tick@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" - integrity sha1-yobR/ogoFpsBICCOPchCS524NCw= - -nice-try@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" - integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== - no-case@^2.2.0: version "2.3.2" resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" @@ -9260,11 +8553,6 @@ node-emoji@^1.0.4: dependencies: lodash.toarray "^4.4.0" -node-ensure@^0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/node-ensure/-/node-ensure-0.0.0.tgz#ecae764150de99861ec5c810fd5d096b183932a7" - integrity sha1-7K52QVDemYYexcgQ/V0Jaxg5Mqc= - node-fetch-npm@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/node-fetch-npm/-/node-fetch-npm-2.0.2.tgz#7258c9046182dca345b4208eda918daf33697ff7" @@ -9292,39 +8580,27 @@ node-gyp@^3.8.0: tar "^2.0.0" which "1" -node-libs-browser@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.0.tgz#c72f60d9d46de08a940dedbb25f3ffa2f9bbaa77" - integrity sha512-5MQunG/oyOaBdttrL40dA7bUfPORLRWMUJLQtMg7nluxUvk5XwnLdL9twQHFAjRx/y7mIMkLKT9++qPbbk6BZA== +node-gyp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-4.0.0.tgz#972654af4e5dd0cd2a19081b4b46fe0442ba6f45" + integrity sha512-2XiryJ8sICNo6ej8d0idXDEMKfVfFK7kekGCtJAuelGsYHQxhj13KTf95swTCN2dZ/4lTfZ84Fu31jqJEEgjWA== dependencies: - assert "^1.1.1" - browserify-zlib "^0.2.0" - buffer "^4.3.0" - console-browserify "^1.1.0" - constants-browserify "^1.0.0" - crypto-browserify "^3.11.0" - domain-browser "^1.1.1" - events "^3.0.0" - https-browserify "^1.0.0" - os-browserify "^0.3.0" - path-browserify "0.0.0" - process "^0.11.10" - punycode "^1.2.4" - querystring-es3 "^0.2.0" - readable-stream "^2.3.3" - stream-browserify "^2.0.1" - stream-http "^2.7.2" - string_decoder "^1.0.0" - timers-browserify "^2.0.4" - tty-browserify "0.0.0" - url "^0.11.0" - util "^0.11.0" - vm-browserify "0.0.4" + glob "^7.0.3" + graceful-fs "^4.1.2" + mkdirp "^0.5.0" + nopt "2 || 3" + npmlog "0 || 1 || 2 || 3 || 4" + osenv "0" + request "^2.87.0" + rimraf "2" + semver "~5.3.0" + tar "^4.4.8" + which "1" -node-pre-gyp@^0.10.0: - version "0.10.3" - resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" - integrity sha512-d1xFs+C/IPS8Id0qPTZ4bUT8wWryfR/OzzAFxweG+uLN85oPzyo2Iw6bVlLQ/JOdgNonXLCoRyqDzDWq4iw72A== +node-pre-gyp@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149" + integrity sha512-4KghwV8vH5k+g2ylT+sLTjy5wmUOb9vPhnM8NHvRf9dHmnW/CndrFXy2aRPaPST6dugXSdHXfeaHQm77PIz/1A== dependencies: detect-libc "^1.0.2" mkdirp "^0.5.1" @@ -9338,9 +8614,9 @@ node-pre-gyp@^0.10.0: tar "^4" node-sass@^4.8.3: - version "4.11.0" - resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.11.0.tgz#183faec398e9cbe93ba43362e2768ca988a6369a" - integrity sha512-bHUdHTphgQJZaF1LASx0kAviPH7sGlcyNhWade4eVIpFp6tsn7SV8xNMTbsQFpEV9VXpnwTTnNYlfsZXgGgmkA== + version "4.12.0" + resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.12.0.tgz#0914f531932380114a30cc5fa4fa63233a25f017" + integrity sha512-A1Iv4oN+Iel6EPv77/HddXErL2a+gZ4uBeZUy+a8O35CFYTXhgA8MgLCWBtwpGZdCvTvQ9d+bQxX/QC36GDPpQ== dependencies: async-foreach "^0.1.3" chalk "^1.1.1" @@ -9349,12 +8625,10 @@ node-sass@^4.8.3: get-stdin "^4.0.1" glob "^7.0.3" in-publish "^2.0.0" - lodash.assign "^4.2.0" - lodash.clonedeep "^4.3.2" - lodash.mergewith "^4.6.0" + lodash "^4.17.11" meow "^3.7.0" mkdirp "^0.5.1" - nan "^2.10.0" + nan "^2.13.2" node-gyp "^3.8.0" npmlog "^4.0.0" request "^2.88.0" @@ -9486,13 +8760,13 @@ npm-install-checks@~3.0.0: semver "^2.3.0 || 3.x || 4 || 5" npm-lifecycle@^2.0.3, npm-lifecycle@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/npm-lifecycle/-/npm-lifecycle-2.1.0.tgz#1eda2eedb82db929e3a0c50341ab0aad140ed569" - integrity sha512-QbBfLlGBKsktwBZLj6AviHC6Q9Y3R/AY4a2PYSIRhSKSS0/CxRyD/PfxEX6tPeOCXQgMSNdwGeECacstgptc+g== + version "2.1.1" + resolved "https://registry.yarnpkg.com/npm-lifecycle/-/npm-lifecycle-2.1.1.tgz#0027c09646f0fd346c5c93377bdaba59c6748fdf" + integrity sha512-+Vg6I60Z75V/09pdcH5iUo/99Q/vop35PaI99elvxk56azSVVsdsSsS/sXqKDNwbRRNN1qSxkcO45ZOu0yOWew== dependencies: byline "^5.0.0" - graceful-fs "^4.1.11" - node-gyp "^3.8.0" + graceful-fs "^4.1.15" + node-gyp "^4.0.0" resolve-from "^4.0.0" slide "^1.1.6" uid-number "0.0.6" @@ -9536,7 +8810,7 @@ npm-pick-manifest@^2.2.3: npm-package-arg "^6.0.0" semver "^5.4.1" -npm-profile@^4.0.1: +npm-profile@*, npm-profile@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/npm-profile/-/npm-profile-4.0.1.tgz#d350f7a5e6b60691c7168fbb8392c3603583f5aa" integrity sha512-NQ1I/1Q7YRtHZXkcuU1/IyHeLy6pd+ScKg4+DQHdfsm769TGq6HPrkbuNJVJS4zwE+0mvvmeULzQdWn2L2EsVA== @@ -9737,10 +9011,10 @@ object-inspect@~1.4.0: resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.4.1.tgz#37ffb10e71adaf3748d05f713b4c9452f402cbc4" integrity sha512-wqdhLpfCUbEsoEwl3FXwGyv8ief1k/1aUdIPCqVnupM6e8l63BEJdiF/0swtn04/8p05tG/T0FrpTlfwvljOdw== -object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.0.6: - version "1.1.0" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.0.tgz#11bd22348dd2e096a045ab06f6c85bcc340fa032" - integrity sha512-6OO5X1+2tYkNyNEx6TsCxEqFfRWaqx6EtMiSbGrw8Ob8v9Ne+Hl8rBAgLBZn5wjEz3s/s6U1WXFUFOcxxAwUpg== +object-keys@^1.0.12, object-keys@^1.0.6: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== object-path@^0.11.2: version "0.11.4" @@ -9766,16 +9040,6 @@ object-visit@^1.0.0: dependencies: isobject "^3.0.0" -object.assign@^4.0.1: - version "4.1.0" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" - integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== - dependencies: - define-properties "^1.1.2" - function-bind "^1.1.1" - has-symbols "^1.0.0" - object-keys "^1.0.11" - object.defaults@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/object.defaults/-/object.defaults-1.1.0.tgz#3a7f868334b407dea06da16d88d5cd29e435fecf" @@ -9786,6 +9050,16 @@ object.defaults@^1.1.0: for-own "^1.0.0" isobject "^3.0.0" +object.entries@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz#2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519" + integrity sha512-l+H6EQ8qzGRxbkHOd5I/aHRhHDKoQXQ8g0BYt4uSweQU1/J6dZUOyWh9a2Vky35YCKjzmgxOzta2hH6kf9HuXA== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.12.0" + function-bind "^1.1.1" + has "^1.0.3" + object.map@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/object.map/-/object.map-1.0.1.tgz#cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37" @@ -9935,11 +9209,6 @@ ordered-read-streams@^0.3.0: is-stream "^1.0.1" readable-stream "^2.0.1" -os-browserify@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" - integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= - os-homedir@^1.0.0, os-homedir@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" @@ -9961,15 +9230,6 @@ os-locale@^2.0.0: lcid "^1.0.0" mem "^1.1.0" -os-locale@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" - integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q== - dependencies: - execa "^1.0.0" - lcid "^2.0.0" - mem "^4.0.0" - os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" @@ -9983,21 +9243,11 @@ osenv@0, osenv@^0.1.4, osenv@^0.1.5: os-homedir "^1.0.0" os-tmpdir "^1.0.0" -p-defer@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" - integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= - p-finally@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= -p-is-promise@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" - integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg== - p-limit@^1.1.0: version "1.3.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" @@ -10026,20 +9276,15 @@ p-locate@^3.0.0: dependencies: p-limit "^2.0.0" -p-queue@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-1.2.0.tgz#639cb8b07270c15b71d7a6446a8e30414f3c96d1" - integrity sha1-Y5y4sHJwwVtx16ZEao4wQU88ltE= - p-try@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= p-try@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.1.0.tgz#c1a0f1030e97de018bb2c718929d2af59463e505" - integrity sha512-H2RyIJ7+A3rjkwKC2l5GGtU4H1vkxKCAGsWasNVd0Set+6i4znxbWy6/j16YDPJDWxhsgZiKAstMEP8wCdSpjA== + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== package-json-versionify@^1.0.2: version "1.0.4" @@ -10108,11 +9353,6 @@ pako@~0.2.0: resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" integrity sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU= -pako@~1.0.5: - version "1.0.10" - resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.10.tgz#4328badb5086a426aa90f541977d4955da5c9732" - integrity sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw== - parallel-transform@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.1.0.tgz#d410f065b05da23081fcd10f28854c29bda33b06" @@ -10122,18 +9362,6 @@ parallel-transform@^1.1.0: inherits "^2.0.3" readable-stream "^2.1.5" -parse-asn1@^5.0.0: - version "5.1.4" - resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.4.tgz#37f6628f823fbdeb2273b4d540434a22f3ef1fcc" - integrity sha512-Qs5duJcuvNExRfFZ99HDD3z4mAi3r9Wl/FOjEOijlxwCZs7E7mW2vjTpgQ4J8LpTF8x5v+1Vn5UQFejmWT11aw== - dependencies: - asn1.js "^4.0.0" - browserify-aes "^1.0.0" - create-hash "^1.1.0" - evp_bytestokey "^1.0.0" - pbkdf2 "^3.0.3" - safe-buffer "^5.1.1" - parse-author@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/parse-author/-/parse-author-1.0.0.tgz#5ec1590062977bd9cb3962e9173b87586437f5df" @@ -10226,20 +9454,15 @@ parseuri@0.0.5: better-assert "~1.0.0" parseurl@~1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" - integrity sha1-/CidTtiZMRlGDBViUyYs3I3mW/M= + version "1.3.3" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== pascalcase@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= -path-browserify@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" - integrity sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo= - path-dirname@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" @@ -10267,7 +9490,7 @@ path-is-inside@^1.0.1, path-is-inside@^1.0.2, path-is-inside@~1.0.2: resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= -path-key@^2.0.0, path-key@^2.0.1: +path-key@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= @@ -10305,13 +9528,6 @@ path-type@^1.0.0: pify "^2.0.0" pinkie-promise "^2.0.0" -path-type@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" - integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= - dependencies: - pify "^2.0.0" - path@^0.12.7: version "0.12.7" resolved "https://registry.yarnpkg.com/path/-/path-0.12.7.tgz#d4dc2a506c4ce2197eb481ebfcd5b36c0140b10f" @@ -10328,25 +9544,6 @@ pbf@^3.0.5: ieee754 "^1.1.12" resolve-protobuf-schema "^2.1.0" -pbkdf2@^3.0.3: - version "3.0.17" - resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6" - integrity sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA== - dependencies: - create-hash "^1.1.2" - create-hmac "^1.1.4" - ripemd160 "^2.0.1" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - -pdfjs-dist@1.8.366: - version "1.8.366" - resolved "https://registry.yarnpkg.com/pdfjs-dist/-/pdfjs-dist-1.8.366.tgz#90b1d9a141c40422f1edb48d10b93978a7690d90" - integrity sha1-kLHZoUHEBCLx7bSNELk5eKdpDZA= - dependencies: - node-ensure "^0.0.0" - worker-loader "^0.8.0" - peek-stream@^1.1.0: version "1.1.3" resolved "https://registry.yarnpkg.com/peek-stream/-/peek-stream-1.1.3.tgz#3b35d84b7ccbbd262fff31dc10da56856ead6d67" @@ -10555,7 +9752,7 @@ process-nextick-args@^2.0.0, process-nextick-args@~2.0.0: resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" integrity sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw== -process@^0.11.1, process@^0.11.10: +process@^0.11.1: version "0.11.10" resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= @@ -10639,18 +9836,6 @@ psl@^1.1.24: resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.31.tgz#e9aa86d0101b5b105cbe93ac6b784cd547276184" integrity sha512-/6pt4+C+T+wZUieKR620OpzN/LlnNKuWjy1iFLQ/UG35JqHlR/89MP1d96dUfkf6Dne3TuLQzOYEYshJ+Hx8mw== -public-encrypt@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" - integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== - dependencies: - bn.js "^4.1.0" - browserify-rsa "^4.0.0" - create-hash "^1.1.0" - parse-asn1 "^5.0.0" - randombytes "^2.0.1" - safe-buffer "^5.1.2" - pump@^1.0.0: version "1.0.3" resolved "https://registry.yarnpkg.com/pump/-/pump-1.0.3.tgz#5dfe8311c33bbf6fc18261f9f34702c47c08a954" @@ -10684,12 +9869,7 @@ pumpify@^1.3.3: inherits "^2.0.3" pump "^2.0.0" -punycode@1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" - integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= - -punycode@^1.2.4, punycode@^1.4.1: +punycode@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= @@ -10699,7 +9879,7 @@ punycode@^2.1.0: resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== -pym.js@^1.3.1, pym.js@^1.3.2: +pym.js@^1.3.1: version "1.3.2" resolved "https://registry.yarnpkg.com/pym.js/-/pym.js-1.3.2.tgz#0ebd083c5a7ef7650214db872b4b29a10743305d" integrity sha512-/fFzHFB4BTsJQP5id0wzUdYsDT4VPkfAxk+uENBE9/aP6YbvhAEpcuJHdjxqisqfXOCrcz7duTK1fbtF2rz8RQ== @@ -10720,24 +9900,14 @@ qs@~6.5.2: integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== query-string@^6.2.0: - version "6.4.2" - resolved "https://registry.yarnpkg.com/query-string/-/query-string-6.4.2.tgz#8be1dbd105306aebf86022144f575a29d516b713" - integrity sha512-DfJqAen17LfLA3rQ+H5S4uXphrF+ANU1lT2ijds4V/Tj4gZxA3gx5/tg1bz7kYCmwna7LyJNCYqO7jNRzo3aLw== + version "6.5.0" + resolved "https://registry.yarnpkg.com/query-string/-/query-string-6.5.0.tgz#2e1a70125af01f6f04573692d02c09302a1d8bfc" + integrity sha512-TYC4hDjZSvVxLMEucDMySkuAS9UIzSbAiYGyA9GWCjLKB8fQpviFbjd20fD7uejCDxZS+ftSdBKE6DS+xucJFg== dependencies: decode-uri-component "^0.2.0" split-on-first "^1.0.0" strict-uri-encode "^2.0.0" -querystring-es3@^0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" - integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= - -querystring@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" - integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= - question-cache@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/question-cache/-/question-cache-0.4.0.tgz#e2b9937fc5fb7dc60fbb9f105f1fa254b33dea7d" @@ -10865,34 +10035,19 @@ randomatic@^3.0.0: kind-of "^6.0.0" math-random "^1.0.1" -randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: - version "2.1.0" - resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" - integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== - dependencies: - safe-buffer "^5.1.0" - -randomfill@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" - integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== - dependencies: - randombytes "^2.0.5" - safe-buffer "^5.1.0" - range-parser@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" - integrity sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4= + version "1.2.1" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== raw-body@^2.3.2: - version "2.3.3" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.3.tgz#1b324ece6b5706e153855bc1148c65bb7f6ea0c3" - integrity sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw== + version "2.4.0" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" + integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q== dependencies: - bytes "3.0.0" - http-errors "1.6.3" - iconv-lite "0.4.23" + bytes "3.1.0" + http-errors "1.7.2" + iconv-lite "0.4.24" unpipe "1.0.0" rbush@*, rbush@^2.0.1: @@ -10969,14 +10124,6 @@ read-pkg-up@^1.0.1: find-up "^1.0.0" read-pkg "^1.0.0" -read-pkg-up@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" - integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= - dependencies: - find-up "^2.0.0" - read-pkg "^2.0.0" - read-pkg@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" @@ -10986,15 +10133,6 @@ read-pkg@^1.0.0: normalize-package-data "^2.3.2" path-type "^1.0.0" -read-pkg@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" - integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= - dependencies: - load-json-file "^2.0.0" - normalize-package-data "^2.3.2" - path-type "^2.0.0" - read@1, read@^1.0.7, read@~1.0.1, read@~1.0.7: version "1.0.7" resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4" @@ -11026,15 +10164,15 @@ read@1, read@^1.0.7, read@~1.0.1, read@~1.0.7: string_decoder "~0.10.x" readable-stream@^3.1.1: - version "3.2.0" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.2.0.tgz#de17f229864c120a9f56945756e4f32c4045245d" - integrity sha512-RV20kLjdmpZuTF1INEb9IA3L68Nmi+Ri7ppZqo78wj//Pn62fCoJyV9zalccNzDD/OuJpMG4f+pfMl8+L6QdGw== + version "3.3.0" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.3.0.tgz#cb8011aad002eb717bf040291feba8569c986fb9" + integrity sha512-EsI+s3k3XsW+fU8fQACLN59ky34AZ14LoeVZpYwmZvldCFo0r0gnelwF2TcMjLor/BTL5aDJVBMkss0dthToPw== dependencies: inherits "^2.0.3" string_decoder "^1.1.1" util-deprecate "^1.0.1" -readable-stream@~1.1.0, readable-stream@~1.1.10, readable-stream@~1.1.9: +readable-stream@~1.1.10, readable-stream@~1.1.9: version "1.1.14" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" integrity sha1-fPTFTvZI44EwhMY23SB54WbAgdk= @@ -11044,7 +10182,7 @@ readable-stream@~1.1.0, readable-stream@~1.1.10, readable-stream@~1.1.9: isarray "0.0.1" string_decoder "~0.10.x" -readdir-scoped-modules@^1.0.0: +readdir-scoped-modules@*, readdir-scoped-modules@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/readdir-scoped-modules/-/readdir-scoped-modules-1.0.2.tgz#9fafa37d286be5d92cbaebdee030dc9b5f406747" integrity sha1-n6+jfShr5dksuuve4DDcm19AZ0c= @@ -11253,12 +10391,7 @@ require-main-filename@^1.0.1: resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= -require-main-filename@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" - integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== - -requirejs@^2.3.5, requirejs@^2.3.6: +requirejs@^2.3.5: version "2.3.6" resolved "https://registry.yarnpkg.com/requirejs/-/requirejs-2.3.6.tgz#e5093d9601c2829251258c0b9445d4d19fa9e7c9" integrity sha512-ipEzlWQe6RK3jkzikgCupiTbTvm4S0/CAU5GlgptkN5SO6F3u0UD0K18wy6ErDqiCyP4J4YYe1HuAShvsxePLg== @@ -11344,14 +10477,7 @@ resolve@1.1.x: resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= -resolve@^1.1.5, resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba" - integrity sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg== - dependencies: - path-parse "^1.0.6" - -resolve@^1.2.0, resolve@^1.3.3: +resolve@^1.1.5, resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.2.0, resolve@^1.3.3: version "1.10.1" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.1.tgz#664842ac960795bbe758221cdccda61fb64b5f18" integrity sha512-KuIe4mf++td/eFb6wkaPbMDnP6kObCaEtIDuHOUED6MNUo4K670KZUHuuvYPZDxNF0WVLw49n06M2m2dXphEzA== @@ -11428,14 +10554,6 @@ rimraf@2, rimraf@^2.2.8, rimraf@^2.5.0, rimraf@^2.5.2, rimraf@^2.5.3, rimraf@^2. dependencies: glob "^7.1.3" -ripemd160@^2.0.0, ripemd160@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" - integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== - dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" - robust-orientation@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/robust-orientation/-/robust-orientation-1.1.3.tgz#daff5b00d3be4e60722f0e9c0156ef967f1c2049" @@ -11526,7 +10644,7 @@ safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== -safe-json-parse@4.0.0, safe-json-parse@^4.0.0: +safe-json-parse@4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/safe-json-parse/-/safe-json-parse-4.0.0.tgz#7c0f578cfccd12d33a71c0e05413e2eca171eaac" integrity sha1-fA9XjPzNEtM6ccDgVBPi7KFx6qw= @@ -11575,18 +10693,6 @@ sax@^1.2.4: resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== -schema-utils@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.3.0.tgz#f5877222ce3e931edae039f17eb3716e7137f8cf" - integrity sha1-9YdyIs4+kx7a4DnxfrNxbnE3+M8= - dependencies: - ajv "^5.0.0" - -screenfull@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/screenfull/-/screenfull-2.0.0.tgz#a00b29a93e06b1ac5760eda642ca092d551814fe" - integrity sha1-oAspqT4GsaxXYO2mQsoJLVUYFP4= - scss-tokenizer@^0.2.3: version "0.2.3" resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1" @@ -11723,23 +10829,15 @@ set-value@^2.0.0: is-plain-object "^2.0.3" split-string "^3.0.1" -setimmediate@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" - integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= - setprototypeof@1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== -sha.js@^2.4.0, sha.js@^2.4.8: - version "2.4.11" - resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" - integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" +setprototypeof@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" + integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== sha@~2.0.1: version "2.0.1" @@ -11765,16 +10863,13 @@ shallow-copy@~0.0.1: integrity sha1-QV9CcC1z2BAzApLMXuhurhoRoXA= sharkdown@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/sharkdown/-/sharkdown-0.1.0.tgz#61d4fe529e75d02442127cc9234362265099214f" - integrity sha1-YdT+Up510CRCEnzJI0NiJlCZIU8= + version "0.1.1" + resolved "https://registry.yarnpkg.com/sharkdown/-/sharkdown-0.1.1.tgz#64484bd0f08f347f8319e9ff947a670f6b48b1b2" + integrity sha512-exwooSpmo5s45lrexgz6Q0rFQM574wYIX3iDZ7RLLqOb7IAoQZu9nxlZODU972g19sR69OIpKP2cpHTzU+PHIg== dependencies: cardinal "~0.4.2" - expect.js "~0.2.0" minimist "0.0.5" split "~0.2.10" - stream-spigot "~2.1.2" - through "~2.3.4" shebang-command@^1.2.0: version "1.2.0" @@ -11999,11 +11094,6 @@ sorted-union-stream@~2.1.3: from2 "^1.3.0" stream-iterate "^1.1.0" -source-list-map@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" - integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== - source-map-resolve@^0.5.0: version "0.5.2" resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" @@ -12034,7 +11124,7 @@ source-map@^0.1.34: dependencies: amdefine ">=0.0.4" -source-map@^0.5.1, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: +source-map@^0.5.1, source-map@^0.5.6, source-map@~0.5.1: version "0.5.7" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= @@ -12078,14 +11168,14 @@ spdx-expression-parse@^3.0.0: spdx-license-ids "^3.0.0" spdx-license-ids@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.3.tgz#81c0ce8f21474756148bbb5f3bfc0f36bf15d76e" - integrity sha512-uBIcIl3Ih6Phe3XHK1NqboJLdGfwr1UN3k6wSD1dZpmPsIkb8AGNbZYJ1fOBk834+Gxy8rpfDxrS6XLEMZMY2g== + version "3.0.4" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz#75ecd1a88de8c184ef015eafb51b5b48bfd11bb1" + integrity sha512-7j8LYJLeY/Yb6ACbQ7F76qy5jHkp0U6jgBfJsk97bwWlVUnUWsAgpyaCvo17h0/RQGnQ036tVDomiwoI4pDkQA== split-on-first@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/split-on-first/-/split-on-first-1.0.0.tgz#648af4ce9a28fbcaadd43274455f298b55025fc6" - integrity sha512-mjA57TQtdWztVZ9THAjGNpgbuIrNfsNrGa5IyK94NoPaT4N14M+GI4jD7t4arLjFkYRQWdETC5RxFzLWouoB3A== + version "1.1.0" + resolved "https://registry.yarnpkg.com/split-on-first/-/split-on-first-1.1.0.tgz#f610afeee3b12bce1d0c30425e76398b78249a5f" + integrity sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw== split-string@^1.0.1: version "1.0.1" @@ -12189,7 +11279,7 @@ static-module@^2.2.0: static-eval "^2.0.0" through2 "~2.0.3" -"statuses@>= 1.4.0 < 2": +"statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2": version "1.5.0" resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= @@ -12211,14 +11301,6 @@ stdout-stream@^1.4.0: dependencies: readable-stream "^2.0.1" -stream-browserify@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" - integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== - dependencies: - inherits "~2.0.1" - readable-stream "^2.0.2" - stream-combiner2@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" @@ -12253,17 +11335,6 @@ stream-exhaust@^1.0.0, stream-exhaust@^1.0.1: resolved "https://registry.yarnpkg.com/stream-exhaust/-/stream-exhaust-1.0.2.tgz#acdac8da59ef2bc1e17a2c0ccf6c320d120e555d" integrity sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw== -stream-http@^2.7.2: - version "2.8.3" - resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" - integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw== - dependencies: - builtin-status-codes "^3.0.0" - inherits "^2.0.1" - readable-stream "^2.3.6" - to-arraybuffer "^1.0.0" - xtend "^4.0.0" - stream-iterate@^1.1.0: version "1.2.0" resolved "https://registry.yarnpkg.com/stream-iterate/-/stream-iterate-1.2.0.tgz#2bd7c77296c1702a46488b8ad41f79865eecd4e1" @@ -12277,13 +11348,6 @@ stream-shift@^1.0.0: resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" integrity sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI= -stream-spigot@~2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/stream-spigot/-/stream-spigot-2.1.2.tgz#7de145e819f8dd0db45090d13dcf73a8ed3cc035" - integrity sha1-feFF6Bn43Q20UJDRPc9zqO08wDU= - dependencies: - readable-stream "~1.1.0" - stream-throttle@^0.1.3: version "0.1.3" resolved "https://registry.yarnpkg.com/stream-throttle/-/stream-throttle-0.1.3.tgz#add57c8d7cc73a81630d31cd55d3961cfafba9c3" @@ -12314,15 +11378,6 @@ string-width@^1.0.1, string-width@^1.0.2: is-fullwidth-code-point "^2.0.0" strip-ansi "^4.0.0" -string-width@^3.0.0, string-width@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" - integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== - dependencies: - emoji-regex "^7.0.1" - is-fullwidth-code-point "^2.0.0" - strip-ansi "^5.1.0" - string.prototype.trim@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea" @@ -12332,7 +11387,7 @@ string.prototype.trim@^1.1.2: es-abstract "^1.5.0" function-bind "^1.0.2" -string_decoder@^1.0.0, string_decoder@^1.0.3, string_decoder@^1.1.1: +string_decoder@^1.0.3, string_decoder@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.2.0.tgz#fe86e738b19544afe70469243b2a1ee9240eae8d" integrity sha512-6YqyX6ZWEYguAxgZzHGL7SsCeGx3V2TtOTqZz1xSTSWnqsbWwbptafNyvf/ACquZUXV3DANr5BDIwNYe1mN42w== @@ -12390,13 +11445,6 @@ strip-ansi@^4.0.0: dependencies: ansi-regex "^3.0.0" -strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" - integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== - dependencies: - ansi-regex "^4.1.0" - strip-ansi@~0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991" @@ -12514,13 +11562,6 @@ supports-color@^3.1.0, supports-color@^3.2.3: dependencies: has-flag "^1.0.0" -supports-color@^4.2.1: - version "4.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" - integrity sha1-vnoN5ITexcXN34s9WRJQRJEvY1s= - dependencies: - has-flag "^2.0.0" - supports-color@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" @@ -12528,11 +11569,6 @@ supports-color@^5.3.0: dependencies: has-flag "^3.0.0" -swfobject@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/swfobject/-/swfobject-2.2.1.tgz#e55451d5dde59657335c86b01732c61a923293e2" - integrity sha1-5VRR1d3lllczXIawFzLGGpIyk+I= - symbol-observable@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" @@ -12545,11 +11581,6 @@ tableize-object@^0.1.0: dependencies: isobject "^2.0.0" -tapable@^0.2.7: - version "0.2.9" - resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.9.tgz#af2d8bbc9b04f74ee17af2b4d9048f807acd18a8" - integrity sha512-2wsvQ+4GwBvLPLWsNfLCDYGsW6xb7aeC6utq2Qh0PFwgEy7K7dsma9Jsmb2zSQj7GvYAyUGSntLtsv++GmgL1A== - tar-fs@^1.15.1: version "1.16.3" resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-1.16.3.tgz#966a628841da2c4010406a82167cbd5e0c72d509" @@ -12766,13 +11797,6 @@ timed-out@^4.0.0: resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8= -timers-browserify@^2.0.4: - version "2.0.10" - resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.10.tgz#1d28e3d2aadf1d5a5996c4e9f95601cd053480ae" - integrity sha512-YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg== - dependencies: - setimmediate "^1.0.4" - tiny-relative-date@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/tiny-relative-date/-/tiny-relative-date-1.3.0.tgz#fa08aad501ed730f31cc043181d995c39a935e07" @@ -12812,11 +11836,6 @@ to-array@0.1.4: resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" integrity sha1-F+bBH3PdTz10zaek/zI46a2b+JA= -to-arraybuffer@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" - integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= - to-buffer@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/to-buffer/-/to-buffer-1.1.1.tgz#493bd48f62d7c43fcded313a03dcadb2e1213a80" @@ -12877,6 +11896,11 @@ to-regex@^3.0.1, to-regex@^3.0.2: regex-not "^1.0.2" safe-regex "^1.1.0" +toidentifier@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" + integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== + topojson-client@3.x: version "3.0.0" resolved "https://registry.yarnpkg.com/topojson-client/-/topojson-client-3.0.0.tgz#1f99293a77ef42a448d032a81aa982b73f360d2f" @@ -12928,11 +11952,6 @@ tsml@1.0.1: resolved "https://registry.yarnpkg.com/tsml/-/tsml-1.0.1.tgz#89f8218b9d9e257f47d7f6b56d01c5a4d2c68fc3" integrity sha1-ifghi52eJX9H1/a1bQHFpNLGj8M= -tty-browserify@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" - integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY= - tunnel-agent@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" @@ -12982,11 +12001,6 @@ ua-parser-js@0.7.17: resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.17.tgz#e9ec5f9498b9ec910e7ae3ac626a805c4d09ecac" integrity sha512-uRdSdu1oA1rncCQL7sCj8vSyZkgtL7faaw9Tc9rZ3mGgraQ7+Pdx7w5mnOSF3gw9ZNG6oc+KXfkon3bKuROm0g== -uc.micro@^1.0.1, uc.micro@^1.0.5: - version "1.0.6" - resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac" - integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== - uglify-js@2.6.4: version "2.6.4" resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.6.4.tgz#65ea2fb3059c9394692f15fed87c2b36c16b9adf" @@ -12997,22 +12011,12 @@ uglify-js@2.6.4: uglify-to-browserify "~1.0.0" yargs "~3.10.0" -uglify-js@^2.8.29: - version "2.8.29" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" - integrity sha1-KcVzMUgFe7Th913zW3qcty5qWd0= - dependencies: - source-map "~0.5.1" - yargs "~3.10.0" - optionalDependencies: - uglify-to-browserify "~1.0.0" - uglify-js@^3.1.4: - version "3.5.2" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.5.2.tgz#dc0c7ac2da0a4b7d15e84266818ff30e82529474" - integrity sha512-imog1WIsi9Yb56yRt5TfYVxGmnWs3WSGU73ieSOlMVFwhJCA9W8fqFFMMj4kgDqiS/80LGdsYnWL7O9UcjEBlg== + version "3.5.12" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.5.12.tgz#6b759cabc08c3e91fe82323d6387019f0c5864cd" + integrity sha512-KeQesOpPiZNgVwJj8Ge3P4JYbQHUdZzpx6Fahy6eKAYRSV4zhVmLXoC+JtOeYxcHCHTve8RG1ZGdTvpeOUM26Q== dependencies: - commander "~2.19.0" + commander "~2.20.0" source-map "~0.6.1" uglify-save-license@^0.4.1: @@ -13025,15 +12029,6 @@ uglify-to-browserify@~1.0.0: resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" integrity sha1-bgkk1r2mta/jSeOabWMoUKD4grc= -uglifyjs-webpack-plugin@^0.4.6: - version "0.4.6" - resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309" - integrity sha1-uVH0q7a9YX5m9j64kUmOORdj4wk= - dependencies: - source-map "^0.5.6" - uglify-js "^2.8.29" - webpack-sources "^1.0.1" - uid-number@0.0.6: version "0.0.6" resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" @@ -13267,14 +12262,6 @@ url-toolkit@^2.1.1, url-toolkit@^2.1.3: resolved "https://registry.yarnpkg.com/url-toolkit/-/url-toolkit-2.1.6.tgz#6d03246499e519aad224c44044a4ae20544154f2" integrity sha512-UaZ2+50am4HwrV2crR/JAf63Q4VvPYphe63WGeoJxeu8gmOm0qxPt+KsukfakPNrX9aymGNEkkaoICwn+OuvBw== -url@^0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" - integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= - dependencies: - punycode "1.3.2" - querystring "0.2.0" - use@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/use/-/use-1.1.2.tgz#6e3832feb8689573494ac6a7acb5fefb377b2cd1" @@ -13312,19 +12299,16 @@ util-extend@^1.0.1: resolved "https://registry.yarnpkg.com/util-extend/-/util-extend-1.0.3.tgz#a7c216d267545169637b3b6edc6ca9119e2ff93f" integrity sha1-p8IW0mdUUWljeztu3GypEZ4v+T8= -util@0.10.3: - version "0.10.3" - resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" - integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= - dependencies: - inherits "2.0.1" - -"util@>=0.10.3 <1", util@^0.11.0: - version "0.11.1" - resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61" - integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ== +"util@>=0.10.3 <1": + version "0.12.0" + resolved "https://registry.yarnpkg.com/util/-/util-0.12.0.tgz#bb5e3d29ba2703c7add0ad337003be3ca477798a" + integrity sha512-pPSOFl7VLhZ7LO/SFABPraZEEurkJUWSMn3MuA/r3WQZc+Z1fqou2JqLSOZbCLl73EUIxuUVX8X4jkX2vfJeAA== dependencies: inherits "2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + object.entries "^1.1.0" + safe-buffer "^5.1.2" util@^0.10.3: version "0.10.4" @@ -13399,30 +12383,15 @@ verror@1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" -video.js@5.5.3: - version "5.5.3" - resolved "https://registry.yarnpkg.com/video.js/-/video.js-5.5.3.tgz#a43f2bfc793d70d4e128dad02cde3a2f4e107b40" - integrity sha1-pD8r/Hk9cNThKNrQLN46L04Qe0A= - dependencies: - global "^4.3.0" - lodash-compat "^3.9.3" - object.assign "^4.0.1" - safe-json-parse "^4.0.0" - tsml "1.0.1" - videojs-font "1.5.1" - videojs-ie8 "1.1.1" - videojs-swf "5.0.1" - videojs-vtt.js "^0.12.1" - xhr "~2.2.0" - "video.js@^6 || ^7", "video.js@^6.8.0 || ^7.0.0": - version "7.4.1" - resolved "https://registry.yarnpkg.com/video.js/-/video.js-7.4.1.tgz#41349d3b0ca40fa281c6f906381a0a41b75bd04e" - integrity sha512-UmTHiJWcil8YN65M1t/d63X6ofLtQwnvJoYEN4VKzkECYIHbgzvMRgOmrf5bNtVeDC6JsFKLZQXJ7s6Au2jgcQ== + version "7.5.4" + resolved "https://registry.yarnpkg.com/video.js/-/video.js-7.5.4.tgz#7c76d44123be48f98333ab50b19d7683bfa8aba6" + integrity sha512-+U3FyLVFbnJdEC6TVMv8U75c8VM00vmVY8TSfFthnvo7/6rz3LFg2Pd3TTGNbV2pEmBhkLLYO+dvmqMNUyc2ZA== dependencies: "@babel/runtime" "^7.2.0" - "@videojs/http-streaming" "1.5.1" + "@videojs/http-streaming" "1.9.3" global "4.3.2" + keycode "^2.2.0" safe-json-parse "4.0.0" tsml "1.0.1" videojs-font "3.1.0" @@ -13443,11 +12412,6 @@ video.js@^6.2.4: videojs-vtt.js "0.12.6" xhr "2.4.0" -videojs-chapter-thumbnails@1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/videojs-chapter-thumbnails/-/videojs-chapter-thumbnails-1.1.2.tgz#34c52cb7493ba8f3cc97cb103442ef89f65970e4" - integrity sha1-NMUst0k7qPPMl8sQNELvifZZcOQ= - videojs-flash@^2.1.0: version "2.2.0" resolved "https://registry.yarnpkg.com/videojs-flash/-/videojs-flash-2.2.0.tgz#92aa47855eafb4d71cb041c768936e97de5aca7c" @@ -13457,11 +12421,6 @@ videojs-flash@^2.1.0: video.js "^6 || ^7" videojs-swf "5.4.2" -videojs-font@1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/videojs-font/-/videojs-font-1.5.1.tgz#647918200314b8b1f953a489a3766531fce822e3" - integrity sha1-ZHkYIAMUuLH5U6SJo3ZlMfzoIuM= - videojs-font@2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/videojs-font/-/videojs-font-2.1.0.tgz#a25930a67f6c9cfbf2bb88dacb8c6b451f093379" @@ -13477,13 +12436,6 @@ videojs-hotkeys@^0.2.20: resolved "https://registry.yarnpkg.com/videojs-hotkeys/-/videojs-hotkeys-0.2.25.tgz#b34b5816db1af747e41a90a3be268d51449b4cb0" integrity sha512-XgMjWiqGlmAjuHtpP529A2voVh++z46FSD0XeSy+65yeuTZOd+w2CJmfrL4jPpGm+MME5l9lOLfVpoEeDaBa1Q== -videojs-ie8@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/videojs-ie8/-/videojs-ie8-1.1.1.tgz#269d624ff325b3bc9258495f2c86f0bc0f0206c0" - integrity sha1-Jp1iT/Mls7ySWElfLIbwvA8CBsA= - dependencies: - es5-shim "^4.3.1" - videojs-ie8@1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/videojs-ie8/-/videojs-ie8-1.1.2.tgz#a23d3d8608ad7192b69c6077fc4eb848998d35d9" @@ -13491,17 +12443,12 @@ videojs-ie8@1.1.2: dependencies: es5-shim "^4.5.1" -videojs-swf@5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/videojs-swf/-/videojs-swf-5.0.1.tgz#2186bd9ec5ffc5d065d5d956cb0df2533ffa2983" - integrity sha1-IYa9nsX/xdBl1dlWyw3yUz/6KYM= - videojs-swf@5.4.2: version "5.4.2" resolved "https://registry.yarnpkg.com/videojs-swf/-/videojs-swf-5.4.2.tgz#6964a9bff903b732f3e465314ae478a02a17e8ab" integrity sha512-FGg+Csioa8/A/EacvFefBdb9Z0rSiMlheHDunZnN3xXfUF43jvjawcWFQnZvrv1Cs1nE1LBrHyUZjF7j2mKOLw== -videojs-vtt.js@0.12.6, videojs-vtt.js@^0.12.1: +videojs-vtt.js@0.12.6: version "0.12.6" resolved "https://registry.yarnpkg.com/videojs-vtt.js/-/videojs-vtt.js-0.12.6.tgz#e078600bda899eaa6f9c3307134cd0c811947b8e" integrity sha512-XFXeGBQiljnElMhwCcZst0RDbZn2n8LU7ZScXryd3a00OaZsHAjdZu/7/RdSr7Z1jHphd45FnOvOQkGK4YrWCQ== @@ -13650,13 +12597,6 @@ vlq@^0.2.1, vlq@^0.2.2: resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.3.tgz#8f3e4328cf63b1540c0d67e1b2778386f8975b26" integrity sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow== -vm-browserify@0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" - integrity sha1-XX6kW7755Kb/ZflUOOCofDV9WnM= - dependencies: - indexof "0.0.1" - vt-pbf@^3.0.1: version "3.1.1" resolved "https://registry.yarnpkg.com/vt-pbf/-/vt-pbf-3.1.1.tgz#b0f627e39a10ce91d943b898ed2363d21899fb82" @@ -13671,15 +12611,6 @@ warning-symbol@^0.1.0: resolved "https://registry.yarnpkg.com/warning-symbol/-/warning-symbol-0.1.0.tgz#bb31dd11b7a0f9d67ab2ed95f457b65825bbad21" integrity sha1-uzHdEbeg+dZ6su2V9Fe2WCW7rSE= -watchpack@^1.4.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00" - integrity sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA== - dependencies: - chokidar "^2.0.2" - graceful-fs "^4.1.2" - neo-async "^2.5.0" - wcwidth@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" @@ -13687,47 +12618,6 @@ wcwidth@^1.0.0: dependencies: defaults "^1.0.3" -webl10n@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/webl10n/-/webl10n-1.0.0.tgz#da1680c63cea81a01d0bc59e2f943a52eba770ed" - integrity sha1-2haAxjzqgaAdC8WeL5Q6UuuncO0= - -webpack-sources@^1.0.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.3.0.tgz#2a28dcb9f1f45fe960d8f1493252b5ee6530fa85" - integrity sha512-OiVgSrbGu7NEnEvQJJgdSFPl2qWKkWq5lHMhgiToIiN9w34EBnjYzSYs+VbL5KoYiLNtFFa7BZIKxRED3I32pA== - dependencies: - source-list-map "^2.0.0" - source-map "~0.6.1" - -webpack@^3.10.0: - version "3.12.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.12.0.tgz#3f9e34360370602fcf639e97939db486f4ec0d74" - integrity sha512-Sw7MdIIOv/nkzPzee4o0EdvCuPmxT98+vVpIvwtcwcF1Q4SDSNp92vwcKc4REe7NItH9f1S4ra9FuQ7yuYZ8bQ== - dependencies: - acorn "^5.0.0" - acorn-dynamic-import "^2.0.0" - ajv "^6.1.0" - ajv-keywords "^3.1.0" - async "^2.1.2" - enhanced-resolve "^3.4.0" - escope "^3.6.0" - interpret "^1.0.0" - json-loader "^0.5.4" - json5 "^0.5.1" - loader-runner "^2.3.0" - loader-utils "^1.1.0" - memory-fs "~0.4.1" - mkdirp "~0.5.0" - node-libs-browser "^2.0.0" - source-map "^0.5.3" - supports-color "^4.2.1" - tapable "^0.2.7" - uglifyjs-webpack-plugin "^0.4.6" - watchpack "^1.4.0" - webpack-sources "^1.0.1" - yargs "^8.0.2" - webworkify@^1.5.0: version "1.5.0" resolved "https://registry.yarnpkg.com/webworkify/-/webworkify-1.5.0.tgz#734ad87a774de6ebdd546e1d3e027da5b8f4a42c" @@ -13795,20 +12685,12 @@ wordwrap@~0.0.2: integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= worker-farm@^1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.6.0.tgz#aecc405976fab5a95526180846f0dba288f3a4a0" - integrity sha512-6w+3tHbM87WnSWnENBUvA2pxJPLhQUg5LKwUQHq3r+XPhIM+Gh2R5ycbwPCyuGbNg+lPgdcnQUhuC02kJCvffQ== + version "1.7.0" + resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8" + integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw== dependencies: errno "~0.1.7" -worker-loader@^0.8.0: - version "0.8.1" - resolved "https://registry.yarnpkg.com/worker-loader/-/worker-loader-0.8.1.tgz#e8e995331ea34df5bf68296824bfb7f0ad578d43" - integrity sha1-6OmVMx6jTfW/aCloJL+38K1XjUM= - dependencies: - loader-utils "^1.0.2" - schema-utils "^0.3.0" - wrap-ansi@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" @@ -13817,15 +12699,6 @@ wrap-ansi@^2.0.0: string-width "^1.0.1" strip-ansi "^3.0.1" -wrap-ansi@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" - integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== - dependencies: - ansi-styles "^3.2.0" - string-width "^3.0.0" - strip-ansi "^5.0.0" - wrappy@1, wrappy@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" @@ -13890,16 +12763,6 @@ xhr@2.4.0: parse-headers "^2.0.0" xtend "^4.0.0" -xhr@~2.2.0: - version "2.2.2" - resolved "https://registry.yarnpkg.com/xhr/-/xhr-2.2.2.tgz#2ee72571869f8686d41559a9ea286c18971435ff" - integrity sha1-LuclcYafhobUFVmp6ihsGJcUNf8= - dependencies: - global "~4.3.0" - is-function "^1.0.1" - parse-headers "^2.0.0" - xtend "^4.0.0" - xmlhttprequest-ssl@~1.5.4: version "1.5.5" resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz#c2876b06168aadc40e57d97e81191ac8f4398b3e" @@ -13935,14 +12798,6 @@ yallist@^3.0.0, yallist@^3.0.2: resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A== -yargs-parser@^13.1.0: - version "13.1.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.0.tgz#7016b6dd03e28e1418a510e258be4bff5a31138f" - integrity sha512-Yq+32PrijHRri0vVKQEm+ys8mbqWjLiwQkMFNXEENutzLPP0bE4Lcd4iA3OQY5HF+GD3xXxf0MEHb8E4/SA3AA== - dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" - yargs-parser@^2.4.0, yargs-parser@^2.4.1: version "2.4.1" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-2.4.1.tgz#85568de3cf150ff49fa51825f03a8c880ddcc5c4" @@ -13965,13 +12820,6 @@ yargs-parser@^5.0.0: dependencies: camelcase "^3.0.0" -yargs-parser@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" - integrity sha1-jQrELxbqVd69MyyvTEA4s+P139k= - dependencies: - camelcase "^4.1.0" - yargs-parser@^9.0.2: version "9.0.2" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" @@ -14036,23 +12884,6 @@ yargs@^11.0.0: y18n "^3.2.1" yargs-parser "^9.0.2" -yargs@^13.2.1: - version "13.2.4" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.2.4.tgz#0b562b794016eb9651b98bd37acf364aa5d6dc83" - integrity sha512-HG/DWAJa1PAnHT9JAhNa8AbAv3FPaiLzioSjCcmuXXhP8MlpHO5vwls4g4j6n30Z74GVQj8Xa62dWVx1QCGklg== - dependencies: - cliui "^5.0.0" - find-up "^3.0.0" - get-caller-file "^2.0.1" - os-locale "^3.1.0" - require-directory "^2.1.1" - require-main-filename "^2.0.0" - set-blocking "^2.0.0" - string-width "^3.0.0" - which-module "^2.0.0" - y18n "^4.0.0" - yargs-parser "^13.1.0" - yargs@^7.0.0: version "7.1.0" resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" @@ -14072,25 +12903,6 @@ yargs@^7.0.0: y18n "^3.2.1" yargs-parser "^5.0.0" -yargs@^8.0.2: - version "8.0.2" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" - integrity sha1-YpmpBVsc78lp/355wdkY3Osiw2A= - dependencies: - camelcase "^4.1.0" - cliui "^3.2.0" - decamelize "^1.1.1" - get-caller-file "^1.0.1" - os-locale "^2.0.0" - read-pkg-up "^2.0.0" - require-directory "^2.1.1" - require-main-filename "^1.0.1" - set-blocking "^2.0.0" - string-width "^2.0.0" - which-module "^2.0.0" - y18n "^3.2.1" - yargs-parser "^7.0.0" - yargs@~3.10.0: version "3.10.0" resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" From 9c84ea3803fe6575645cbc3871a03cc097cc8dba Mon Sep 17 00:00:00 2001 From: Nicolas Maillat Date: Tue, 14 May 2019 15:06:57 +0200 Subject: [PATCH 05/18] PHRAS-2552 #comment add caret to embed-bundle version --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 08370448c0..eb0ab4b394 100644 --- a/composer.json +++ b/composer.json @@ -47,7 +47,7 @@ "php": ">=5.5.9", "ext-intl": "*", "alchemy-fr/tcpdf-clone": "~6.0", - "alchemy/embed-bundle": "2.0.1", + "alchemy/embed-bundle": "^2.0.0", "alchemy/geonames-api-consumer": "~0.1.0", "alchemy/mediavorus": "^0.4.4", "alchemy/oauth2php": "1.1.0", From 506f0eef6a7b44bef0e5468c3d8d8fd7a5e5e06d Mon Sep 17 00:00:00 2001 From: aina-esokia Date: Tue, 14 May 2019 17:41:16 +0400 Subject: [PATCH 06/18] port to 4.1 share media in linkedin #time 1h --- resources/locales/messages.de.xlf | 408 +++++++++--------- resources/locales/messages.en.xlf | 346 ++++++++------- resources/locales/messages.fr.xlf | 342 ++++++++------- resources/locales/messages.nl.xlf | 298 +++++++------ resources/locales/validators.de.xlf | 2 +- resources/locales/validators.en.xlf | 2 +- resources/locales/validators.fr.xlf | 2 +- resources/locales/validators.nl.xlf | 2 +- .../www/common/images/icons/linkedin.png | Bin 0 -> 621 bytes templates/web/prod/Share/record.html.twig | 6 + 10 files changed, 731 insertions(+), 677 deletions(-) create mode 100644 resources/www/common/images/icons/linkedin.png diff --git a/resources/locales/messages.de.xlf b/resources/locales/messages.de.xlf index e755211594..6b5afb9918 100644 --- a/resources/locales/messages.de.xlf +++ b/resources/locales/messages.de.xlf @@ -1,14 +1,14 @@ - + - +
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
- - + + Form/Login/PhraseaAuthenticationForm.php Form/Configuration/EmailFormType.php @@ -206,7 +206,7 @@ selectionnes]]> ausgewählt]]> - Controller/Prod/QueryController.php + Controller/Prod/QueryController.php %quantity% Stories attached to the WorkZone @@ -287,7 +287,7 @@ %total% reponses %total% Ergebnisse - Controller/Prod/QueryController.php + Controller/Prod/QueryController.php %user% a envoye son rapport de validation de %title% @@ -756,7 +756,7 @@ Advanced Search Erweiterte Suche - web/prod/index.html.twig + web/prod/index.html.twig Advanced mode @@ -771,37 +771,37 @@ Affichage Anzeige - web/prod/index.html.twig + web/prod/index.html.twig Affichage au demarrage beim Start anzeigen - web/prod/index.html.twig + web/prod/index.html.twig Afficher la fiche descriptive das beschriftliche Blatt anzeigen - web/prod/index.html.twig + web/prod/index.html.twig Afficher le titre den Titel anzeigen - web/prod/index.html.twig + web/prod/index.html.twig Afficher les status die Status anzeigen - web/prod/index.html.twig + web/prod/index.html.twig Afficher une icone eine Ikone anzeigen - web/prod/index.html.twig + web/prod/index.html.twig After metadata Nach Metadaten - web/prod/index.html.twig + web/prod/index.html.twig Aggregation @@ -811,7 +811,7 @@ Aide Hilfe - web/prod/index.html.twig + web/prod/index.html.twig Aide sur les expressions regulieres @@ -862,7 +862,7 @@ All these conditions Alle Bedingungen - web/prod/index.html.twig + web/prod/index.html.twig All values @@ -932,14 +932,14 @@ Alphabetic asc Alphabetic asc - web/prod/index.html.twig - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Alphabetic desc Alphabetic desc - web/prod/index.html.twig + web/prod/index.html.twig Also delete records that rely on groupings. @@ -1253,7 +1253,7 @@ Audio Audio - web/prod/index.html.twig + web/prod/index.html.twig Audio Birate @@ -1537,7 +1537,7 @@ By field By field - web/prod/index.html.twig + web/prod/index.html.twig CHAMPS @@ -1828,7 +1828,7 @@ Collection order Collection order - web/prod/index.html.twig + web/prod/index.html.twig Color Depth @@ -1899,7 +1899,7 @@ Configuration Konfiguration - web/prod/index.html.twig + web/prod/index.html.twig Confirm new email address @@ -1955,7 +1955,7 @@ Contains enthält - web/prod/index.html.twig + web/prod/index.html.twig Continuer ? @@ -2010,7 +2010,7 @@ Couleur de selection Farbauswahl - web/prod/index.html.twig + web/prod/index.html.twig Country @@ -2224,7 +2224,7 @@ Date Added Hinzufügungsdatum - web/prod/index.html.twig + web/prod/index.html.twig Date Creation @@ -2234,7 +2234,7 @@ Date Updated Date Updated - web/prod/index.html.twig + web/prod/index.html.twig Date de connexion @@ -2263,7 +2263,7 @@ Date(s) from field(s) Datum vom Feld - web/prod/index.html.twig + web/prod/index.html.twig De @@ -2341,7 +2341,7 @@ Defined by admin Defined by admin - web/prod/index.html.twig + web/prod/index.html.twig Defined in Apache configuration @@ -2471,7 +2471,7 @@ Detailed view URL Detailansicht URL - prod/Share/record.html.twig + prod/Share/record.html.twig Details @@ -2519,7 +2519,7 @@ Display technical data Technische Informationen anzeigen - web/prod/index.html.twig + web/prod/index.html.twig Display thumbnails @@ -2529,7 +2529,7 @@ Do not display Nicht anzeigen - web/prod/index.html.twig + web/prod/index.html.twig Do not forget to restart the tasks scheduler @@ -2561,7 +2561,7 @@ Document Dokument - web/prod/index.html.twig + web/prod/index.html.twig Document Type Sharing @@ -2794,7 +2794,7 @@ E-Mail Test Ergebnis: %email_status% web/admin/dashboard.html.twig - + 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% @@ -2802,12 +2802,12 @@ 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. Notification/Mail/MailRequestAccountDelete.php - + Email:deletion:request:subject Delete account confirmation Benutzerkonto Löschung Bestätigung Notification/Mail/MailRequestAccountDelete.php - + Email:deletion:request:textButton Delete my account Mein Benutzerkonto löschen Notification/Mail/MailRequestAccountDelete.php @@ -2820,7 +2820,7 @@ Embed code Embed-Code - prod/Share/record.html.twig + prod/Share/record.html.twig Empty a collection @@ -3000,7 +3000,7 @@ Equals gleicht - web/prod/index.html.twig + web/prod/index.html.twig Erreur @@ -3143,7 +3143,7 @@ Ex : Paris, bleu, montagne Ex : Berlin, blau, Gebirge - web/prod/index.html.twig + web/prod/index.html.twig Executables externes @@ -3326,7 +3326,7 @@ Flash Flash - web/prod/index.html.twig + web/prod/index.html.twig web/common/technical_datas.html.twig @@ -3457,7 +3457,7 @@ Geo Search Geo Search - web/prod/index.html.twig + web/prod/index.html.twig Geonames server address @@ -3532,7 +3532,7 @@ Graphiste (preview au rollover) Grafiker (Voransicht mit Rollover) - web/prod/index.html.twig + web/prod/index.html.twig Great @@ -3630,7 +3630,7 @@ Iconographe (description au rollover) Bildredakteur (Beschreibung mit Rollover) - web/prod/index.html.twig + web/prod/index.html.twig Id @@ -3675,7 +3675,7 @@ Image Bild - web/prod/index.html.twig + web/prod/index.html.twig ImageMagick @@ -3701,7 +3701,7 @@ In the answer grid In einem Tooltip - web/prod/index.html.twig + web/prod/index.html.twig Include Business-fields in caption @@ -3925,7 +3925,7 @@ Language Language - web/prod/index.html.twig + web/prod/index.html.twig Last Name @@ -4062,7 +4062,7 @@ Les termes apparaissent dans le(s) champs Die Begriffe befinden sich in Feld(er): - web/prod/index.html.twig + web/prod/index.html.twig Light Value @@ -4192,7 +4192,7 @@ Ma derniere question meine letzte Suchabfrage - web/prod/index.html.twig + web/prod/index.html.twig Mail line %line% is empty @@ -4349,7 +4349,7 @@ Mode de presentation Anzeigemodus - web/prod/index.html.twig + web/prod/index.html.twig Modele de donnees @@ -4413,7 +4413,7 @@ mehrwertiges admin/fields/templates.html.twig - + My application Meine Anwendung web/account/account.html.twig @@ -4503,7 +4503,7 @@ No URL available keine verfügbare URL - prod/Share/record.html.twig + prod/Share/record.html.twig No account yet? @@ -4586,7 +4586,7 @@ WorkZone/Browser/Results.html.twig WorkZone/Browser/Results.html.twig - + No thesaurus concept query Keine Thesaurus Suche prod/results/infos.html.twig @@ -4773,7 +4773,7 @@ One of these conditions Eine von diesen Bedingungen - web/prod/index.html.twig + web/prod/index.html.twig Only %nbEditableDocuments% records can be modified. @@ -4790,7 +4790,7 @@ Öffnen Sie die URL in einem neuen Fenster Core/Provider/TwigServiceProvider.php - + Or Oder prod/upload/upload.html.twig @@ -5123,8 +5123,8 @@ Einstellungen web/prod/index.html.twig web/prod/index.html.twig - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Prefix for notification emails @@ -5139,12 +5139,12 @@ Presentation de vignettes Miniaturansichten - web/prod/index.html.twig + web/prod/index.html.twig Presentation de vignettes de panier Vorstellung der Voransichten des Sammelkorbes - web/prod/index.html.twig + web/prod/index.html.twig Presets @@ -5197,7 +5197,7 @@ Publications Veröffentlichungen - web/prod/index.html.twig + web/prod/index.html.twig web/admin/tree.html.twig admin/publications/wrapper.html.twig web/common/menubar.html.twig @@ -5309,80 +5309,80 @@ Raccourcis claviers de la zone des paniers : Sammelkörbe und Funktionen Abkürzungen - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de editing : Fenster Abkürzungen bearbeiten - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de preview : Fenster Abkürzungen, Detailansicht - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de recherche : Hauptfenster Abkürzungen - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-a : tout selectionner ctrl-a : alles auswählen - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-e : editer la selection ctrl-e : Auswahl bearbeiten - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-p : imprimer la selection ctrl-p : drucken - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::espace : arreter/demarrer le diaporama Dia-Schau starten - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche bas : scroll vertical Abwärtspfeil: vertikal scrollen - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche droite : page suivante Rechtspfeil: nächste Seite - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : en arriere Abwärtspfeil: letztes Dokument - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : en avant Rechtspfeil: nächstes Dokument - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : page precedente Linkspfeil: vorherige Seite - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche haut : scroll vertical Pfeil oben: vertikal scrollen - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::tab/shift-tab se ballade dans les champs tab/shift-tab : Feld ändern - web/prod/index.html.twig + web/prod/index.html.twig Rappel : Il vous reste %number% jours pour valider %title% de %user% @@ -5404,7 +5404,7 @@ Zurücksetzen prod/Baskets/Reorder.html.twig prod/Story/Reorder.html.twig - web/prod/index.html.twig + web/prod/index.html.twig Re-ordonner @@ -5507,7 +5507,7 @@ Rechercher dans un champ date im Feld "Datum" suchen - web/prod/index.html.twig + web/prod/index.html.twig Recommendations @@ -5598,7 +5598,7 @@ Relevance Relevanz - web/prod/index.html.twig + web/prod/index.html.twig Remember me @@ -5734,7 +5734,7 @@ Resource URL Resource URL - prod/Share/record.html.twig + prod/Share/record.html.twig Resquest access @@ -5970,7 +5970,7 @@ Select a field Wählen Sie ein Feld aus - web/prod/index.html.twig + web/prod/index.html.twig Select a list on the left and edit it ! @@ -6002,10 +6002,10 @@ admin/statusbit/edit.html.twig user/import/file.html.twig - + Selected base(s) Ausgewählte Datenbank(en) : - web/prod/index.html.twig + web/prod/index.html.twig Selected files @@ -6035,6 +6035,13 @@ Auf Facebook teilen prod/Share/record.html.twig + + Send to Linkedin + Send to Linkedin + prod/Share/record.html.twig + prod/Share/record.html.twig + prod/Share/record.html.twig + Send to Twitter Auf Twitter teilen @@ -6275,7 +6282,7 @@ Status des documents a rechercher Zustand der Dokumente - web/prod/index.html.twig + web/prod/index.html.twig Status edition @@ -6693,7 +6700,7 @@ Theme Thema - web/prod/index.html.twig + web/prod/index.html.twig There is no one to validate orders, please contact an administrator @@ -6846,7 +6853,7 @@ Token web/developers/application.html.twig - + Token not found Token nicht gefunden Controller/Root/AccountController.php @@ -6870,7 +6877,7 @@ Tout type Bildschirmtyp - web/prod/index.html.twig + web/prod/index.html.twig Toutes les publications @@ -6896,7 +6903,7 @@ Trier par Sortieren nach - web/prod/index.html.twig + web/prod/index.html.twig Try to extract embedded thumbnails @@ -6921,7 +6928,7 @@ Type de documents Dokumenttyp - web/prod/index.html.twig + web/prod/index.html.twig Type nombre @@ -7044,7 +7051,7 @@ Une question personnelle eine persönliche Frage - web/prod/index.html.twig + web/prod/index.html.twig Une selection @@ -7156,7 +7163,7 @@ Use latest search settings on Production loading die letzte gestellte Frage in Prod benutzen - web/prod/index.html.twig + web/prod/index.html.twig Use my Phraseanet account @@ -7334,7 +7341,7 @@ Video Video - web/prod/index.html.twig + web/prod/index.html.twig Video Codec @@ -7536,7 +7543,7 @@ Vous pouvez quitter la plupart des fenetres survolantes via la touche echap esc : Sie können die meiste Teile der Overlay Fenster schliessen - web/prod/index.html.twig + web/prod/index.html.twig Warning ! @@ -7637,8 +7644,8 @@ YYYY/MM/DD YYYY/MM/DD - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Yes @@ -7932,7 +7939,7 @@ Ihre Media und Unterauflösungen (Voransichten, Miniaturansichten..) werden in diese Verzeichnisse gespeichert. web/setup/step2.html.twig - + Your phraseanet account on %urlInstance% has been deleted! Ihr Benutzerkonto auf %urlInstance% wurde gelöscht! Notification/Mail/MailSuccessAccountDelete.php @@ -7959,7 +7966,7 @@ action : bridge Bridge - web/prod/index.html.twig + web/prod/index.html.twig action : collection @@ -7986,7 +7993,7 @@ prod/preview/tools.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig - web/prod/index.html.twig + web/prod/index.html.twig web/lightbox/validate.html.twig web/lightbox/feed.html.twig lightbox/IE6/validate.html.twig @@ -8017,7 +8024,7 @@ web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig - web/prod/index.html.twig + web/prod/index.html.twig action : push @@ -8895,7 +8902,7 @@ Ein Benutzer hat sich angemeldet Notification/Mail/MailInfoSomebodyAutoregistered.php - + admin::search-engine: general-aggregation Aggregateinstellungen admin/search-engine/search-engine-settings.html.twig @@ -9098,12 +9105,12 @@ boutton:: selectionner aucune base Keine - web/prod/index.html.twig + web/prod/index.html.twig boutton:: selectionner toutes les bases Alle - web/prod/index.html.twig + web/prod/index.html.twig boutton::ajouter @@ -9132,9 +9139,9 @@ web/thesaurus/export-text-dialog.html.twig web/thesaurus/export-topics-dialog.html.twig web/thesaurus/link-field-step1.html.twig - web/thesaurus/thesaurus.html.twig - web/thesaurus/thesaurus.html.twig - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig web/thesaurus/new-term.html.twig web/thesaurus/new-term.html.twig web/account/reset-email.html.twig @@ -9156,8 +9163,8 @@ boutton::chercher suchen web/prod/index.html.twig - web/thesaurus/thesaurus.html.twig - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig web/admin/users.html.twig @@ -9273,7 +9280,7 @@ boutton::rechercher suchen Controller/Prod/LanguageController.php - web/prod/index.html.twig + web/prod/index.html.twig boutton::refresh @@ -9407,14 +9414,14 @@ Bridge/Youtube/video_moveinto_playlist.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Youtube/playlist_createcontainer.html.twig - web/prod/index.html.twig + web/prod/index.html.twig web/thesaurus/link-field-step2.html.twig web/thesaurus/accept.html.twig web/thesaurus/import-dialog.html.twig web/thesaurus/export-text-dialog.html.twig web/thesaurus/export-topics-dialog.html.twig web/thesaurus/link-field-step1.html.twig - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig web/thesaurus/new-term.html.twig web/thesaurus/new-term.html.twig web/thesaurus/index.html.twig @@ -9534,7 +9541,7 @@ choisir wählen - web/prod/index.html.twig + web/prod/index.html.twig admin/collection/create.html.twig admin/databox/databox.html.twig @@ -9564,9 +9571,9 @@ copyClipboardLabel in der Zwischenablage kopieren prod/results/infos.html.twig - prod/Share/record.html.twig - prod/Share/record.html.twig - prod/Share/record.html.twig + prod/Share/record.html.twig + prod/Share/record.html.twig + prod/Share/record.html.twig create_subdef_button_label @@ -9613,6 +9620,11 @@ create_subdef_modal_subdefinition_name web/admin/subdefs.html.twig + + created_on + created_on + web/prod/index.html.twig + dans %category% in %category% @@ -9759,7 +9771,7 @@ web/common/dialog_export.html.twig web/common/dialog_export.html.twig - + export::export-email: email-invalid Das Format der Email Adresse scheint falsch zu sein web/common/dialog_export.html.twig @@ -9882,57 +9894,57 @@ Änderungen wurden hergestellt admin/databox/databox.html.twig - + help::help-section-bullet: check-spelling Vergewissern Sie sich, dass kein Schreibfehler oder Tippfehler vorliegt prod/results/help.html.twig - + help::help-section-bullet: default-operator-between-terms Der Standardoperator zwischen den Suchbegriffen ist AND prod/results/help.html.twig - + help::help-section-bullet: expand search Erweitern Sie die Suche mit weniger Schlüsselwörtern prod/results/help.html.twig - + help::help-section-bullet: quotation-marks-allow Anführungszeichen ermöglichen die Suche nach zusammenhängenden Begriffen oder Ausdrücken in der Medienbeschreibung prod/results/help.html.twig - + help::help-section-bullet: remove-advance-search Erweiterte Suchfilter entfernen prod/results/help.html.twig - + help::help-section-bullet: search-in-a-specific-field Verwenden Sie die erweiterte Suche, um in einem bestimmten Feld zu suchen prod/results/help.html.twig - + help::help-section-bullet: search-in-document Nach Dokumente oder nach Berichte suchen prod/results/help.html.twig - + help::help-section-bullet: use-EXCEPT-operator Der Operator EXCEPT erlaubt, ein Begriff von der Suche auszuschliessen prod/results/help.html.twig - + help::help-section-bullet: use-OR-between-terms Der Operator OR erlaubt, mehrere Begriffe der Medien Beschreibung zu suchen prod/results/help.html.twig - + help::help-section-title: search-tips Einige Suchtipps: prod/results/help.html.twig - + help::help-section-title: sorry-no-result Sorry, Ihre Suche liefert keine Ergebnisse prod/results/help.html.twig @@ -9957,42 +9969,42 @@ index::advance_search: disable-facet index::advance_search: disable-facet - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet index::advance_search: facet - web/prod/index.html.twig + web/prod/index.html.twig - + index::advance_search: facet-order Reihenfolge der Facettenanzeige - web/prod/index.html.twig + web/prod/index.html.twig - + index::advance_search: facet-tech-order Technische Reihenfolge - web/prod/index.html.twig + web/prod/index.html.twig - + index::advance_search: facet-values-order Reihenfolge der Facettenwerte - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: hidden-facet-values-order index::advance_search: hidden-facet-values-order - web/prod/index.html.twig + web/prod/index.html.twig - + index::advance_search: order-by-hits Nach Hits sortieren - web/prod/index.html.twig + web/prod/index.html.twig index:advanced-preferences:: use truncation index:advanced-preferences:: use truncation - web/prod/index.html.twig + web/prod/index.html.twig invite:: Redirection vers la zone d'authentification, cliquez sur OK pour continuer ou annulez @@ -10765,12 +10777,12 @@ Diese Meldung nicht mehr anzeigen Controller/Prod/LanguageController.php - + phraseanet::account The account has been deleted Ihr Benutzerkonto wurde gelöscht Controller/Root/AccountController.php - + > ]]> Ihr Benutzerkonto kann nur durch die Administration Anwendung gelöscht werden. web/account/account.html.twig @@ -10785,7 +10797,7 @@ Möchten Sie Ihr Konto wirklich löschen? web/account/account.html.twig - + phraseanet::account: Delete my account Mein Benutzerkonto löschen web/account/account.html.twig @@ -10805,7 +10817,7 @@ Liste der zu löschenden Daten web/account/account.html.twig - + phraseanet::account: My phraseanet account Mein Phraseanet Benutzerkonto web/account/account.html.twig @@ -10927,12 +10939,12 @@ phraseanet::time:: a zu - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::time:: de von - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::type:: audios @@ -10943,7 +10955,7 @@ phraseanet::type:: documents Dokumente web/prod/toolbar.html.twig - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::type:: images @@ -10953,7 +10965,7 @@ phraseanet::type:: reportages Berichte - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::type:: videos @@ -10978,17 +10990,17 @@ preview:: Description Beschreibung - web/prod/index.html.twig + web/prod/index.html.twig preview:: Historique Historie - web/prod/index.html.twig + web/prod/index.html.twig preview:: Popularite Beliebtheit - web/prod/index.html.twig + web/prod/index.html.twig preview:: arreter le diaporama @@ -11041,9 +11053,9 @@ previewLinkLabel ansichten - prod/Share/record.html.twig - prod/Share/record.html.twig - prod/Share/record.html.twig + prod/Share/record.html.twig + prod/Share/record.html.twig + prod/Share/record.html.twig print:: description @@ -11109,15 +11121,15 @@ Sie haben keine Berechtigung, diesen Vorgang auf diese Dokumente durchzuführen Controller/Prod/MoveCollectionController.php - + prod::advancesearch:tooltips:datefield_restriction_explanation Suchergebnisse auf Datum beschränken - web/prod/index.html.twig + web/prod/index.html.twig prod::advancesearch:tooltips:field_restriction_explanation prod::advancesearch:tooltips:field_restriction_explanation - web/prod/index.html.twig + web/prod/index.html.twig prod::collection deplacer egalement les documents rattaches a ce(s) regroupement(s) @@ -11405,22 +11417,22 @@ Controller/Prod/ShareController.php Controller/Prod/ToolsController.php - + prod:app trash: also-move-record Datensätze auch in den Papierkorb verschieben, die mit Berichten verknüpft sind prod/actions/delete_records_confirm.html.twig - + prod:app trash: record-delete Datensatz (¨e) dauerhaft gelöscht! prod/actions/delete_records_confirm.html.twig - + prod:app trash: record-move-to-trash Datensatz (¨e) in den Papierkorb verschoben prod/actions/delete_records_confirm.html.twig - + prod:app trash: title-trash Datensatz (¨e) In den Papierkorb verschieben Controller/Prod/LanguageController.php @@ -11549,12 +11561,12 @@ raccourci :: a propos des raccourcis claviers Über Abkürzungen - web/prod/index.html.twig + web/prod/index.html.twig raccourcis :: ne plus montrer cette aide diese Hilfe nicht mehr anzeigen - web/prod/index.html.twig + web/prod/index.html.twig rafraichir @@ -11565,11 +11577,6 @@ prod/WorkZone/Basket.html.twig prod/WorkZone/Macros.html.twig - - rechercher dans tous les champs - Alle Felder - web/prod/index.html.twig - recordtype Datensatz Typ @@ -11628,17 +11635,17 @@ reponses:: images par pages : Suchergebnisse nach Seite - web/prod/index.html.twig + web/prod/index.html.twig reponses:: mode liste Liste - web/prod/index.html.twig + web/prod/index.html.twig reponses:: mode vignettes Miniaturansichten - web/prod/index.html.twig + web/prod/index.html.twig reponses:: partager @@ -11660,14 +11667,14 @@ reponses:: taille des images : Miniaturansichtengrösse - web/prod/index.html.twig + web/prod/index.html.twig reponses::document sans titre ohne Titel classes/record/adapter.php - + report:: 1 - Periode Zeit web/report/form_date_and_base.html.twig @@ -11677,12 +11684,12 @@ Datenbank web/report/form_date_and_base.html.twig - + report:: 3 - Collections Kollektionen web/report/form_date_and_base.html.twig - + report:: 3 - Type de report Bericht Typ web/report/report_layout_child.html.twig @@ -11705,7 +11712,7 @@ web/report/report_layout.html.twig web/report/all_content.html.twig - + report:: Databox content Databox Inhalt web/report/report_layout.html.twig @@ -12194,63 +12201,63 @@ Test E-Mail Überprüfungen web/admin/dashboard.html.twig - + setup::custom-link:add-link Link hinzufügen web/admin/setup.html.twig - + setup::custom-link:help-menu Hilfemenü Form/Configuration/CustomLinkFormType.php - + setup::custom-link:language-link Sprache: web/admin/setup.html.twig - + setup::custom-link:link-url Ziel-URL web/admin/setup.html.twig - + setup::custom-link:location Ort auswählen Form/Configuration/CustomLinkFormType.php - + setup::custom-link:location-link Ort des Links web/admin/setup.html.twig - + setup::custom-link:name-link Links Name Form/Configuration/CustomLinkFormType.php web/admin/setup.html.twig - + setup::custom-link:navigation-bar Navigationsleiste Form/Configuration/CustomLinkFormType.php - + setup::custom-link:order-link Anzeigereihenfolge web/admin/setup.html.twig - + setup::custom-link:placeholder-link-url zB: https://docs.phraseanet.com Form/Configuration/CustomLinkFormType.php - + setup::custom-link:select-language Sprache auswählen Form/Configuration/CustomLinkFormType.php - + setup::custom-link:title-custom-link Custom Link web/admin/setup.html.twig @@ -12260,7 +12267,7 @@ Erweiterte Einstellung prod/Share/record.html.twig - + share::share-record: select-shared-def Wählen Sie die Unterauflösung zum Teilen aus prod/Share/record.html.twig @@ -12569,13 +12576,13 @@ thesaurus:: Nouveau synonyme Neuer Synonym - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig web/thesaurus/new-term.html.twig thesaurus:: Nouveau terme Neuer Begriff - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig thesaurus:: Nouveau terme specifique @@ -12590,7 +12597,7 @@ - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig thesaurus:: Vous n'avez acces a aucune base @@ -12646,14 +12653,14 @@ thesaurus:: corbeille Stock - Controller/Thesaurus/ThesaurusController.php - Controller/Thesaurus/ThesaurusController.php - Controller/Thesaurus/ThesaurusController.php + Controller/Thesaurus/ThesaurusController.php + Controller/Thesaurus/ThesaurusController.php + Controller/Thesaurus/ThesaurusController.php thesaurus:: deplacer le terme dans la corbeille ? Begriffe zum Stock verschieben - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig thesaurus:: enregistrement de la liste modifiee des mots candidats. @@ -12918,7 +12925,7 @@ thesaurus:: synonyme Synonym - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig thesaurus:: synonymes @@ -12928,7 +12935,7 @@ thesaurus:: terme Begriff - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig thesaurus:: tout deployer - refermable @@ -13041,6 +13048,11 @@ Ihre Version ist aktuell web/admin/databases.html.twig + + updated_on + updated_on + web/prod/index.html.twig + upload:: Destination (collection) : Kollektion diff --git a/resources/locales/messages.en.xlf b/resources/locales/messages.en.xlf index 726a3f2c95..00e3f1cb1e 100644 --- a/resources/locales/messages.en.xlf +++ b/resources/locales/messages.en.xlf @@ -1,14 +1,14 @@ - + - +
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
- - + + Form/Login/PhraseaAuthenticationForm.php Form/Configuration/EmailFormType.php @@ -206,7 +206,7 @@ selectionnes]]> selected]]> - Controller/Prod/QueryController.php + Controller/Prod/QueryController.php %quantity% Stories attached to the WorkZone @@ -287,7 +287,7 @@ %total% reponses %total% responses - Controller/Prod/QueryController.php + Controller/Prod/QueryController.php %user% a envoye son rapport de validation de %title% @@ -756,7 +756,7 @@ Advanced Search Advanced search - web/prod/index.html.twig + web/prod/index.html.twig Advanced mode @@ -771,37 +771,37 @@ Affichage Display - web/prod/index.html.twig + web/prod/index.html.twig Affichage au demarrage Display On startup - web/prod/index.html.twig + web/prod/index.html.twig Afficher la fiche descriptive Show Caption - web/prod/index.html.twig + web/prod/index.html.twig Afficher le titre Show Title - web/prod/index.html.twig + web/prod/index.html.twig Afficher les status Show Status - web/prod/index.html.twig + web/prod/index.html.twig Afficher une icone Display an Icon - web/prod/index.html.twig + web/prod/index.html.twig After metadata After captions - web/prod/index.html.twig + web/prod/index.html.twig Aggregation @@ -811,7 +811,7 @@ Aide Help - web/prod/index.html.twig + web/prod/index.html.twig Aide sur les expressions regulieres @@ -862,7 +862,7 @@ All these conditions All these conditions - web/prod/index.html.twig + web/prod/index.html.twig All values @@ -932,14 +932,14 @@ Alphabetic asc Alphabetic asc - web/prod/index.html.twig - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Alphabetic desc Alphabetic desc - web/prod/index.html.twig + web/prod/index.html.twig Also delete records that rely on groupings. @@ -1253,7 +1253,7 @@ Audio Audio - web/prod/index.html.twig + web/prod/index.html.twig Audio Birate @@ -1537,7 +1537,7 @@ By field By field - web/prod/index.html.twig + web/prod/index.html.twig CHAMPS @@ -1828,7 +1828,7 @@ Collection order Collection order - web/prod/index.html.twig + web/prod/index.html.twig Color Depth @@ -1899,7 +1899,7 @@ Configuration Configuration - web/prod/index.html.twig + web/prod/index.html.twig Confirm new email address @@ -1955,7 +1955,7 @@ Contains Contains - web/prod/index.html.twig + web/prod/index.html.twig Continuer ? @@ -2010,7 +2010,7 @@ Couleur de selection Selection color - web/prod/index.html.twig + web/prod/index.html.twig Country @@ -2224,7 +2224,7 @@ Date Added Date added - web/prod/index.html.twig + web/prod/index.html.twig Date Creation @@ -2234,7 +2234,7 @@ Date Updated Date Updated - web/prod/index.html.twig + web/prod/index.html.twig Date de connexion @@ -2263,7 +2263,7 @@ Date(s) from field(s) Date(s) from field(s) - web/prod/index.html.twig + web/prod/index.html.twig De @@ -2341,7 +2341,7 @@ Defined by admin Defined by admin - web/prod/index.html.twig + web/prod/index.html.twig Defined in Apache configuration @@ -2365,7 +2365,7 @@ prod/upload/lazaret.html.twig admin/task-manager/templates.html.twig - + Delete account successfull Account deleted successfully Notification/Mail/MailSuccessAccountDelete.php @@ -2471,7 +2471,7 @@ Detailed view URL URL of the detailed view - prod/Share/record.html.twig + prod/Share/record.html.twig Details @@ -2519,7 +2519,7 @@ Display technical data Display technical data - web/prod/index.html.twig + web/prod/index.html.twig Display thumbnails @@ -2529,7 +2529,7 @@ Do not display Do not display - web/prod/index.html.twig + web/prod/index.html.twig Do not forget to restart the tasks scheduler @@ -2561,7 +2561,7 @@ Document Document - web/prod/index.html.twig + web/prod/index.html.twig Document Type Sharing @@ -2794,7 +2794,7 @@ E-mail test result: %email_status% web/admin/dashboard.html.twig - + 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% @@ -2802,7 +2802,7 @@ 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. Notification/Mail/MailRequestAccountDelete.php - + Email:deletion:request:subject Delete account confirmation Account deletion confirmation Notification/Mail/MailRequestAccountDelete.php @@ -2820,7 +2820,7 @@ Embed code Embed code - prod/Share/record.html.twig + prod/Share/record.html.twig Empty a collection @@ -3000,7 +3000,7 @@ Equals Equals - web/prod/index.html.twig + web/prod/index.html.twig Erreur @@ -3140,10 +3140,10 @@ Bridge/Dailymotion/video_deleteelement.html.twig Bridge/Youtube/video_deleteelement.html.twig - + Ex : Paris, bleu, montagne Ex : Paris, blue, mountain - web/prod/index.html.twig + web/prod/index.html.twig Executables externes @@ -3326,7 +3326,7 @@ Flash Flash - web/prod/index.html.twig + web/prod/index.html.twig web/common/technical_datas.html.twig @@ -3457,7 +3457,7 @@ Geo Search Geo Search - web/prod/index.html.twig + web/prod/index.html.twig Geonames server address @@ -3532,7 +3532,7 @@ Graphiste (preview au rollover) Graphist (preview on thumbnail rollover) - web/prod/index.html.twig + web/prod/index.html.twig Great @@ -3630,7 +3630,7 @@ Iconographe (description au rollover) Iconograph (caption on thumbnail rollover) - web/prod/index.html.twig + web/prod/index.html.twig Id @@ -3675,7 +3675,7 @@ Image Image - web/prod/index.html.twig + web/prod/index.html.twig ImageMagick @@ -3701,7 +3701,7 @@ In the answer grid In the answer grid - web/prod/index.html.twig + web/prod/index.html.twig Include Business-fields in caption @@ -3925,7 +3925,7 @@ Language Language - web/prod/index.html.twig + web/prod/index.html.twig Last Name @@ -4062,7 +4062,7 @@ Les termes apparaissent dans le(s) champs Word(s) from field(s) - web/prod/index.html.twig + web/prod/index.html.twig Light Value @@ -4192,7 +4192,7 @@ Ma derniere question My last query - web/prod/index.html.twig + web/prod/index.html.twig Mail line %line% is empty @@ -4349,7 +4349,7 @@ Mode de presentation Display mode - web/prod/index.html.twig + web/prod/index.html.twig Modele de donnees @@ -4503,7 +4503,7 @@ No URL available No URL available - prod/Share/record.html.twig + prod/Share/record.html.twig No account yet? @@ -4586,7 +4586,7 @@ WorkZone/Browser/Results.html.twig WorkZone/Browser/Results.html.twig - + No thesaurus concept query No thesaurus search prod/results/infos.html.twig @@ -4773,7 +4773,7 @@ One of these conditions One of these conditions - web/prod/index.html.twig + web/prod/index.html.twig Only %nbEditableDocuments% records can be modified. @@ -5123,8 +5123,8 @@ Settings web/prod/index.html.twig web/prod/index.html.twig - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Prefix for notification emails @@ -5139,12 +5139,12 @@ Presentation de vignettes Thumbnails - web/prod/index.html.twig + web/prod/index.html.twig Presentation de vignettes de panier Basket display setup - web/prod/index.html.twig + web/prod/index.html.twig Presets @@ -5197,7 +5197,7 @@ Publications Publications - web/prod/index.html.twig + web/prod/index.html.twig web/admin/tree.html.twig admin/publications/wrapper.html.twig web/common/menubar.html.twig @@ -5309,80 +5309,80 @@ Raccourcis claviers de la zone des paniers : - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de editing : Edit window shortcuts - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de preview : Detailed View window shortcut - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de recherche : Main windows shortcuts - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-a : tout selectionner ctrl-a : select all - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-e : editer la selection ctrl-e : edit selection - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-p : imprimer la selection ctrl-p : print selected - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::espace : arreter/demarrer le diaporama space : start/stop diaporama - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche bas : scroll vertical down arrow : vertical scroll - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche droite : page suivante right arrow : next page - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : en arriere left arrow : previous document - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : en avant right arrow : next document - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : page precedente left arrow : previous page - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche haut : scroll vertical up arrow : vertical scroll - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::tab/shift-tab se ballade dans les champs tab/shift-tab : change field - web/prod/index.html.twig + web/prod/index.html.twig Rappel : Il vous reste %number% jours pour valider %title% de %user% @@ -5404,7 +5404,7 @@ Reset prod/Baskets/Reorder.html.twig prod/Story/Reorder.html.twig - web/prod/index.html.twig + web/prod/index.html.twig Re-ordonner @@ -5507,7 +5507,7 @@ Rechercher dans un champ date In a date field - web/prod/index.html.twig + web/prod/index.html.twig Recommendations @@ -5598,7 +5598,7 @@ Relevance Relevance - web/prod/index.html.twig + web/prod/index.html.twig Remember me @@ -5734,7 +5734,7 @@ Resource URL Resource URL - prod/Share/record.html.twig + prod/Share/record.html.twig Resquest access @@ -5970,7 +5970,7 @@ Select a field Select a field - web/prod/index.html.twig + web/prod/index.html.twig Select a list on the left and edit it ! @@ -6002,10 +6002,10 @@ admin/statusbit/edit.html.twig user/import/file.html.twig - + Selected base(s) Selected database(s) : - web/prod/index.html.twig + web/prod/index.html.twig Selected files @@ -6035,6 +6035,13 @@ Send to Facebook prod/Share/record.html.twig + + Send to Linkedin + Send to Linkedin + prod/Share/record.html.twig + prod/Share/record.html.twig + prod/Share/record.html.twig + Send to Twitter Send to Twitter @@ -6275,7 +6282,7 @@ Status des documents a rechercher Document status - web/prod/index.html.twig + web/prod/index.html.twig Status edition @@ -6693,7 +6700,7 @@ Theme Skin - web/prod/index.html.twig + web/prod/index.html.twig There is no one to validate orders, please contact an administrator @@ -6870,7 +6877,7 @@ Tout type All types - web/prod/index.html.twig + web/prod/index.html.twig Toutes les publications @@ -6896,7 +6903,7 @@ Trier par Sort by - web/prod/index.html.twig + web/prod/index.html.twig Try to extract embedded thumbnails @@ -6921,7 +6928,7 @@ Type de documents Document(s) Type - web/prod/index.html.twig + web/prod/index.html.twig Type nombre @@ -7044,7 +7051,7 @@ Une question personnelle The query - web/prod/index.html.twig + web/prod/index.html.twig Une selection @@ -7156,7 +7163,7 @@ Use latest search settings on Production loading Use latest search settings on Production when loading - web/prod/index.html.twig + web/prod/index.html.twig Use my Phraseanet account @@ -7334,7 +7341,7 @@ Video Video - web/prod/index.html.twig + web/prod/index.html.twig Video Codec @@ -7536,7 +7543,7 @@ Vous pouvez quitter la plupart des fenetres survolantes via la touche echap esc : close most of overlayed windows - web/prod/index.html.twig + web/prod/index.html.twig Warning ! @@ -7637,8 +7644,8 @@ YYYY/MM/DD YYYY/MM/DD - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Yes @@ -7959,7 +7966,7 @@ action : bridge Bridge - web/prod/index.html.twig + web/prod/index.html.twig action : collection @@ -7986,7 +7993,7 @@ prod/preview/tools.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig - web/prod/index.html.twig + web/prod/index.html.twig web/lightbox/validate.html.twig web/lightbox/feed.html.twig lightbox/IE6/validate.html.twig @@ -8017,7 +8024,7 @@ web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig - web/prod/index.html.twig + web/prod/index.html.twig action : push @@ -9098,12 +9105,12 @@ boutton:: selectionner aucune base None - web/prod/index.html.twig + web/prod/index.html.twig boutton:: selectionner toutes les bases All - web/prod/index.html.twig + web/prod/index.html.twig boutton::ajouter @@ -9132,9 +9139,9 @@ web/thesaurus/export-text-dialog.html.twig web/thesaurus/export-topics-dialog.html.twig web/thesaurus/link-field-step1.html.twig - web/thesaurus/thesaurus.html.twig - web/thesaurus/thesaurus.html.twig - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig web/thesaurus/new-term.html.twig web/thesaurus/new-term.html.twig web/account/reset-email.html.twig @@ -9156,8 +9163,8 @@ boutton::chercher Search web/prod/index.html.twig - web/thesaurus/thesaurus.html.twig - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig web/admin/users.html.twig @@ -9273,7 +9280,7 @@ boutton::rechercher Search Controller/Prod/LanguageController.php - web/prod/index.html.twig + web/prod/index.html.twig boutton::refresh @@ -9407,14 +9414,14 @@ Bridge/Youtube/video_moveinto_playlist.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Youtube/playlist_createcontainer.html.twig - web/prod/index.html.twig + web/prod/index.html.twig web/thesaurus/link-field-step2.html.twig web/thesaurus/accept.html.twig web/thesaurus/import-dialog.html.twig web/thesaurus/export-text-dialog.html.twig web/thesaurus/export-topics-dialog.html.twig web/thesaurus/link-field-step1.html.twig - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig web/thesaurus/new-term.html.twig web/thesaurus/new-term.html.twig web/thesaurus/index.html.twig @@ -9534,7 +9541,7 @@ choisir Select - web/prod/index.html.twig + web/prod/index.html.twig admin/collection/create.html.twig admin/databox/databox.html.twig @@ -9564,9 +9571,9 @@ copyClipboardLabel Copy to clipboard prod/results/infos.html.twig - prod/Share/record.html.twig - prod/Share/record.html.twig - prod/Share/record.html.twig + prod/Share/record.html.twig + prod/Share/record.html.twig + prod/Share/record.html.twig create_subdef_button_label @@ -9613,6 +9620,11 @@ Subview Name web/admin/subdefs.html.twig + + created_on + created_on + web/prod/index.html.twig + dans %category% in %category% @@ -9759,7 +9771,7 @@ web/common/dialog_export.html.twig web/common/dialog_export.html.twig - + export::export-email: email-invalid The email address format seems incorrect web/common/dialog_export.html.twig @@ -9958,42 +9970,42 @@ See documentation for more examples https://docs.phraseanet.com index::advance_search: disable-facet Hide facets with 1 result (experimental) - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet Facets Preferences - web/prod/index.html.twig + web/prod/index.html.twig - + index::advance_search: facet-order Facets order - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet-tech-order default order - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet-values-order facets value order - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: hidden-facet-values-order Hidden Facets - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: order-by-hits index::advance_search: order-by-hits - web/prod/index.html.twig + web/prod/index.html.twig index:advanced-preferences:: use truncation use truncation - web/prod/index.html.twig + web/prod/index.html.twig invite:: Redirection vers la zone d'authentification, cliquez sur OK pour continuer ou annulez @@ -10771,32 +10783,32 @@ See documentation for more examples https://docs.phraseanet.com The account has been deleted Controller/Root/AccountController.php - + > ]]> Your rights do not allow to perform this action. Your account can only be deleted via the Administration interface. web/account/account.html.twig - + phraseanet::account: A confirmation e-mail has been sent. Please follow the instructions contained to continue account deletion A confirmation email has been sent. Please follow the instructions to delete the account. Controller/Root/AccountController.php - + phraseanet::account: Are you sure you want to delete your account? Are you sure you wish to delete your account? web/account/account.html.twig - + phraseanet::account: Delete my account Delete my account web/account/account.html.twig - + phraseanet::account: I am agree to delete my account I agree to delete my account web/account/account.html.twig - + phraseanet::account: I am agree to delete my account, need confirmation on mail I agree to delete my account and I need a confirmation by email web/account/account.html.twig @@ -10806,7 +10818,7 @@ See documentation for more examples https://docs.phraseanet.com List of data to be deleted web/account/account.html.twig - + phraseanet::account: My phraseanet account My Phraseanet account web/account/account.html.twig @@ -10928,12 +10940,12 @@ See documentation for more examples https://docs.phraseanet.com phraseanet::time:: a To - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::time:: de From - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::type:: audios @@ -10944,7 +10956,7 @@ See documentation for more examples https://docs.phraseanet.com phraseanet::type:: documents Documents web/prod/toolbar.html.twig - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::type:: images @@ -10954,7 +10966,7 @@ See documentation for more examples https://docs.phraseanet.com phraseanet::type:: reportages Stories - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::type:: videos @@ -10979,17 +10991,17 @@ See documentation for more examples https://docs.phraseanet.com preview:: Description Caption - web/prod/index.html.twig + web/prod/index.html.twig preview:: Historique Timeline - web/prod/index.html.twig + web/prod/index.html.twig preview:: Popularite Statistics - web/prod/index.html.twig + web/prod/index.html.twig preview:: arreter le diaporama @@ -11042,9 +11054,9 @@ See documentation for more examples https://docs.phraseanet.com previewLinkLabel Preview - prod/Share/record.html.twig - prod/Share/record.html.twig - prod/Share/record.html.twig + prod/Share/record.html.twig + prod/Share/record.html.twig + prod/Share/record.html.twig print:: description @@ -11110,15 +11122,15 @@ See documentation for more examples https://docs.phraseanet.com You do not have the required permissions on selected documents Controller/Prod/MoveCollectionController.php - + prod::advancesearch:tooltips:datefield_restriction_explanation Narrow the search results to dates - web/prod/index.html.twig + web/prod/index.html.twig prod::advancesearch:tooltips:field_restriction_explanation prod::advancesearch:tooltips:field_restriction_explanation - web/prod/index.html.twig + web/prod/index.html.twig prod::collection deplacer egalement les documents rattaches a ce(s) regroupement(s) @@ -11406,7 +11418,7 @@ See documentation for more examples https://docs.phraseanet.com Controller/Prod/ShareController.php Controller/Prod/ToolsController.php - + prod:app trash: also-move-record Also move to Trash the records that rely on stories prod/actions/delete_records_confirm.html.twig @@ -11553,12 +11565,12 @@ It is possible to place several search areas raccourci :: a propos des raccourcis claviers About shortcuts - web/prod/index.html.twig + web/prod/index.html.twig raccourcis :: ne plus montrer cette aide Do not display this help anymore - web/prod/index.html.twig + web/prod/index.html.twig rafraichir @@ -11569,11 +11581,6 @@ It is possible to place several search areas prod/WorkZone/Basket.html.twig prod/WorkZone/Macros.html.twig - - rechercher dans tous les champs - All fields - web/prod/index.html.twig - recordtype record type @@ -11632,17 +11639,17 @@ It is possible to place several search areas reponses:: images par pages : Results per page - web/prod/index.html.twig + web/prod/index.html.twig reponses:: mode liste List - web/prod/index.html.twig + web/prod/index.html.twig reponses:: mode vignettes Thumbnails - web/prod/index.html.twig + web/prod/index.html.twig reponses:: partager @@ -11664,7 +11671,7 @@ It is possible to place several search areas reponses:: taille des images : Thumbnails size - web/prod/index.html.twig + web/prod/index.html.twig reponses::document sans titre @@ -11686,7 +11693,7 @@ It is possible to place several search areas report:: 3 - Collections web/report/form_date_and_base.html.twig - + report:: 3 - Type de report Type of report web/report/report_layout_child.html.twig @@ -12223,7 +12230,7 @@ It is possible to place several search areas setup::custom-link:location Form/Configuration/CustomLinkFormType.php - + setup::custom-link:location-link Placement web/admin/setup.html.twig @@ -12239,7 +12246,7 @@ It is possible to place several search areas Navigation Bar Form/Configuration/CustomLinkFormType.php - + setup::custom-link:order-link Display order web/admin/setup.html.twig @@ -12264,7 +12271,7 @@ It is possible to place several search areas Advanced setting prod/Share/record.html.twig - + share::share-record: select-shared-def Select a subview to share prod/Share/record.html.twig @@ -12573,13 +12580,13 @@ It is possible to place several search areas thesaurus:: Nouveau synonyme New Synonym - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig web/thesaurus/new-term.html.twig thesaurus:: Nouveau terme New term - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig thesaurus:: Nouveau terme specifique @@ -12594,7 +12601,7 @@ It is possible to place several search areas - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig thesaurus:: Vous n'avez acces a aucune base @@ -12650,14 +12657,14 @@ It is possible to place several search areas thesaurus:: corbeille Stock - Controller/Thesaurus/ThesaurusController.php - Controller/Thesaurus/ThesaurusController.php - Controller/Thesaurus/ThesaurusController.php + Controller/Thesaurus/ThesaurusController.php + Controller/Thesaurus/ThesaurusController.php + Controller/Thesaurus/ThesaurusController.php thesaurus:: deplacer le terme dans la corbeille ? Move Terms to stock - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig thesaurus:: enregistrement de la liste modifiee des mots candidats. @@ -12922,7 +12929,7 @@ It is possible to place several search areas thesaurus:: synonyme Synonym - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig thesaurus:: synonymes @@ -12932,7 +12939,7 @@ It is possible to place several search areas thesaurus:: terme Term - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig thesaurus:: tout deployer - refermable @@ -13045,6 +13052,11 @@ It is possible to place several search areas Your version is up to date web/admin/databases.html.twig + + updated_on + updated_on + web/prod/index.html.twig + upload:: Destination (collection) : Collection diff --git a/resources/locales/messages.fr.xlf b/resources/locales/messages.fr.xlf index 25d0cec7d0..5e417346e6 100644 --- a/resources/locales/messages.fr.xlf +++ b/resources/locales/messages.fr.xlf @@ -1,14 +1,14 @@ - + - +
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
- - + + Form/Login/PhraseaAuthenticationForm.php Form/Configuration/EmailFormType.php @@ -206,7 +206,7 @@ selectionnes]]> sélectionnés]]> - Controller/Prod/QueryController.php + Controller/Prod/QueryController.php %quantity% Stories attached to the WorkZone @@ -287,7 +287,7 @@ %total% reponses %total% réponses - Controller/Prod/QueryController.php + Controller/Prod/QueryController.php %user% a envoye son rapport de validation de %title% @@ -755,7 +755,7 @@ Advanced Search Recherche avancée - web/prod/index.html.twig + web/prod/index.html.twig Advanced mode @@ -770,37 +770,37 @@ Affichage Affichage - web/prod/index.html.twig + web/prod/index.html.twig Affichage au demarrage Afficher au démarrage - web/prod/index.html.twig + web/prod/index.html.twig Afficher la fiche descriptive Afficher la notice - web/prod/index.html.twig + web/prod/index.html.twig Afficher le titre Afficher le titre - web/prod/index.html.twig + web/prod/index.html.twig Afficher les status Afficher les Status - web/prod/index.html.twig + web/prod/index.html.twig Afficher une icone Afficher une icône - web/prod/index.html.twig + web/prod/index.html.twig After metadata Dans l'infobulle de description, après les métadonnées - web/prod/index.html.twig + web/prod/index.html.twig Aggregation @@ -810,7 +810,7 @@ Aide Aide - web/prod/index.html.twig + web/prod/index.html.twig Aide sur les expressions regulieres @@ -861,7 +861,7 @@ All these conditions Toutes les conditions - web/prod/index.html.twig + web/prod/index.html.twig All values @@ -931,14 +931,14 @@ Alphabetic asc Alphabétique asc - web/prod/index.html.twig - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Alphabetic desc Alphabétique desc - web/prod/index.html.twig + web/prod/index.html.twig Also delete records that rely on groupings. @@ -1252,7 +1252,7 @@ Audio Audio - web/prod/index.html.twig + web/prod/index.html.twig Audio Birate @@ -1536,7 +1536,7 @@ By field Par champ - web/prod/index.html.twig + web/prod/index.html.twig CHAMPS @@ -1826,7 +1826,7 @@ Collection order Ordre des collections - web/prod/index.html.twig + web/prod/index.html.twig Color Depth @@ -1897,7 +1897,7 @@ Configuration Configuration - web/prod/index.html.twig + web/prod/index.html.twig Confirm new email address @@ -1953,7 +1953,7 @@ Contains Contient - web/prod/index.html.twig + web/prod/index.html.twig Continuer ? @@ -2008,7 +2008,7 @@ Couleur de selection Couleur de sélection - web/prod/index.html.twig + web/prod/index.html.twig Country @@ -2221,7 +2221,7 @@ Date Added Date d'ajout - web/prod/index.html.twig + web/prod/index.html.twig Date Creation @@ -2231,7 +2231,7 @@ Date Updated Date Updated - web/prod/index.html.twig + web/prod/index.html.twig Date de connexion @@ -2260,7 +2260,7 @@ Date(s) from field(s) Date(s) - web/prod/index.html.twig + web/prod/index.html.twig De @@ -2338,7 +2338,7 @@ Defined by admin Définit par l'admin - web/prod/index.html.twig + web/prod/index.html.twig Defined in Apache configuration @@ -2468,7 +2468,7 @@ Detailed view URL URL de la vue détaillée - prod/Share/record.html.twig + prod/Share/record.html.twig Details @@ -2516,7 +2516,7 @@ Display technical data Affichage des informations techniques - web/prod/index.html.twig + web/prod/index.html.twig Display thumbnails @@ -2526,7 +2526,7 @@ Do not display Masquer les informations techniques - web/prod/index.html.twig + web/prod/index.html.twig Do not forget to restart the tasks scheduler @@ -2558,7 +2558,7 @@ Document Document - web/prod/index.html.twig + web/prod/index.html.twig Document Type Sharing @@ -2817,7 +2817,7 @@ Embed code Code d'intégration (Embed code) - prod/Share/record.html.twig + prod/Share/record.html.twig Empty a collection @@ -2997,7 +2997,7 @@ Equals Egale - web/prod/index.html.twig + web/prod/index.html.twig Erreur @@ -3140,7 +3140,7 @@ Ex : Paris, bleu, montagne Ex : Paris, bleu, montagne - web/prod/index.html.twig + web/prod/index.html.twig Executables externes @@ -3323,7 +3323,7 @@ Flash Flash - web/prod/index.html.twig + web/prod/index.html.twig web/common/technical_datas.html.twig @@ -3454,7 +3454,7 @@ Geo Search Recherche géolocalisé - web/prod/index.html.twig + web/prod/index.html.twig Geonames server address @@ -3529,7 +3529,7 @@ Graphiste (preview au rollover) Graphiste (prévisualisation au survol de la vignette) - web/prod/index.html.twig + web/prod/index.html.twig Great @@ -3627,7 +3627,7 @@ Iconographe (description au rollover) Iconographe (fiche d'indexation au survol de la vignette) - web/prod/index.html.twig + web/prod/index.html.twig Id @@ -3672,7 +3672,7 @@ Image Image - web/prod/index.html.twig + web/prod/index.html.twig ImageMagick @@ -3698,7 +3698,7 @@ In the answer grid Dans une infobulle séparée - web/prod/index.html.twig + web/prod/index.html.twig Include Business-fields in caption @@ -3922,7 +3922,7 @@ Language Langue - web/prod/index.html.twig + web/prod/index.html.twig Last Name @@ -4059,7 +4059,7 @@ Les termes apparaissent dans le(s) champs Le(s) mot(s) contenu(s) dans le(s) champ(s) - web/prod/index.html.twig + web/prod/index.html.twig Light Value @@ -4189,7 +4189,7 @@ Ma derniere question Ma dernière question - web/prod/index.html.twig + web/prod/index.html.twig Mail line %line% is empty @@ -4346,7 +4346,7 @@ Mode de presentation Mode de présentation - web/prod/index.html.twig + web/prod/index.html.twig Modele de donnees @@ -4410,7 +4410,7 @@ Multivalué admin/fields/templates.html.twig - + My application Mon application web/account/account.html.twig @@ -4500,7 +4500,7 @@ No URL available Aucune URL de disponible - prod/Share/record.html.twig + prod/Share/record.html.twig No account yet? @@ -4770,7 +4770,7 @@ One of these conditions Une de ces conditions - web/prod/index.html.twig + web/prod/index.html.twig Only %nbEditableDocuments% records can be modified. @@ -4787,7 +4787,7 @@ Ouvrir l'URL dans une nouvelle fenêtre Core/Provider/TwigServiceProvider.php - + Or Ou prod/upload/upload.html.twig @@ -5120,8 +5120,8 @@ Préférences web/prod/index.html.twig web/prod/index.html.twig - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Prefix for notification emails @@ -5136,12 +5136,12 @@ Presentation de vignettes Présentation de vignettes - web/prod/index.html.twig + web/prod/index.html.twig Presentation de vignettes de panier Présentation des vignettes de panier - web/prod/index.html.twig + web/prod/index.html.twig Presets @@ -5194,7 +5194,7 @@ Publications Publications - web/prod/index.html.twig + web/prod/index.html.twig web/admin/tree.html.twig admin/publications/wrapper.html.twig web/common/menubar.html.twig @@ -5308,80 +5308,80 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Raccourcis claviers de la zone des paniers : - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de editing : Raccourci de la fenêtre d'édition - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de preview : Raccourcis de la fenêtre vue détaillée - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de recherche : Raccourcis de la fenêtre principale - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-a : tout selectionner ctrl-a : sélectionner tout - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-e : editer la selection ctrl-e : éditer la sélection - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-p : imprimer la selection ctrl-p : imprimer la sélection - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::espace : arreter/demarrer le diaporama espace : démarrer/arrêter le diaporama - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche bas : scroll vertical flèche basse : défilement vers le bas - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche droite : page suivante flèche droite : page suivante - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : en arriere flèche gauche : document précédent - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : en avant flèche droite : document suivant - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : page precedente flèche gauche : page précédente - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche haut : scroll vertical flèche haute : défilement vers le haut - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::tab/shift-tab se ballade dans les champs Tab/shift-tab : Changer de champs - web/prod/index.html.twig + web/prod/index.html.twig Rappel : Il vous reste %number% jours pour valider %title% de %user% @@ -5403,7 +5403,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Ré-initialiser prod/Baskets/Reorder.html.twig prod/Story/Reorder.html.twig - web/prod/index.html.twig + web/prod/index.html.twig Re-ordonner @@ -5506,7 +5506,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Rechercher dans un champ date Dans un champ date - web/prod/index.html.twig + web/prod/index.html.twig Recommendations @@ -5597,7 +5597,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Relevance Pertinence - web/prod/index.html.twig + web/prod/index.html.twig Remember me @@ -5733,7 +5733,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Resource URL URL de la ressource - prod/Share/record.html.twig + prod/Share/record.html.twig Resquest access @@ -5969,7 +5969,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Select a field Choisir un champ - web/prod/index.html.twig + web/prod/index.html.twig Select a list on the left and edit it ! @@ -6001,10 +6001,10 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin/statusbit/edit.html.twig user/import/file.html.twig - + Selected base(s) Rechercher dans les Bases : - web/prod/index.html.twig + web/prod/index.html.twig Selected files @@ -6034,6 +6034,13 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Envoyer vers Facebook prod/Share/record.html.twig + + Send to Linkedin + Send to Linkedin + prod/Share/record.html.twig + prod/Share/record.html.twig + prod/Share/record.html.twig + Send to Twitter Envoyer vers Twitter @@ -6274,7 +6281,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Status des documents a rechercher Status des documents pour la recherche - web/prod/index.html.twig + web/prod/index.html.twig Status edition @@ -6692,7 +6699,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Theme Thème - web/prod/index.html.twig + web/prod/index.html.twig There is no one to validate orders, please contact an administrator @@ -6845,7 +6852,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Jeton web/developers/application.html.twig - + Token not found Token non trouvé Controller/Root/AccountController.php @@ -6869,7 +6876,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Tout type Tous types - web/prod/index.html.twig + web/prod/index.html.twig Toutes les publications @@ -6895,7 +6902,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Trier par Trier par - web/prod/index.html.twig + web/prod/index.html.twig Try to extract embedded thumbnails @@ -6920,7 +6927,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Type de documents Type de document - web/prod/index.html.twig + web/prod/index.html.twig Type nombre @@ -7043,7 +7050,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Une question personnelle La question - web/prod/index.html.twig + web/prod/index.html.twig Une selection @@ -7155,7 +7162,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Use latest search settings on Production loading Utiliser la dernière question posée au lancement de Production - web/prod/index.html.twig + web/prod/index.html.twig Use my Phraseanet account @@ -7333,7 +7340,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Video Vidéo - web/prod/index.html.twig + web/prod/index.html.twig Video Codec @@ -7535,7 +7542,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Vous pouvez quitter la plupart des fenetres survolantes via la touche echap Vous pouvez fermer la plupart des fênetres en sur impression avec la touche echap - web/prod/index.html.twig + web/prod/index.html.twig Warning ! @@ -7627,7 +7634,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Ecriture des métadonnées web/admin/subdefs.html.twig - + YYYY-MM-DD AAAA-MM-JJ web/report/form_date_and_base.html.twig @@ -7636,8 +7643,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis YYYY/MM/DD YYYY/MM/DD - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Yes @@ -7931,7 +7938,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Vos documents et leurs sous-résolutions (vignettes, prévisualisation et autres sous-définitions) sont stockés dans ces répertoires web/setup/step2.html.twig - + Your phraseanet account on %urlInstance% has been deleted! Votre compte Phraseanet sur %urlInstance% a été supprimé! Notification/Mail/MailSuccessAccountDelete.php @@ -7958,7 +7965,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis action : bridge Bridge - web/prod/index.html.twig + web/prod/index.html.twig action : collection @@ -7985,7 +7992,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis prod/preview/tools.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig - web/prod/index.html.twig + web/prod/index.html.twig web/lightbox/validate.html.twig web/lightbox/feed.html.twig lightbox/IE6/validate.html.twig @@ -8016,7 +8023,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig - web/prod/index.html.twig + web/prod/index.html.twig action : push @@ -9098,12 +9105,12 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le boutton:: selectionner aucune base Aucune - web/prod/index.html.twig + web/prod/index.html.twig boutton:: selectionner toutes les bases Toutes - web/prod/index.html.twig + web/prod/index.html.twig boutton::ajouter @@ -9132,9 +9139,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le web/thesaurus/export-text-dialog.html.twig web/thesaurus/export-topics-dialog.html.twig web/thesaurus/link-field-step1.html.twig - web/thesaurus/thesaurus.html.twig - web/thesaurus/thesaurus.html.twig - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig web/thesaurus/new-term.html.twig web/thesaurus/new-term.html.twig web/account/reset-email.html.twig @@ -9156,8 +9163,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le boutton::chercher Chercher web/prod/index.html.twig - web/thesaurus/thesaurus.html.twig - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig web/admin/users.html.twig @@ -9273,7 +9280,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le boutton::rechercher Rechercher Controller/Prod/LanguageController.php - web/prod/index.html.twig + web/prod/index.html.twig boutton::refresh @@ -9407,14 +9414,14 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le Bridge/Youtube/video_moveinto_playlist.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Youtube/playlist_createcontainer.html.twig - web/prod/index.html.twig + web/prod/index.html.twig web/thesaurus/link-field-step2.html.twig web/thesaurus/accept.html.twig web/thesaurus/import-dialog.html.twig web/thesaurus/export-text-dialog.html.twig web/thesaurus/export-topics-dialog.html.twig web/thesaurus/link-field-step1.html.twig - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig web/thesaurus/new-term.html.twig web/thesaurus/new-term.html.twig web/thesaurus/index.html.twig @@ -9534,7 +9541,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le choisir Choisir - web/prod/index.html.twig + web/prod/index.html.twig admin/collection/create.html.twig admin/databox/databox.html.twig @@ -9564,9 +9571,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le copyClipboardLabel Copier dans le presse-papier prod/results/infos.html.twig - prod/Share/record.html.twig - prod/Share/record.html.twig - prod/Share/record.html.twig + prod/Share/record.html.twig + prod/Share/record.html.twig + prod/Share/record.html.twig create_subdef_button_label @@ -9613,6 +9620,11 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le create_subdef_modal_subdefinition_name web/admin/subdefs.html.twig + + created_on + created_on + web/prod/index.html.twig + dans %category% dans %category% @@ -9957,42 +9969,42 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le index::advance_search: disable-facet Ne pas afficher les facettes contenant un seul résultat (expérimental) - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet Préférences sur les facettes - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet-order index::advance_search: facet-order - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet-tech-order index::advance_search: facet-tech-order - web/prod/index.html.twig + web/prod/index.html.twig - + index::advance_search: facet-values-order Ordre des valeurs de facettes - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: hidden-facet-values-order Facettes Masquées - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: order-by-hits Trier les facettes par hits - web/prod/index.html.twig + web/prod/index.html.twig index:advanced-preferences:: use truncation Activer la troncature - web/prod/index.html.twig + web/prod/index.html.twig invite:: Redirection vers la zone d'authentification, cliquez sur OK pour continuer ou annulez @@ -10765,47 +10777,47 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le Ne plus afficher ce message Controller/Prod/LanguageController.php - + phraseanet::account The account has been deleted Le compte a été supprimé Controller/Root/AccountController.php - + > ]]> Vos droits ne vous permettent pas de réaliser cette action, votre compte ne peut être supprimé que via l'interface d'Administration. web/account/account.html.twig - + phraseanet::account: A confirmation e-mail has been sent. Please follow the instructions contained to continue account deletion Un email de confirmation a été envoyé. Veuillez suivre les instructions pour poursuivre la procédure de suppression du compte. Controller/Root/AccountController.php - + phraseanet::account: Are you sure you want to delete your account? Etes-vous sûr(e) de vouloir supprimer votre compte? web/account/account.html.twig - + phraseanet::account: Delete my account Supprimer mon compte web/account/account.html.twig - + phraseanet::account: I am agree to delete my account Je suis d'accord pour supprimer mon compte web/account/account.html.twig - + phraseanet::account: I am agree to delete my account, need confirmation on mail Je suis d'accord pour supprimer mon compte et j'ai besoin d'une confirmation par email web/account/account.html.twig - + phraseanet::account: List of data to be deleted Liste des données à supprimer web/account/account.html.twig - + phraseanet::account: My phraseanet account Mon compte Phraseanet web/account/account.html.twig @@ -10927,12 +10939,12 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le phraseanet::time:: a A - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::time:: de De - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::type:: audios @@ -10943,7 +10955,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le phraseanet::type:: documents Documents web/prod/toolbar.html.twig - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::type:: images @@ -10953,7 +10965,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le phraseanet::type:: reportages Reportages - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::type:: videos @@ -10978,17 +10990,17 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le preview:: Description Notice - web/prod/index.html.twig + web/prod/index.html.twig preview:: Historique Historique - web/prod/index.html.twig + web/prod/index.html.twig preview:: Popularite Popularité - web/prod/index.html.twig + web/prod/index.html.twig preview:: arreter le diaporama @@ -11041,9 +11053,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le previewLinkLabel Prévisualiser - prod/Share/record.html.twig - prod/Share/record.html.twig - prod/Share/record.html.twig + prod/Share/record.html.twig + prod/Share/record.html.twig + prod/Share/record.html.twig print:: description @@ -11112,12 +11124,12 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le prod::advancesearch:tooltips:datefield_restriction_explanation Limiter la recherche des résultats à des dates - web/prod/index.html.twig + web/prod/index.html.twig prod::advancesearch:tooltips:field_restriction_explanation prod::advancesearch:tooltips:field_restriction_explanation - web/prod/index.html.twig + web/prod/index.html.twig prod::collection deplacer egalement les documents rattaches a ce(s) regroupement(s) @@ -11405,7 +11417,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le Controller/Prod/ShareController.php Controller/Prod/ToolsController.php - + prod:app trash: also-move-record Déplacer à la corbeille les enregistrements liés à ces reportages prod/actions/delete_records_confirm.html.twig @@ -11549,12 +11561,12 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le raccourci :: a propos des raccourcis claviers A propos des raccourcis clavier - web/prod/index.html.twig + web/prod/index.html.twig raccourcis :: ne plus montrer cette aide Ne plus montrer cette aide - web/prod/index.html.twig + web/prod/index.html.twig rafraichir @@ -11565,11 +11577,6 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le prod/WorkZone/Basket.html.twig prod/WorkZone/Macros.html.twig - - rechercher dans tous les champs - Tous les champs - web/prod/index.html.twig - recordtype Type d'enregistrement @@ -11628,17 +11635,17 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le reponses:: images par pages : Résultats par page - web/prod/index.html.twig + web/prod/index.html.twig reponses:: mode liste Liste - web/prod/index.html.twig + web/prod/index.html.twig reponses:: mode vignettes Vignettes - web/prod/index.html.twig + web/prod/index.html.twig reponses:: partager @@ -11660,14 +11667,14 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le reponses:: taille des images : Taille des vignettes - web/prod/index.html.twig + web/prod/index.html.twig reponses::document sans titre Sans titre classes/record/adapter.php - + report:: 1 - Periode Période web/report/form_date_and_base.html.twig @@ -12255,7 +12262,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le setup::custom-link:title-custom-link web/admin/setup.html.twig - + share::share-record: advance Réglage avancé prod/Share/record.html.twig @@ -12569,13 +12576,13 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le thesaurus:: Nouveau synonyme Nouveau synonyme - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig web/thesaurus/new-term.html.twig thesaurus:: Nouveau terme Nouveau terme - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig thesaurus:: Nouveau terme specifique @@ -12590,7 +12597,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig thesaurus:: Vous n'avez acces a aucune base @@ -12646,14 +12653,14 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le thesaurus:: corbeille Stock - Controller/Thesaurus/ThesaurusController.php - Controller/Thesaurus/ThesaurusController.php - Controller/Thesaurus/ThesaurusController.php + Controller/Thesaurus/ThesaurusController.php + Controller/Thesaurus/ThesaurusController.php + Controller/Thesaurus/ThesaurusController.php thesaurus:: deplacer le terme dans la corbeille ? Déplacer le terme dans le stock ? - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig thesaurus:: enregistrement de la liste modifiee des mots candidats. @@ -12918,7 +12925,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le thesaurus:: synonyme Synonyme - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig thesaurus:: synonymes @@ -12928,7 +12935,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le thesaurus:: terme Terme - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig thesaurus:: tout deployer - refermable @@ -13041,6 +13048,11 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le Votre version est à jour : web/admin/databases.html.twig + + updated_on + updated_on + web/prod/index.html.twig + upload:: Destination (collection) : Destination diff --git a/resources/locales/messages.nl.xlf b/resources/locales/messages.nl.xlf index be73e4a7c2..e07bd7a9f0 100644 --- a/resources/locales/messages.nl.xlf +++ b/resources/locales/messages.nl.xlf @@ -1,6 +1,6 @@ - +
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message. @@ -210,7 +210,7 @@ selectionnes]]> selectionnes]]> - Controller/Prod/QueryController.php + Controller/Prod/QueryController.php %quantity% Stories attached to the WorkZone @@ -291,7 +291,7 @@ %total% reponses %total% reponses - Controller/Prod/QueryController.php + Controller/Prod/QueryController.php %user% a envoye son rapport de validation de %title% @@ -760,7 +760,7 @@ Advanced Search Geavanceerd zoeken - web/prod/index.html.twig + web/prod/index.html.twig Advanced mode @@ -775,37 +775,37 @@ Affichage Tonen - web/prod/index.html.twig + web/prod/index.html.twig Affichage au demarrage Tonen bij opstart - web/prod/index.html.twig + web/prod/index.html.twig Afficher la fiche descriptive De beschrijvingsfiche tonen - web/prod/index.html.twig + web/prod/index.html.twig Afficher le titre De titel tonen - web/prod/index.html.twig + web/prod/index.html.twig Afficher les status De statussen tonen - web/prod/index.html.twig + web/prod/index.html.twig Afficher une icone Pictogram tonen - web/prod/index.html.twig + web/prod/index.html.twig After metadata After metadata - web/prod/index.html.twig + web/prod/index.html.twig Aggregation @@ -815,7 +815,7 @@ Aide Help - web/prod/index.html.twig + web/prod/index.html.twig Aide sur les expressions regulieres @@ -866,7 +866,7 @@ All these conditions All these conditions - web/prod/index.html.twig + web/prod/index.html.twig All values @@ -936,14 +936,14 @@ Alphabetic asc Alphabetic asc - web/prod/index.html.twig - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Alphabetic desc Alphabetic desc - web/prod/index.html.twig + web/prod/index.html.twig Also delete records that rely on groupings. @@ -1257,7 +1257,7 @@ Audio Audio - web/prod/index.html.twig + web/prod/index.html.twig Audio Birate @@ -1541,7 +1541,7 @@ By field By field - web/prod/index.html.twig + web/prod/index.html.twig CHAMPS @@ -1832,7 +1832,7 @@ Collection order Collection order - web/prod/index.html.twig + web/prod/index.html.twig Color Depth @@ -1903,7 +1903,7 @@ Configuration Configuratie - web/prod/index.html.twig + web/prod/index.html.twig Confirm new email address @@ -1959,7 +1959,7 @@ Contains Contains - web/prod/index.html.twig + web/prod/index.html.twig Continuer ? @@ -2014,7 +2014,7 @@ Couleur de selection Kleur van de selectie - web/prod/index.html.twig + web/prod/index.html.twig Country @@ -2228,7 +2228,7 @@ Date Added Date Added - web/prod/index.html.twig + web/prod/index.html.twig Date Creation @@ -2238,7 +2238,7 @@ Date Updated Date Updated - web/prod/index.html.twig + web/prod/index.html.twig Date de connexion @@ -2267,7 +2267,7 @@ Date(s) from field(s) Date(s) from field(s) - web/prod/index.html.twig + web/prod/index.html.twig De @@ -2345,7 +2345,7 @@ Defined by admin Defined by admin - web/prod/index.html.twig + web/prod/index.html.twig Defined in Apache configuration @@ -2475,7 +2475,7 @@ Detailed view URL Gedetailleerde weergave URL - prod/Share/record.html.twig + prod/Share/record.html.twig Details @@ -2523,7 +2523,7 @@ Display technical data Display technical data - web/prod/index.html.twig + web/prod/index.html.twig Display thumbnails @@ -2533,7 +2533,7 @@ Do not display Do not display - web/prod/index.html.twig + web/prod/index.html.twig Do not forget to restart the tasks scheduler @@ -2565,7 +2565,7 @@ Document Document - web/prod/index.html.twig + web/prod/index.html.twig Document Type Sharing @@ -2827,7 +2827,7 @@ Embed code Sluit de code in - prod/Share/record.html.twig + prod/Share/record.html.twig Empty a collection @@ -3007,7 +3007,7 @@ Equals Equals - web/prod/index.html.twig + web/prod/index.html.twig Erreur @@ -3150,7 +3150,7 @@ Ex : Paris, bleu, montagne Ex : Paris, bleu, montagne - web/prod/index.html.twig + web/prod/index.html.twig Executables externes @@ -3333,7 +3333,7 @@ Flash Flash - web/prod/index.html.twig + web/prod/index.html.twig web/common/technical_datas.html.twig @@ -3464,7 +3464,7 @@ Geo Search Geo Search - web/prod/index.html.twig + web/prod/index.html.twig Geonames server address @@ -3539,7 +3539,7 @@ Graphiste (preview au rollover) Graficus (preview au rollover) - web/prod/index.html.twig + web/prod/index.html.twig Great @@ -3637,7 +3637,7 @@ Iconographe (description au rollover) Iconographe (beschrijving bij de rollover) - web/prod/index.html.twig + web/prod/index.html.twig Id @@ -3682,7 +3682,7 @@ Image Beeld - web/prod/index.html.twig + web/prod/index.html.twig ImageMagick @@ -3708,7 +3708,7 @@ In the answer grid In the answer grid - web/prod/index.html.twig + web/prod/index.html.twig Include Business-fields in caption @@ -3932,7 +3932,7 @@ Language Language - web/prod/index.html.twig + web/prod/index.html.twig Last Name @@ -4069,7 +4069,7 @@ Les termes apparaissent dans le(s) champs De termen verschijnen in de veld(en) - web/prod/index.html.twig + web/prod/index.html.twig Light Value @@ -4199,7 +4199,7 @@ Ma derniere question Mijn laatste vraag - web/prod/index.html.twig + web/prod/index.html.twig Mail line %line% is empty @@ -4356,7 +4356,7 @@ Mode de presentation Presentatie mode - web/prod/index.html.twig + web/prod/index.html.twig Modele de donnees @@ -4510,7 +4510,7 @@ No URL available Geen URL beschikbaar - prod/Share/record.html.twig + prod/Share/record.html.twig No account yet? @@ -4780,7 +4780,7 @@ One of these conditions One of these conditions - web/prod/index.html.twig + web/prod/index.html.twig Only %nbEditableDocuments% records can be modified. @@ -5130,8 +5130,8 @@ Voorkeuren web/prod/index.html.twig web/prod/index.html.twig - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Prefix for notification emails @@ -5146,12 +5146,12 @@ Presentation de vignettes Presentatie van de thumbnails - web/prod/index.html.twig + web/prod/index.html.twig Presentation de vignettes de panier Presentatie van de thumbnails in het mandje - web/prod/index.html.twig + web/prod/index.html.twig Presets @@ -5204,7 +5204,7 @@ Publications Publicaties - web/prod/index.html.twig + web/prod/index.html.twig web/admin/tree.html.twig admin/publications/wrapper.html.twig web/common/menubar.html.twig @@ -5316,80 +5316,80 @@ Raccourcis claviers de la zone des paniers : Sneltoetsen in de mandjes zone : - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de editing : Sneltoetsen tijdens het bewerken : - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de preview : Sneltoetsen tijdens de voorvertoning : - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis claviers en cours de recherche : Sneltoetsen tijdens het zoeken : - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-a : tout selectionner ctrl-a : alles selecteren - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-e : editer la selection ctrl-e : bewerk de selectie - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis:: ctrl-p : imprimer la selection ctrl-p : print de selectie - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::espace : arreter/demarrer le diaporama espace : start/stop de slideshow - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche bas : scroll vertical pijl onder : verticale scroll - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche droite : page suivante pijl rechts : volgende pagina - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : en arriere pijl links : achterwaarts - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : en avant pijl rechts : voorwaarts - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche gauche : page precedente pijl links : vorige pagina - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::fleche haut : scroll vertical pijl boven : verticale scroll - web/prod/index.html.twig + web/prod/index.html.twig Raccourcis::tab/shift-tab se ballade dans les champs tab/shift-tab verspringt tussen de velden - web/prod/index.html.twig + web/prod/index.html.twig Rappel : Il vous reste %number% jours pour valider %title% de %user% @@ -5411,7 +5411,7 @@ Herinitialiseren prod/Baskets/Reorder.html.twig prod/Story/Reorder.html.twig - web/prod/index.html.twig + web/prod/index.html.twig Re-ordonner @@ -5514,7 +5514,7 @@ Rechercher dans un champ date Zoeken in een datum veld - web/prod/index.html.twig + web/prod/index.html.twig Recommendations @@ -5605,7 +5605,7 @@ Relevance Relevance - web/prod/index.html.twig + web/prod/index.html.twig Remember me @@ -5741,7 +5741,7 @@ Resource URL Bron URL - prod/Share/record.html.twig + prod/Share/record.html.twig Resquest access @@ -5977,7 +5977,7 @@ Select a field Select a field - web/prod/index.html.twig + web/prod/index.html.twig Select a list on the left and edit it ! @@ -6012,7 +6012,7 @@ Selected base(s) Selected base(s) - web/prod/index.html.twig + web/prod/index.html.twig Selected files @@ -6042,6 +6042,13 @@ Verstuur naar Facebook prod/Share/record.html.twig + + Send to Linkedin + Send to Linkedin + prod/Share/record.html.twig + prod/Share/record.html.twig + prod/Share/record.html.twig + Send to Twitter Verstuur naar Twitter @@ -6282,7 +6289,7 @@ Status des documents a rechercher Status van de te zoeken documenten - web/prod/index.html.twig + web/prod/index.html.twig Status edition @@ -6700,7 +6707,7 @@ Theme Thema - web/prod/index.html.twig + web/prod/index.html.twig There is no one to validate orders, please contact an administrator @@ -6877,7 +6884,7 @@ Tout type Alle type - web/prod/index.html.twig + web/prod/index.html.twig Toutes les publications @@ -6903,7 +6910,7 @@ Trier par Sorteren op - web/prod/index.html.twig + web/prod/index.html.twig Try to extract embedded thumbnails @@ -6928,7 +6935,7 @@ Type de documents Type van de documenten - web/prod/index.html.twig + web/prod/index.html.twig Type nombre @@ -7051,7 +7058,7 @@ Une question personnelle Een persoonlijke vraag - web/prod/index.html.twig + web/prod/index.html.twig Une selection @@ -7163,7 +7170,7 @@ Use latest search settings on Production loading Use latest search settings on Production loading - web/prod/index.html.twig + web/prod/index.html.twig Use my Phraseanet account @@ -7341,7 +7348,7 @@ Video Video - web/prod/index.html.twig + web/prod/index.html.twig Video Codec @@ -7543,7 +7550,7 @@ Vous pouvez quitter la plupart des fenetres survolantes via la touche echap U kunt het grootste deel van de bovenliggende vensters sluiten met de escape toets - web/prod/index.html.twig + web/prod/index.html.twig Warning ! @@ -7644,8 +7651,8 @@ YYYY/MM/DD YYYY/MM/DD - web/prod/index.html.twig - web/prod/index.html.twig + web/prod/index.html.twig + web/prod/index.html.twig Yes @@ -7966,7 +7973,7 @@ action : bridge Bridge - web/prod/index.html.twig + web/prod/index.html.twig action : collection @@ -7993,7 +8000,7 @@ prod/preview/tools.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig - web/prod/index.html.twig + web/prod/index.html.twig web/lightbox/validate.html.twig web/lightbox/feed.html.twig lightbox/IE6/validate.html.twig @@ -8024,7 +8031,7 @@ web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig - web/prod/index.html.twig + web/prod/index.html.twig action : push @@ -9105,12 +9112,12 @@ boutton:: selectionner aucune base Selecteer geen enkele database - web/prod/index.html.twig + web/prod/index.html.twig boutton:: selectionner toutes les bases Selecteer alle databases - web/prod/index.html.twig + web/prod/index.html.twig boutton::ajouter @@ -9139,9 +9146,9 @@ web/thesaurus/export-text-dialog.html.twig web/thesaurus/export-topics-dialog.html.twig web/thesaurus/link-field-step1.html.twig - web/thesaurus/thesaurus.html.twig - web/thesaurus/thesaurus.html.twig - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig web/thesaurus/new-term.html.twig web/thesaurus/new-term.html.twig web/account/reset-email.html.twig @@ -9163,8 +9170,8 @@ boutton::chercher zoeken web/prod/index.html.twig - web/thesaurus/thesaurus.html.twig - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig web/admin/users.html.twig @@ -9280,7 +9287,7 @@ boutton::rechercher zoeken Controller/Prod/LanguageController.php - web/prod/index.html.twig + web/prod/index.html.twig boutton::refresh @@ -9414,14 +9421,14 @@ Bridge/Youtube/video_moveinto_playlist.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Youtube/playlist_createcontainer.html.twig - web/prod/index.html.twig + web/prod/index.html.twig web/thesaurus/link-field-step2.html.twig web/thesaurus/accept.html.twig web/thesaurus/import-dialog.html.twig web/thesaurus/export-text-dialog.html.twig web/thesaurus/export-topics-dialog.html.twig web/thesaurus/link-field-step1.html.twig - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig web/thesaurus/new-term.html.twig web/thesaurus/new-term.html.twig web/thesaurus/index.html.twig @@ -9541,7 +9548,7 @@ choisir kiezen - web/prod/index.html.twig + web/prod/index.html.twig admin/collection/create.html.twig admin/databox/databox.html.twig @@ -9571,9 +9578,9 @@ copyClipboardLabel copyClipboardLabel prod/results/infos.html.twig - prod/Share/record.html.twig - prod/Share/record.html.twig - prod/Share/record.html.twig + prod/Share/record.html.twig + prod/Share/record.html.twig + prod/Share/record.html.twig create_subdef_button_label @@ -9620,6 +9627,11 @@ create_subdef_modal_subdefinition_name web/admin/subdefs.html.twig + + created_on + created_on + web/prod/index.html.twig + dans %category% in %category% @@ -9964,42 +9976,42 @@ index::advance_search: disable-facet index::advance_search: disable-facet - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet index::advance_search: facet - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet-order index::advance_search: facet-order - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet-tech-order index::advance_search: facet-tech-order - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: facet-values-order index::advance_search: facet-values-order - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: hidden-facet-values-order index::advance_search: hidden-facet-values-order - web/prod/index.html.twig + web/prod/index.html.twig index::advance_search: order-by-hits index::advance_search: order-by-hits - web/prod/index.html.twig + web/prod/index.html.twig index:advanced-preferences:: use truncation index:advanced-preferences:: use truncation - web/prod/index.html.twig + web/prod/index.html.twig invite:: Redirection vers la zone d'authentification, cliquez sur OK pour continuer ou annulez @@ -10934,12 +10946,12 @@ phraseanet::time:: a a - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::time:: de de - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::type:: audios @@ -10950,7 +10962,7 @@ phraseanet::type:: documents Documenten web/prod/toolbar.html.twig - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::type:: images @@ -10960,7 +10972,7 @@ phraseanet::type:: reportages Reportages - web/prod/index.html.twig + web/prod/index.html.twig phraseanet::type:: videos @@ -10985,17 +10997,17 @@ preview:: Description Beschrijving - web/prod/index.html.twig + web/prod/index.html.twig preview:: Historique Historie - web/prod/index.html.twig + web/prod/index.html.twig preview:: Popularite Populariteit - web/prod/index.html.twig + web/prod/index.html.twig preview:: arreter le diaporama @@ -11048,9 +11060,9 @@ previewLinkLabel previewLinkLabel - prod/Share/record.html.twig - prod/Share/record.html.twig - prod/Share/record.html.twig + prod/Share/record.html.twig + prod/Share/record.html.twig + prod/Share/record.html.twig print:: description @@ -11119,12 +11131,12 @@ prod::advancesearch:tooltips:datefield_restriction_explanation prod::advancesearch:tooltips:datefield_restriction_explanation - web/prod/index.html.twig + web/prod/index.html.twig prod::advancesearch:tooltips:field_restriction_explanation prod::advancesearch:tooltips:field_restriction_explanation - web/prod/index.html.twig + web/prod/index.html.twig prod::collection deplacer egalement les documents rattaches a ce(s) regroupement(s) @@ -11556,12 +11568,12 @@ raccourci :: a propos des raccourcis claviers Over toetsenbord sneltoetsen - web/prod/index.html.twig + web/prod/index.html.twig raccourcis :: ne plus montrer cette aide Deze help niet meer tonen - web/prod/index.html.twig + web/prod/index.html.twig rafraichir @@ -11572,11 +11584,6 @@ prod/WorkZone/Basket.html.twig prod/WorkZone/Macros.html.twig - - rechercher dans tous les champs - in alle velden zoeken - web/prod/index.html.twig - recordtype recordtype @@ -11635,17 +11642,17 @@ reponses:: images par pages : Beelden per pagina : - web/prod/index.html.twig + web/prod/index.html.twig reponses:: mode liste Lijst mode - web/prod/index.html.twig + web/prod/index.html.twig reponses:: mode vignettes Thumbnail mode - web/prod/index.html.twig + web/prod/index.html.twig reponses:: partager @@ -11667,7 +11674,7 @@ reponses:: taille des images : Grootte van de beelden : - web/prod/index.html.twig + web/prod/index.html.twig reponses::document sans titre @@ -12576,13 +12583,13 @@ thesaurus:: Nouveau synonyme Nieuw synoniem - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig web/thesaurus/new-term.html.twig thesaurus:: Nouveau terme Nieuwe term - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig thesaurus:: Nouveau terme specifique @@ -12597,7 +12604,7 @@ - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig thesaurus:: Vous n'avez acces a aucune base @@ -12653,14 +12660,14 @@ thesaurus:: corbeille Prullemand - Controller/Thesaurus/ThesaurusController.php - Controller/Thesaurus/ThesaurusController.php - Controller/Thesaurus/ThesaurusController.php + Controller/Thesaurus/ThesaurusController.php + Controller/Thesaurus/ThesaurusController.php + Controller/Thesaurus/ThesaurusController.php thesaurus:: deplacer le terme dans la corbeille ? De term in de prullemand plaatsen ? - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig thesaurus:: enregistrement de la liste modifiee des mots candidats. @@ -12925,7 +12932,7 @@ thesaurus:: synonyme Synoniem - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig thesaurus:: synonymes @@ -12935,7 +12942,7 @@ thesaurus:: terme Term - web/thesaurus/thesaurus.html.twig + web/thesaurus/thesaurus.html.twig thesaurus:: tout deployer - refermable @@ -13048,6 +13055,11 @@ Uw versie is up to date : web/admin/databases.html.twig + + updated_on + updated_on + web/prod/index.html.twig + upload:: Destination (collection) : Bestemming diff --git a/resources/locales/validators.de.xlf b/resources/locales/validators.de.xlf index 8907e430b3..1196a8e865 100644 --- a/resources/locales/validators.de.xlf +++ b/resources/locales/validators.de.xlf @@ -1,6 +1,6 @@ - +
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message. diff --git a/resources/locales/validators.en.xlf b/resources/locales/validators.en.xlf index f6f34ba4d5..9ff15ac3d6 100644 --- a/resources/locales/validators.en.xlf +++ b/resources/locales/validators.en.xlf @@ -1,6 +1,6 @@ - +
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message. diff --git a/resources/locales/validators.fr.xlf b/resources/locales/validators.fr.xlf index 460adfcbf9..8b4ac5bf6e 100644 --- a/resources/locales/validators.fr.xlf +++ b/resources/locales/validators.fr.xlf @@ -1,6 +1,6 @@ - +
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message. diff --git a/resources/locales/validators.nl.xlf b/resources/locales/validators.nl.xlf index e51d1a1f57..c7a3d2d4fd 100644 --- a/resources/locales/validators.nl.xlf +++ b/resources/locales/validators.nl.xlf @@ -1,6 +1,6 @@ - +
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message. diff --git a/resources/www/common/images/icons/linkedin.png b/resources/www/common/images/icons/linkedin.png new file mode 100644 index 0000000000000000000000000000000000000000..cdf4f9ddff434ca2209bb4a54e76ebe4533a8877 GIT binary patch literal 621 zcmV-z0+RiSP)E{4i*o4DO?Aef92Uzp4G6ZRgz_q{m@{>>&#&kfhsU$-|m@$eQc3pVF;JNey zSZsT=0fU=?42nE+=@y1%?n(@PHmdOK3sdm?&1Z(}xu+O5zWI*LU(|8Hp^J|h?DS=E z2Hf`_zZs(X4`542)N#PS|Nj}77#Z=#9FCks9S6W{zW3}s*dYp%0vL{Y`TiS&6lPgM z9S4AdxOLfSc!C3E<5YhG2J|oq>fDQ-7O3NZReP>8MDDzc;_F*^Rt(CrsI~lrRc9HB zPd`UiM;!-XF___Mjs=5;JR(biY^AFMcElJkxay;3SGqa?TX`|+fYA^b4FRG;0MshB zS4J(tZoc`(FzY_3`@q1ErpV8rF2aRU>K(lM4x^?cQXO?0BxE#Xzz%rBz`!6(hGuGL zdCSODy!iqHBZEFQOe4dL3yje2c^w18e`z{*&z~^

+

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

+
From cf542587a068a3e01c79c6b8145b820020f016a9 Mon Sep 17 00:00:00 2001 From: Jean-Yves Gaulier Date: Tue, 14 May 2019 16:17:00 +0200 Subject: [PATCH 07/18] PHRAS-2563_subdef-task-alldb_4.1 subdef task : if the "all" databox is checked, the task runs on every dbox (even the new ones) also : changed the task-manager notification timeout to 1s to be more responsive. --- .../TaskManager/Editor/SubdefsEditor.php | 2 +- .../Phrasea/TaskManager/Job/SubdefsJob.php | 3 ++- lib/Alchemy/Phrasea/TaskManager/Notifier.php | 2 +- .../task-editor/subdefs.html.twig | 21 ++++++++++++++++++- 4 files changed, 24 insertions(+), 4 deletions(-) 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/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/Notifier.php b/lib/Alchemy/Phrasea/TaskManager/Notifier.php index 101fb79753..d85b9f5f59 100644 --- a/lib/Alchemy/Phrasea/TaskManager/Notifier.php +++ b/lib/Alchemy/Phrasea/TaskManager/Notifier.php @@ -25,7 +25,7 @@ class Notifier implements NotifierInterface private $logger; /** @var integer */ - private $timeout = 10; + private $timeout = 1; public function __construct(\ZMQSocket $socket, LoggerInterface $logger) { diff --git a/templates/web/admin/task-manager/task-editor/subdefs.html.twig b/templates/web/admin/task-manager/task-editor/subdefs.html.twig index b32fe6ba94..d72456bf7e 100644 --- a/templates/web/admin/task-manager/task-editor/subdefs.html.twig +++ b/templates/web/admin/task-manager/task-editor/subdefs.html.twig @@ -4,9 +4,12 @@
+ {% for databox in app.getApplicationBox().get_databoxes() %} {% endfor %} @@ -68,6 +71,10 @@ {% block javascript %} From c0fb681400c5a61d538f6af93504e0a3ccb76e14 Mon Sep 17 00:00:00 2001 From: Jean-Yves Gaulier Date: Tue, 14 May 2019 16:49:57 +0200 Subject: [PATCH 08/18] PHRAS-2563_subdef-task-alldb_4.1 fake change to run tests --- lib/Alchemy/Phrasea/TaskManager/Job/ArchiveJob.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Alchemy/Phrasea/TaskManager/Job/ArchiveJob.php b/lib/Alchemy/Phrasea/TaskManager/Job/ArchiveJob.php index de2026c517..deaeb96ecc 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; From 0d0e5e638863a18b8ba78222dbc77dd9a94ed9cc Mon Sep 17 00:00:00 2001 From: Jean-Yves Gaulier Date: Wed, 15 May 2019 11:50:27 +0200 Subject: [PATCH 09/18] PHRAS-2399_arch-task-cnx-timeout_4.1 add reconnect everywhere --- .../Phrasea/TaskManager/Job/ArchiveJob.php | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/lib/Alchemy/Phrasea/TaskManager/Job/ArchiveJob.php b/lib/Alchemy/Phrasea/TaskManager/Job/ArchiveJob.php index deaeb96ecc..532eb8bbb5 100644 --- a/lib/Alchemy/Phrasea/TaskManager/Job/ArchiveJob.php +++ b/lib/Alchemy/Phrasea/TaskManager/Job/ArchiveJob.php @@ -70,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()); @@ -83,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) { @@ -562,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; } @@ -820,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 @@ -984,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); @@ -1032,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); @@ -1097,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()) { @@ -1134,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 == '*') { @@ -1188,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; @@ -1361,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); From 4097e19abbf17b6e4fa82af9f8bb1b5d23c48208 Mon Sep 17 00:00:00 2001 From: aina-esokia Date: Wed, 15 May 2019 16:13:16 +0400 Subject: [PATCH 10/18] add a video start t parameter in permalink url #time 6h --- lib/Alchemy/Phrasea/Controller/PermalinkController.php | 5 +++-- templates/web/overview.html.twig | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) 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/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 %} }); From 02790561b6124d9704753249933a195de7b6a0b1 Mon Sep 17 00:00:00 2001 From: Xavier Rousset Date: Wed, 15 May 2019 17:22:11 +0200 Subject: [PATCH 11/18] Update playbook for phraseanet vagrant box workflow --- Vagrantfile | 5 +++++ resources/ansible/playbook.yml | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 1b1f577b3f..74f8710e8e 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -123,6 +123,11 @@ Vagrant.configure("2") do |config| config.vm.box = "alchemy/Phraseanet-vagrant-dev" #config.vm.box = "ubuntu/trusty64" + # In case, Phraseanet box, choose the php version + # For php 7.0 use box 0.0.1 + # For php 7.1 use box 0.0.2 + config.vm.box_version = "0.0.1" + config.ssh.forward_agent = true config_net(config) diff --git a/resources/ansible/playbook.yml b/resources/ansible/playbook.yml index 704c5b96ec..370b427481 100644 --- a/resources/ansible/playbook.yml +++ b/resources/ansible/playbook.yml @@ -7,12 +7,12 @@ # - server # - repositories # - vagrant_local -# - nginx + - nginx # - mariadb # - elasticsearch # - rabbitmq # - php -# - xdebug + - xdebug # - composer # - mailcatcher # - node From 27971580f1b332e0fcbcdb9ca5fa25517fc2521a Mon Sep 17 00:00:00 2001 From: Harrys Ravalomanana Date: Thu, 16 May 2019 10:11:11 +0400 Subject: [PATCH 12/18] PHRAS-2079_Admin_personnalisation_section --- resources/locales/messages.de.xlf | 739 +++++++++--------- resources/locales/messages.en.xlf | 739 +++++++++--------- resources/locales/messages.fr.xlf | 739 +++++++++--------- resources/locales/messages.nl.xlf | 739 +++++++++--------- resources/locales/validators.de.xlf | 4 +- resources/locales/validators.en.xlf | 4 +- resources/locales/validators.fr.xlf | 4 +- resources/locales/validators.nl.xlf | 4 +- .../web/admin/personalisation_logo.html.twig | 19 +- 9 files changed, 1499 insertions(+), 1492 deletions(-) diff --git a/resources/locales/messages.de.xlf b/resources/locales/messages.de.xlf index 6b5afb9918..00f9ca99c3 100644 --- a/resources/locales/messages.de.xlf +++ b/resources/locales/messages.de.xlf @@ -1,6 +1,6 @@ - +
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message. @@ -111,9 +111,9 @@ %basket_length% documents %basket_length% Dokument(e) + mobile/lightbox/validate.html.twig web/lightbox/index.html.twig web/lightbox/index.html.twig - mobile/lightbox/validate.html.twig %countable% documents can not be modified. @@ -192,16 +192,16 @@ %nb_view% vue %nb_view% Ansicht - Bridge/Flickr/element_informations.html.twig Bridge/Dailymotion/element_informations.html.twig Bridge/Youtube/element_informations.html.twig + Bridge/Flickr/element_informations.html.twig %nb_view% vues %nb_view% Ansichten - Bridge/Flickr/element_informations.html.twig Bridge/Dailymotion/element_informations.html.twig Bridge/Youtube/element_informations.html.twig + Bridge/Flickr/element_informations.html.twig selectionnes]]> @@ -246,8 +246,8 @@ %quantity% records added %quantity% Datensätze hinzugefügt - Controller/Prod/StoryController.php Controller/Prod/BasketController.php + Controller/Prod/StoryController.php %quantity% records moved @@ -627,12 +627,12 @@ Actions Handlungen - Bridge/Flickr/actionelements.html.twig - Bridge/Flickr/actioncontainers.html.twig Bridge/Dailymotion/actionelements.html.twig Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actionelements.html.twig Bridge/Youtube/actioncontainers.html.twig + Bridge/Flickr/actionelements.html.twig + Bridge/Flickr/actioncontainers.html.twig Activate highlight @@ -648,9 +648,9 @@ Activer aktivieren + admin/databox/databox.html.twig web/admin/editusers_timelimit.html.twig web/admin/editusers_timelimit_sbas.html.twig - admin/databox/databox.html.twig Activer le grant_type de type password pour votre application @@ -670,9 +670,9 @@ Add Hinzufügen + prod/actions/Push.html.twig prod/upload/lazaret.html.twig prod/upload/lazaret.html.twig - prod/actions/Push.html.twig prod/User/Add.html.twig @@ -821,9 +821,9 @@ Ajouter a Hinzufügen zu - Bridge/Flickr/actionelements.html.twig Bridge/Dailymotion/actionelements.html.twig Bridge/Youtube/actionelements.html.twig + Bridge/Flickr/actionelements.html.twig Ajouter ma selection courrante @@ -851,13 +851,14 @@ All Alle Form/Configuration/CustomLinkFormType.php + WorkZone/Browser/Browser.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig - WorkZone/Browser/Browser.html.twig + task-manager/task-editor/subdefs.html.twig All these conditions @@ -949,11 +950,19 @@ An error occured Ein Fehler ist aufgetreten - Controller/Prod/StoryController.php - Controller/Prod/MoveCollectionController.php - Controller/Prod/LazaretController.php - Controller/Prod/ToolsController.php - Controller/Prod/BasketController.php + Model/Manipulator/LazaretManipulator.php + Model/Manipulator/LazaretManipulator.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxesController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php @@ -965,25 +974,17 @@ Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php - Controller/Admin/DataboxesController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Model/Manipulator/LazaretManipulator.php - Model/Manipulator/LazaretManipulator.php - web/admin/databases.html.twig - admin/collection/suggested_value.html.twig - admin/collection/collection.html.twig - task-manager/task-editor/task.html.twig + Controller/Prod/BasketController.php + Controller/Prod/ToolsController.php + Controller/Prod/LazaretController.php + Controller/Prod/MoveCollectionController.php + Controller/Prod/StoryController.php web/admin/users.html.twig admin/databox/databox.html.twig + web/admin/databases.html.twig + admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig + task-manager/task-editor/task.html.twig An error occured while denying, please retry or contact an admin if problem persists @@ -1020,12 +1021,12 @@ An error occurred Ein Fehler ist aufgetreten Order/Controller/ProdOrderController.php - Controller/Api/V1Controller.php - Controller/Api/V1Controller.php - Controller/Prod/BasketController.php + Controller/Admin/DataboxController.php Controller/Admin/SearchEngineController.php Controller/Admin/CollectionController.php - Controller/Admin/DataboxController.php + Controller/Prod/BasketController.php + Controller/Api/V1Controller.php + Controller/Api/V1Controller.php web/admin/statusbit.html.twig @@ -1263,8 +1264,8 @@ Audio Codec Audio Codec - Media/Subdef/Video.php Media/Subdef/Audio.php + Media/Subdef/Video.php Audio Samplerate @@ -1355,20 +1356,20 @@ Autorisation d'acces Zugriffsberechtigung - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Autoriser Berechtigen - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ? Ermächtigen Sie die Anwendung %application_name%, Ihren Inhalt auf %home_title% zuzugreifen? - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Available in multi-export tab @@ -1383,11 +1384,11 @@ Back Zurück - mobile/lightbox/validate.html.twig mobile/lightbox/basket_element.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig + mobile/lightbox/validate.html.twig Back to Feedback @@ -1408,9 +1409,9 @@ Bad request format, only JSON is allowed Bad Request Format, nur JSON wird erlaubt Controller/Root/AccountController.php + Controller/Admin/DataboxController.php Controller/Admin/RootController.php Controller/Admin/RootController.php - Controller/Admin/DataboxController.php Bad request, please contact an admin @@ -1559,8 +1560,8 @@ actions/Property/index.html.twig prod/User/Add.html.twig task-manager/task-editor/task.html.twig - admin/fields/templates.html.twig user/import/view.html.twig + admin/fields/templates.html.twig Cancel all @@ -1618,14 +1619,14 @@ Ce champ est obligatoire Dieses Feld ist ein Pflichtfeld - Bridge/Api/Dailymotion.php - Bridge/Api/Dailymotion.php + Bridge/Api/Flickr.php + Bridge/Api/Flickr.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php - Bridge/Api/Flickr.php - Bridge/Api/Flickr.php + Bridge/Api/Dailymotion.php + Bridge/Api/Dailymotion.php Ce champ est relie a une branche de thesaurus @@ -1646,12 +1647,12 @@ Ce champ est trop long %length% caracteres max Dieses Feld ist zu lang, maximal %length% Zeichen - Bridge/Api/Dailymotion.php - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php + Bridge/Api/Dailymotion.php Ce champ est utilise en titre a l'affichage @@ -1762,8 +1763,8 @@ Clear Klar - admin/task-manager/log_scheduler.html.twig admin/task-manager/log_task.html.twig + admin/task-manager/log_scheduler.html.twig Clear list @@ -1810,8 +1811,8 @@ Collection Kollektion - prod/upload/lazaret.html.twig prod/Story/Create.html.twig + prod/upload/lazaret.html.twig admin/databox/details.html.twig @@ -1848,8 +1849,8 @@ Commande Bestellung - eventsmanager/notify/orderdeliver.php eventsmanager/notify/ordernotdelivered.php + eventsmanager/notify/orderdeliver.php Commande du %date% @@ -1924,13 +1925,13 @@ Connection Verbindung - login/oauth/login.html.twig - login/providers/bind.html.twig - login/providers/bind.html.twig login/providers/mapping.html.twig login/providers/mapping.html.twig + login/providers/bind.html.twig + login/providers/bind.html.twig web/login/index.html.twig web/login/index.html.twig + login/oauth/login.html.twig Connection is OK but database does not exists or can not be accessed @@ -2051,9 +2052,9 @@ Creer erstellen - Bridge/Flickr/actioncontainers.html.twig Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actioncontainers.html.twig + Bridge/Flickr/actioncontainers.html.twig Creer la tache d'ecriture des metadonnees @@ -2416,9 +2417,9 @@ Deplacement %n_element% elements Bewegung von %n_element% Elemente - Bridge/Flickr/photo_moveinto_photoset.html.twig Bridge/Dailymotion/video_moveinto_playlist.html.twig Bridge/Youtube/video_moveinto_playlist.html.twig + Bridge/Flickr/photo_moveinto_photoset.html.twig Dernier access @@ -2428,8 +2429,8 @@ Derniere mise a jour le %updated_on% letztes Update am %updated_on% - prod/results/entry.html.twig prod/results/feeds_entry.html.twig + prod/results/entry.html.twig Derniers envois @@ -2444,15 +2445,15 @@ Description Beschreibung - prod/Tooltip/DCESFieldInfo.html.twig + Bridge/Dailymotion/upload.html.twig + Bridge/Dailymotion/video_modify.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/upload.html.twig + Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photoset_createcontainer.html.twig Bridge/Flickr/upload.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/upload.html.twig - Bridge/Dailymotion/video_modify.html.twig - Bridge/Youtube/upload.html.twig - Bridge/Youtube/video_modify.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig + prod/Tooltip/DCESFieldInfo.html.twig web/developers/application_form.html.twig @@ -2476,8 +2477,8 @@ Details Einzelheiten - admin/collection/details.html.twig admin/databox/details.html.twig + admin/collection/details.html.twig Developpeur @@ -2492,9 +2493,9 @@ Dimension Grösse + Media/Subdef/Image.php Media/Subdef/Unknown.php Media/Subdef/Video.php - Media/Subdef/Image.php Disable document type sharing @@ -2700,9 +2701,9 @@ Edition de 1 element Bearbeitung von 1 Element - Bridge/Flickr/photo_modify.html.twig Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/video_modify.html.twig + Bridge/Flickr/photo_modify.html.twig Edition des droits de %display_name% @@ -2755,8 +2756,8 @@ Email Email Adresse - admin/publications/fiche.html.twig web/admin/dashboard.html.twig + admin/publications/fiche.html.twig Email '%email%' for login '%login%' already exists in database @@ -2786,8 +2787,8 @@ Email successfully confirmed E-Mail erfolgreich bestätigt - Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Notification/Mail/MailSuccessEmailConfirmationRegistered.php + Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Email test result : %email_status% @@ -2862,8 +2863,8 @@ En cours d'encodage Kodierung läuft - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php actions/Bridge/records_list.html.twig @@ -3010,8 +3011,8 @@ Erreur ! Fehler ! - web/lightbox/error.html.twig mobile/lightbox/error.html.twig + web/lightbox/error.html.twig Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas @@ -3104,8 +3105,8 @@ Error while sending the file Fehler beim Datei Senden - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Error while uploading @@ -3115,8 +3116,8 @@ Etendue de la publication Erweiterung der Veröffentlichung - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Etes vous sur de supprimer %number% photos ? @@ -3201,10 +3202,10 @@ Feedback Feedback Controller/Prod/LanguageController.php - web/prod/toolbar.html.twig - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig + web/prod/toolbar.html.twig Feeds @@ -3259,11 +3260,11 @@ File is not present in quarantine anymore, please refresh Datei befindet sich nicht mehr in der Quarantäne, bitte aktualisieren - Controller/Prod/LazaretController.php - Controller/Prod/LazaretController.php Model/Manipulator/LazaretManipulator.php Model/Manipulator/LazaretManipulator.php Model/Manipulator/LazaretManipulator.php + Controller/Prod/LazaretController.php + Controller/Prod/LazaretController.php File is too big : 64k max @@ -3298,8 +3299,8 @@ Fils disponibles verfügbare Threads - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig Filter @@ -3337,8 +3338,8 @@ Flatten layers Flatten Layers - Media/Subdef/Unknown.php Media/Subdef/Image.php + Media/Subdef/Unknown.php Focal length @@ -3368,10 +3369,10 @@ Forgot password? Passwort vergessen ? - login/oauth/login.html.twig - login/providers/bind.html.twig login/providers/mapping.html.twig + login/providers/bind.html.twig web/login/index.html.twig + login/oauth/login.html.twig Forgot your password? @@ -3451,8 +3452,8 @@ Generates an image Erstellt ein Bild - Media/Subdef/Unknown.php Media/Subdef/Image.php + Media/Subdef/Unknown.php Geo Search @@ -3568,9 +3569,9 @@ Hello %username% Hallo %username% - api/auth/end_user_authorization.html.twig - api/auth/native_app_access_token.html.twig api/auth/end_user_authorization.html.twig + api/auth/native_app_access_token.html.twig + api/auth/end_user_authorization.html.twig Help @@ -3590,11 +3591,11 @@ Home Hautpseite - login/layout/base-layout.html.twig - login/include/language-block.html.twig - mobile/lightbox/validate.html.twig mobile/lightbox/basket_element.html.twig mobile/lightbox/feed.html.twig + mobile/lightbox/validate.html.twig + login/include/language-block.html.twig + login/layout/base-layout.html.twig Homepage slideshow @@ -3771,8 +3772,8 @@ Invalid file format Ungültiges Datei Format - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Invalid file type @@ -3783,9 +3784,9 @@ Invalid file type, only (%supported_file_types%) file formats are supported ungültiger Dateityp, nur (%supported_file_types%) Dateitypen werden unterstützt - admin/statusbit/edit.html.twig - user/import/file.html.twig admin/databox/databox.html.twig + user/import/file.html.twig + admin/statusbit/edit.html.twig Invalid file type, only (%supported_file_types%) file formats are supported' @@ -3795,8 +3796,8 @@ Invalid labels parameter ungültige Labels Parameter - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Invalid link. @@ -3858,8 +3859,8 @@ L'upload a echoue Upload ist fehlgeschlagen - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php L'upload concernant le record %title% sur le compte %bridge_name% a echoue pour les raisons suivantes : %reason% @@ -3896,20 +3897,20 @@ La taille maximale d'une video est de %duration% minutes. Maximale Dauer für eine Video ist %duration% Minuten. - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video a ete rejetee Das Video wurde abgelehnt - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video a ete supprimee Das Video wurde gelöscht - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video est restreinte @@ -4005,16 +4006,16 @@ Le poids maximum d'un fichier est de %size% Maximales Gewicht von Datei ist %size% - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Le record n'a pas de fichier physique Der Datensatz hat keine physikalische Datei - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Le token n'a pas encore ete genere @@ -4035,9 +4036,9 @@ Les elements ne peuvent etre uploades (problemes de type ou de droit) Die Elemente können nicht hochgeladen werden (Typ oder Rechte Problem). - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Youtube/upload.html.twig + Bridge/Flickr/upload.html.twig Les indications donnees ci dessous sont a titre informatif. @@ -4158,9 +4159,9 @@ Benutzername Form/Login/PhraseaAuthenticationForm.php actions/Feedback/ListsMacros.html.twig - login/oauth/login.html.twig - login/providers/bind.html.twig login/providers/mapping.html.twig + login/providers/bind.html.twig + login/oauth/login.html.twig Login %login% already exists in database @@ -4180,8 +4181,8 @@ Login to link your account Einloggen, um Ihr Konto zu verknüpfen - login/providers/bind.html.twig login/providers/mapping.html.twig + login/providers/bind.html.twig Logs @@ -4313,8 +4314,8 @@ Missing labels parameter Labels-Parameter fehlt - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Missing mandatory parameter %parameter% @@ -4433,9 +4434,9 @@ Name Name Controller/Prod/LanguageController.php - prod/templates/push.html.twig - actions/Download/prepare.html.twig Bridge/Dailymotion/playlist_createcontainer.html.twig + actions/Download/prepare.html.twig + prod/templates/push.html.twig admin/fields/templates.html.twig @@ -4456,8 +4457,8 @@ Ne pas autoriser Nicht berechtigen - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Ne pas creer de DataBox maintenant @@ -4473,14 +4474,14 @@ New password Neues Passwort - Form/Login/PhraseaRecoverPasswordForm.php Form/Login/PhraseaRenewPasswordForm.php + Form/Login/PhraseaRecoverPasswordForm.php New password (confirmation) Neues Passwort (Bestätigung) - Form/Login/PhraseaRecoverPasswordForm.php Form/Login/PhraseaRenewPasswordForm.php + Form/Login/PhraseaRecoverPasswordForm.php New task @@ -4625,8 +4626,8 @@ Non-Restreinte (publique) Nicht eingeschränkt (öffentlich) - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig None @@ -4724,7 +4725,7 @@ Number of records to process per batch Anzahl von Datensätzen per Stapel zu verarbeiten - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig Number of replicas @@ -4746,8 +4747,8 @@ OK OK - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Ok @@ -4799,8 +4800,8 @@ Or login with Oder Anmeldung mit web/login/register.html.twig - login/oauth/login.html.twig web/login/index.html.twig + login/oauth/login.html.twig api/auth/end_user_authorization.html.twig @@ -4861,9 +4862,9 @@ Page Seite + actions/Bridge/paginator.html.twig prod/upload/lazaret.html.twig prod/upload/lazaret.html.twig - actions/Bridge/paginator.html.twig Pages @@ -4873,25 +4874,25 @@ Paniers Sammelkörbe - web/account/account.html.twig - web/lightbox/validate.html.twig - lightbox/IE6/validate.html.twig - web/lightbox/index.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/account/account.html.twig + web/lightbox/index.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig Par %author% Von %author% - prod/results/entry.html.twig - prod/results/feeds_entry.html.twig mobile/lightbox/feed.html.twig + prod/results/feeds_entry.html.twig + prod/results/entry.html.twig Password Passwort - Form/Login/PhraseaRegisterForm.php Form/Login/PhraseaAuthenticationForm.php + Form/Login/PhraseaRegisterForm.php web/account/account.html.twig @@ -4999,8 +5000,8 @@ Playlists Playlisten - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Please accept the terms of use to register. @@ -5166,8 +5167,8 @@ Problemes de connexion ? Verbindungsprobleme ? - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Process the registration @@ -5198,8 +5199,8 @@ Publications Veröffentlichungen web/prod/index.html.twig - web/admin/tree.html.twig admin/publications/wrapper.html.twig + web/admin/tree.html.twig web/common/menubar.html.twig @@ -5210,8 +5211,8 @@ Publique öffentliche - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Publishers @@ -5221,8 +5222,8 @@ Push Push - Controller/Prod/LanguageController.php eventsmanager/notify/push.php + Controller/Prod/LanguageController.php Push configuration @@ -5287,8 +5288,8 @@ Quality Qualität - Media/Subdef/Unknown.php Media/Subdef/Image.php + Media/Subdef/Unknown.php Quarantine @@ -5410,13 +5411,13 @@ Re-ordonner wieder ordnen prod/Baskets/Reorder.html.twig - prod/Story/Reorder.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig + prod/Story/Reorder.html.twig Read-only @@ -5451,8 +5452,8 @@ Received from %user_name% Von %user_name% bekommen - WorkZone/Browser/Results.html.twig WorkZone/Browser/Basket.html.twig + WorkZone/Browser/Results.html.twig Reception d'un rapport de validation @@ -5570,8 +5571,8 @@ Registrieren web/login/register-classic.html.twig web/login/register.html.twig - login/include/register-link-block.html.twig web/login/register-provider.html.twig + login/include/register-link-block.html.twig Register approbation @@ -5613,8 +5614,8 @@ Remove ICC Profile Entfernt ICC-Profil - Media/Subdef/Unknown.php Media/Subdef/Image.php + Media/Subdef/Unknown.php Remove current Range @@ -5728,8 +5729,8 @@ Resolution Unterauflösung - Media/Subdef/Unknown.php Media/Subdef/Image.php + Media/Subdef/Unknown.php Resource URL @@ -5744,12 +5745,12 @@ Restart the task every X records Starten Sie die Aufgabe alle n Datensätze noch einmal - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig Restart the task if memory reaches Starten Sie die Aufgabe noch einmal, wenn der Speicher erreicht - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig Reste @@ -5759,8 +5760,8 @@ Restriction Einschränkung - web/admin/editusers_quotas.html.twig admin/publications/list.html.twig + web/admin/editusers_quotas.html.twig Restrictions de telechargement @@ -5877,12 +5878,12 @@ Speichern actions/Feedback/list.html.twig web/account/change-password.html.twig - task-manager/task-editor/task.html.twig - admin/search-engine/elastic-search.html.twig admin/search-engine/general-aggregation.html.twig - web/login/renew-password.html.twig + admin/search-engine/elastic-search.html.twig + task-manager/task-editor/task.html.twig web/developers/application.html.twig web/developers/application.html.twig + web/login/renew-password.html.twig Save all changes @@ -5943,14 +5944,14 @@ See documentation at %url% Lesen Sie die Dokumentation auf %url% - Form/Configuration/ExecutablesFormType.php Form/Configuration/WebservicesFormType.php + Form/Configuration/ExecutablesFormType.php See my order Meine Bestellung ansehen - Notification/Mail/MailInfoOrderDelivered.php Notification/Mail/MailInfoOrderCancelled.php + Notification/Mail/MailInfoOrderDelivered.php See others @@ -5998,9 +5999,9 @@ admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig + user/import/file.html.twig admin/statusbit/edit.html.twig admin/statusbit/edit.html.twig - user/import/file.html.twig Selected base(s) @@ -6016,10 +6017,10 @@ Send Senden Controller/Prod/LanguageController.php - prod/upload/upload.html.twig - prod/upload/upload-flash.html.twig prod/actions/Push.html.twig prod/actions/Push.html.twig + prod/upload/upload.html.twig + prod/upload/upload-flash.html.twig prod/orders/order_item.html.twig prod/orders/order_item.html.twig web/admin/dashboard.html.twig @@ -6055,8 +6056,8 @@ Sent for validation to %list_participants% Für die Bestätigung zu %list_participants% gesendet - WorkZone/Browser/Results.html.twig WorkZone/Browser/Basket.html.twig + WorkZone/Browser/Results.html.twig Separator @@ -6086,8 +6087,8 @@ Set labels Labels einstellen - admin/collection/collection.html.twig admin/databox/databox.html.twig + admin/collection/collection.html.twig Set statuses restrictions @@ -6102,8 +6103,8 @@ Setup Aufstellung - web/admin/tree.html.twig web/admin/setup.html.twig + web/admin/tree.html.twig Setup my password @@ -6133,8 +6134,8 @@ Short description Kurzbeschreibung - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Shutter speed @@ -6175,8 +6176,8 @@ Size Grösse - actions/Download/prepare.html.twig actions/Tools/videoEditor.html.twig + actions/Download/prepare.html.twig web/common/technical_datas.html.twig @@ -6239,8 +6240,8 @@ Sous-titre Untertitel - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Space bar @@ -6271,8 +6272,8 @@ Start validation Bestätigung starten - Notification/Mail/MailInfoValidationRequest.php Notification/Mail/MailInfoValidationReminder.php + Notification/Mail/MailInfoValidationRequest.php Started @@ -6386,8 +6387,8 @@ Success Erfolg - web/common/dialog_export.html.twig api/auth/native_app_access_token.html.twig + web/common/dialog_export.html.twig Successful install @@ -6397,22 +6398,16 @@ Successful removal erfolgreiches Löschen + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php Successful update Erfolgreiches Update - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php @@ -6420,10 +6415,16 @@ Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php actions/Tools/videoEditor.html.twig web/admin/databases.html.twig - admin/collection/suggested_value.html.twig admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig Successfull connection @@ -6496,11 +6497,11 @@ Tags Tags - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/upload.html.twig Bridge/Youtube/video_modify.html.twig + Bridge/Flickr/upload.html.twig Target Device @@ -6642,8 +6643,8 @@ The file is too big Datei ist zu gross - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php The file was moved to the quarantine @@ -6658,8 +6659,8 @@ The publication has been stopped Veröffentlichung wurde gestoppt - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php The record was successfully created @@ -6830,18 +6831,18 @@ Titre Titel prod/Baskets/Reorder.html.twig - prod/Story/Reorder.html.twig + Bridge/Dailymotion/upload.html.twig + Bridge/Dailymotion/video_modify.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/upload.html.twig + Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photoset_createcontainer.html.twig Bridge/Flickr/upload.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/upload.html.twig - Bridge/Dailymotion/video_modify.html.twig - Bridge/Youtube/upload.html.twig - Bridge/Youtube/video_modify.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig + prod/Story/Reorder.html.twig + admin/publications/fiche.html.twig admin/publications/list.html.twig admin/publications/list.html.twig - admin/publications/fiche.html.twig Toggle loop @@ -6866,8 +6867,8 @@ Total Gesamt - admin/collection/details.html.twig admin/databox/details.html.twig + admin/collection/details.html.twig Tous @@ -6908,7 +6909,7 @@ Try to extract embedded thumbnails Versuchen, eingebettete Miniaturansichten zu entnehmen - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig Type @@ -6959,8 +6960,8 @@ Unable to add file to Phraseanet Unmöglich, Datei zu Phraseanet hinzuzufügen - Controller/Prod/UploadController.php Controller/Admin/FeedController.php + Controller/Prod/UploadController.php Unable to add usr to list @@ -6970,8 +6971,8 @@ Unable to authenticate with %provider_name% Unmöglich, mit %provider_name% zu authentifizieren - Controller/Api/OAuth2Controller.php Controller/Root/LoginController.php + Controller/Api/OAuth2Controller.php Unable to connect to MySQL server @@ -7013,8 +7014,8 @@ Unable to retrieve provider identity unmöglich, Provider Identität abzurufen - Controller/Api/OAuth2Controller.php Controller/Root/LoginController.php + Controller/Api/OAuth2Controller.php Unable to send the documents @@ -7056,10 +7057,10 @@ Une selection eine Auswahl ohne Titel - eventsmanager/notify/validate.php - eventsmanager/notify/validate.php eventsmanager/notify/validationreminder.php eventsmanager/notify/validationreminder.php + eventsmanager/notify/validate.php + eventsmanager/notify/validate.php Unhandled Error @@ -7109,15 +7110,15 @@ Upload Upload - prod/upload/upload.html.twig - prod/upload/upload-flash.html.twig - Bridge/Flickr/upload.html.twig - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Youtube/upload.html.twig Bridge/Youtube/upload.html.twig actions/Bridge/index.html.twig + Bridge/Flickr/upload.html.twig + Bridge/Flickr/upload.html.twig + prod/upload/upload.html.twig + prod/upload/upload-flash.html.twig web/common/menubar.html.twig @@ -7271,8 +7272,8 @@ VALIDATION Bestätigung - web/lightbox/validate.html.twig web/lightbox/agreement_box.html.twig + web/lightbox/validate.html.twig Validate e-mail address @@ -7282,11 +7283,11 @@ Validation Bestätigung - eventsmanager/notify/validate.php - eventsmanager/notify/validate.php + eventsmanager/notify/validationdone.php eventsmanager/notify/validationreminder.php eventsmanager/notify/validationreminder.php - eventsmanager/notify/validationdone.php + eventsmanager/notify/validate.php + eventsmanager/notify/validate.php lightbox/IE6/validate.html.twig @@ -7302,11 +7303,11 @@ Validations Bestätigung - web/lightbox/validate.html.twig - lightbox/IE6/validate.html.twig - web/lightbox/index.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/lightbox/index.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig Validations received @@ -7356,8 +7357,8 @@ Videos Videos - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php View on %title% @@ -7377,14 +7378,14 @@ Voici vos paniers Ihre Sammelkörbe - web/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/lightbox/index.html.twig Voici vos validations en cours Hier sind Ihre aktuellen Bewertungen - web/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/lightbox/index.html.twig Votre adresse email @@ -7514,10 +7515,10 @@ Vous n'avez selectionne aucun element Sie haben kein Element ausgewählt. - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Youtube/upload.html.twig actions/Bridge/index.html.twig + Bridge/Flickr/upload.html.twig Vous ne pouvez pas editer plusieurs elements simultanement @@ -7563,8 +7564,8 @@ Watch my access requests status Meine Zugriffsanfrage Status anschauen - Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Notification/Mail/MailSuccessAccessRequest.php + Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Watermark @@ -7610,9 +7611,9 @@ Whoops, looks like something went wrong. Hoppla, etwas ist schiefgegangen. - Event/Subscriber/ApiOauth2ErrorsSubscriber.php Phrasea/Core/PhraseaExceptionHandler.php Phrasea/Core/PhraseaExceptionHandler.php + Event/Subscriber/ApiOauth2ErrorsSubscriber.php Would you like to continue ? @@ -7971,82 +7972,82 @@ action : collection Verschieben - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig action : editer Bearbeiten - web/prod/toolbar.html.twig - prod/preview/caption.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig + prod/preview/caption.html.twig action : exporter Exportieren + prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/preview/tools.html.twig - prod/WorkZone/Story.html.twig - prod/WorkZone/Basket.html.twig web/prod/index.html.twig - web/lightbox/validate.html.twig web/lightbox/feed.html.twig - lightbox/IE6/validate.html.twig lightbox/IE6/feed.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig action : outils Werkzeuge - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig action : print Drucken + prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/preview/tools.html.twig - prod/WorkZone/Story.html.twig - prod/WorkZone/Basket.html.twig action : publier Veröffentlichen - web/prod/toolbar.html.twig - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig + web/prod/toolbar.html.twig web/prod/index.html.twig action : push Push - web/prod/toolbar.html.twig - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig + web/prod/toolbar.html.twig action : status Eigenschaften - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig action : supprimer Löschen - web/prod/toolbar.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig + web/prod/toolbar.html.twig action:: nouveau panier @@ -8285,8 +8286,8 @@ admin::base:collection: Creer une collection eine Kollektion erstellen - admin/collection/create.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig admin::base:collection: Monter une collection @@ -8302,8 +8303,8 @@ admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces Benutzer und Rechte von der Kollektion anwenden : - admin/collection/create.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig admin::base:collection: activer la collection @@ -8314,10 +8315,10 @@ admin::base:collection: aucun fichier (minilogo, watermark ...) Keine Datei + admin/databox/databox.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig - admin/databox/databox.html.twig admin::base:collection: descativer la collection @@ -8446,8 +8447,8 @@ admin::compte-utilisateur activite Tätigkeit - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig admin/user/registrations.html.twig @@ -8455,8 +8456,8 @@ admin::compte-utilisateur adresse Adresse - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig admin/user/registrations.html.twig @@ -8470,8 +8471,8 @@ admin::compte-utilisateur code postal PLZ - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig web/common/dialog_export.html.twig @@ -8494,20 +8495,20 @@ admin::compte-utilisateur email E-Mail - Event/Subscriber/RegistrationSubscriber.php Controller/Admin/UserController.php + Event/Subscriber/RegistrationSubscriber.php web/account/account.html.twig web/admin/editusers.html.twig web/admin/users.html.twig - web/admin/connected-users.html.twig admin/user/registrations.html.twig + web/admin/connected-users.html.twig web/common/dialog_export.html.twig admin::compte-utilisateur fax Fax - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig web/common/dialog_export.html.twig @@ -8521,6 +8522,7 @@ admin::compte-utilisateur identifiant Benutzername Core/Provider/RegistrationServiceProvider.php + api/auth/end_user_authorization.html.twig web/account/reset-email.html.twig web/account/account.html.twig web/account/account.html.twig @@ -8528,27 +8530,26 @@ web/admin/users.html.twig admin/user/registrations.html.twig web/common/dialog_export.html.twig - api/auth/end_user_authorization.html.twig admin::compte-utilisateur mot de passe Passwort + api/auth/end_user_authorization.html.twig web/setup/step2.html.twig web/account/reset-email.html.twig web/account/account.html.twig web/common/dialog_export.html.twig - api/auth/end_user_authorization.html.twig admin::compte-utilisateur nom Name + Controller/Admin/UserController.php Core/Provider/RegistrationServiceProvider.php Event/Subscriber/RegistrationSubscriber.php - Controller/Admin/UserController.php web/account/account.html.twig web/admin/editusers.html.twig - web/admin/connected-users.html.twig admin/user/registrations.html.twig + web/admin/connected-users.html.twig web/common/dialog_export.html.twig @@ -8565,8 +8566,8 @@ admin::compte-utilisateur poste Beruf - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig admin/user/registrations.html.twig @@ -8575,9 +8576,9 @@ admin::compte-utilisateur prenom Vorname + Controller/Admin/UserController.php Core/Provider/RegistrationServiceProvider.php Event/Subscriber/RegistrationSubscriber.php - Controller/Admin/UserController.php web/account/account.html.twig web/admin/editusers.html.twig admin/user/registrations.html.twig @@ -8593,13 +8594,13 @@ admin::compte-utilisateur societe Firma - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig web/admin/users.html.twig - web/admin/connected-users.html.twig admin/user/registrations.html.twig + web/admin/connected-users.html.twig web/common/dialog_export.html.twig @@ -8613,8 +8614,8 @@ Controller/Admin/UserController.php web/account/account.html.twig web/admin/editusers.html.twig - web/admin/connected-users.html.twig admin/user/registrations.html.twig + web/admin/connected-users.html.twig web/common/dialog_export.html.twig @@ -8625,8 +8626,8 @@ admin::compte-utilisateur ville Ort - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig web/common/dialog_export.html.twig @@ -8761,26 +8762,26 @@ admin::monitor: module admin Admin - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig web/common/menubar.html.twig admin::monitor: module client Client - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php classes/record/preview.php classes/record/preview.php classes/record/preview.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig admin::monitor: module comparateur Lightbox - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig @@ -8791,44 +8792,44 @@ admin::monitor: module production Prod - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php classes/record/preview.php classes/record/preview.php classes/record/preview.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig admin::monitor: module report Report - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig web/common/menubar.html.twig admin::monitor: module thesaurus Thesaurus - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig web/common/menubar.html.twig admin::monitor: module upload Upload - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/common/menubar.html.twig admin::monitor: module validation Lightbox + lib/classes/phrasea.php Phrasea/Controller/LightboxController.php Phrasea/Controller/LightboxController.php Phrasea/Controller/LightboxController.php Controller/Admin/ConnectedUsersController.php - lib/classes/phrasea.php web/common/menubar.html.twig @@ -8864,8 +8865,8 @@ admin::plugins: plugins Plugins - web/admin/tree.html.twig admin/plugins/index.html.twig + web/admin/tree.html.twig admin::plugins: retrieveConfigurationError @@ -9062,8 +9063,8 @@ audio Audio Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig avril @@ -9124,35 +9125,35 @@ abbrechen Controller/Prod/LanguageController.php Controller/Prod/LanguageController.php - prod/actions/edit_default.html.twig - prod/actions/edit_default.html.twig - Bridge/Flickr/photo_modify.html.twig - Bridge/Flickr/photo_modify.html.twig Bridge/Dailymotion/video_modify.html.twig Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Youtube/video_modify.html.twig - web/thesaurus/link-field-step2.html.twig - web/thesaurus/accept.html.twig - web/thesaurus/accept.html.twig - web/thesaurus/import-dialog.html.twig + Bridge/Flickr/photo_modify.html.twig + Bridge/Flickr/photo_modify.html.twig + prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig web/thesaurus/export-text-dialog.html.twig - web/thesaurus/export-topics-dialog.html.twig - web/thesaurus/link-field-step1.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig + web/thesaurus/import-dialog.html.twig + web/thesaurus/link-field-step2.html.twig + web/thesaurus/accept.html.twig + web/thesaurus/accept.html.twig + web/thesaurus/export-topics-dialog.html.twig web/thesaurus/new-term.html.twig web/thesaurus/new-term.html.twig + web/thesaurus/link-field-step1.html.twig web/account/reset-email.html.twig admin/publications/fiche.html.twig admin/collection/create.html.twig web/admin/index.html.twig - web/report/all_content.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig + web/report/all_content.html.twig boutton::appliquer @@ -9193,8 +9194,8 @@ boutton::editer Bearbeiten - prod/results/entry.html.twig prod/results/feeds_entry.html.twig + prod/results/entry.html.twig boutton::enregistrer @@ -9221,17 +9222,17 @@ boutton::fermer schliessen Controller/Prod/LanguageController.php + prod/actions/Push.html.twig prod/actions/edit_default.html.twig prod/actions/edit_default.html.twig - prod/actions/Push.html.twig + web/thesaurus/properties.html.twig web/thesaurus/accept.html.twig web/thesaurus/accept.html.twig web/thesaurus/export-topics.html.twig web/thesaurus/link-field-step3.html.twig - web/thesaurus/properties.html.twig web/lightbox/sc_note.html.twig - web/report/all_content.html.twig web/common/dialog_export.html.twig + web/report/all_content.html.twig boutton::generer @@ -9246,9 +9247,9 @@ boutton::modifier ändern - Bridge/Flickr/actionelement.html.twig Bridge/Dailymotion/actionelement.html.twig Bridge/Youtube/actionelement.html.twig + Bridge/Flickr/actionelement.html.twig web/admin/users.html.twig @@ -9305,24 +9306,24 @@ boutton::retour Zurück + Bridge/Dailymotion/video_deleteelement.html.twig + Bridge/Dailymotion/playlist_createcontainer.html.twig + Bridge/Dailymotion/video_moveinto_playlist.html.twig + Bridge/Dailymotion/playlist_deleteelement.html.twig + Bridge/Youtube/video_deleteelement.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/video_moveinto_playlist.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig Bridge/Flickr/photo_deleteelement.html.twig + Bridge/Flickr/photoset_deleteelement.html.twig Bridge/Flickr/photo_moveinto_photoset.html.twig Bridge/Flickr/photoset_createcontainer.html.twig - Bridge/Flickr/photoset_deleteelement.html.twig - Bridge/Dailymotion/playlist_deleteelement.html.twig - Bridge/Dailymotion/video_deleteelement.html.twig - Bridge/Dailymotion/video_moveinto_playlist.html.twig - Bridge/Dailymotion/playlist_createcontainer.html.twig - Bridge/Youtube/playlist_deleteelement.html.twig - Bridge/Youtube/video_deleteelement.html.twig - Bridge/Youtube/video_moveinto_playlist.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig - admin/publications/fiche.html.twig web/admin/editusers.html.twig - admin/collection/details.html.twig - admin/statusbit/edit.html.twig - user/import/file.html.twig + admin/publications/fiche.html.twig admin/databox/details.html.twig + admin/collection/details.html.twig + user/import/file.html.twig + admin/statusbit/edit.html.twig web/developers/application_form.html.twig web/developers/application.html.twig @@ -9349,24 +9350,24 @@ boutton::supprimer Löschen Controller/Prod/LanguageController.php - prod/results/entry.html.twig - prod/results/feeds_entry.html.twig - Bridge/Flickr/actionelements.html.twig - Bridge/Flickr/actioncontainers.html.twig + actions/Bridge/disconnected.html.twig Bridge/Dailymotion/actionelements.html.twig Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actionelements.html.twig Bridge/Youtube/actioncontainers.html.twig - actions/Bridge/disconnected.html.twig + Bridge/Flickr/actionelements.html.twig + Bridge/Flickr/actioncontainers.html.twig + prod/results/feeds_entry.html.twig + prod/results/entry.html.twig web/prod/index.html.twig web/thesaurus/presets.html.twig - admin/publications/list.html.twig admin/publications/fiche.html.twig - admin/collection/suggested_value.html.twig + admin/publications/list.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig web/admin/subdefs.html.twig @@ -9379,10 +9380,10 @@ boutton::telecharger tous les documents Alle Dokumente herunterladen - web/lightbox/validate.html.twig web/lightbox/feed.html.twig - lightbox/IE6/validate.html.twig lightbox/IE6/feed.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig boutton::tester @@ -9394,57 +9395,57 @@ boutton::valider Bestätigen Controller/Prod/LanguageController.php - prod/Baskets/Reorder.html.twig + mobile/lightbox/note_form.html.twig prod/Baskets/Update.html.twig - prod/Story/Reorder.html.twig - prod/actions/edit_default.html.twig - prod/actions/edit_default.html.twig + prod/Baskets/Reorder.html.twig + Bridge/Dailymotion/video_deleteelement.html.twig + Bridge/Dailymotion/playlist_createcontainer.html.twig + Bridge/Dailymotion/video_moveinto_playlist.html.twig + Bridge/Dailymotion/video_modify.html.twig + Bridge/Dailymotion/playlist_deleteelement.html.twig + Bridge/Youtube/video_deleteelement.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/video_moveinto_playlist.html.twig + Bridge/Youtube/video_modify.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig Bridge/Flickr/photo_deleteelement.html.twig + Bridge/Flickr/photoset_deleteelement.html.twig Bridge/Flickr/photo_moveinto_photoset.html.twig Bridge/Flickr/photoset_createcontainer.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Flickr/photoset_deleteelement.html.twig - Bridge/Dailymotion/playlist_deleteelement.html.twig - Bridge/Dailymotion/video_deleteelement.html.twig - Bridge/Dailymotion/video_moveinto_playlist.html.twig - Bridge/Dailymotion/video_modify.html.twig - Bridge/Dailymotion/playlist_createcontainer.html.twig - Bridge/Youtube/playlist_deleteelement.html.twig - Bridge/Youtube/video_deleteelement.html.twig - Bridge/Youtube/video_moveinto_playlist.html.twig - Bridge/Youtube/video_modify.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig + prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig + prod/Story/Reorder.html.twig web/prod/index.html.twig + web/thesaurus/export-text-dialog.html.twig + web/thesaurus/thesaurus.html.twig + web/thesaurus/import-dialog.html.twig web/thesaurus/link-field-step2.html.twig web/thesaurus/accept.html.twig - web/thesaurus/import-dialog.html.twig - web/thesaurus/export-text-dialog.html.twig web/thesaurus/export-topics-dialog.html.twig - web/thesaurus/link-field-step1.html.twig - web/thesaurus/thesaurus.html.twig + web/thesaurus/index.html.twig web/thesaurus/new-term.html.twig web/thesaurus/new-term.html.twig - web/thesaurus/index.html.twig - web/account/reset-email.html.twig + web/thesaurus/link-field-step1.html.twig web/account/access.html.twig + web/account/reset-email.html.twig web/account/account.html.twig - admin/publications/list.html.twig - admin/publications/fiche.html.twig - web/admin/editusers.html.twig - admin/collection/reorder.html.twig - admin/collection/suggested_value.html.twig - admin/collection/create.html.twig - admin/collection/collection.html.twig - web/admin/setup.html.twig - admin/statusbit/edit.html.twig web/admin/dashboard.html.twig + web/admin/editusers.html.twig + admin/publications/fiche.html.twig + admin/publications/list.html.twig + web/admin/setup.html.twig + admin/collection/create.html.twig + admin/collection/reorder.html.twig + admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig + web/admin/subdefs.html.twig + web/admin/structure.html.twig user/import/view.html.twig admin/user/registrations.html.twig - web/admin/structure.html.twig - web/admin/subdefs.html.twig - web/report/all_content.html.twig + admin/statusbit/edit.html.twig web/developers/application_form.html.twig - mobile/lightbox/note_form.html.twig + web/report/all_content.html.twig boutton::vue graphique @@ -9542,8 +9543,8 @@ choisir wählen web/prod/index.html.twig - admin/collection/create.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig classe @@ -9633,8 +9634,8 @@ dans %feed_name% in %feed_name% - prod/results/entry.html.twig prod/results/feeds_entry.html.twig + prod/results/entry.html.twig date dajout @@ -9670,9 +9671,9 @@ document Dokument Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig document original @@ -9829,8 +9830,8 @@ flash Flash Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig for the following reasons : %reasons% @@ -9953,8 +9954,8 @@ image Bild Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig image rotation @@ -10039,8 +10040,8 @@ lightbox::recaptitulatif Übersicht - web/lightbox/validate.html.twig web/lightbox/agreement_box.html.twig + web/lightbox/validate.html.twig login:: Changer mon adresse email @@ -10077,8 +10078,8 @@ login::erreur: Erreur d'authentification Anmeldefehler - Controller/Api/OAuth2Controller.php Controller/Root/LoginController.php + Controller/Api/OAuth2Controller.php login::erreur: No available connection - Please contact sys-admin @@ -10098,8 +10099,8 @@ login::notification: Mise a jour du mot de passe avec succes erfolgreiche Passwort Aktualisierung - Controller/Root/AccountController.php Controller/Root/LoginController.php + Controller/Root/AccountController.php login::notification: demande de confirmation par mail envoyee @@ -10115,14 +10116,14 @@ login::register: merci d'avoir confirme votre adresse email Wir danken Ihnen für die Bestätigung Ihrer E-Mail Adresse - Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Notification/Mail/MailSuccessEmailConfirmationRegistered.php + Notification/Mail/MailSuccessEmailConfirmationUnregistered.php login::register: sujet email : confirmation de votre adresse email E-Mail Adressen Bestätigung - Notification/Mail/MailRequestEmailConfirmation.php Notification/Mail/MailRequestEmailUpdate.php + Notification/Mail/MailRequestEmailConfirmation.php login::register:email: Voici un compte rendu du traitement de vos demandes d'acces : @@ -10189,8 +10190,8 @@ no Nein web/account/sessions.html.twig - user/import/view.html.twig web/admin/subdefs.html.twig + user/import/view.html.twig web/common/technical_datas.html.twig @@ -10208,10 +10209,10 @@ notice Beschreibung - web/lightbox/validate.html.twig web/lightbox/feed.html.twig - lightbox/IE6/validate.html.twig lightbox/IE6/feed.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig nouveau @@ -10664,8 +10665,8 @@ phraseanet:: details Einzelheiten - admin/collection/collection.html.twig admin/databox/databox.html.twig + admin/collection/collection.html.twig phraseanet:: hostname @@ -10727,18 +10728,18 @@ phraseanet:: sous definition Unterauflösung - module/report/filter.php classes/module/report.php + module/report/filter.php phraseanet:: thesaurus Thesaurus prod/actions/edit_default.html.twig web/prod/tab_headers.html.twig - web/thesaurus/load-thesaurus.html.twig - web/thesaurus/load-thesaurus.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig + web/thesaurus/load-thesaurus.html.twig + web/thesaurus/load-thesaurus.html.twig web/thesaurus/index.html.twig @@ -11005,20 +11006,20 @@ preview:: arreter le diaporama stoppen - prod/preview/feed_train.html.twig prod/preview/basket_train.html.twig - prod/preview/reg_train.html.twig prod/preview/result_train.html.twig + prod/preview/reg_train.html.twig prod/preview/result_train_options.html.twig + prod/preview/feed_train.html.twig preview:: demarrer le diaporama Dia-Schau - prod/preview/feed_train.html.twig prod/preview/basket_train.html.twig - prod/preview/reg_train.html.twig prod/preview/result_train.html.twig + prod/preview/reg_train.html.twig prod/preview/result_train_options.html.twig + prod/preview/feed_train.html.twig preview::date @@ -11414,8 +11415,8 @@ prod::tools: document Dokument - Controller/Prod/ShareController.php Controller/Prod/ToolsController.php + Controller/Prod/ShareController.php prod:app trash: also-move-record @@ -11498,26 +11499,26 @@ publication : autheur Autor - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : email autheur Autor E-Mail - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : sous titre Untertitel - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : titre Titel - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications. @@ -11571,16 +11572,16 @@ rafraichir aktualisieren + prod/WorkZone/Story.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Basket.html.twig prod/results/feeds.html.twig prod/results/feeds.html.twig - prod/WorkZone/Story.html.twig - prod/WorkZone/Basket.html.twig - prod/WorkZone/Macros.html.twig recordtype Datensatz Typ - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig regeneration of sub-definitions @@ -11785,14 +11786,14 @@ report:: collections Kollektionen - module/report/filter.php classes/module/report.php + module/report/filter.php report:: commentaire Kommentar - module/report/filter.php classes/module/report.php + module/report/filter.php report:: copyright @@ -11802,9 +11803,9 @@ report:: date Datum - module/report/filter.php classes/module/report.php classes/module/report.php + module/report/filter.php report:: document ajoute @@ -11855,21 +11856,21 @@ report:: non-renseigne nicht ausgefüllt - module/report/edit.php - module/report/validate.php + module/report/add.php + module/report/question.php + module/report/download.php module/report/activity.php module/report/activity.php module/report/activity.php - module/report/download.php - module/report/push.php - module/report/nav.php - module/report/sent.php module/report/connexion.php module/report/connexion.php module/report/connexion.php + module/report/push.php + module/report/sent.php + module/report/validate.php + module/report/nav.php + module/report/edit.php module/report/filter.php - module/report/add.php - module/report/question.php report:: page d'accueil @@ -11901,9 +11902,9 @@ report:: question Anfrage - module/report/filter.php - module/report/question.php classes/module/report.php + module/report/question.php + module/report/filter.php report:: questions @@ -11923,8 +11924,8 @@ report:: record id record id - module/report/filter.php classes/module/report.php + module/report/filter.php report:: resolution @@ -12295,8 +12296,8 @@ status:: numero de bit Status Nummer - admin/statusbit/edit.html.twig web/admin/statusbit.html.twig + admin/statusbit/edit.html.twig status:: retrouver sous forme de filtre dans la recherche @@ -12336,12 +12337,12 @@ task::archive:Archivage Archivierung auf Kollektion - TaskManager/Job/ArchiveJob.php + TaskManager/Job/ArchiveJob.php task::archive:Archiving files found into a 'hotfolder' gefundenen Dateien nach einem Hotfolder archivieren - TaskManager/Job/ArchiveJob.php + TaskManager/Job/ArchiveJob.php task::archive:archivage sur base/collection/ @@ -12715,15 +12716,15 @@ thesaurus:: export au format texte Text - web/thesaurus/export-text.html.twig web/thesaurus/export-text-dialog.html.twig web/thesaurus/export-text-dialog.html.twig + web/thesaurus/export-text.html.twig thesaurus:: export en topics Themen - web/thesaurus/export-topics.html.twig web/thesaurus/export-topics-dialog.html.twig + web/thesaurus/export-topics.html.twig thesaurus:: exporter @@ -13031,7 +13032,7 @@ unknown unbekannt - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig untitled @@ -13082,14 +13083,14 @@ validation:: NON Nein - web/lightbox/agreement_box.html.twig mobile/lightbox/basket_element.html.twig + web/lightbox/agreement_box.html.twig validation:: OUI Ja - web/lightbox/agreement_box.html.twig mobile/lightbox/basket_element.html.twig + web/lightbox/agreement_box.html.twig validation:: editer ma note @@ -13109,10 +13110,10 @@ validation::envoyer mon rapport Meinen Bericht senden - web/lightbox/basket_options.html.twig - web/lightbox/basket_options.html.twig mobile/lightbox/validate.html.twig mobile/lightbox/validate.html.twig + web/lightbox/basket_options.html.twig + web/lightbox/basket_options.html.twig version @@ -13127,8 +13128,8 @@ video Video - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig video range extractor diff --git a/resources/locales/messages.en.xlf b/resources/locales/messages.en.xlf index 00e3f1cb1e..c0bfa8d4ca 100644 --- a/resources/locales/messages.en.xlf +++ b/resources/locales/messages.en.xlf @@ -1,6 +1,6 @@ - +
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message. @@ -111,9 +111,9 @@ %basket_length% documents %basket_length% document(s) + mobile/lightbox/validate.html.twig web/lightbox/index.html.twig web/lightbox/index.html.twig - mobile/lightbox/validate.html.twig %countable% documents can not be modified. @@ -192,16 +192,16 @@ %nb_view% vue %nb_view% view - Bridge/Flickr/element_informations.html.twig Bridge/Dailymotion/element_informations.html.twig Bridge/Youtube/element_informations.html.twig + Bridge/Flickr/element_informations.html.twig %nb_view% vues %nb_view% views - Bridge/Flickr/element_informations.html.twig Bridge/Dailymotion/element_informations.html.twig Bridge/Youtube/element_informations.html.twig + Bridge/Flickr/element_informations.html.twig selectionnes]]> @@ -246,8 +246,8 @@ %quantity% records added %quantity% records added - Controller/Prod/StoryController.php Controller/Prod/BasketController.php + Controller/Prod/StoryController.php %quantity% records moved @@ -627,12 +627,12 @@ Actions Actions - Bridge/Flickr/actionelements.html.twig - Bridge/Flickr/actioncontainers.html.twig Bridge/Dailymotion/actionelements.html.twig Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actionelements.html.twig Bridge/Youtube/actioncontainers.html.twig + Bridge/Flickr/actionelements.html.twig + Bridge/Flickr/actioncontainers.html.twig Activate highlight @@ -648,9 +648,9 @@ Activer Activate + admin/databox/databox.html.twig web/admin/editusers_timelimit.html.twig web/admin/editusers_timelimit_sbas.html.twig - admin/databox/databox.html.twig Activer le grant_type de type password pour votre application @@ -670,9 +670,9 @@ Add Add + prod/actions/Push.html.twig prod/upload/lazaret.html.twig prod/upload/lazaret.html.twig - prod/actions/Push.html.twig prod/User/Add.html.twig @@ -821,9 +821,9 @@ Ajouter a Add to - Bridge/Flickr/actionelements.html.twig Bridge/Dailymotion/actionelements.html.twig Bridge/Youtube/actionelements.html.twig + Bridge/Flickr/actionelements.html.twig Ajouter ma selection courrante @@ -851,13 +851,14 @@ All All Form/Configuration/CustomLinkFormType.php + WorkZone/Browser/Browser.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig - WorkZone/Browser/Browser.html.twig + task-manager/task-editor/subdefs.html.twig All these conditions @@ -949,11 +950,19 @@ An error occured An error occurred - Controller/Prod/StoryController.php - Controller/Prod/MoveCollectionController.php - Controller/Prod/LazaretController.php - Controller/Prod/ToolsController.php - Controller/Prod/BasketController.php + Model/Manipulator/LazaretManipulator.php + Model/Manipulator/LazaretManipulator.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxesController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php @@ -965,25 +974,17 @@ Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php - Controller/Admin/DataboxesController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Model/Manipulator/LazaretManipulator.php - Model/Manipulator/LazaretManipulator.php - web/admin/databases.html.twig - admin/collection/suggested_value.html.twig - admin/collection/collection.html.twig - task-manager/task-editor/task.html.twig + Controller/Prod/BasketController.php + Controller/Prod/ToolsController.php + Controller/Prod/LazaretController.php + Controller/Prod/MoveCollectionController.php + Controller/Prod/StoryController.php web/admin/users.html.twig admin/databox/databox.html.twig + web/admin/databases.html.twig + admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig + task-manager/task-editor/task.html.twig An error occured while denying, please retry or contact an admin if problem persists @@ -1020,12 +1021,12 @@ An error occurred An error occurred Order/Controller/ProdOrderController.php - Controller/Api/V1Controller.php - Controller/Api/V1Controller.php - Controller/Prod/BasketController.php + Controller/Admin/DataboxController.php Controller/Admin/SearchEngineController.php Controller/Admin/CollectionController.php - Controller/Admin/DataboxController.php + Controller/Prod/BasketController.php + Controller/Api/V1Controller.php + Controller/Api/V1Controller.php web/admin/statusbit.html.twig @@ -1263,8 +1264,8 @@ Audio Codec Audio Codec - Media/Subdef/Video.php Media/Subdef/Audio.php + Media/Subdef/Video.php Audio Samplerate @@ -1355,20 +1356,20 @@ Autorisation d'acces Access authorization - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Autoriser Authorize - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ? Allow application %application_name% to access content on %home_title%? - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Available in multi-export tab @@ -1383,11 +1384,11 @@ Back Previous - mobile/lightbox/validate.html.twig mobile/lightbox/basket_element.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig + mobile/lightbox/validate.html.twig Back to Feedback @@ -1408,9 +1409,9 @@ Bad request format, only JSON is allowed Bad request format. Only JSON is allowed. Controller/Root/AccountController.php + Controller/Admin/DataboxController.php Controller/Admin/RootController.php Controller/Admin/RootController.php - Controller/Admin/DataboxController.php Bad request, please contact an admin @@ -1559,8 +1560,8 @@ actions/Property/index.html.twig prod/User/Add.html.twig task-manager/task-editor/task.html.twig - admin/fields/templates.html.twig user/import/view.html.twig + admin/fields/templates.html.twig Cancel all @@ -1618,14 +1619,14 @@ Ce champ est obligatoire This field is mandatory - Bridge/Api/Dailymotion.php - Bridge/Api/Dailymotion.php + Bridge/Api/Flickr.php + Bridge/Api/Flickr.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php - Bridge/Api/Flickr.php - Bridge/Api/Flickr.php + Bridge/Api/Dailymotion.php + Bridge/Api/Dailymotion.php Ce champ est relie a une branche de thesaurus @@ -1646,12 +1647,12 @@ Ce champ est trop long %length% caracteres max Too long, expecting %length% characters max. - Bridge/Api/Dailymotion.php - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php + Bridge/Api/Dailymotion.php Ce champ est utilise en titre a l'affichage @@ -1762,8 +1763,8 @@ Clear Clear - admin/task-manager/log_scheduler.html.twig admin/task-manager/log_task.html.twig + admin/task-manager/log_scheduler.html.twig Clear list @@ -1810,8 +1811,8 @@ Collection Collection - prod/upload/lazaret.html.twig prod/Story/Create.html.twig + prod/upload/lazaret.html.twig admin/databox/details.html.twig @@ -1848,8 +1849,8 @@ Commande Order - eventsmanager/notify/orderdeliver.php eventsmanager/notify/ordernotdelivered.php + eventsmanager/notify/orderdeliver.php Commande du %date% @@ -1924,13 +1925,13 @@ Connection Login - login/oauth/login.html.twig - login/providers/bind.html.twig - login/providers/bind.html.twig login/providers/mapping.html.twig login/providers/mapping.html.twig + login/providers/bind.html.twig + login/providers/bind.html.twig web/login/index.html.twig web/login/index.html.twig + login/oauth/login.html.twig Connection is OK but database does not exists or can not be accessed @@ -2051,9 +2052,9 @@ Creer Create - Bridge/Flickr/actioncontainers.html.twig Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actioncontainers.html.twig + Bridge/Flickr/actioncontainers.html.twig Creer la tache d'ecriture des metadonnees @@ -2416,9 +2417,9 @@ Deplacement %n_element% elements Moving %n_element% documents - Bridge/Flickr/photo_moveinto_photoset.html.twig Bridge/Dailymotion/video_moveinto_playlist.html.twig Bridge/Youtube/video_moveinto_playlist.html.twig + Bridge/Flickr/photo_moveinto_photoset.html.twig Dernier access @@ -2428,8 +2429,8 @@ Derniere mise a jour le %updated_on% Last Update on %updated_on% - prod/results/entry.html.twig prod/results/feeds_entry.html.twig + prod/results/entry.html.twig Derniers envois @@ -2444,15 +2445,15 @@ Description Caption - prod/Tooltip/DCESFieldInfo.html.twig + Bridge/Dailymotion/upload.html.twig + Bridge/Dailymotion/video_modify.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/upload.html.twig + Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photoset_createcontainer.html.twig Bridge/Flickr/upload.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/upload.html.twig - Bridge/Dailymotion/video_modify.html.twig - Bridge/Youtube/upload.html.twig - Bridge/Youtube/video_modify.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig + prod/Tooltip/DCESFieldInfo.html.twig web/developers/application_form.html.twig @@ -2476,8 +2477,8 @@ Details Details - admin/collection/details.html.twig admin/databox/details.html.twig + admin/collection/details.html.twig Developpeur @@ -2492,9 +2493,9 @@ Dimension Size + Media/Subdef/Image.php Media/Subdef/Unknown.php Media/Subdef/Video.php - Media/Subdef/Image.php Disable document type sharing @@ -2700,9 +2701,9 @@ Edition de 1 element Editing 1 document - Bridge/Flickr/photo_modify.html.twig Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/video_modify.html.twig + Bridge/Flickr/photo_modify.html.twig Edition des droits de %display_name% @@ -2755,8 +2756,8 @@ Email E-mail - admin/publications/fiche.html.twig web/admin/dashboard.html.twig + admin/publications/fiche.html.twig Email '%email%' for login '%login%' already exists in database @@ -2786,8 +2787,8 @@ Email successfully confirmed E-mail successfully confirmed. - Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Notification/Mail/MailSuccessEmailConfirmationRegistered.php + Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Email test result : %email_status% @@ -2862,8 +2863,8 @@ En cours d'encodage Encoding in progress - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php actions/Bridge/records_list.html.twig @@ -3010,8 +3011,8 @@ Erreur ! Error ! - web/lightbox/error.html.twig mobile/lightbox/error.html.twig + web/lightbox/error.html.twig Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas @@ -3104,8 +3105,8 @@ Error while sending the file Error while sending the file - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Error while uploading @@ -3115,8 +3116,8 @@ Etendue de la publication Publication scope - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Etes vous sur de supprimer %number% photos ? @@ -3201,10 +3202,10 @@ Feedback Feedback Controller/Prod/LanguageController.php - web/prod/toolbar.html.twig - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig + web/prod/toolbar.html.twig Feeds @@ -3259,11 +3260,11 @@ File is not present in quarantine anymore, please refresh Document is not in quarantine anymore, please refresh - Controller/Prod/LazaretController.php - Controller/Prod/LazaretController.php Model/Manipulator/LazaretManipulator.php Model/Manipulator/LazaretManipulator.php Model/Manipulator/LazaretManipulator.php + Controller/Prod/LazaretController.php + Controller/Prod/LazaretController.php File is too big : 64k max @@ -3298,8 +3299,8 @@ Fils disponibles Available feed - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig Filter @@ -3337,8 +3338,8 @@ Flatten layers Flatten layers - Media/Subdef/Unknown.php Media/Subdef/Image.php + Media/Subdef/Unknown.php Focal length @@ -3368,10 +3369,10 @@ Forgot password? Forgot password? - login/oauth/login.html.twig - login/providers/bind.html.twig login/providers/mapping.html.twig + login/providers/bind.html.twig web/login/index.html.twig + login/oauth/login.html.twig Forgot your password? @@ -3451,8 +3452,8 @@ Generates an image Generates an image - Media/Subdef/Unknown.php Media/Subdef/Image.php + Media/Subdef/Unknown.php Geo Search @@ -3568,9 +3569,9 @@ Hello %username% Hi %username% - api/auth/end_user_authorization.html.twig - api/auth/native_app_access_token.html.twig api/auth/end_user_authorization.html.twig + api/auth/native_app_access_token.html.twig + api/auth/end_user_authorization.html.twig Help @@ -3590,11 +3591,11 @@ Home Home - login/layout/base-layout.html.twig - login/include/language-block.html.twig - mobile/lightbox/validate.html.twig mobile/lightbox/basket_element.html.twig mobile/lightbox/feed.html.twig + mobile/lightbox/validate.html.twig + login/include/language-block.html.twig + login/layout/base-layout.html.twig Homepage slideshow @@ -3771,8 +3772,8 @@ Invalid file format Invalid file format - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Invalid file type @@ -3783,9 +3784,9 @@ Invalid file type, only (%supported_file_types%) file formats are supported Invalid file type. Only %supported_file_types% file formats are supported. - admin/statusbit/edit.html.twig - user/import/file.html.twig admin/databox/databox.html.twig + user/import/file.html.twig + admin/statusbit/edit.html.twig Invalid file type, only (%supported_file_types%) file formats are supported' @@ -3795,8 +3796,8 @@ Invalid labels parameter Invalid label parameters - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Invalid link. @@ -3858,8 +3859,8 @@ L'upload a echoue Upload failed - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php L'upload concernant le record %title% sur le compte %bridge_name% a echoue pour les raisons suivantes : %reason% @@ -3896,20 +3897,20 @@ La taille maximale d'une video est de %duration% minutes. The maximum duration for a video is %duration% minutes. - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video a ete rejetee Video has been rejected - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video a ete supprimee Video has been deleted - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video est restreinte @@ -4005,16 +4006,16 @@ Le poids maximum d'un fichier est de %size% Maximum filesize is %size% - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Le record n'a pas de fichier physique No physical file for this record - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Le token n'a pas encore ete genere @@ -4035,9 +4036,9 @@ Les elements ne peuvent etre uploades (problemes de type ou de droit) Selected files can't be uploaded (file type or rights error) - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Youtube/upload.html.twig + Bridge/Flickr/upload.html.twig Les indications donnees ci dessous sont a titre informatif. @@ -4158,9 +4159,9 @@ Login Form/Login/PhraseaAuthenticationForm.php actions/Feedback/ListsMacros.html.twig - login/oauth/login.html.twig - login/providers/bind.html.twig login/providers/mapping.html.twig + login/providers/bind.html.twig + login/oauth/login.html.twig Login %login% already exists in database @@ -4180,8 +4181,8 @@ Login to link your account Login to link your account - login/providers/bind.html.twig login/providers/mapping.html.twig + login/providers/bind.html.twig Logs @@ -4313,8 +4314,8 @@ Missing labels parameter Labels missing parameter - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Missing mandatory parameter %parameter% @@ -4433,9 +4434,9 @@ Name Name Controller/Prod/LanguageController.php - prod/templates/push.html.twig - actions/Download/prepare.html.twig Bridge/Dailymotion/playlist_createcontainer.html.twig + actions/Download/prepare.html.twig + prod/templates/push.html.twig admin/fields/templates.html.twig @@ -4456,8 +4457,8 @@ Ne pas autoriser Do not authorize - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Ne pas creer de DataBox maintenant @@ -4473,14 +4474,14 @@ New password New password - Form/Login/PhraseaRecoverPasswordForm.php Form/Login/PhraseaRenewPasswordForm.php + Form/Login/PhraseaRecoverPasswordForm.php New password (confirmation) Confirm new password - Form/Login/PhraseaRecoverPasswordForm.php Form/Login/PhraseaRenewPasswordForm.php + Form/Login/PhraseaRecoverPasswordForm.php New task @@ -4625,8 +4626,8 @@ Non-Restreinte (publique) Unrestricted (public) - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig None @@ -4724,7 +4725,7 @@ Number of records to process per batch Number of records to process per batch - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig Number of replicas @@ -4746,8 +4747,8 @@ OK OK - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Ok @@ -4799,8 +4800,8 @@ Or login with Or login with web/login/register.html.twig - login/oauth/login.html.twig web/login/index.html.twig + login/oauth/login.html.twig api/auth/end_user_authorization.html.twig @@ -4861,9 +4862,9 @@ Page Page + actions/Bridge/paginator.html.twig prod/upload/lazaret.html.twig prod/upload/lazaret.html.twig - actions/Bridge/paginator.html.twig Pages @@ -4873,25 +4874,25 @@ Paniers Baskets - web/account/account.html.twig - web/lightbox/validate.html.twig - lightbox/IE6/validate.html.twig - web/lightbox/index.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/account/account.html.twig + web/lightbox/index.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig Par %author% by %author% - prod/results/entry.html.twig - prod/results/feeds_entry.html.twig mobile/lightbox/feed.html.twig + prod/results/feeds_entry.html.twig + prod/results/entry.html.twig Password Password - Form/Login/PhraseaRegisterForm.php Form/Login/PhraseaAuthenticationForm.php + Form/Login/PhraseaRegisterForm.php web/account/account.html.twig @@ -4999,8 +5000,8 @@ Playlists Playlists - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Please accept the terms of use to register. @@ -5166,8 +5167,8 @@ Problemes de connexion ? Connection problems? - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Process the registration @@ -5198,8 +5199,8 @@ Publications Publications web/prod/index.html.twig - web/admin/tree.html.twig admin/publications/wrapper.html.twig + web/admin/tree.html.twig web/common/menubar.html.twig @@ -5210,8 +5211,8 @@ Publique Public - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Publishers @@ -5221,8 +5222,8 @@ Push Push - Controller/Prod/LanguageController.php eventsmanager/notify/push.php + Controller/Prod/LanguageController.php Push configuration @@ -5287,8 +5288,8 @@ Quality Quality - Media/Subdef/Unknown.php Media/Subdef/Image.php + Media/Subdef/Unknown.php Quarantine @@ -5410,13 +5411,13 @@ Re-ordonner Set order prod/Baskets/Reorder.html.twig - prod/Story/Reorder.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig + prod/Story/Reorder.html.twig Read-only @@ -5451,8 +5452,8 @@ Received from %user_name% Received from %user_name% - WorkZone/Browser/Results.html.twig WorkZone/Browser/Basket.html.twig + WorkZone/Browser/Results.html.twig Reception d'un rapport de validation @@ -5570,8 +5571,8 @@ Register web/login/register-classic.html.twig web/login/register.html.twig - login/include/register-link-block.html.twig web/login/register-provider.html.twig + login/include/register-link-block.html.twig Register approbation @@ -5613,8 +5614,8 @@ Remove ICC Profile Remove ICC profile - Media/Subdef/Unknown.php Media/Subdef/Image.php + Media/Subdef/Unknown.php Remove current Range @@ -5728,8 +5729,8 @@ Resolution Resolution in DPI - Media/Subdef/Unknown.php Media/Subdef/Image.php + Media/Subdef/Unknown.php Resource URL @@ -5744,12 +5745,12 @@ Restart the task every X records Restart the task every X records - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig Restart the task if memory reaches Restart the task if memory reaches - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig Reste @@ -5759,8 +5760,8 @@ Restriction Restriction - web/admin/editusers_quotas.html.twig admin/publications/list.html.twig + web/admin/editusers_quotas.html.twig Restrictions de telechargement @@ -5877,12 +5878,12 @@ Save actions/Feedback/list.html.twig web/account/change-password.html.twig - task-manager/task-editor/task.html.twig - admin/search-engine/elastic-search.html.twig admin/search-engine/general-aggregation.html.twig - web/login/renew-password.html.twig + admin/search-engine/elastic-search.html.twig + task-manager/task-editor/task.html.twig web/developers/application.html.twig web/developers/application.html.twig + web/login/renew-password.html.twig Save all changes @@ -5943,14 +5944,14 @@ See documentation at %url% See documentation at %url% - Form/Configuration/ExecutablesFormType.php Form/Configuration/WebservicesFormType.php + Form/Configuration/ExecutablesFormType.php See my order See my orders - Notification/Mail/MailInfoOrderDelivered.php Notification/Mail/MailInfoOrderCancelled.php + Notification/Mail/MailInfoOrderDelivered.php See others @@ -5998,9 +5999,9 @@ admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig + user/import/file.html.twig admin/statusbit/edit.html.twig admin/statusbit/edit.html.twig - user/import/file.html.twig Selected base(s) @@ -6016,10 +6017,10 @@ Send Send Controller/Prod/LanguageController.php - prod/upload/upload.html.twig - prod/upload/upload-flash.html.twig prod/actions/Push.html.twig prod/actions/Push.html.twig + prod/upload/upload.html.twig + prod/upload/upload-flash.html.twig prod/orders/order_item.html.twig prod/orders/order_item.html.twig web/admin/dashboard.html.twig @@ -6055,8 +6056,8 @@ Sent for validation to %list_participants% Sent for feedback to %list_participants% - WorkZone/Browser/Results.html.twig WorkZone/Browser/Basket.html.twig + WorkZone/Browser/Results.html.twig Separator @@ -6086,8 +6087,8 @@ Set labels Set labels - admin/collection/collection.html.twig admin/databox/databox.html.twig + admin/collection/collection.html.twig Set statuses restrictions @@ -6102,8 +6103,8 @@ Setup Setup - web/admin/tree.html.twig web/admin/setup.html.twig + web/admin/tree.html.twig Setup my password @@ -6133,8 +6134,8 @@ Short description Short description - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Shutter speed @@ -6175,8 +6176,8 @@ Size Size - actions/Download/prepare.html.twig actions/Tools/videoEditor.html.twig + actions/Download/prepare.html.twig web/common/technical_datas.html.twig @@ -6239,8 +6240,8 @@ Sous-titre Subtitle - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Space bar @@ -6271,8 +6272,8 @@ Start validation Start feedback - Notification/Mail/MailInfoValidationRequest.php Notification/Mail/MailInfoValidationReminder.php + Notification/Mail/MailInfoValidationRequest.php Started @@ -6386,8 +6387,8 @@ Success Success - web/common/dialog_export.html.twig api/auth/native_app_access_token.html.twig + web/common/dialog_export.html.twig Successful install @@ -6397,22 +6398,16 @@ Successful removal Successful removal. + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php Successful update Successful update - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php @@ -6420,10 +6415,16 @@ Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php actions/Tools/videoEditor.html.twig web/admin/databases.html.twig - admin/collection/suggested_value.html.twig admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig Successfull connection @@ -6496,11 +6497,11 @@ Tags Tags - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/upload.html.twig Bridge/Youtube/video_modify.html.twig + Bridge/Flickr/upload.html.twig Target Device @@ -6642,8 +6643,8 @@ The file is too big The file is too large. - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php The file was moved to the quarantine @@ -6658,8 +6659,8 @@ The publication has been stopped The publication has been stopped. - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php The record was successfully created @@ -6830,18 +6831,18 @@ Titre Title prod/Baskets/Reorder.html.twig - prod/Story/Reorder.html.twig + Bridge/Dailymotion/upload.html.twig + Bridge/Dailymotion/video_modify.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/upload.html.twig + Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photoset_createcontainer.html.twig Bridge/Flickr/upload.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/upload.html.twig - Bridge/Dailymotion/video_modify.html.twig - Bridge/Youtube/upload.html.twig - Bridge/Youtube/video_modify.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig + prod/Story/Reorder.html.twig + admin/publications/fiche.html.twig admin/publications/list.html.twig admin/publications/list.html.twig - admin/publications/fiche.html.twig Toggle loop @@ -6866,8 +6867,8 @@ Total Total - admin/collection/details.html.twig admin/databox/details.html.twig + admin/collection/details.html.twig Tous @@ -6908,7 +6909,7 @@ Try to extract embedded thumbnails Try to extract embedded thumbnails - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig Type @@ -6959,8 +6960,8 @@ Unable to add file to Phraseanet Unable to add files to Phraseanet - Controller/Prod/UploadController.php Controller/Admin/FeedController.php + Controller/Prod/UploadController.php Unable to add usr to list @@ -6970,8 +6971,8 @@ Unable to authenticate with %provider_name% Unable to authenticate with %provider_name% - Controller/Api/OAuth2Controller.php Controller/Root/LoginController.php + Controller/Api/OAuth2Controller.php Unable to connect to MySQL server @@ -7013,8 +7014,8 @@ Unable to retrieve provider identity Unable to retrieve provider identity. - Controller/Api/OAuth2Controller.php Controller/Root/LoginController.php + Controller/Api/OAuth2Controller.php Unable to send the documents @@ -7056,10 +7057,10 @@ Une selection an untitled selection - eventsmanager/notify/validate.php - eventsmanager/notify/validate.php eventsmanager/notify/validationreminder.php eventsmanager/notify/validationreminder.php + eventsmanager/notify/validate.php + eventsmanager/notify/validate.php Unhandled Error @@ -7109,15 +7110,15 @@ Upload Upload - prod/upload/upload.html.twig - prod/upload/upload-flash.html.twig - Bridge/Flickr/upload.html.twig - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Youtube/upload.html.twig Bridge/Youtube/upload.html.twig actions/Bridge/index.html.twig + Bridge/Flickr/upload.html.twig + Bridge/Flickr/upload.html.twig + prod/upload/upload.html.twig + prod/upload/upload-flash.html.twig web/common/menubar.html.twig @@ -7271,8 +7272,8 @@ VALIDATION Feedback - web/lightbox/validate.html.twig web/lightbox/agreement_box.html.twig + web/lightbox/validate.html.twig Validate e-mail address @@ -7282,11 +7283,11 @@ Validation Feedback - eventsmanager/notify/validate.php - eventsmanager/notify/validate.php + eventsmanager/notify/validationdone.php eventsmanager/notify/validationreminder.php eventsmanager/notify/validationreminder.php - eventsmanager/notify/validationdone.php + eventsmanager/notify/validate.php + eventsmanager/notify/validate.php lightbox/IE6/validate.html.twig @@ -7302,11 +7303,11 @@ Validations Feedbacks - web/lightbox/validate.html.twig - lightbox/IE6/validate.html.twig - web/lightbox/index.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/lightbox/index.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig Validations received @@ -7356,8 +7357,8 @@ Videos Videos - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php View on %title% @@ -7377,14 +7378,14 @@ Voici vos paniers Your Basket(s) - web/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/lightbox/index.html.twig Voici vos validations en cours Your feedbacks in progress - web/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/lightbox/index.html.twig Votre adresse email @@ -7514,10 +7515,10 @@ Vous n'avez selectionne aucun element No document selected - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Youtube/upload.html.twig actions/Bridge/index.html.twig + Bridge/Flickr/upload.html.twig Vous ne pouvez pas editer plusieurs elements simultanement @@ -7563,8 +7564,8 @@ Watch my access requests status View my access requests status. - Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Notification/Mail/MailSuccessAccessRequest.php + Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Watermark @@ -7610,9 +7611,9 @@ Whoops, looks like something went wrong. Whoops, looks like something went wrong. - Event/Subscriber/ApiOauth2ErrorsSubscriber.php Phrasea/Core/PhraseaExceptionHandler.php Phrasea/Core/PhraseaExceptionHandler.php + Event/Subscriber/ApiOauth2ErrorsSubscriber.php Would you like to continue ? @@ -7971,82 +7972,82 @@ action : collection Move - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig action : editer Edit - web/prod/toolbar.html.twig - prod/preview/caption.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig + prod/preview/caption.html.twig action : exporter Export + prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/preview/tools.html.twig - prod/WorkZone/Story.html.twig - prod/WorkZone/Basket.html.twig web/prod/index.html.twig - web/lightbox/validate.html.twig web/lightbox/feed.html.twig - lightbox/IE6/validate.html.twig lightbox/IE6/feed.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig action : outils Tools - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig action : print Print + prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/preview/tools.html.twig - prod/WorkZone/Story.html.twig - prod/WorkZone/Basket.html.twig action : publier Publish - web/prod/toolbar.html.twig - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig + web/prod/toolbar.html.twig web/prod/index.html.twig action : push Push - web/prod/toolbar.html.twig - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig + web/prod/toolbar.html.twig action : status Properties - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig action : supprimer Delete - web/prod/toolbar.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig + web/prod/toolbar.html.twig action:: nouveau panier @@ -8285,8 +8286,8 @@ admin::base:collection: Creer une collection Create collection - admin/collection/create.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig admin::base:collection: Monter une collection @@ -8302,8 +8303,8 @@ admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces apply users and rights from collection : - admin/collection/create.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig admin::base:collection: activer la collection @@ -8314,10 +8315,10 @@ admin::base:collection: aucun fichier (minilogo, watermark ...) No file + admin/databox/databox.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig - admin/databox/databox.html.twig admin::base:collection: descativer la collection @@ -8446,8 +8447,8 @@ admin::compte-utilisateur activite Activity - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig admin/user/registrations.html.twig @@ -8455,8 +8456,8 @@ admin::compte-utilisateur adresse Address - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig admin/user/registrations.html.twig @@ -8470,8 +8471,8 @@ admin::compte-utilisateur code postal Zip code - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig web/common/dialog_export.html.twig @@ -8494,20 +8495,20 @@ admin::compte-utilisateur email E-mail - Event/Subscriber/RegistrationSubscriber.php Controller/Admin/UserController.php + Event/Subscriber/RegistrationSubscriber.php web/account/account.html.twig web/admin/editusers.html.twig web/admin/users.html.twig - web/admin/connected-users.html.twig admin/user/registrations.html.twig + web/admin/connected-users.html.twig web/common/dialog_export.html.twig admin::compte-utilisateur fax Fax - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig web/common/dialog_export.html.twig @@ -8521,6 +8522,7 @@ admin::compte-utilisateur identifiant Login Core/Provider/RegistrationServiceProvider.php + api/auth/end_user_authorization.html.twig web/account/reset-email.html.twig web/account/account.html.twig web/account/account.html.twig @@ -8528,27 +8530,26 @@ web/admin/users.html.twig admin/user/registrations.html.twig web/common/dialog_export.html.twig - api/auth/end_user_authorization.html.twig admin::compte-utilisateur mot de passe Password + api/auth/end_user_authorization.html.twig web/setup/step2.html.twig web/account/reset-email.html.twig web/account/account.html.twig web/common/dialog_export.html.twig - api/auth/end_user_authorization.html.twig admin::compte-utilisateur nom Last name + Controller/Admin/UserController.php Core/Provider/RegistrationServiceProvider.php Event/Subscriber/RegistrationSubscriber.php - Controller/Admin/UserController.php web/account/account.html.twig web/admin/editusers.html.twig - web/admin/connected-users.html.twig admin/user/registrations.html.twig + web/admin/connected-users.html.twig web/common/dialog_export.html.twig @@ -8565,8 +8566,8 @@ admin::compte-utilisateur poste Job - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig admin/user/registrations.html.twig @@ -8575,9 +8576,9 @@ admin::compte-utilisateur prenom First name + Controller/Admin/UserController.php Core/Provider/RegistrationServiceProvider.php Event/Subscriber/RegistrationSubscriber.php - Controller/Admin/UserController.php web/account/account.html.twig web/admin/editusers.html.twig admin/user/registrations.html.twig @@ -8593,13 +8594,13 @@ admin::compte-utilisateur societe Company - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig web/admin/users.html.twig - web/admin/connected-users.html.twig admin/user/registrations.html.twig + web/admin/connected-users.html.twig web/common/dialog_export.html.twig @@ -8613,8 +8614,8 @@ Controller/Admin/UserController.php web/account/account.html.twig web/admin/editusers.html.twig - web/admin/connected-users.html.twig admin/user/registrations.html.twig + web/admin/connected-users.html.twig web/common/dialog_export.html.twig @@ -8625,8 +8626,8 @@ admin::compte-utilisateur ville City - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig web/common/dialog_export.html.twig @@ -8761,26 +8762,26 @@ admin::monitor: module admin Admin - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig web/common/menubar.html.twig admin::monitor: module client Client - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php classes/record/preview.php classes/record/preview.php classes/record/preview.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig admin::monitor: module comparateur Lightbox - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig @@ -8791,44 +8792,44 @@ admin::monitor: module production Production - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php classes/record/preview.php classes/record/preview.php classes/record/preview.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig admin::monitor: module report Report - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig web/common/menubar.html.twig admin::monitor: module thesaurus Thesaurus - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig web/common/menubar.html.twig admin::monitor: module upload Upload - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/common/menubar.html.twig admin::monitor: module validation Lightbox + lib/classes/phrasea.php Phrasea/Controller/LightboxController.php Phrasea/Controller/LightboxController.php Phrasea/Controller/LightboxController.php Controller/Admin/ConnectedUsersController.php - lib/classes/phrasea.php web/common/menubar.html.twig @@ -8864,8 +8865,8 @@ admin::plugins: plugins Plugins - web/admin/tree.html.twig admin/plugins/index.html.twig + web/admin/tree.html.twig admin::plugins: retrieveConfigurationError @@ -9062,8 +9063,8 @@ audio audio Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig avril @@ -9124,35 +9125,35 @@ Cancel Controller/Prod/LanguageController.php Controller/Prod/LanguageController.php - prod/actions/edit_default.html.twig - prod/actions/edit_default.html.twig - Bridge/Flickr/photo_modify.html.twig - Bridge/Flickr/photo_modify.html.twig Bridge/Dailymotion/video_modify.html.twig Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Youtube/video_modify.html.twig - web/thesaurus/link-field-step2.html.twig - web/thesaurus/accept.html.twig - web/thesaurus/accept.html.twig - web/thesaurus/import-dialog.html.twig + Bridge/Flickr/photo_modify.html.twig + Bridge/Flickr/photo_modify.html.twig + prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig web/thesaurus/export-text-dialog.html.twig - web/thesaurus/export-topics-dialog.html.twig - web/thesaurus/link-field-step1.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig + web/thesaurus/import-dialog.html.twig + web/thesaurus/link-field-step2.html.twig + web/thesaurus/accept.html.twig + web/thesaurus/accept.html.twig + web/thesaurus/export-topics-dialog.html.twig web/thesaurus/new-term.html.twig web/thesaurus/new-term.html.twig + web/thesaurus/link-field-step1.html.twig web/account/reset-email.html.twig admin/publications/fiche.html.twig admin/collection/create.html.twig web/admin/index.html.twig - web/report/all_content.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig + web/report/all_content.html.twig boutton::appliquer @@ -9193,8 +9194,8 @@ boutton::editer Edit - prod/results/entry.html.twig prod/results/feeds_entry.html.twig + prod/results/entry.html.twig boutton::enregistrer @@ -9221,17 +9222,17 @@ boutton::fermer Close Controller/Prod/LanguageController.php + prod/actions/Push.html.twig prod/actions/edit_default.html.twig prod/actions/edit_default.html.twig - prod/actions/Push.html.twig + web/thesaurus/properties.html.twig web/thesaurus/accept.html.twig web/thesaurus/accept.html.twig web/thesaurus/export-topics.html.twig web/thesaurus/link-field-step3.html.twig - web/thesaurus/properties.html.twig web/lightbox/sc_note.html.twig - web/report/all_content.html.twig web/common/dialog_export.html.twig + web/report/all_content.html.twig boutton::generer @@ -9246,9 +9247,9 @@ boutton::modifier Modify - Bridge/Flickr/actionelement.html.twig Bridge/Dailymotion/actionelement.html.twig Bridge/Youtube/actionelement.html.twig + Bridge/Flickr/actionelement.html.twig web/admin/users.html.twig @@ -9305,24 +9306,24 @@ boutton::retour Back + Bridge/Dailymotion/video_deleteelement.html.twig + Bridge/Dailymotion/playlist_createcontainer.html.twig + Bridge/Dailymotion/video_moveinto_playlist.html.twig + Bridge/Dailymotion/playlist_deleteelement.html.twig + Bridge/Youtube/video_deleteelement.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/video_moveinto_playlist.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig Bridge/Flickr/photo_deleteelement.html.twig + Bridge/Flickr/photoset_deleteelement.html.twig Bridge/Flickr/photo_moveinto_photoset.html.twig Bridge/Flickr/photoset_createcontainer.html.twig - Bridge/Flickr/photoset_deleteelement.html.twig - Bridge/Dailymotion/playlist_deleteelement.html.twig - Bridge/Dailymotion/video_deleteelement.html.twig - Bridge/Dailymotion/video_moveinto_playlist.html.twig - Bridge/Dailymotion/playlist_createcontainer.html.twig - Bridge/Youtube/playlist_deleteelement.html.twig - Bridge/Youtube/video_deleteelement.html.twig - Bridge/Youtube/video_moveinto_playlist.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig - admin/publications/fiche.html.twig web/admin/editusers.html.twig - admin/collection/details.html.twig - admin/statusbit/edit.html.twig - user/import/file.html.twig + admin/publications/fiche.html.twig admin/databox/details.html.twig + admin/collection/details.html.twig + user/import/file.html.twig + admin/statusbit/edit.html.twig web/developers/application_form.html.twig web/developers/application.html.twig @@ -9349,24 +9350,24 @@ boutton::supprimer Delete Controller/Prod/LanguageController.php - prod/results/entry.html.twig - prod/results/feeds_entry.html.twig - Bridge/Flickr/actionelements.html.twig - Bridge/Flickr/actioncontainers.html.twig + actions/Bridge/disconnected.html.twig Bridge/Dailymotion/actionelements.html.twig Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actionelements.html.twig Bridge/Youtube/actioncontainers.html.twig - actions/Bridge/disconnected.html.twig + Bridge/Flickr/actionelements.html.twig + Bridge/Flickr/actioncontainers.html.twig + prod/results/feeds_entry.html.twig + prod/results/entry.html.twig web/prod/index.html.twig web/thesaurus/presets.html.twig - admin/publications/list.html.twig admin/publications/fiche.html.twig - admin/collection/suggested_value.html.twig + admin/publications/list.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig web/admin/subdefs.html.twig @@ -9379,10 +9380,10 @@ boutton::telecharger tous les documents Download all - web/lightbox/validate.html.twig web/lightbox/feed.html.twig - lightbox/IE6/validate.html.twig lightbox/IE6/feed.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig boutton::tester @@ -9394,57 +9395,57 @@ boutton::valider Validate Controller/Prod/LanguageController.php - prod/Baskets/Reorder.html.twig + mobile/lightbox/note_form.html.twig prod/Baskets/Update.html.twig - prod/Story/Reorder.html.twig - prod/actions/edit_default.html.twig - prod/actions/edit_default.html.twig + prod/Baskets/Reorder.html.twig + Bridge/Dailymotion/video_deleteelement.html.twig + Bridge/Dailymotion/playlist_createcontainer.html.twig + Bridge/Dailymotion/video_moveinto_playlist.html.twig + Bridge/Dailymotion/video_modify.html.twig + Bridge/Dailymotion/playlist_deleteelement.html.twig + Bridge/Youtube/video_deleteelement.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/video_moveinto_playlist.html.twig + Bridge/Youtube/video_modify.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig Bridge/Flickr/photo_deleteelement.html.twig + Bridge/Flickr/photoset_deleteelement.html.twig Bridge/Flickr/photo_moveinto_photoset.html.twig Bridge/Flickr/photoset_createcontainer.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Flickr/photoset_deleteelement.html.twig - Bridge/Dailymotion/playlist_deleteelement.html.twig - Bridge/Dailymotion/video_deleteelement.html.twig - Bridge/Dailymotion/video_moveinto_playlist.html.twig - Bridge/Dailymotion/video_modify.html.twig - Bridge/Dailymotion/playlist_createcontainer.html.twig - Bridge/Youtube/playlist_deleteelement.html.twig - Bridge/Youtube/video_deleteelement.html.twig - Bridge/Youtube/video_moveinto_playlist.html.twig - Bridge/Youtube/video_modify.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig + prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig + prod/Story/Reorder.html.twig web/prod/index.html.twig + web/thesaurus/export-text-dialog.html.twig + web/thesaurus/thesaurus.html.twig + web/thesaurus/import-dialog.html.twig web/thesaurus/link-field-step2.html.twig web/thesaurus/accept.html.twig - web/thesaurus/import-dialog.html.twig - web/thesaurus/export-text-dialog.html.twig web/thesaurus/export-topics-dialog.html.twig - web/thesaurus/link-field-step1.html.twig - web/thesaurus/thesaurus.html.twig + web/thesaurus/index.html.twig web/thesaurus/new-term.html.twig web/thesaurus/new-term.html.twig - web/thesaurus/index.html.twig - web/account/reset-email.html.twig + web/thesaurus/link-field-step1.html.twig web/account/access.html.twig + web/account/reset-email.html.twig web/account/account.html.twig - admin/publications/list.html.twig - admin/publications/fiche.html.twig - web/admin/editusers.html.twig - admin/collection/reorder.html.twig - admin/collection/suggested_value.html.twig - admin/collection/create.html.twig - admin/collection/collection.html.twig - web/admin/setup.html.twig - admin/statusbit/edit.html.twig web/admin/dashboard.html.twig + web/admin/editusers.html.twig + admin/publications/fiche.html.twig + admin/publications/list.html.twig + web/admin/setup.html.twig + admin/collection/create.html.twig + admin/collection/reorder.html.twig + admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig + web/admin/subdefs.html.twig + web/admin/structure.html.twig user/import/view.html.twig admin/user/registrations.html.twig - web/admin/structure.html.twig - web/admin/subdefs.html.twig - web/report/all_content.html.twig + admin/statusbit/edit.html.twig web/developers/application_form.html.twig - mobile/lightbox/note_form.html.twig + web/report/all_content.html.twig boutton::vue graphique @@ -9542,8 +9543,8 @@ choisir Select web/prod/index.html.twig - admin/collection/create.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig classe @@ -9633,8 +9634,8 @@ dans %feed_name% in %feed_name% - prod/results/entry.html.twig prod/results/feeds_entry.html.twig + prod/results/entry.html.twig date dajout @@ -9670,9 +9671,9 @@ document document Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig document original @@ -9829,8 +9830,8 @@ flash flash Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig for the following reasons : %reasons% @@ -9954,8 +9955,8 @@ See documentation for more examples https://docs.phraseanet.com image Image Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig image rotation @@ -10040,8 +10041,8 @@ See documentation for more examples https://docs.phraseanet.com lightbox::recaptitulatif Summary - web/lightbox/validate.html.twig web/lightbox/agreement_box.html.twig + web/lightbox/validate.html.twig login:: Changer mon adresse email @@ -10078,8 +10079,8 @@ See documentation for more examples https://docs.phraseanet.com login::erreur: Erreur d'authentification Authentication error - Controller/Api/OAuth2Controller.php Controller/Root/LoginController.php + Controller/Api/OAuth2Controller.php login::erreur: No available connection - Please contact sys-admin @@ -10099,8 +10100,8 @@ See documentation for more examples https://docs.phraseanet.com login::notification: Mise a jour du mot de passe avec succes Password update done - Controller/Root/AccountController.php Controller/Root/LoginController.php + Controller/Root/AccountController.php login::notification: demande de confirmation par mail envoyee @@ -10116,14 +10117,14 @@ See documentation for more examples https://docs.phraseanet.com login::register: merci d'avoir confirme votre adresse email Thank you for confirming your e-mail. - Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Notification/Mail/MailSuccessEmailConfirmationRegistered.php + Notification/Mail/MailSuccessEmailConfirmationUnregistered.php login::register: sujet email : confirmation de votre adresse email E-mail address check. - Notification/Mail/MailRequestEmailConfirmation.php Notification/Mail/MailRequestEmailUpdate.php + Notification/Mail/MailRequestEmailConfirmation.php login::register:email: Voici un compte rendu du traitement de vos demandes d'acces : @@ -10190,8 +10191,8 @@ See documentation for more examples https://docs.phraseanet.com no No web/account/sessions.html.twig - user/import/view.html.twig web/admin/subdefs.html.twig + user/import/view.html.twig web/common/technical_datas.html.twig @@ -10209,10 +10210,10 @@ See documentation for more examples https://docs.phraseanet.com notice Caption - web/lightbox/validate.html.twig web/lightbox/feed.html.twig - lightbox/IE6/validate.html.twig lightbox/IE6/feed.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig nouveau @@ -10665,8 +10666,8 @@ See documentation for more examples https://docs.phraseanet.com phraseanet:: details Details - admin/collection/collection.html.twig admin/databox/databox.html.twig + admin/collection/collection.html.twig phraseanet:: hostname @@ -10728,18 +10729,18 @@ See documentation for more examples https://docs.phraseanet.com phraseanet:: sous definition Subview - module/report/filter.php classes/module/report.php + module/report/filter.php phraseanet:: thesaurus Thesaurus prod/actions/edit_default.html.twig web/prod/tab_headers.html.twig - web/thesaurus/load-thesaurus.html.twig - web/thesaurus/load-thesaurus.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig + web/thesaurus/load-thesaurus.html.twig + web/thesaurus/load-thesaurus.html.twig web/thesaurus/index.html.twig @@ -11006,20 +11007,20 @@ See documentation for more examples https://docs.phraseanet.com preview:: arreter le diaporama Stop - prod/preview/feed_train.html.twig prod/preview/basket_train.html.twig - prod/preview/reg_train.html.twig prod/preview/result_train.html.twig + prod/preview/reg_train.html.twig prod/preview/result_train_options.html.twig + prod/preview/feed_train.html.twig preview:: demarrer le diaporama Slideshow - prod/preview/feed_train.html.twig prod/preview/basket_train.html.twig - prod/preview/reg_train.html.twig prod/preview/result_train.html.twig + prod/preview/reg_train.html.twig prod/preview/result_train_options.html.twig + prod/preview/feed_train.html.twig preview::date @@ -11415,8 +11416,8 @@ See documentation for more examples https://docs.phraseanet.com prod::tools: document Document - Controller/Prod/ShareController.php Controller/Prod/ToolsController.php + Controller/Prod/ShareController.php prod:app trash: also-move-record @@ -11502,26 +11503,26 @@ It is possible to place several search areas publication : autheur Author - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : email autheur Author's e-mail - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : sous titre Sub Title - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : titre Title - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications. @@ -11575,16 +11576,16 @@ It is possible to place several search areas rafraichir Refresh + prod/WorkZone/Story.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Basket.html.twig prod/results/feeds.html.twig prod/results/feeds.html.twig - prod/WorkZone/Story.html.twig - prod/WorkZone/Basket.html.twig - prod/WorkZone/Macros.html.twig recordtype record type - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig regeneration of sub-definitions @@ -11789,14 +11790,14 @@ It is possible to place several search areas report:: collections Collections - module/report/filter.php classes/module/report.php + module/report/filter.php report:: commentaire Comments - module/report/filter.php classes/module/report.php + module/report/filter.php report:: copyright @@ -11806,9 +11807,9 @@ It is possible to place several search areas report:: date Date - module/report/filter.php classes/module/report.php classes/module/report.php + module/report/filter.php report:: document ajoute @@ -11859,21 +11860,21 @@ It is possible to place several search areas report:: non-renseigne Not filled - module/report/edit.php - module/report/validate.php + module/report/add.php + module/report/question.php + module/report/download.php module/report/activity.php module/report/activity.php module/report/activity.php - module/report/download.php - module/report/push.php - module/report/nav.php - module/report/sent.php module/report/connexion.php module/report/connexion.php module/report/connexion.php + module/report/push.php + module/report/sent.php + module/report/validate.php + module/report/nav.php + module/report/edit.php module/report/filter.php - module/report/add.php - module/report/question.php report:: page d'accueil @@ -11905,9 +11906,9 @@ It is possible to place several search areas report:: question Query - module/report/filter.php - module/report/question.php classes/module/report.php + module/report/question.php + module/report/filter.php report:: questions @@ -11927,8 +11928,8 @@ It is possible to place several search areas report:: record id recordId - module/report/filter.php classes/module/report.php + module/report/filter.php report:: resolution @@ -12299,8 +12300,8 @@ It is possible to place several search areas status:: numero de bit Status N° - admin/statusbit/edit.html.twig web/admin/statusbit.html.twig + admin/statusbit/edit.html.twig status:: retrouver sous forme de filtre dans la recherche @@ -12340,12 +12341,12 @@ It is possible to place several search areas task::archive:Archivage Archive in collection - TaskManager/Job/ArchiveJob.php + TaskManager/Job/ArchiveJob.php task::archive:Archiving files found into a 'hotfolder' Archiving file(s) from hotfolder - TaskManager/Job/ArchiveJob.php + TaskManager/Job/ArchiveJob.php task::archive:archivage sur base/collection/ @@ -12719,15 +12720,15 @@ It is possible to place several search areas thesaurus:: export au format texte Text - web/thesaurus/export-text.html.twig web/thesaurus/export-text-dialog.html.twig web/thesaurus/export-text-dialog.html.twig + web/thesaurus/export-text.html.twig thesaurus:: export en topics Topics - web/thesaurus/export-topics.html.twig web/thesaurus/export-topics-dialog.html.twig + web/thesaurus/export-topics.html.twig thesaurus:: exporter @@ -13035,7 +13036,7 @@ It is possible to place several search areas unknown Unknown - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig untitled @@ -13086,14 +13087,14 @@ It is possible to place several search areas validation:: NON NO - web/lightbox/agreement_box.html.twig mobile/lightbox/basket_element.html.twig + web/lightbox/agreement_box.html.twig validation:: OUI YES - web/lightbox/agreement_box.html.twig mobile/lightbox/basket_element.html.twig + web/lightbox/agreement_box.html.twig validation:: editer ma note @@ -13113,10 +13114,10 @@ It is possible to place several search areas validation::envoyer mon rapport Send my feedback - web/lightbox/basket_options.html.twig - web/lightbox/basket_options.html.twig mobile/lightbox/validate.html.twig mobile/lightbox/validate.html.twig + web/lightbox/basket_options.html.twig + web/lightbox/basket_options.html.twig version @@ -13131,8 +13132,8 @@ It is possible to place several search areas video Video - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig video range extractor diff --git a/resources/locales/messages.fr.xlf b/resources/locales/messages.fr.xlf index 5e417346e6..5261e1de01 100644 --- a/resources/locales/messages.fr.xlf +++ b/resources/locales/messages.fr.xlf @@ -1,6 +1,6 @@ - +
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message. @@ -111,9 +111,9 @@ %basket_length% documents %basket_length% documents + mobile/lightbox/validate.html.twig web/lightbox/index.html.twig web/lightbox/index.html.twig - mobile/lightbox/validate.html.twig %countable% documents can not be modified. @@ -192,16 +192,16 @@ %nb_view% vue %nb_view% vue - Bridge/Flickr/element_informations.html.twig Bridge/Dailymotion/element_informations.html.twig Bridge/Youtube/element_informations.html.twig + Bridge/Flickr/element_informations.html.twig %nb_view% vues %nb_view% vues - Bridge/Flickr/element_informations.html.twig Bridge/Dailymotion/element_informations.html.twig Bridge/Youtube/element_informations.html.twig + Bridge/Flickr/element_informations.html.twig selectionnes]]> @@ -246,8 +246,8 @@ %quantity% records added %quantity% enregistrements ajoutés - Controller/Prod/StoryController.php Controller/Prod/BasketController.php + Controller/Prod/StoryController.php %quantity% records moved @@ -627,12 +627,12 @@ Actions Actions - Bridge/Flickr/actionelements.html.twig - Bridge/Flickr/actioncontainers.html.twig Bridge/Dailymotion/actionelements.html.twig Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actionelements.html.twig Bridge/Youtube/actioncontainers.html.twig + Bridge/Flickr/actionelements.html.twig + Bridge/Flickr/actioncontainers.html.twig Activate highlight @@ -648,9 +648,9 @@ Activer Activer + admin/databox/databox.html.twig web/admin/editusers_timelimit.html.twig web/admin/editusers_timelimit_sbas.html.twig - admin/databox/databox.html.twig Activer le grant_type de type password pour votre application @@ -670,9 +670,9 @@ Add Ajouter + prod/actions/Push.html.twig prod/upload/lazaret.html.twig prod/upload/lazaret.html.twig - prod/actions/Push.html.twig prod/User/Add.html.twig @@ -820,9 +820,9 @@ Ajouter a Ajouter à - Bridge/Flickr/actionelements.html.twig Bridge/Dailymotion/actionelements.html.twig Bridge/Youtube/actionelements.html.twig + Bridge/Flickr/actionelements.html.twig Ajouter ma selection courrante @@ -850,13 +850,14 @@ All Tout Form/Configuration/CustomLinkFormType.php + WorkZone/Browser/Browser.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig - WorkZone/Browser/Browser.html.twig + task-manager/task-editor/subdefs.html.twig All these conditions @@ -948,11 +949,19 @@ An error occured Une erreur est survenue. - Controller/Prod/StoryController.php - Controller/Prod/MoveCollectionController.php - Controller/Prod/LazaretController.php - Controller/Prod/ToolsController.php - Controller/Prod/BasketController.php + Model/Manipulator/LazaretManipulator.php + Model/Manipulator/LazaretManipulator.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxesController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php @@ -964,25 +973,17 @@ Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php - Controller/Admin/DataboxesController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Model/Manipulator/LazaretManipulator.php - Model/Manipulator/LazaretManipulator.php - web/admin/databases.html.twig - admin/collection/suggested_value.html.twig - admin/collection/collection.html.twig - task-manager/task-editor/task.html.twig + Controller/Prod/BasketController.php + Controller/Prod/ToolsController.php + Controller/Prod/LazaretController.php + Controller/Prod/MoveCollectionController.php + Controller/Prod/StoryController.php web/admin/users.html.twig admin/databox/databox.html.twig + web/admin/databases.html.twig + admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig + task-manager/task-editor/task.html.twig An error occured while denying, please retry or contact an admin if problem persists @@ -1019,12 +1020,12 @@ An error occurred Une erreur est survenue Order/Controller/ProdOrderController.php - Controller/Api/V1Controller.php - Controller/Api/V1Controller.php - Controller/Prod/BasketController.php + Controller/Admin/DataboxController.php Controller/Admin/SearchEngineController.php Controller/Admin/CollectionController.php - Controller/Admin/DataboxController.php + Controller/Prod/BasketController.php + Controller/Api/V1Controller.php + Controller/Api/V1Controller.php web/admin/statusbit.html.twig @@ -1262,8 +1263,8 @@ Audio Codec Codec audio - Media/Subdef/Video.php Media/Subdef/Audio.php + Media/Subdef/Video.php Audio Samplerate @@ -1354,20 +1355,20 @@ Autorisation d'acces Autorisation d'accès - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Autoriser Autoriser - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ? Autorisez-vous l'application %application_name% a accéder à votre contenu sur %home_title% ? - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Available in multi-export tab @@ -1382,11 +1383,11 @@ Back Retour - mobile/lightbox/validate.html.twig mobile/lightbox/basket_element.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig + mobile/lightbox/validate.html.twig Back to Feedback @@ -1407,9 +1408,9 @@ Bad request format, only JSON is allowed Mauvais format de requête. Seul JSON est autorisé. Controller/Root/AccountController.php + Controller/Admin/DataboxController.php Controller/Admin/RootController.php Controller/Admin/RootController.php - Controller/Admin/DataboxController.php Bad request, please contact an admin @@ -1558,8 +1559,8 @@ actions/Property/index.html.twig prod/User/Add.html.twig task-manager/task-editor/task.html.twig - admin/fields/templates.html.twig user/import/view.html.twig + admin/fields/templates.html.twig Cancel all @@ -1617,14 +1618,14 @@ Ce champ est obligatoire Ce champ est obligatoire - Bridge/Api/Dailymotion.php - Bridge/Api/Dailymotion.php + Bridge/Api/Flickr.php + Bridge/Api/Flickr.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php - Bridge/Api/Flickr.php - Bridge/Api/Flickr.php + Bridge/Api/Dailymotion.php + Bridge/Api/Dailymotion.php Ce champ est relie a une branche de thesaurus @@ -1645,12 +1646,12 @@ Ce champ est trop long %length% caracteres max Ce champ est trop long (%length% caractères max.) - Bridge/Api/Dailymotion.php - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php + Bridge/Api/Dailymotion.php Ce champ est utilise en titre a l'affichage @@ -1760,8 +1761,8 @@ Clear Effacer - admin/task-manager/log_scheduler.html.twig admin/task-manager/log_task.html.twig + admin/task-manager/log_scheduler.html.twig Clear list @@ -1808,8 +1809,8 @@ Collection Collection - prod/upload/lazaret.html.twig prod/Story/Create.html.twig + prod/upload/lazaret.html.twig admin/databox/details.html.twig @@ -1846,8 +1847,8 @@ Commande Commande - eventsmanager/notify/orderdeliver.php eventsmanager/notify/ordernotdelivered.php + eventsmanager/notify/orderdeliver.php Commande du %date% @@ -1922,13 +1923,13 @@ Connection Connexion - login/oauth/login.html.twig - login/providers/bind.html.twig - login/providers/bind.html.twig login/providers/mapping.html.twig login/providers/mapping.html.twig + login/providers/bind.html.twig + login/providers/bind.html.twig web/login/index.html.twig web/login/index.html.twig + login/oauth/login.html.twig Connection is OK but database does not exists or can not be accessed @@ -2049,9 +2050,9 @@ Creer Créer - Bridge/Flickr/actioncontainers.html.twig Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actioncontainers.html.twig + Bridge/Flickr/actioncontainers.html.twig Creer la tache d'ecriture des metadonnees @@ -2413,9 +2414,9 @@ Deplacement %n_element% elements Déplacement de %n_element% documents - Bridge/Flickr/photo_moveinto_photoset.html.twig Bridge/Dailymotion/video_moveinto_playlist.html.twig Bridge/Youtube/video_moveinto_playlist.html.twig + Bridge/Flickr/photo_moveinto_photoset.html.twig Dernier access @@ -2425,8 +2426,8 @@ Derniere mise a jour le %updated_on% Dernière mise à jour le %updated_on% - prod/results/entry.html.twig prod/results/feeds_entry.html.twig + prod/results/entry.html.twig Derniers envois @@ -2441,15 +2442,15 @@ Description Description - prod/Tooltip/DCESFieldInfo.html.twig + Bridge/Dailymotion/upload.html.twig + Bridge/Dailymotion/video_modify.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/upload.html.twig + Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photoset_createcontainer.html.twig Bridge/Flickr/upload.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/upload.html.twig - Bridge/Dailymotion/video_modify.html.twig - Bridge/Youtube/upload.html.twig - Bridge/Youtube/video_modify.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig + prod/Tooltip/DCESFieldInfo.html.twig web/developers/application_form.html.twig @@ -2473,8 +2474,8 @@ Details Détails - admin/collection/details.html.twig admin/databox/details.html.twig + admin/collection/details.html.twig Developpeur @@ -2489,9 +2490,9 @@ Dimension Dimensions + Media/Subdef/Image.php Media/Subdef/Unknown.php Media/Subdef/Video.php - Media/Subdef/Image.php Disable document type sharing @@ -2697,9 +2698,9 @@ Edition de 1 element Edition de 1 document - Bridge/Flickr/photo_modify.html.twig Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/video_modify.html.twig + Bridge/Flickr/photo_modify.html.twig Edition des droits de %display_name% @@ -2752,8 +2753,8 @@ Email E-mail - admin/publications/fiche.html.twig web/admin/dashboard.html.twig + admin/publications/fiche.html.twig Email '%email%' for login '%login%' already exists in database @@ -2783,8 +2784,8 @@ Email successfully confirmed Adresse e-mail confirmée avec succès - Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Notification/Mail/MailSuccessEmailConfirmationRegistered.php + Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Email test result : %email_status% @@ -2859,8 +2860,8 @@ En cours d'encodage En cours d'encodage - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php actions/Bridge/records_list.html.twig @@ -3007,8 +3008,8 @@ Erreur ! Erreur - web/lightbox/error.html.twig mobile/lightbox/error.html.twig + web/lightbox/error.html.twig Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas @@ -3101,8 +3102,8 @@ Error while sending the file Erreur lors de l'envoi du fichier - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Error while uploading @@ -3112,8 +3113,8 @@ Etendue de la publication Etendue de la publication - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Etes vous sur de supprimer %number% photos ? @@ -3198,10 +3199,10 @@ Feedback Validation Controller/Prod/LanguageController.php - web/prod/toolbar.html.twig - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig + web/prod/toolbar.html.twig Feeds @@ -3256,11 +3257,11 @@ File is not present in quarantine anymore, please refresh Ce fichier n'est plus en quarantaine, rafraichissez la page - Controller/Prod/LazaretController.php - Controller/Prod/LazaretController.php Model/Manipulator/LazaretManipulator.php Model/Manipulator/LazaretManipulator.php Model/Manipulator/LazaretManipulator.php + Controller/Prod/LazaretController.php + Controller/Prod/LazaretController.php File is too big : 64k max @@ -3295,8 +3296,8 @@ Fils disponibles Fils disponibles - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig Filter @@ -3334,8 +3335,8 @@ Flatten layers Aplatir les calques - Media/Subdef/Unknown.php Media/Subdef/Image.php + Media/Subdef/Unknown.php Focal length @@ -3365,10 +3366,10 @@ Forgot password? Mot de passe oublié ? - login/oauth/login.html.twig - login/providers/bind.html.twig login/providers/mapping.html.twig + login/providers/bind.html.twig web/login/index.html.twig + login/oauth/login.html.twig Forgot your password? @@ -3448,8 +3449,8 @@ Generates an image Generates an image - Media/Subdef/Unknown.php Media/Subdef/Image.php + Media/Subdef/Unknown.php Geo Search @@ -3565,9 +3566,9 @@ Hello %username% Bonjour %username%, - api/auth/end_user_authorization.html.twig - api/auth/native_app_access_token.html.twig api/auth/end_user_authorization.html.twig + api/auth/native_app_access_token.html.twig + api/auth/end_user_authorization.html.twig Help @@ -3587,11 +3588,11 @@ Home Accueil - login/layout/base-layout.html.twig - login/include/language-block.html.twig - mobile/lightbox/validate.html.twig mobile/lightbox/basket_element.html.twig mobile/lightbox/feed.html.twig + mobile/lightbox/validate.html.twig + login/include/language-block.html.twig + login/layout/base-layout.html.twig Homepage slideshow @@ -3768,8 +3769,8 @@ Invalid file format Format de fichier incorrect - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Invalid file type @@ -3780,9 +3781,9 @@ Invalid file type, only (%supported_file_types%) file formats are supported Type de fichier non supportés. Seuls les types de fichiers %supported_file_types% sont supportés. - admin/statusbit/edit.html.twig - user/import/file.html.twig admin/databox/databox.html.twig + user/import/file.html.twig + admin/statusbit/edit.html.twig Invalid file type, only (%supported_file_types%) file formats are supported' @@ -3792,8 +3793,8 @@ Invalid labels parameter Paramètre de label incorrect - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Invalid link. @@ -3855,8 +3856,8 @@ L'upload a echoue L'upload a échoué - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php L'upload concernant le record %title% sur le compte %bridge_name% a echoue pour les raisons suivantes : %reason% @@ -3893,20 +3894,20 @@ La taille maximale d'une video est de %duration% minutes. La durée d'une vidéo est limitée à %duration% minutes. - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video a ete rejetee La vidéo a été rejetée - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video a ete supprimee La vidéo a été supprimée - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video est restreinte @@ -4002,16 +4003,16 @@ Le poids maximum d'un fichier est de %size% Le poids de fichier est limité à %size% - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Le record n'a pas de fichier physique L'enregistrement n'a pas de fichier physique - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Le token n'a pas encore ete genere @@ -4032,9 +4033,9 @@ Les elements ne peuvent etre uploades (problemes de type ou de droit) Les documents ne peuvent être ajoutés (problème de type de fichiers ou de droits) - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Youtube/upload.html.twig + Bridge/Flickr/upload.html.twig Les indications donnees ci dessous sont a titre informatif. @@ -4155,9 +4156,9 @@ Identifiant Form/Login/PhraseaAuthenticationForm.php actions/Feedback/ListsMacros.html.twig - login/oauth/login.html.twig - login/providers/bind.html.twig login/providers/mapping.html.twig + login/providers/bind.html.twig + login/oauth/login.html.twig Login %login% already exists in database @@ -4177,8 +4178,8 @@ Login to link your account Connectez-vous pour lier votre compte - login/providers/bind.html.twig login/providers/mapping.html.twig + login/providers/bind.html.twig Logs @@ -4310,8 +4311,8 @@ Missing labels parameter Paramètre de label manquant - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Missing mandatory parameter %parameter% @@ -4430,9 +4431,9 @@ Name Nom Controller/Prod/LanguageController.php - prod/templates/push.html.twig - actions/Download/prepare.html.twig Bridge/Dailymotion/playlist_createcontainer.html.twig + actions/Download/prepare.html.twig + prod/templates/push.html.twig admin/fields/templates.html.twig @@ -4453,8 +4454,8 @@ Ne pas autoriser Ne pas autoriser - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Ne pas creer de DataBox maintenant @@ -4470,14 +4471,14 @@ New password Nouveau mot de passe - Form/Login/PhraseaRecoverPasswordForm.php Form/Login/PhraseaRenewPasswordForm.php + Form/Login/PhraseaRecoverPasswordForm.php New password (confirmation) Confirmer le nouveau mot de passe - Form/Login/PhraseaRecoverPasswordForm.php Form/Login/PhraseaRenewPasswordForm.php + Form/Login/PhraseaRecoverPasswordForm.php New task @@ -4622,8 +4623,8 @@ Non-Restreinte (publique) Non restreinte (publique) - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig None @@ -4721,7 +4722,7 @@ Number of records to process per batch Nombre d'enregistrements à traiter par lot - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig Number of replicas @@ -4743,8 +4744,8 @@ OK OK - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Ok @@ -4796,8 +4797,8 @@ Or login with Ou se connecter avec web/login/register.html.twig - login/oauth/login.html.twig web/login/index.html.twig + login/oauth/login.html.twig api/auth/end_user_authorization.html.twig @@ -4858,9 +4859,9 @@ Page Page + actions/Bridge/paginator.html.twig prod/upload/lazaret.html.twig prod/upload/lazaret.html.twig - actions/Bridge/paginator.html.twig Pages @@ -4870,25 +4871,25 @@ Paniers Paniers - web/account/account.html.twig - web/lightbox/validate.html.twig - lightbox/IE6/validate.html.twig - web/lightbox/index.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/account/account.html.twig + web/lightbox/index.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig Par %author% Par %author% - prod/results/entry.html.twig - prod/results/feeds_entry.html.twig mobile/lightbox/feed.html.twig + prod/results/feeds_entry.html.twig + prod/results/entry.html.twig Password Mot de passe - Form/Login/PhraseaRegisterForm.php Form/Login/PhraseaAuthenticationForm.php + Form/Login/PhraseaRegisterForm.php web/account/account.html.twig @@ -4996,8 +4997,8 @@ Playlists Listes de lecture - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Please accept the terms of use to register. @@ -5163,8 +5164,8 @@ Problemes de connexion ? Problème de connexion ? - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Process the registration @@ -5195,8 +5196,8 @@ Publications Publications web/prod/index.html.twig - web/admin/tree.html.twig admin/publications/wrapper.html.twig + web/admin/tree.html.twig web/common/menubar.html.twig @@ -5207,8 +5208,8 @@ Publique Publique - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Publishers @@ -5218,8 +5219,8 @@ Push Push - Controller/Prod/LanguageController.php eventsmanager/notify/push.php + Controller/Prod/LanguageController.php Push configuration @@ -5286,8 +5287,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Quality Qualité - Media/Subdef/Unknown.php Media/Subdef/Image.php + Media/Subdef/Unknown.php Quarantine @@ -5409,13 +5410,13 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Re-ordonner Ordonner prod/Baskets/Reorder.html.twig - prod/Story/Reorder.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig + prod/Story/Reorder.html.twig Read-only @@ -5450,8 +5451,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Received from %user_name% Reçu de %user_name% - WorkZone/Browser/Results.html.twig WorkZone/Browser/Basket.html.twig + WorkZone/Browser/Results.html.twig Reception d'un rapport de validation @@ -5569,8 +5570,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Inscription web/login/register-classic.html.twig web/login/register.html.twig - login/include/register-link-block.html.twig web/login/register-provider.html.twig + login/include/register-link-block.html.twig Register approbation @@ -5612,8 +5613,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Remove ICC Profile Retirer le profil ICC - Media/Subdef/Unknown.php Media/Subdef/Image.php + Media/Subdef/Unknown.php Remove current Range @@ -5727,8 +5728,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Resolution Résolution - Media/Subdef/Unknown.php Media/Subdef/Image.php + Media/Subdef/Unknown.php Resource URL @@ -5743,12 +5744,12 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Restart the task every X records Redémarrer la tâche tous les X enregistrements - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig Restart the task if memory reaches Redémarrer la tâche si la mémoire utilisée atteint - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig Reste @@ -5758,8 +5759,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Restriction Restriction - web/admin/editusers_quotas.html.twig admin/publications/list.html.twig + web/admin/editusers_quotas.html.twig Restrictions de telechargement @@ -5876,12 +5877,12 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Sauvegarder actions/Feedback/list.html.twig web/account/change-password.html.twig - task-manager/task-editor/task.html.twig - admin/search-engine/elastic-search.html.twig admin/search-engine/general-aggregation.html.twig - web/login/renew-password.html.twig + admin/search-engine/elastic-search.html.twig + task-manager/task-editor/task.html.twig web/developers/application.html.twig web/developers/application.html.twig + web/login/renew-password.html.twig Save all changes @@ -5942,14 +5943,14 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis See documentation at %url% Voir la documentation en ligne à l'adresse %url% - Form/Configuration/ExecutablesFormType.php Form/Configuration/WebservicesFormType.php + Form/Configuration/ExecutablesFormType.php See my order Voir ma commande - Notification/Mail/MailInfoOrderDelivered.php Notification/Mail/MailInfoOrderCancelled.php + Notification/Mail/MailInfoOrderDelivered.php See others @@ -5997,9 +5998,9 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig + user/import/file.html.twig admin/statusbit/edit.html.twig admin/statusbit/edit.html.twig - user/import/file.html.twig Selected base(s) @@ -6015,10 +6016,10 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Send Envoyer Controller/Prod/LanguageController.php - prod/upload/upload.html.twig - prod/upload/upload-flash.html.twig prod/actions/Push.html.twig prod/actions/Push.html.twig + prod/upload/upload.html.twig + prod/upload/upload-flash.html.twig prod/orders/order_item.html.twig prod/orders/order_item.html.twig web/admin/dashboard.html.twig @@ -6054,8 +6055,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Sent for validation to %list_participants% Envoyé pour validation à %list_participants% - WorkZone/Browser/Results.html.twig WorkZone/Browser/Basket.html.twig + WorkZone/Browser/Results.html.twig Separator @@ -6085,8 +6086,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Set labels Définir les labels - admin/collection/collection.html.twig admin/databox/databox.html.twig + admin/collection/collection.html.twig Set statuses restrictions @@ -6101,8 +6102,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Setup Paramétrage - web/admin/tree.html.twig web/admin/setup.html.twig + web/admin/tree.html.twig Setup my password @@ -6132,8 +6133,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Short description Description brève - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Shutter speed @@ -6174,8 +6175,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Size Taille - actions/Download/prepare.html.twig actions/Tools/videoEditor.html.twig + actions/Download/prepare.html.twig web/common/technical_datas.html.twig @@ -6238,8 +6239,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Sous-titre Sous-titre - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Space bar @@ -6270,8 +6271,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Start validation Démarrer la validation - Notification/Mail/MailInfoValidationRequest.php Notification/Mail/MailInfoValidationReminder.php + Notification/Mail/MailInfoValidationRequest.php Started @@ -6385,8 +6386,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Success Succès - web/common/dialog_export.html.twig api/auth/native_app_access_token.html.twig + web/common/dialog_export.html.twig Successful install @@ -6396,22 +6397,16 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Successful removal Suppression effectuée + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php Successful update Mise à jour réussie - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php @@ -6419,10 +6414,16 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php actions/Tools/videoEditor.html.twig web/admin/databases.html.twig - admin/collection/suggested_value.html.twig admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig Successfull connection @@ -6495,11 +6496,11 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Tags Tags - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/upload.html.twig Bridge/Youtube/video_modify.html.twig + Bridge/Flickr/upload.html.twig Target Device @@ -6641,8 +6642,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis The file is too big Le fichier est trop gros - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php The file was moved to the quarantine @@ -6657,8 +6658,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis The publication has been stopped La publication a été suspendue - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php The record was successfully created @@ -6829,18 +6830,18 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Titre Titre prod/Baskets/Reorder.html.twig - prod/Story/Reorder.html.twig + Bridge/Dailymotion/upload.html.twig + Bridge/Dailymotion/video_modify.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/upload.html.twig + Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photoset_createcontainer.html.twig Bridge/Flickr/upload.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/upload.html.twig - Bridge/Dailymotion/video_modify.html.twig - Bridge/Youtube/upload.html.twig - Bridge/Youtube/video_modify.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig + prod/Story/Reorder.html.twig + admin/publications/fiche.html.twig admin/publications/list.html.twig admin/publications/list.html.twig - admin/publications/fiche.html.twig Toggle loop @@ -6865,8 +6866,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Total Total - admin/collection/details.html.twig admin/databox/details.html.twig + admin/collection/details.html.twig Tous @@ -6907,7 +6908,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Try to extract embedded thumbnails Essayer d'extraire les vignettes intégrées - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig Type @@ -6958,8 +6959,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Unable to add file to Phraseanet Impossible d'ajouter des fichiers à Phraseanet - Controller/Prod/UploadController.php Controller/Admin/FeedController.php + Controller/Prod/UploadController.php Unable to add usr to list @@ -6969,8 +6970,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Unable to authenticate with %provider_name% Impossible de s'authentifier avec %provider_name% - Controller/Api/OAuth2Controller.php Controller/Root/LoginController.php + Controller/Api/OAuth2Controller.php Unable to connect to MySQL server @@ -7012,8 +7013,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Unable to retrieve provider identity Impossible de récupérer l'identité auprès du fournisseur. - Controller/Api/OAuth2Controller.php Controller/Root/LoginController.php + Controller/Api/OAuth2Controller.php Unable to send the documents @@ -7055,10 +7056,10 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Une selection une sélection "sans titre" - eventsmanager/notify/validate.php - eventsmanager/notify/validate.php eventsmanager/notify/validationreminder.php eventsmanager/notify/validationreminder.php + eventsmanager/notify/validate.php + eventsmanager/notify/validate.php Unhandled Error @@ -7108,15 +7109,15 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Upload Ajouter - prod/upload/upload.html.twig - prod/upload/upload-flash.html.twig - Bridge/Flickr/upload.html.twig - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Youtube/upload.html.twig Bridge/Youtube/upload.html.twig actions/Bridge/index.html.twig + Bridge/Flickr/upload.html.twig + Bridge/Flickr/upload.html.twig + prod/upload/upload.html.twig + prod/upload/upload-flash.html.twig web/common/menubar.html.twig @@ -7270,8 +7271,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis VALIDATION Validation - web/lightbox/validate.html.twig web/lightbox/agreement_box.html.twig + web/lightbox/validate.html.twig Validate e-mail address @@ -7281,11 +7282,11 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Validation Validation - eventsmanager/notify/validate.php - eventsmanager/notify/validate.php + eventsmanager/notify/validationdone.php eventsmanager/notify/validationreminder.php eventsmanager/notify/validationreminder.php - eventsmanager/notify/validationdone.php + eventsmanager/notify/validate.php + eventsmanager/notify/validate.php lightbox/IE6/validate.html.twig @@ -7301,11 +7302,11 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Validations Validations - web/lightbox/validate.html.twig - lightbox/IE6/validate.html.twig - web/lightbox/index.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/lightbox/index.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig Validations received @@ -7355,8 +7356,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Videos Vidéos - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php View on %title% @@ -7376,14 +7377,14 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Voici vos paniers Paniers disponibles - web/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/lightbox/index.html.twig Voici vos validations en cours Demandes de validations en cours - web/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/lightbox/index.html.twig Votre adresse email @@ -7513,10 +7514,10 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Vous n'avez selectionne aucun element Aucun document sélectionné - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Youtube/upload.html.twig actions/Bridge/index.html.twig + Bridge/Flickr/upload.html.twig Vous ne pouvez pas editer plusieurs elements simultanement @@ -7562,8 +7563,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Watch my access requests status Consulter l'état de ma demande d'accès - Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Notification/Mail/MailSuccessAccessRequest.php + Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Watermark @@ -7609,9 +7610,9 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Whoops, looks like something went wrong. Zut ! Quelque chose s'est mal passé. - Event/Subscriber/ApiOauth2ErrorsSubscriber.php Phrasea/Core/PhraseaExceptionHandler.php Phrasea/Core/PhraseaExceptionHandler.php + Event/Subscriber/ApiOauth2ErrorsSubscriber.php Would you like to continue ? @@ -7970,82 +7971,82 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis action : collection Déplacer - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig action : editer Editer - web/prod/toolbar.html.twig - prod/preview/caption.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig + prod/preview/caption.html.twig action : exporter Exporter + prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/preview/tools.html.twig - prod/WorkZone/Story.html.twig - prod/WorkZone/Basket.html.twig web/prod/index.html.twig - web/lightbox/validate.html.twig web/lightbox/feed.html.twig - lightbox/IE6/validate.html.twig lightbox/IE6/feed.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig action : outils Outils - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig action : print Imprimer + prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/preview/tools.html.twig - prod/WorkZone/Story.html.twig - prod/WorkZone/Basket.html.twig action : publier Publier - web/prod/toolbar.html.twig - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig + web/prod/toolbar.html.twig web/prod/index.html.twig action : push Push - web/prod/toolbar.html.twig - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig + web/prod/toolbar.html.twig action : status Propriétés - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig action : supprimer Supprimer - web/prod/toolbar.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig + web/prod/toolbar.html.twig action:: nouveau panier @@ -8284,8 +8285,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::base:collection: Creer une collection Créer une collection - admin/collection/create.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig admin::base:collection: Monter une collection @@ -8301,8 +8302,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces Copier les droits utilisateur de la collection : - admin/collection/create.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig admin::base:collection: activer la collection @@ -8313,10 +8314,10 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::base:collection: aucun fichier (minilogo, watermark ...) Aucun fichier + admin/databox/databox.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig - admin/databox/databox.html.twig admin::base:collection: descativer la collection @@ -8445,8 +8446,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::compte-utilisateur activite Activité - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig admin/user/registrations.html.twig @@ -8454,8 +8455,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::compte-utilisateur adresse Adresse - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig admin/user/registrations.html.twig @@ -8469,8 +8470,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::compte-utilisateur code postal Code postal - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig web/common/dialog_export.html.twig @@ -8493,20 +8494,20 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::compte-utilisateur email E-mail - Event/Subscriber/RegistrationSubscriber.php Controller/Admin/UserController.php + Event/Subscriber/RegistrationSubscriber.php web/account/account.html.twig web/admin/editusers.html.twig web/admin/users.html.twig - web/admin/connected-users.html.twig admin/user/registrations.html.twig + web/admin/connected-users.html.twig web/common/dialog_export.html.twig admin::compte-utilisateur fax Fax - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig web/common/dialog_export.html.twig @@ -8520,6 +8521,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::compte-utilisateur identifiant Identifiant Core/Provider/RegistrationServiceProvider.php + api/auth/end_user_authorization.html.twig web/account/reset-email.html.twig web/account/account.html.twig web/account/account.html.twig @@ -8527,27 +8529,26 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis web/admin/users.html.twig admin/user/registrations.html.twig web/common/dialog_export.html.twig - api/auth/end_user_authorization.html.twig admin::compte-utilisateur mot de passe Mot de passe + api/auth/end_user_authorization.html.twig web/setup/step2.html.twig web/account/reset-email.html.twig web/account/account.html.twig web/common/dialog_export.html.twig - api/auth/end_user_authorization.html.twig admin::compte-utilisateur nom Nom + Controller/Admin/UserController.php Core/Provider/RegistrationServiceProvider.php Event/Subscriber/RegistrationSubscriber.php - Controller/Admin/UserController.php web/account/account.html.twig web/admin/editusers.html.twig - web/admin/connected-users.html.twig admin/user/registrations.html.twig + web/admin/connected-users.html.twig web/common/dialog_export.html.twig @@ -8564,8 +8565,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::compte-utilisateur poste Poste - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig admin/user/registrations.html.twig @@ -8574,9 +8575,9 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::compte-utilisateur prenom Prénom + Controller/Admin/UserController.php Core/Provider/RegistrationServiceProvider.php Event/Subscriber/RegistrationSubscriber.php - Controller/Admin/UserController.php web/account/account.html.twig web/admin/editusers.html.twig admin/user/registrations.html.twig @@ -8592,13 +8593,13 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::compte-utilisateur societe Société - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig web/admin/users.html.twig - web/admin/connected-users.html.twig admin/user/registrations.html.twig + web/admin/connected-users.html.twig web/common/dialog_export.html.twig @@ -8612,8 +8613,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis Controller/Admin/UserController.php web/account/account.html.twig web/admin/editusers.html.twig - web/admin/connected-users.html.twig admin/user/registrations.html.twig + web/admin/connected-users.html.twig web/common/dialog_export.html.twig @@ -8624,8 +8625,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis admin::compte-utilisateur ville Ville - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig web/common/dialog_export.html.twig @@ -8761,26 +8762,26 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le admin::monitor: module admin Admin - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig web/common/menubar.html.twig admin::monitor: module client Classic - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php classes/record/preview.php classes/record/preview.php classes/record/preview.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig admin::monitor: module comparateur Lightbox - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig @@ -8791,44 +8792,44 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le admin::monitor: module production Production - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php classes/record/preview.php classes/record/preview.php classes/record/preview.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig admin::monitor: module report Report - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig web/common/menubar.html.twig admin::monitor: module thesaurus Thesaurus - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig web/common/menubar.html.twig admin::monitor: module upload Upload - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/common/menubar.html.twig admin::monitor: module validation Lightbox + lib/classes/phrasea.php Phrasea/Controller/LightboxController.php Phrasea/Controller/LightboxController.php Phrasea/Controller/LightboxController.php Controller/Admin/ConnectedUsersController.php - lib/classes/phrasea.php web/common/menubar.html.twig @@ -8864,8 +8865,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le admin::plugins: plugins Plugins - web/admin/tree.html.twig admin/plugins/index.html.twig + web/admin/tree.html.twig admin::plugins: retrieveConfigurationError @@ -9062,8 +9063,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le audio audios Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig avril @@ -9124,35 +9125,35 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le Annuler Controller/Prod/LanguageController.php Controller/Prod/LanguageController.php - prod/actions/edit_default.html.twig - prod/actions/edit_default.html.twig - Bridge/Flickr/photo_modify.html.twig - Bridge/Flickr/photo_modify.html.twig Bridge/Dailymotion/video_modify.html.twig Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Youtube/video_modify.html.twig - web/thesaurus/link-field-step2.html.twig - web/thesaurus/accept.html.twig - web/thesaurus/accept.html.twig - web/thesaurus/import-dialog.html.twig + Bridge/Flickr/photo_modify.html.twig + Bridge/Flickr/photo_modify.html.twig + prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig web/thesaurus/export-text-dialog.html.twig - web/thesaurus/export-topics-dialog.html.twig - web/thesaurus/link-field-step1.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig + web/thesaurus/import-dialog.html.twig + web/thesaurus/link-field-step2.html.twig + web/thesaurus/accept.html.twig + web/thesaurus/accept.html.twig + web/thesaurus/export-topics-dialog.html.twig web/thesaurus/new-term.html.twig web/thesaurus/new-term.html.twig + web/thesaurus/link-field-step1.html.twig web/account/reset-email.html.twig admin/publications/fiche.html.twig admin/collection/create.html.twig web/admin/index.html.twig - web/report/all_content.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig + web/report/all_content.html.twig boutton::appliquer @@ -9193,8 +9194,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le boutton::editer Editer - prod/results/entry.html.twig prod/results/feeds_entry.html.twig + prod/results/entry.html.twig boutton::enregistrer @@ -9221,17 +9222,17 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le boutton::fermer Fermer Controller/Prod/LanguageController.php + prod/actions/Push.html.twig prod/actions/edit_default.html.twig prod/actions/edit_default.html.twig - prod/actions/Push.html.twig + web/thesaurus/properties.html.twig web/thesaurus/accept.html.twig web/thesaurus/accept.html.twig web/thesaurus/export-topics.html.twig web/thesaurus/link-field-step3.html.twig - web/thesaurus/properties.html.twig web/lightbox/sc_note.html.twig - web/report/all_content.html.twig web/common/dialog_export.html.twig + web/report/all_content.html.twig boutton::generer @@ -9246,9 +9247,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le boutton::modifier Modifier - Bridge/Flickr/actionelement.html.twig Bridge/Dailymotion/actionelement.html.twig Bridge/Youtube/actionelement.html.twig + Bridge/Flickr/actionelement.html.twig web/admin/users.html.twig @@ -9305,24 +9306,24 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le boutton::retour Retour + Bridge/Dailymotion/video_deleteelement.html.twig + Bridge/Dailymotion/playlist_createcontainer.html.twig + Bridge/Dailymotion/video_moveinto_playlist.html.twig + Bridge/Dailymotion/playlist_deleteelement.html.twig + Bridge/Youtube/video_deleteelement.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/video_moveinto_playlist.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig Bridge/Flickr/photo_deleteelement.html.twig + Bridge/Flickr/photoset_deleteelement.html.twig Bridge/Flickr/photo_moveinto_photoset.html.twig Bridge/Flickr/photoset_createcontainer.html.twig - Bridge/Flickr/photoset_deleteelement.html.twig - Bridge/Dailymotion/playlist_deleteelement.html.twig - Bridge/Dailymotion/video_deleteelement.html.twig - Bridge/Dailymotion/video_moveinto_playlist.html.twig - Bridge/Dailymotion/playlist_createcontainer.html.twig - Bridge/Youtube/playlist_deleteelement.html.twig - Bridge/Youtube/video_deleteelement.html.twig - Bridge/Youtube/video_moveinto_playlist.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig - admin/publications/fiche.html.twig web/admin/editusers.html.twig - admin/collection/details.html.twig - admin/statusbit/edit.html.twig - user/import/file.html.twig + admin/publications/fiche.html.twig admin/databox/details.html.twig + admin/collection/details.html.twig + user/import/file.html.twig + admin/statusbit/edit.html.twig web/developers/application_form.html.twig web/developers/application.html.twig @@ -9349,24 +9350,24 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le boutton::supprimer Supprimer Controller/Prod/LanguageController.php - prod/results/entry.html.twig - prod/results/feeds_entry.html.twig - Bridge/Flickr/actionelements.html.twig - Bridge/Flickr/actioncontainers.html.twig + actions/Bridge/disconnected.html.twig Bridge/Dailymotion/actionelements.html.twig Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actionelements.html.twig Bridge/Youtube/actioncontainers.html.twig - actions/Bridge/disconnected.html.twig + Bridge/Flickr/actionelements.html.twig + Bridge/Flickr/actioncontainers.html.twig + prod/results/feeds_entry.html.twig + prod/results/entry.html.twig web/prod/index.html.twig web/thesaurus/presets.html.twig - admin/publications/list.html.twig admin/publications/fiche.html.twig - admin/collection/suggested_value.html.twig + admin/publications/list.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig web/admin/subdefs.html.twig @@ -9379,10 +9380,10 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le boutton::telecharger tous les documents Tout télécharger - web/lightbox/validate.html.twig web/lightbox/feed.html.twig - lightbox/IE6/validate.html.twig lightbox/IE6/feed.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig boutton::tester @@ -9394,57 +9395,57 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le boutton::valider Valider Controller/Prod/LanguageController.php - prod/Baskets/Reorder.html.twig + mobile/lightbox/note_form.html.twig prod/Baskets/Update.html.twig - prod/Story/Reorder.html.twig - prod/actions/edit_default.html.twig - prod/actions/edit_default.html.twig + prod/Baskets/Reorder.html.twig + Bridge/Dailymotion/video_deleteelement.html.twig + Bridge/Dailymotion/playlist_createcontainer.html.twig + Bridge/Dailymotion/video_moveinto_playlist.html.twig + Bridge/Dailymotion/video_modify.html.twig + Bridge/Dailymotion/playlist_deleteelement.html.twig + Bridge/Youtube/video_deleteelement.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/video_moveinto_playlist.html.twig + Bridge/Youtube/video_modify.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig Bridge/Flickr/photo_deleteelement.html.twig + Bridge/Flickr/photoset_deleteelement.html.twig Bridge/Flickr/photo_moveinto_photoset.html.twig Bridge/Flickr/photoset_createcontainer.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Flickr/photoset_deleteelement.html.twig - Bridge/Dailymotion/playlist_deleteelement.html.twig - Bridge/Dailymotion/video_deleteelement.html.twig - Bridge/Dailymotion/video_moveinto_playlist.html.twig - Bridge/Dailymotion/video_modify.html.twig - Bridge/Dailymotion/playlist_createcontainer.html.twig - Bridge/Youtube/playlist_deleteelement.html.twig - Bridge/Youtube/video_deleteelement.html.twig - Bridge/Youtube/video_moveinto_playlist.html.twig - Bridge/Youtube/video_modify.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig + prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig + prod/Story/Reorder.html.twig web/prod/index.html.twig + web/thesaurus/export-text-dialog.html.twig + web/thesaurus/thesaurus.html.twig + web/thesaurus/import-dialog.html.twig web/thesaurus/link-field-step2.html.twig web/thesaurus/accept.html.twig - web/thesaurus/import-dialog.html.twig - web/thesaurus/export-text-dialog.html.twig web/thesaurus/export-topics-dialog.html.twig - web/thesaurus/link-field-step1.html.twig - web/thesaurus/thesaurus.html.twig + web/thesaurus/index.html.twig web/thesaurus/new-term.html.twig web/thesaurus/new-term.html.twig - web/thesaurus/index.html.twig - web/account/reset-email.html.twig + web/thesaurus/link-field-step1.html.twig web/account/access.html.twig + web/account/reset-email.html.twig web/account/account.html.twig - admin/publications/list.html.twig - admin/publications/fiche.html.twig - web/admin/editusers.html.twig - admin/collection/reorder.html.twig - admin/collection/suggested_value.html.twig - admin/collection/create.html.twig - admin/collection/collection.html.twig - web/admin/setup.html.twig - admin/statusbit/edit.html.twig web/admin/dashboard.html.twig + web/admin/editusers.html.twig + admin/publications/fiche.html.twig + admin/publications/list.html.twig + web/admin/setup.html.twig + admin/collection/create.html.twig + admin/collection/reorder.html.twig + admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig + web/admin/subdefs.html.twig + web/admin/structure.html.twig user/import/view.html.twig admin/user/registrations.html.twig - web/admin/structure.html.twig - web/admin/subdefs.html.twig - web/report/all_content.html.twig + admin/statusbit/edit.html.twig web/developers/application_form.html.twig - mobile/lightbox/note_form.html.twig + web/report/all_content.html.twig boutton::vue graphique @@ -9542,8 +9543,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le choisir Choisir web/prod/index.html.twig - admin/collection/create.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig classe @@ -9633,8 +9634,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le dans %feed_name% dans %feed_name% - prod/results/entry.html.twig prod/results/feeds_entry.html.twig + prod/results/entry.html.twig date dajout @@ -9670,9 +9671,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le document documents Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig document original @@ -9829,8 +9830,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le flash Flash Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig for the following reasons : %reasons% @@ -9953,8 +9954,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le image images Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig image rotation @@ -10039,8 +10040,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le lightbox::recaptitulatif Récapitulatif - web/lightbox/validate.html.twig web/lightbox/agreement_box.html.twig + web/lightbox/validate.html.twig login:: Changer mon adresse email @@ -10077,8 +10078,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le login::erreur: Erreur d'authentification Erreur d'authentification - Controller/Api/OAuth2Controller.php Controller/Root/LoginController.php + Controller/Api/OAuth2Controller.php login::erreur: No available connection - Please contact sys-admin @@ -10098,8 +10099,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le login::notification: Mise a jour du mot de passe avec succes Mise à jour du mot de passe effectuée - Controller/Root/AccountController.php Controller/Root/LoginController.php + Controller/Root/AccountController.php login::notification: demande de confirmation par mail envoyee @@ -10115,14 +10116,14 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le login::register: merci d'avoir confirme votre adresse email Merci d'avoir confirmé votre adresse e-mail - Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Notification/Mail/MailSuccessEmailConfirmationRegistered.php + Notification/Mail/MailSuccessEmailConfirmationUnregistered.php login::register: sujet email : confirmation de votre adresse email Confirmation de votre adresse e-mail - Notification/Mail/MailRequestEmailConfirmation.php Notification/Mail/MailRequestEmailUpdate.php + Notification/Mail/MailRequestEmailConfirmation.php login::register:email: Voici un compte rendu du traitement de vos demandes d'acces : @@ -10189,8 +10190,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le no Non web/account/sessions.html.twig - user/import/view.html.twig web/admin/subdefs.html.twig + user/import/view.html.twig web/common/technical_datas.html.twig @@ -10208,10 +10209,10 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le notice Notice - web/lightbox/validate.html.twig web/lightbox/feed.html.twig - lightbox/IE6/validate.html.twig lightbox/IE6/feed.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig nouveau @@ -10664,8 +10665,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le phraseanet:: details Détails - admin/collection/collection.html.twig admin/databox/databox.html.twig + admin/collection/collection.html.twig phraseanet:: hostname @@ -10727,18 +10728,18 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le phraseanet:: sous definition Sous-définition - module/report/filter.php classes/module/report.php + module/report/filter.php phraseanet:: thesaurus Thésaurus prod/actions/edit_default.html.twig web/prod/tab_headers.html.twig - web/thesaurus/load-thesaurus.html.twig - web/thesaurus/load-thesaurus.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig + web/thesaurus/load-thesaurus.html.twig + web/thesaurus/load-thesaurus.html.twig web/thesaurus/index.html.twig @@ -11005,20 +11006,20 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le preview:: arreter le diaporama Arrêter - prod/preview/feed_train.html.twig prod/preview/basket_train.html.twig - prod/preview/reg_train.html.twig prod/preview/result_train.html.twig + prod/preview/reg_train.html.twig prod/preview/result_train_options.html.twig + prod/preview/feed_train.html.twig preview:: demarrer le diaporama Diaporama - prod/preview/feed_train.html.twig prod/preview/basket_train.html.twig - prod/preview/reg_train.html.twig prod/preview/result_train.html.twig + prod/preview/reg_train.html.twig prod/preview/result_train_options.html.twig + prod/preview/feed_train.html.twig preview::date @@ -11414,8 +11415,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le prod::tools: document Document - Controller/Prod/ShareController.php Controller/Prod/ToolsController.php + Controller/Prod/ShareController.php prod:app trash: also-move-record @@ -11498,26 +11499,26 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le publication : autheur Auteur - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : email autheur Adresse e-mail de l'auteur - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : sous titre Sous-titre - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : titre Titre de la publication - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications. @@ -11571,16 +11572,16 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le rafraichir Rafraîchir + prod/WorkZone/Story.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Basket.html.twig prod/results/feeds.html.twig prod/results/feeds.html.twig - prod/WorkZone/Story.html.twig - prod/WorkZone/Basket.html.twig - prod/WorkZone/Macros.html.twig recordtype Type d'enregistrement - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig regeneration of sub-definitions @@ -11785,14 +11786,14 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le report:: collections Collections - module/report/filter.php classes/module/report.php + module/report/filter.php report:: commentaire Commentaire - module/report/filter.php classes/module/report.php + module/report/filter.php report:: copyright @@ -11802,9 +11803,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le report:: date Date - module/report/filter.php classes/module/report.php classes/module/report.php + module/report/filter.php report:: document ajoute @@ -11855,21 +11856,21 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le report:: non-renseigne Non-Renseigné - module/report/edit.php - module/report/validate.php + module/report/add.php + module/report/question.php + module/report/download.php module/report/activity.php module/report/activity.php module/report/activity.php - module/report/download.php - module/report/push.php - module/report/nav.php - module/report/sent.php module/report/connexion.php module/report/connexion.php module/report/connexion.php + module/report/push.php + module/report/sent.php + module/report/validate.php + module/report/nav.php + module/report/edit.php module/report/filter.php - module/report/add.php - module/report/question.php report:: page d'accueil @@ -11901,9 +11902,9 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le report:: question Questions - module/report/filter.php - module/report/question.php classes/module/report.php + module/report/question.php + module/report/filter.php report:: questions @@ -11923,8 +11924,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le report:: record id recordId - module/report/filter.php classes/module/report.php + module/report/filter.php report:: resolution @@ -12295,8 +12296,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le status:: numero de bit Status n° - admin/statusbit/edit.html.twig web/admin/statusbit.html.twig + admin/statusbit/edit.html.twig status:: retrouver sous forme de filtre dans la recherche @@ -12336,12 +12337,12 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le task::archive:Archivage Archive dans la collection - TaskManager/Job/ArchiveJob.php + TaskManager/Job/ArchiveJob.php task::archive:Archiving files found into a 'hotfolder' Archiver les fichiers déposés dans le dossier - TaskManager/Job/ArchiveJob.php + TaskManager/Job/ArchiveJob.php task::archive:archivage sur base/collection/ @@ -12715,15 +12716,15 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le thesaurus:: export au format texte Texte - web/thesaurus/export-text.html.twig web/thesaurus/export-text-dialog.html.twig web/thesaurus/export-text-dialog.html.twig + web/thesaurus/export-text.html.twig thesaurus:: export en topics Thèmes - web/thesaurus/export-topics.html.twig web/thesaurus/export-topics-dialog.html.twig + web/thesaurus/export-topics.html.twig thesaurus:: exporter @@ -13031,7 +13032,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le unknown Inconnu - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig untitled @@ -13082,14 +13083,14 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le validation:: NON Non - web/lightbox/agreement_box.html.twig mobile/lightbox/basket_element.html.twig + web/lightbox/agreement_box.html.twig validation:: OUI Oui - web/lightbox/agreement_box.html.twig mobile/lightbox/basket_element.html.twig + web/lightbox/agreement_box.html.twig validation:: editer ma note @@ -13109,10 +13110,10 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le validation::envoyer mon rapport Envoyer mon rapport - web/lightbox/basket_options.html.twig - web/lightbox/basket_options.html.twig mobile/lightbox/validate.html.twig mobile/lightbox/validate.html.twig + web/lightbox/basket_options.html.twig + web/lightbox/basket_options.html.twig version @@ -13127,8 +13128,8 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le video vidéo - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig video range extractor diff --git a/resources/locales/messages.nl.xlf b/resources/locales/messages.nl.xlf index e07bd7a9f0..2b08839c6b 100644 --- a/resources/locales/messages.nl.xlf +++ b/resources/locales/messages.nl.xlf @@ -1,6 +1,6 @@ - +
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message. @@ -115,9 +115,9 @@ %basket_length% documents %basket_length% documenten + mobile/lightbox/validate.html.twig web/lightbox/index.html.twig web/lightbox/index.html.twig - mobile/lightbox/validate.html.twig %countable% documents can not be modified. @@ -196,16 +196,16 @@ %nb_view% vue %nb_view% weergave - Bridge/Flickr/element_informations.html.twig Bridge/Dailymotion/element_informations.html.twig Bridge/Youtube/element_informations.html.twig + Bridge/Flickr/element_informations.html.twig %nb_view% vues %nb_view% weergaven - Bridge/Flickr/element_informations.html.twig Bridge/Dailymotion/element_informations.html.twig Bridge/Youtube/element_informations.html.twig + Bridge/Flickr/element_informations.html.twig selectionnes]]> @@ -250,8 +250,8 @@ %quantity% records added %quantity% records added - Controller/Prod/StoryController.php Controller/Prod/BasketController.php + Controller/Prod/StoryController.php %quantity% records moved @@ -631,12 +631,12 @@ Actions Acties - Bridge/Flickr/actionelements.html.twig - Bridge/Flickr/actioncontainers.html.twig Bridge/Dailymotion/actionelements.html.twig Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actionelements.html.twig Bridge/Youtube/actioncontainers.html.twig + Bridge/Flickr/actionelements.html.twig + Bridge/Flickr/actioncontainers.html.twig Activate highlight @@ -652,9 +652,9 @@ Activer Activeren + admin/databox/databox.html.twig web/admin/editusers_timelimit.html.twig web/admin/editusers_timelimit_sbas.html.twig - admin/databox/databox.html.twig Activer le grant_type de type password pour votre application @@ -674,9 +674,9 @@ Add Toevoegen + prod/actions/Push.html.twig prod/upload/lazaret.html.twig prod/upload/lazaret.html.twig - prod/actions/Push.html.twig prod/User/Add.html.twig @@ -825,9 +825,9 @@ Ajouter a Toevoegen aan - Bridge/Flickr/actionelements.html.twig Bridge/Dailymotion/actionelements.html.twig Bridge/Youtube/actionelements.html.twig + Bridge/Flickr/actionelements.html.twig Ajouter ma selection courrante @@ -855,13 +855,14 @@ All Alle Form/Configuration/CustomLinkFormType.php + WorkZone/Browser/Browser.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig actions/Feedback/list.html.twig - WorkZone/Browser/Browser.html.twig + task-manager/task-editor/subdefs.html.twig All these conditions @@ -953,11 +954,19 @@ An error occured Er is een fout opgetreden - Controller/Prod/StoryController.php - Controller/Prod/MoveCollectionController.php - Controller/Prod/LazaretController.php - Controller/Prod/ToolsController.php - Controller/Prod/BasketController.php + Model/Manipulator/LazaretManipulator.php + Model/Manipulator/LazaretManipulator.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php + Controller/Admin/DataboxesController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php @@ -969,25 +978,17 @@ Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php - Controller/Admin/DataboxesController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php - Model/Manipulator/LazaretManipulator.php - Model/Manipulator/LazaretManipulator.php - web/admin/databases.html.twig - admin/collection/suggested_value.html.twig - admin/collection/collection.html.twig - task-manager/task-editor/task.html.twig + Controller/Prod/BasketController.php + Controller/Prod/ToolsController.php + Controller/Prod/LazaretController.php + Controller/Prod/MoveCollectionController.php + Controller/Prod/StoryController.php web/admin/users.html.twig admin/databox/databox.html.twig + web/admin/databases.html.twig + admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig + task-manager/task-editor/task.html.twig An error occured while denying, please retry or contact an admin if problem persists @@ -1024,12 +1025,12 @@ An error occurred Er is een fout opgetreden Order/Controller/ProdOrderController.php - Controller/Api/V1Controller.php - Controller/Api/V1Controller.php - Controller/Prod/BasketController.php + Controller/Admin/DataboxController.php Controller/Admin/SearchEngineController.php Controller/Admin/CollectionController.php - Controller/Admin/DataboxController.php + Controller/Prod/BasketController.php + Controller/Api/V1Controller.php + Controller/Api/V1Controller.php web/admin/statusbit.html.twig @@ -1267,8 +1268,8 @@ Audio Codec Audio Codec - Media/Subdef/Video.php Media/Subdef/Audio.php + Media/Subdef/Video.php Audio Samplerate @@ -1359,20 +1360,20 @@ Autorisation d'acces Autorisation d'acces - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Autoriser Toestaan - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ? Autorisez-vous l'application %application_name% a acceder a votre contenu sur %home_title% ? - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Available in multi-export tab @@ -1387,11 +1388,11 @@ Back Terug - mobile/lightbox/validate.html.twig mobile/lightbox/basket_element.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig + mobile/lightbox/validate.html.twig Back to Feedback @@ -1412,9 +1413,9 @@ Bad request format, only JSON is allowed Slecht verzoek formaat, enkel JSON is toegestaan Controller/Root/AccountController.php + Controller/Admin/DataboxController.php Controller/Admin/RootController.php Controller/Admin/RootController.php - Controller/Admin/DataboxController.php Bad request, please contact an admin @@ -1563,8 +1564,8 @@ actions/Property/index.html.twig prod/User/Add.html.twig task-manager/task-editor/task.html.twig - admin/fields/templates.html.twig user/import/view.html.twig + admin/fields/templates.html.twig Cancel all @@ -1622,14 +1623,14 @@ Ce champ est obligatoire Dit veld is verplicht - Bridge/Api/Dailymotion.php - Bridge/Api/Dailymotion.php + Bridge/Api/Flickr.php + Bridge/Api/Flickr.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php Bridge/Api/Youtube.php - Bridge/Api/Flickr.php - Bridge/Api/Flickr.php + Bridge/Api/Dailymotion.php + Bridge/Api/Dailymotion.php Ce champ est relie a une branche de thesaurus @@ -1650,12 +1651,12 @@ Ce champ est trop long %length% caracteres max Ce champ est trop long %length% caracteres max - Bridge/Api/Dailymotion.php - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php + Bridge/Api/Dailymotion.php Ce champ est utilise en titre a l'affichage @@ -1766,8 +1767,8 @@ Clear Wis - admin/task-manager/log_scheduler.html.twig admin/task-manager/log_task.html.twig + admin/task-manager/log_scheduler.html.twig Clear list @@ -1814,8 +1815,8 @@ Collection Collectie - prod/upload/lazaret.html.twig prod/Story/Create.html.twig + prod/upload/lazaret.html.twig admin/databox/details.html.twig @@ -1852,8 +1853,8 @@ Commande Bestelling - eventsmanager/notify/orderdeliver.php eventsmanager/notify/ordernotdelivered.php + eventsmanager/notify/orderdeliver.php Commande du %date% @@ -1928,13 +1929,13 @@ Connection Verbinding - login/oauth/login.html.twig - login/providers/bind.html.twig - login/providers/bind.html.twig login/providers/mapping.html.twig login/providers/mapping.html.twig + login/providers/bind.html.twig + login/providers/bind.html.twig web/login/index.html.twig web/login/index.html.twig + login/oauth/login.html.twig Connection is OK but database does not exists or can not be accessed @@ -2055,9 +2056,9 @@ Creer Maken - Bridge/Flickr/actioncontainers.html.twig Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actioncontainers.html.twig + Bridge/Flickr/actioncontainers.html.twig Creer la tache d'ecriture des metadonnees @@ -2420,9 +2421,9 @@ Deplacement %n_element% elements %n_element% elementen verplaatsen - Bridge/Flickr/photo_moveinto_photoset.html.twig Bridge/Dailymotion/video_moveinto_playlist.html.twig Bridge/Youtube/video_moveinto_playlist.html.twig + Bridge/Flickr/photo_moveinto_photoset.html.twig Dernier access @@ -2432,8 +2433,8 @@ Derniere mise a jour le %updated_on% Laatste update %updated_on% - prod/results/entry.html.twig prod/results/feeds_entry.html.twig + prod/results/entry.html.twig Derniers envois @@ -2448,15 +2449,15 @@ Description Beschrijving - prod/Tooltip/DCESFieldInfo.html.twig + Bridge/Dailymotion/upload.html.twig + Bridge/Dailymotion/video_modify.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/upload.html.twig + Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photoset_createcontainer.html.twig Bridge/Flickr/upload.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/upload.html.twig - Bridge/Dailymotion/video_modify.html.twig - Bridge/Youtube/upload.html.twig - Bridge/Youtube/video_modify.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig + prod/Tooltip/DCESFieldInfo.html.twig web/developers/application_form.html.twig @@ -2480,8 +2481,8 @@ Details Details - admin/collection/details.html.twig admin/databox/details.html.twig + admin/collection/details.html.twig Developpeur @@ -2496,9 +2497,9 @@ Dimension Afmeting + Media/Subdef/Image.php Media/Subdef/Unknown.php Media/Subdef/Video.php - Media/Subdef/Image.php Disable document type sharing @@ -2704,9 +2705,9 @@ Edition de 1 element Editie van het 1 element - Bridge/Flickr/photo_modify.html.twig Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/video_modify.html.twig + Bridge/Flickr/photo_modify.html.twig Edition des droits de %display_name% @@ -2759,8 +2760,8 @@ Email Email - admin/publications/fiche.html.twig web/admin/dashboard.html.twig + admin/publications/fiche.html.twig Email '%email%' for login '%login%' already exists in database @@ -2790,8 +2791,8 @@ Email successfully confirmed Email met succes bevestigd - Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Notification/Mail/MailSuccessEmailConfirmationRegistered.php + Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Email test result : %email_status% @@ -2869,8 +2870,8 @@ En cours d'encodage Bezig met coderen - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php actions/Bridge/records_list.html.twig @@ -3017,8 +3018,8 @@ Erreur ! Fout ! - web/lightbox/error.html.twig mobile/lightbox/error.html.twig + web/lightbox/error.html.twig Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas @@ -3111,8 +3112,8 @@ Error while sending the file Fout bij het versturen van het bestaan - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Error while uploading @@ -3122,8 +3123,8 @@ Etendue de la publication Omvang van de publicatie - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Etes vous sur de supprimer %number% photos ? @@ -3208,10 +3209,10 @@ Feedback Feedback Controller/Prod/LanguageController.php - web/prod/toolbar.html.twig - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig + web/prod/toolbar.html.twig Feeds @@ -3266,11 +3267,11 @@ File is not present in quarantine anymore, please refresh Bestand is niet meer in de quarantiane aanwezig, gelieve te vernieuwen - Controller/Prod/LazaretController.php - Controller/Prod/LazaretController.php Model/Manipulator/LazaretManipulator.php Model/Manipulator/LazaretManipulator.php Model/Manipulator/LazaretManipulator.php + Controller/Prod/LazaretController.php + Controller/Prod/LazaretController.php File is too big : 64k max @@ -3305,8 +3306,8 @@ Fils disponibles Beschikbare paden - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig Filter @@ -3344,8 +3345,8 @@ Flatten layers Flatten layers - Media/Subdef/Unknown.php Media/Subdef/Image.php + Media/Subdef/Unknown.php Focal length @@ -3375,10 +3376,10 @@ Forgot password? Wachtwoord vergeten? - login/oauth/login.html.twig - login/providers/bind.html.twig login/providers/mapping.html.twig + login/providers/bind.html.twig web/login/index.html.twig + login/oauth/login.html.twig Forgot your password? @@ -3458,8 +3459,8 @@ Generates an image Generates an image - Media/Subdef/Unknown.php Media/Subdef/Image.php + Media/Subdef/Unknown.php Geo Search @@ -3575,9 +3576,9 @@ Hello %username% Hallo %username% - api/auth/end_user_authorization.html.twig - api/auth/native_app_access_token.html.twig api/auth/end_user_authorization.html.twig + api/auth/native_app_access_token.html.twig + api/auth/end_user_authorization.html.twig Help @@ -3597,11 +3598,11 @@ Home Startpagina - login/layout/base-layout.html.twig - login/include/language-block.html.twig - mobile/lightbox/validate.html.twig mobile/lightbox/basket_element.html.twig mobile/lightbox/feed.html.twig + mobile/lightbox/validate.html.twig + login/include/language-block.html.twig + login/layout/base-layout.html.twig Homepage slideshow @@ -3778,8 +3779,8 @@ Invalid file format Ongeldige bestandsindeling - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Invalid file type @@ -3790,9 +3791,9 @@ Invalid file type, only (%supported_file_types%) file formats are supported Ongeldig bestandsformaat, enkel (%supported_file_types%) bestandsformaten worden ondersteund - admin/statusbit/edit.html.twig - user/import/file.html.twig admin/databox/databox.html.twig + user/import/file.html.twig + admin/statusbit/edit.html.twig Invalid file type, only (%supported_file_types%) file formats are supported' @@ -3802,8 +3803,8 @@ Invalid labels parameter Ongeldige parameter voor labels - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Invalid link. @@ -3865,8 +3866,8 @@ L'upload a echoue De upload is mislukt - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php L'upload concernant le record %title% sur le compte %bridge_name% a echoue pour les raisons suivantes : %reason% @@ -3903,20 +3904,20 @@ La taille maximale d'une video est de %duration% minutes. La taille maximale d'une video est de %duration% minutes. - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video a ete rejetee De video werd verworpen - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video a ete supprimee De video werd verwijderd - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php La video est restreinte @@ -4012,16 +4013,16 @@ Le poids maximum d'un fichier est de %size% Le poids maximum d'un fichier est de %size% - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Le record n'a pas de fichier physique Het record heeft geen fisieke documenten - Bridge/Api/Dailymotion.php - Bridge/Api/Youtube.php Bridge/Api/Flickr.php + Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Le token n'a pas encore ete genere @@ -4042,9 +4043,9 @@ Les elements ne peuvent etre uploades (problemes de type ou de droit) De elementen kunnen niet worden geuploaded (problemen met het type of met de rechten) - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Youtube/upload.html.twig + Bridge/Flickr/upload.html.twig Les indications donnees ci dessous sont a titre informatif. @@ -4165,9 +4166,9 @@ Login Form/Login/PhraseaAuthenticationForm.php actions/Feedback/ListsMacros.html.twig - login/oauth/login.html.twig - login/providers/bind.html.twig login/providers/mapping.html.twig + login/providers/bind.html.twig + login/oauth/login.html.twig Login %login% already exists in database @@ -4187,8 +4188,8 @@ Login to link your account Login om uw gebruiker te linken - login/providers/bind.html.twig login/providers/mapping.html.twig + login/providers/bind.html.twig Logs @@ -4320,8 +4321,8 @@ Missing labels parameter Ontbrekende parameter voor labels - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php Missing mandatory parameter %parameter% @@ -4440,9 +4441,9 @@ Name Naam Controller/Prod/LanguageController.php - prod/templates/push.html.twig - actions/Download/prepare.html.twig Bridge/Dailymotion/playlist_createcontainer.html.twig + actions/Download/prepare.html.twig + prod/templates/push.html.twig admin/fields/templates.html.twig @@ -4463,8 +4464,8 @@ Ne pas autoriser Niet toestaan - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Ne pas creer de DataBox maintenant @@ -4480,14 +4481,14 @@ New password Nieuw wachtwoord - Form/Login/PhraseaRecoverPasswordForm.php Form/Login/PhraseaRenewPasswordForm.php + Form/Login/PhraseaRecoverPasswordForm.php New password (confirmation) Nieuw wachtwoord (bevestiging) - Form/Login/PhraseaRecoverPasswordForm.php Form/Login/PhraseaRenewPasswordForm.php + Form/Login/PhraseaRecoverPasswordForm.php New task @@ -4632,8 +4633,8 @@ Non-Restreinte (publique) Niet beperkt (publiek) - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig None @@ -4731,7 +4732,7 @@ Number of records to process per batch Number of records to process per batch - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig Number of replicas @@ -4753,8 +4754,8 @@ OK OK - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Ok @@ -4806,8 +4807,8 @@ Or login with Of meld aan met web/login/register.html.twig - login/oauth/login.html.twig web/login/index.html.twig + login/oauth/login.html.twig api/auth/end_user_authorization.html.twig @@ -4868,9 +4869,9 @@ Page Pagina + actions/Bridge/paginator.html.twig prod/upload/lazaret.html.twig prod/upload/lazaret.html.twig - actions/Bridge/paginator.html.twig Pages @@ -4880,25 +4881,25 @@ Paniers Mandjes - web/account/account.html.twig - web/lightbox/validate.html.twig - lightbox/IE6/validate.html.twig - web/lightbox/index.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/account/account.html.twig + web/lightbox/index.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig Par %author% Per %author% - prod/results/entry.html.twig - prod/results/feeds_entry.html.twig mobile/lightbox/feed.html.twig + prod/results/feeds_entry.html.twig + prod/results/entry.html.twig Password Wachtwoord - Form/Login/PhraseaRegisterForm.php Form/Login/PhraseaAuthenticationForm.php + Form/Login/PhraseaRegisterForm.php web/account/account.html.twig @@ -5006,8 +5007,8 @@ Playlists Afspeellijsten - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php Please accept the terms of use to register. @@ -5173,8 +5174,8 @@ Problemes de connexion ? Problemes de connexion ? - api/auth/end_user_authorization.html.twig api/auth/end_user_authorization.html.twig + api/auth/end_user_authorization.html.twig Process the registration @@ -5205,8 +5206,8 @@ Publications Publicaties web/prod/index.html.twig - web/admin/tree.html.twig admin/publications/wrapper.html.twig + web/admin/tree.html.twig web/common/menubar.html.twig @@ -5217,8 +5218,8 @@ Publique Publiek - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Publishers @@ -5228,8 +5229,8 @@ Push Push - Controller/Prod/LanguageController.php eventsmanager/notify/push.php + Controller/Prod/LanguageController.php Push configuration @@ -5294,8 +5295,8 @@ Quality Kwaliteit - Media/Subdef/Unknown.php Media/Subdef/Image.php + Media/Subdef/Unknown.php Quarantine @@ -5417,13 +5418,13 @@ Re-ordonner Hersorteren prod/Baskets/Reorder.html.twig - prod/Story/Reorder.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig + prod/Story/Reorder.html.twig Read-only @@ -5458,8 +5459,8 @@ Received from %user_name% Ontvangen van %user_name% - WorkZone/Browser/Results.html.twig WorkZone/Browser/Basket.html.twig + WorkZone/Browser/Results.html.twig Reception d'un rapport de validation @@ -5577,8 +5578,8 @@ Aanmelden web/login/register-classic.html.twig web/login/register.html.twig - login/include/register-link-block.html.twig web/login/register-provider.html.twig + login/include/register-link-block.html.twig Register approbation @@ -5620,8 +5621,8 @@ Remove ICC Profile Verwijder ICC Profiel - Media/Subdef/Unknown.php Media/Subdef/Image.php + Media/Subdef/Unknown.php Remove current Range @@ -5735,8 +5736,8 @@ Resolution Resolutie - Media/Subdef/Unknown.php Media/Subdef/Image.php + Media/Subdef/Unknown.php Resource URL @@ -5751,12 +5752,12 @@ Restart the task every X records Restart the task every X records - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig Restart the task if memory reaches Restart the task if memory reaches - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig Reste @@ -5766,8 +5767,8 @@ Restriction Beperking - web/admin/editusers_quotas.html.twig admin/publications/list.html.twig + web/admin/editusers_quotas.html.twig Restrictions de telechargement @@ -5884,12 +5885,12 @@ Opslaan actions/Feedback/list.html.twig web/account/change-password.html.twig - task-manager/task-editor/task.html.twig - admin/search-engine/elastic-search.html.twig admin/search-engine/general-aggregation.html.twig - web/login/renew-password.html.twig + admin/search-engine/elastic-search.html.twig + task-manager/task-editor/task.html.twig web/developers/application.html.twig web/developers/application.html.twig + web/login/renew-password.html.twig Save all changes @@ -5950,14 +5951,14 @@ See documentation at %url% See documentation at %url% - Form/Configuration/ExecutablesFormType.php Form/Configuration/WebservicesFormType.php + Form/Configuration/ExecutablesFormType.php See my order Bekijk mijn opdracht - Notification/Mail/MailInfoOrderDelivered.php Notification/Mail/MailInfoOrderCancelled.php + Notification/Mail/MailInfoOrderDelivered.php See others @@ -6005,9 +6006,9 @@ admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig + user/import/file.html.twig admin/statusbit/edit.html.twig admin/statusbit/edit.html.twig - user/import/file.html.twig Selected base(s) @@ -6023,10 +6024,10 @@ Send Versturen Controller/Prod/LanguageController.php - prod/upload/upload.html.twig - prod/upload/upload-flash.html.twig prod/actions/Push.html.twig prod/actions/Push.html.twig + prod/upload/upload.html.twig + prod/upload/upload-flash.html.twig prod/orders/order_item.html.twig prod/orders/order_item.html.twig web/admin/dashboard.html.twig @@ -6062,8 +6063,8 @@ Sent for validation to %list_participants% Voor goedkeuring verstuurd naar %list_participants% - WorkZone/Browser/Results.html.twig WorkZone/Browser/Basket.html.twig + WorkZone/Browser/Results.html.twig Separator @@ -6093,8 +6094,8 @@ Set labels Zet labels - admin/collection/collection.html.twig admin/databox/databox.html.twig + admin/collection/collection.html.twig Set statuses restrictions @@ -6109,8 +6110,8 @@ Setup Instellingen - web/admin/tree.html.twig web/admin/setup.html.twig + web/admin/tree.html.twig Setup my password @@ -6140,8 +6141,8 @@ Short description Korte beschrijving - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Shutter speed @@ -6182,8 +6183,8 @@ Size Grootte - actions/Download/prepare.html.twig actions/Tools/videoEditor.html.twig + actions/Download/prepare.html.twig web/common/technical_datas.html.twig @@ -6246,8 +6247,8 @@ Sous-titre Onder titel - admin/publications/list.html.twig admin/publications/fiche.html.twig + admin/publications/list.html.twig Space bar @@ -6278,8 +6279,8 @@ Start validation Start validatie - Notification/Mail/MailInfoValidationRequest.php Notification/Mail/MailInfoValidationReminder.php + Notification/Mail/MailInfoValidationRequest.php Started @@ -6393,8 +6394,8 @@ Success Gelukt - web/common/dialog_export.html.twig api/auth/native_app_access_token.html.twig + web/common/dialog_export.html.twig Successful install @@ -6404,22 +6405,16 @@ Successful removal Met succes verwijderd + Controller/Admin/DataboxController.php + Controller/Admin/DataboxController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php Controller/Admin/CollectionController.php - Controller/Admin/DataboxController.php - Controller/Admin/DataboxController.php Successful update Geslaagde update - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php @@ -6427,10 +6422,16 @@ Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php + Controller/Admin/CollectionController.php actions/Tools/videoEditor.html.twig web/admin/databases.html.twig - admin/collection/suggested_value.html.twig admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig Successfull connection @@ -6503,11 +6504,11 @@ Tags Trefwoorden - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/upload.html.twig Bridge/Youtube/video_modify.html.twig + Bridge/Flickr/upload.html.twig Target Device @@ -6649,8 +6650,8 @@ The file is too big Het bestand is te groot - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php The file was moved to the quarantine @@ -6665,8 +6666,8 @@ The publication has been stopped Het programma is gestopt - Controller/Admin/CollectionController.php Controller/Admin/DataboxController.php + Controller/Admin/CollectionController.php The record was successfully created @@ -6837,18 +6838,18 @@ Titre Titel prod/Baskets/Reorder.html.twig - prod/Story/Reorder.html.twig + Bridge/Dailymotion/upload.html.twig + Bridge/Dailymotion/video_modify.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/upload.html.twig + Bridge/Youtube/video_modify.html.twig Bridge/Flickr/photoset_createcontainer.html.twig Bridge/Flickr/upload.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Dailymotion/upload.html.twig - Bridge/Dailymotion/video_modify.html.twig - Bridge/Youtube/upload.html.twig - Bridge/Youtube/video_modify.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig + prod/Story/Reorder.html.twig + admin/publications/fiche.html.twig admin/publications/list.html.twig admin/publications/list.html.twig - admin/publications/fiche.html.twig Toggle loop @@ -6873,8 +6874,8 @@ Total Totaal - admin/collection/details.html.twig admin/databox/details.html.twig + admin/collection/details.html.twig Tous @@ -6915,7 +6916,7 @@ Try to extract embedded thumbnails Probeer om de ingesloten thumbnails te extraheren - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig Type @@ -6966,8 +6967,8 @@ Unable to add file to Phraseanet Onmogelijk om een bestand aan Phraseanet toe te voegen - Controller/Prod/UploadController.php Controller/Admin/FeedController.php + Controller/Prod/UploadController.php Unable to add usr to list @@ -6977,8 +6978,8 @@ Unable to authenticate with %provider_name% Unable to authenticate with %provider_name% - Controller/Api/OAuth2Controller.php Controller/Root/LoginController.php + Controller/Api/OAuth2Controller.php Unable to connect to MySQL server @@ -7020,8 +7021,8 @@ Unable to retrieve provider identity Het is niet mogelijk om de identiteit van de provider te ontvangen - Controller/Api/OAuth2Controller.php Controller/Root/LoginController.php + Controller/Api/OAuth2Controller.php Unable to send the documents @@ -7063,10 +7064,10 @@ Une selection Een selectie - eventsmanager/notify/validate.php - eventsmanager/notify/validate.php eventsmanager/notify/validationreminder.php eventsmanager/notify/validationreminder.php + eventsmanager/notify/validate.php + eventsmanager/notify/validate.php Unhandled Error @@ -7116,15 +7117,15 @@ Upload Upload - prod/upload/upload.html.twig - prod/upload/upload-flash.html.twig - Bridge/Flickr/upload.html.twig - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Youtube/upload.html.twig Bridge/Youtube/upload.html.twig actions/Bridge/index.html.twig + Bridge/Flickr/upload.html.twig + Bridge/Flickr/upload.html.twig + prod/upload/upload.html.twig + prod/upload/upload-flash.html.twig web/common/menubar.html.twig @@ -7278,8 +7279,8 @@ VALIDATION VALIDATIE - web/lightbox/validate.html.twig web/lightbox/agreement_box.html.twig + web/lightbox/validate.html.twig Validate e-mail address @@ -7289,11 +7290,11 @@ Validation Goedkeuring - eventsmanager/notify/validate.php - eventsmanager/notify/validate.php + eventsmanager/notify/validationdone.php eventsmanager/notify/validationreminder.php eventsmanager/notify/validationreminder.php - eventsmanager/notify/validationdone.php + eventsmanager/notify/validate.php + eventsmanager/notify/validate.php lightbox/IE6/validate.html.twig @@ -7309,11 +7310,11 @@ Validations Controles - web/lightbox/validate.html.twig - lightbox/IE6/validate.html.twig - web/lightbox/index.html.twig mobile/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/lightbox/index.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig Validations received @@ -7363,8 +7364,8 @@ Videos Video's - Bridge/Api/Dailymotion.php Bridge/Api/Youtube.php + Bridge/Api/Dailymotion.php View on %title% @@ -7384,14 +7385,14 @@ Voici vos paniers Uw mandjes - web/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/lightbox/index.html.twig Voici vos validations en cours Een controle in proces - web/lightbox/index.html.twig mobile/lightbox/index.html.twig + web/lightbox/index.html.twig Votre adresse email @@ -7521,10 +7522,10 @@ Vous n'avez selectionne aucun element U hebt geen enkel element geselecteerd - Bridge/Flickr/upload.html.twig Bridge/Dailymotion/upload.html.twig Bridge/Youtube/upload.html.twig actions/Bridge/index.html.twig + Bridge/Flickr/upload.html.twig Vous ne pouvez pas editer plusieurs elements simultanement @@ -7570,8 +7571,8 @@ Watch my access requests status Bekijk de status van mijn toegangsaanvraag - Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Notification/Mail/MailSuccessAccessRequest.php + Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Watermark @@ -7617,9 +7618,9 @@ Whoops, looks like something went wrong. Oeps, blijkbaar is er iets verkeerd gegaan. - Event/Subscriber/ApiOauth2ErrorsSubscriber.php Phrasea/Core/PhraseaExceptionHandler.php Phrasea/Core/PhraseaExceptionHandler.php + Event/Subscriber/ApiOauth2ErrorsSubscriber.php Would you like to continue ? @@ -7978,82 +7979,82 @@ action : collection Collectie - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig action : editer Wijzigen - web/prod/toolbar.html.twig - prod/preview/caption.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig + prod/preview/caption.html.twig action : exporter Exporteer + prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/preview/tools.html.twig - prod/WorkZone/Story.html.twig - prod/WorkZone/Basket.html.twig web/prod/index.html.twig - web/lightbox/validate.html.twig web/lightbox/feed.html.twig - lightbox/IE6/validate.html.twig lightbox/IE6/feed.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig action : outils Gereedschappen - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig action : print Print + prod/WorkZone/Story.html.twig + prod/WorkZone/Basket.html.twig web/prod/toolbar.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/results/record.html.twig prod/preview/tools.html.twig - prod/WorkZone/Story.html.twig - prod/WorkZone/Basket.html.twig action : publier Publiceren - web/prod/toolbar.html.twig - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig + web/prod/toolbar.html.twig web/prod/index.html.twig action : push Push - web/prod/toolbar.html.twig - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig + web/prod/toolbar.html.twig action : status Status - web/prod/toolbar.html.twig prod/WorkZone/Story.html.twig prod/WorkZone/Basket.html.twig + web/prod/toolbar.html.twig action : supprimer Verwijderen - web/prod/toolbar.html.twig prod/WorkZone/Macros.html.twig prod/WorkZone/Macros.html.twig + web/prod/toolbar.html.twig action:: nouveau panier @@ -8292,8 +8293,8 @@ admin::base:collection: Creer une collection Maak een collectie - admin/collection/create.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig admin::base:collection: Monter une collection @@ -8309,8 +8310,8 @@ admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces U kan een standaard collectie kiezen voor toegang te verlenen - admin/collection/create.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig admin::base:collection: activer la collection @@ -8321,10 +8322,10 @@ admin::base:collection: aucun fichier (minilogo, watermark ...) Geen enkel bestand (minilogo, watermerk ...) + admin/databox/databox.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig - admin/databox/databox.html.twig admin::base:collection: descativer la collection @@ -8453,8 +8454,8 @@ admin::compte-utilisateur activite Activiteit - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig admin/user/registrations.html.twig @@ -8462,8 +8463,8 @@ admin::compte-utilisateur adresse Adres - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig admin/user/registrations.html.twig @@ -8477,8 +8478,8 @@ admin::compte-utilisateur code postal Postcode - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig web/common/dialog_export.html.twig @@ -8501,20 +8502,20 @@ admin::compte-utilisateur email Email - Event/Subscriber/RegistrationSubscriber.php Controller/Admin/UserController.php + Event/Subscriber/RegistrationSubscriber.php web/account/account.html.twig web/admin/editusers.html.twig web/admin/users.html.twig - web/admin/connected-users.html.twig admin/user/registrations.html.twig + web/admin/connected-users.html.twig web/common/dialog_export.html.twig admin::compte-utilisateur fax Fax - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig web/common/dialog_export.html.twig @@ -8528,6 +8529,7 @@ admin::compte-utilisateur identifiant Identificatie Core/Provider/RegistrationServiceProvider.php + api/auth/end_user_authorization.html.twig web/account/reset-email.html.twig web/account/account.html.twig web/account/account.html.twig @@ -8535,27 +8537,26 @@ web/admin/users.html.twig admin/user/registrations.html.twig web/common/dialog_export.html.twig - api/auth/end_user_authorization.html.twig admin::compte-utilisateur mot de passe Paswoord + api/auth/end_user_authorization.html.twig web/setup/step2.html.twig web/account/reset-email.html.twig web/account/account.html.twig web/common/dialog_export.html.twig - api/auth/end_user_authorization.html.twig admin::compte-utilisateur nom Naam + Controller/Admin/UserController.php Core/Provider/RegistrationServiceProvider.php Event/Subscriber/RegistrationSubscriber.php - Controller/Admin/UserController.php web/account/account.html.twig web/admin/editusers.html.twig - web/admin/connected-users.html.twig admin/user/registrations.html.twig + web/admin/connected-users.html.twig web/common/dialog_export.html.twig @@ -8572,8 +8573,8 @@ admin::compte-utilisateur poste Postcode - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig admin/user/registrations.html.twig @@ -8582,9 +8583,9 @@ admin::compte-utilisateur prenom Voornaam + Controller/Admin/UserController.php Core/Provider/RegistrationServiceProvider.php Event/Subscriber/RegistrationSubscriber.php - Controller/Admin/UserController.php web/account/account.html.twig web/admin/editusers.html.twig admin/user/registrations.html.twig @@ -8600,13 +8601,13 @@ admin::compte-utilisateur societe Bedrijf - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig web/admin/users.html.twig - web/admin/connected-users.html.twig admin/user/registrations.html.twig + web/admin/connected-users.html.twig web/common/dialog_export.html.twig @@ -8620,8 +8621,8 @@ Controller/Admin/UserController.php web/account/account.html.twig web/admin/editusers.html.twig - web/admin/connected-users.html.twig admin/user/registrations.html.twig + web/admin/connected-users.html.twig web/common/dialog_export.html.twig @@ -8632,8 +8633,8 @@ admin::compte-utilisateur ville Star - Core/Provider/RegistrationServiceProvider.php Controller/Admin/UserController.php + Core/Provider/RegistrationServiceProvider.php web/account/account.html.twig web/admin/editusers.html.twig web/common/dialog_export.html.twig @@ -8768,26 +8769,26 @@ admin::monitor: module admin Beheerder - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig web/common/menubar.html.twig admin::monitor: module client Klant module - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php classes/record/preview.php classes/record/preview.php classes/record/preview.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig admin::monitor: module comparateur Vergelijkings module - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig @@ -8798,44 +8799,44 @@ admin::monitor: module production Productie - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php classes/record/preview.php classes/record/preview.php classes/record/preview.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig admin::monitor: module report Rapport - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig web/common/menubar.html.twig admin::monitor: module thesaurus Thesaurus - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/admin/connected-users.html.twig web/common/menubar.html.twig admin::monitor: module upload Upload - Controller/Admin/ConnectedUsersController.php lib/classes/phrasea.php + Controller/Admin/ConnectedUsersController.php web/common/menubar.html.twig admin::monitor: module validation Lightbox + lib/classes/phrasea.php Phrasea/Controller/LightboxController.php Phrasea/Controller/LightboxController.php Phrasea/Controller/LightboxController.php Controller/Admin/ConnectedUsersController.php - lib/classes/phrasea.php web/common/menubar.html.twig @@ -8871,8 +8872,8 @@ admin::plugins: plugins admin::plugins: plugins - web/admin/tree.html.twig admin/plugins/index.html.twig + web/admin/tree.html.twig admin::plugins: retrieveConfigurationError @@ -9069,8 +9070,8 @@ audio Audio Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig avril @@ -9131,35 +9132,35 @@ Annuleer Controller/Prod/LanguageController.php Controller/Prod/LanguageController.php - prod/actions/edit_default.html.twig - prod/actions/edit_default.html.twig - Bridge/Flickr/photo_modify.html.twig - Bridge/Flickr/photo_modify.html.twig Bridge/Dailymotion/video_modify.html.twig Bridge/Dailymotion/video_modify.html.twig Bridge/Youtube/video_modify.html.twig Bridge/Youtube/video_modify.html.twig - web/thesaurus/link-field-step2.html.twig - web/thesaurus/accept.html.twig - web/thesaurus/accept.html.twig - web/thesaurus/import-dialog.html.twig + Bridge/Flickr/photo_modify.html.twig + Bridge/Flickr/photo_modify.html.twig + prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig web/thesaurus/export-text-dialog.html.twig - web/thesaurus/export-topics-dialog.html.twig - web/thesaurus/link-field-step1.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig + web/thesaurus/import-dialog.html.twig + web/thesaurus/link-field-step2.html.twig + web/thesaurus/accept.html.twig + web/thesaurus/accept.html.twig + web/thesaurus/export-topics-dialog.html.twig web/thesaurus/new-term.html.twig web/thesaurus/new-term.html.twig + web/thesaurus/link-field-step1.html.twig web/account/reset-email.html.twig admin/publications/fiche.html.twig admin/collection/create.html.twig web/admin/index.html.twig - web/report/all_content.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig web/common/dialog_export.html.twig + web/report/all_content.html.twig boutton::appliquer @@ -9200,8 +9201,8 @@ boutton::editer Bewerken - prod/results/entry.html.twig prod/results/feeds_entry.html.twig + prod/results/entry.html.twig boutton::enregistrer @@ -9228,17 +9229,17 @@ boutton::fermer Sluiten Controller/Prod/LanguageController.php + prod/actions/Push.html.twig prod/actions/edit_default.html.twig prod/actions/edit_default.html.twig - prod/actions/Push.html.twig + web/thesaurus/properties.html.twig web/thesaurus/accept.html.twig web/thesaurus/accept.html.twig web/thesaurus/export-topics.html.twig web/thesaurus/link-field-step3.html.twig - web/thesaurus/properties.html.twig web/lightbox/sc_note.html.twig - web/report/all_content.html.twig web/common/dialog_export.html.twig + web/report/all_content.html.twig boutton::generer @@ -9253,9 +9254,9 @@ boutton::modifier bewerken - Bridge/Flickr/actionelement.html.twig Bridge/Dailymotion/actionelement.html.twig Bridge/Youtube/actionelement.html.twig + Bridge/Flickr/actionelement.html.twig web/admin/users.html.twig @@ -9312,24 +9313,24 @@ boutton::retour terug + Bridge/Dailymotion/video_deleteelement.html.twig + Bridge/Dailymotion/playlist_createcontainer.html.twig + Bridge/Dailymotion/video_moveinto_playlist.html.twig + Bridge/Dailymotion/playlist_deleteelement.html.twig + Bridge/Youtube/video_deleteelement.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/video_moveinto_playlist.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig Bridge/Flickr/photo_deleteelement.html.twig + Bridge/Flickr/photoset_deleteelement.html.twig Bridge/Flickr/photo_moveinto_photoset.html.twig Bridge/Flickr/photoset_createcontainer.html.twig - Bridge/Flickr/photoset_deleteelement.html.twig - Bridge/Dailymotion/playlist_deleteelement.html.twig - Bridge/Dailymotion/video_deleteelement.html.twig - Bridge/Dailymotion/video_moveinto_playlist.html.twig - Bridge/Dailymotion/playlist_createcontainer.html.twig - Bridge/Youtube/playlist_deleteelement.html.twig - Bridge/Youtube/video_deleteelement.html.twig - Bridge/Youtube/video_moveinto_playlist.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig - admin/publications/fiche.html.twig web/admin/editusers.html.twig - admin/collection/details.html.twig - admin/statusbit/edit.html.twig - user/import/file.html.twig + admin/publications/fiche.html.twig admin/databox/details.html.twig + admin/collection/details.html.twig + user/import/file.html.twig + admin/statusbit/edit.html.twig web/developers/application_form.html.twig web/developers/application.html.twig @@ -9356,24 +9357,24 @@ boutton::supprimer verwijderen Controller/Prod/LanguageController.php - prod/results/entry.html.twig - prod/results/feeds_entry.html.twig - Bridge/Flickr/actionelements.html.twig - Bridge/Flickr/actioncontainers.html.twig + actions/Bridge/disconnected.html.twig Bridge/Dailymotion/actionelements.html.twig Bridge/Dailymotion/actioncontainers.html.twig Bridge/Youtube/actionelements.html.twig Bridge/Youtube/actioncontainers.html.twig - actions/Bridge/disconnected.html.twig + Bridge/Flickr/actionelements.html.twig + Bridge/Flickr/actioncontainers.html.twig + prod/results/feeds_entry.html.twig + prod/results/entry.html.twig web/prod/index.html.twig web/thesaurus/presets.html.twig - admin/publications/list.html.twig admin/publications/fiche.html.twig - admin/collection/suggested_value.html.twig + admin/publications/list.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig web/admin/subdefs.html.twig @@ -9386,10 +9387,10 @@ boutton::telecharger tous les documents Alle documenten downloaden - web/lightbox/validate.html.twig web/lightbox/feed.html.twig - lightbox/IE6/validate.html.twig lightbox/IE6/feed.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig boutton::tester @@ -9401,57 +9402,57 @@ boutton::valider bevestigen Controller/Prod/LanguageController.php - prod/Baskets/Reorder.html.twig + mobile/lightbox/note_form.html.twig prod/Baskets/Update.html.twig - prod/Story/Reorder.html.twig - prod/actions/edit_default.html.twig - prod/actions/edit_default.html.twig + prod/Baskets/Reorder.html.twig + Bridge/Dailymotion/video_deleteelement.html.twig + Bridge/Dailymotion/playlist_createcontainer.html.twig + Bridge/Dailymotion/video_moveinto_playlist.html.twig + Bridge/Dailymotion/video_modify.html.twig + Bridge/Dailymotion/playlist_deleteelement.html.twig + Bridge/Youtube/video_deleteelement.html.twig + Bridge/Youtube/playlist_createcontainer.html.twig + Bridge/Youtube/video_moveinto_playlist.html.twig + Bridge/Youtube/video_modify.html.twig + Bridge/Youtube/playlist_deleteelement.html.twig Bridge/Flickr/photo_deleteelement.html.twig + Bridge/Flickr/photoset_deleteelement.html.twig Bridge/Flickr/photo_moveinto_photoset.html.twig Bridge/Flickr/photoset_createcontainer.html.twig Bridge/Flickr/photo_modify.html.twig - Bridge/Flickr/photoset_deleteelement.html.twig - Bridge/Dailymotion/playlist_deleteelement.html.twig - Bridge/Dailymotion/video_deleteelement.html.twig - Bridge/Dailymotion/video_moveinto_playlist.html.twig - Bridge/Dailymotion/video_modify.html.twig - Bridge/Dailymotion/playlist_createcontainer.html.twig - Bridge/Youtube/playlist_deleteelement.html.twig - Bridge/Youtube/video_deleteelement.html.twig - Bridge/Youtube/video_moveinto_playlist.html.twig - Bridge/Youtube/video_modify.html.twig - Bridge/Youtube/playlist_createcontainer.html.twig + prod/actions/edit_default.html.twig + prod/actions/edit_default.html.twig + prod/Story/Reorder.html.twig web/prod/index.html.twig + web/thesaurus/export-text-dialog.html.twig + web/thesaurus/thesaurus.html.twig + web/thesaurus/import-dialog.html.twig web/thesaurus/link-field-step2.html.twig web/thesaurus/accept.html.twig - web/thesaurus/import-dialog.html.twig - web/thesaurus/export-text-dialog.html.twig web/thesaurus/export-topics-dialog.html.twig - web/thesaurus/link-field-step1.html.twig - web/thesaurus/thesaurus.html.twig + web/thesaurus/index.html.twig web/thesaurus/new-term.html.twig web/thesaurus/new-term.html.twig - web/thesaurus/index.html.twig - web/account/reset-email.html.twig + web/thesaurus/link-field-step1.html.twig web/account/access.html.twig + web/account/reset-email.html.twig web/account/account.html.twig - admin/publications/list.html.twig - admin/publications/fiche.html.twig - web/admin/editusers.html.twig - admin/collection/reorder.html.twig - admin/collection/suggested_value.html.twig - admin/collection/create.html.twig - admin/collection/collection.html.twig - web/admin/setup.html.twig - admin/statusbit/edit.html.twig web/admin/dashboard.html.twig + web/admin/editusers.html.twig + admin/publications/fiche.html.twig + admin/publications/list.html.twig + web/admin/setup.html.twig + admin/collection/create.html.twig + admin/collection/reorder.html.twig + admin/collection/collection.html.twig + admin/collection/suggested_value.html.twig + web/admin/subdefs.html.twig + web/admin/structure.html.twig user/import/view.html.twig admin/user/registrations.html.twig - web/admin/structure.html.twig - web/admin/subdefs.html.twig - web/report/all_content.html.twig + admin/statusbit/edit.html.twig web/developers/application_form.html.twig - mobile/lightbox/note_form.html.twig + web/report/all_content.html.twig boutton::vue graphique @@ -9549,8 +9550,8 @@ choisir kiezen web/prod/index.html.twig - admin/collection/create.html.twig admin/databox/databox.html.twig + admin/collection/create.html.twig classe @@ -9640,8 +9641,8 @@ dans %feed_name% in %feed_name% - prod/results/entry.html.twig prod/results/feeds_entry.html.twig + prod/results/entry.html.twig date dajout @@ -9677,9 +9678,9 @@ document document Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig document original @@ -9836,8 +9837,8 @@ flash flash Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig for the following reasons : %reasons% @@ -9960,8 +9961,8 @@ image Beeld Phrasea/Twig/PhraseanetExtension.php - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig image rotation @@ -10046,8 +10047,8 @@ lightbox::recaptitulatif Beknopt - web/lightbox/validate.html.twig web/lightbox/agreement_box.html.twig + web/lightbox/validate.html.twig login:: Changer mon adresse email @@ -10084,8 +10085,8 @@ login::erreur: Erreur d'authentification Verificatiefout - Controller/Api/OAuth2Controller.php Controller/Root/LoginController.php + Controller/Api/OAuth2Controller.php login::erreur: No available connection - Please contact sys-admin @@ -10105,8 +10106,8 @@ login::notification: Mise a jour du mot de passe avec succes Update van het paswoord met succes uitgevoerd - Controller/Root/AccountController.php Controller/Root/LoginController.php + Controller/Root/AccountController.php login::notification: demande de confirmation par mail envoyee @@ -10122,14 +10123,14 @@ login::register: merci d'avoir confirme votre adresse email Bedankt om uw email adres te vallideren - Notification/Mail/MailSuccessEmailConfirmationUnregistered.php Notification/Mail/MailSuccessEmailConfirmationRegistered.php + Notification/Mail/MailSuccessEmailConfirmationUnregistered.php login::register: sujet email : confirmation de votre adresse email Onderwerp email: bevestiging van uw email adres - Notification/Mail/MailRequestEmailConfirmation.php Notification/Mail/MailRequestEmailUpdate.php + Notification/Mail/MailRequestEmailConfirmation.php login::register:email: Voici un compte rendu du traitement de vos demandes d'acces : @@ -10196,8 +10197,8 @@ no Nee web/account/sessions.html.twig - user/import/view.html.twig web/admin/subdefs.html.twig + user/import/view.html.twig web/common/technical_datas.html.twig @@ -10215,10 +10216,10 @@ notice mededeling - web/lightbox/validate.html.twig web/lightbox/feed.html.twig - lightbox/IE6/validate.html.twig lightbox/IE6/feed.html.twig + lightbox/IE6/validate.html.twig + web/lightbox/validate.html.twig nouveau @@ -10671,8 +10672,8 @@ phraseanet:: details Details - admin/collection/collection.html.twig admin/databox/databox.html.twig + admin/collection/collection.html.twig phraseanet:: hostname @@ -10734,18 +10735,18 @@ phraseanet:: sous definition Per definitie - module/report/filter.php classes/module/report.php + module/report/filter.php phraseanet:: thesaurus Thesaurus prod/actions/edit_default.html.twig web/prod/tab_headers.html.twig - web/thesaurus/load-thesaurus.html.twig - web/thesaurus/load-thesaurus.html.twig web/thesaurus/thesaurus.html.twig web/thesaurus/thesaurus.html.twig + web/thesaurus/load-thesaurus.html.twig + web/thesaurus/load-thesaurus.html.twig web/thesaurus/index.html.twig @@ -11012,20 +11013,20 @@ preview:: arreter le diaporama stop de slideshow - prod/preview/feed_train.html.twig prod/preview/basket_train.html.twig - prod/preview/reg_train.html.twig prod/preview/result_train.html.twig + prod/preview/reg_train.html.twig prod/preview/result_train_options.html.twig + prod/preview/feed_train.html.twig preview:: demarrer le diaporama start de slideshow - prod/preview/feed_train.html.twig prod/preview/basket_train.html.twig - prod/preview/reg_train.html.twig prod/preview/result_train.html.twig + prod/preview/reg_train.html.twig prod/preview/result_train_options.html.twig + prod/preview/feed_train.html.twig preview::date @@ -11421,8 +11422,8 @@ prod::tools: document prod::tools: document - Controller/Prod/ShareController.php Controller/Prod/ToolsController.php + Controller/Prod/ShareController.php prod:app trash: also-move-record @@ -11505,26 +11506,26 @@ publication : autheur Auteur - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : email autheur Email auteur - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : sous titre Onder titel - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication : titre Titel - actions/publish/publish_edit.html.twig actions/publish/publish.html.twig + actions/publish/publish_edit.html.twig publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications. @@ -11578,16 +11579,16 @@ rafraichir vernieuwen + prod/WorkZone/Story.html.twig + prod/WorkZone/Macros.html.twig + prod/WorkZone/Basket.html.twig prod/results/feeds.html.twig prod/results/feeds.html.twig - prod/WorkZone/Story.html.twig - prod/WorkZone/Basket.html.twig - prod/WorkZone/Macros.html.twig recordtype recordtype - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig regeneration of sub-definitions @@ -11792,14 +11793,14 @@ report:: collections Collecties - module/report/filter.php classes/module/report.php + module/report/filter.php report:: commentaire Commentaar - module/report/filter.php classes/module/report.php + module/report/filter.php report:: copyright @@ -11809,9 +11810,9 @@ report:: date Datum - module/report/filter.php classes/module/report.php classes/module/report.php + module/report/filter.php report:: document ajoute @@ -11862,21 +11863,21 @@ report:: non-renseigne Niet-informatief - module/report/edit.php - module/report/validate.php + module/report/add.php + module/report/question.php + module/report/download.php module/report/activity.php module/report/activity.php module/report/activity.php - module/report/download.php - module/report/push.php - module/report/nav.php - module/report/sent.php module/report/connexion.php module/report/connexion.php module/report/connexion.php + module/report/push.php + module/report/sent.php + module/report/validate.php + module/report/nav.php + module/report/edit.php module/report/filter.php - module/report/add.php - module/report/question.php report:: page d'accueil @@ -11908,9 +11909,9 @@ report:: question Vraag - module/report/filter.php - module/report/question.php classes/module/report.php + module/report/question.php + module/report/filter.php report:: questions @@ -11930,8 +11931,8 @@ report:: record id Record id - module/report/filter.php classes/module/report.php + module/report/filter.php report:: resolution @@ -12302,8 +12303,8 @@ status:: numero de bit aantal bit - admin/statusbit/edit.html.twig web/admin/statusbit.html.twig + admin/statusbit/edit.html.twig status:: retrouver sous forme de filtre dans la recherche @@ -12343,12 +12344,12 @@ task::archive:Archivage Archivering - TaskManager/Job/ArchiveJob.php + TaskManager/Job/ArchiveJob.php task::archive:Archiving files found into a 'hotfolder' Archivering files gevonden in een 'hotfolder' - TaskManager/Job/ArchiveJob.php + TaskManager/Job/ArchiveJob.php task::archive:archivage sur base/collection/ @@ -12722,15 +12723,15 @@ thesaurus:: export au format texte Export in text format - web/thesaurus/export-text.html.twig web/thesaurus/export-text-dialog.html.twig web/thesaurus/export-text-dialog.html.twig + web/thesaurus/export-text.html.twig thesaurus:: export en topics Exporteer in topics - web/thesaurus/export-topics.html.twig web/thesaurus/export-topics-dialog.html.twig + web/thesaurus/export-topics.html.twig thesaurus:: exporter @@ -13038,7 +13039,7 @@ unknown unknown - task-manager/task-editor/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig untitled @@ -13089,14 +13090,14 @@ validation:: NON NEE - web/lightbox/agreement_box.html.twig mobile/lightbox/basket_element.html.twig + web/lightbox/agreement_box.html.twig validation:: OUI JA - web/lightbox/agreement_box.html.twig mobile/lightbox/basket_element.html.twig + web/lightbox/agreement_box.html.twig validation:: editer ma note @@ -13116,10 +13117,10 @@ validation::envoyer mon rapport stuur mijn rapport - web/lightbox/basket_options.html.twig - web/lightbox/basket_options.html.twig mobile/lightbox/validate.html.twig mobile/lightbox/validate.html.twig + web/lightbox/basket_options.html.twig + web/lightbox/basket_options.html.twig version @@ -13134,8 +13135,8 @@ video video - task-manager/task-editor/subdefs.html.twig web/admin/subdefs.html.twig + task-manager/task-editor/subdefs.html.twig video range extractor diff --git a/resources/locales/validators.de.xlf b/resources/locales/validators.de.xlf index 1196a8e865..f160aedb25 100644 --- a/resources/locales/validators.de.xlf +++ b/resources/locales/validators.de.xlf @@ -1,6 +1,6 @@ - +
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message. @@ -9,8 +9,8 @@ Please provide the same passwords. Bitte geben Sie diesselbe Passwörter ein. - Form/Login/PhraseaRecoverPasswordForm.php Form/Login/PhraseaRenewPasswordForm.php + Form/Login/PhraseaRecoverPasswordForm.php Form/Login/PhraseaRegisterForm.php diff --git a/resources/locales/validators.en.xlf b/resources/locales/validators.en.xlf index 9ff15ac3d6..32a6d1b782 100644 --- a/resources/locales/validators.en.xlf +++ b/resources/locales/validators.en.xlf @@ -1,6 +1,6 @@ - +
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message. @@ -9,8 +9,8 @@ Please provide the same passwords. Please provide the same passwords. - Form/Login/PhraseaRecoverPasswordForm.php Form/Login/PhraseaRenewPasswordForm.php + Form/Login/PhraseaRecoverPasswordForm.php Form/Login/PhraseaRegisterForm.php diff --git a/resources/locales/validators.fr.xlf b/resources/locales/validators.fr.xlf index 8b4ac5bf6e..d1ab4fb190 100644 --- a/resources/locales/validators.fr.xlf +++ b/resources/locales/validators.fr.xlf @@ -1,6 +1,6 @@ - +
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message. @@ -9,8 +9,8 @@ Please provide the same passwords. Veuillez indiquer des mots de passe identiques. - Form/Login/PhraseaRecoverPasswordForm.php Form/Login/PhraseaRenewPasswordForm.php + Form/Login/PhraseaRecoverPasswordForm.php Form/Login/PhraseaRegisterForm.php diff --git a/resources/locales/validators.nl.xlf b/resources/locales/validators.nl.xlf index c7a3d2d4fd..19cd0f01ae 100644 --- a/resources/locales/validators.nl.xlf +++ b/resources/locales/validators.nl.xlf @@ -1,6 +1,6 @@ - +
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message. @@ -9,8 +9,8 @@ Please provide the same passwords. Please provide the same passwords. - Form/Login/PhraseaRecoverPasswordForm.php Form/Login/PhraseaRenewPasswordForm.php + Form/Login/PhraseaRecoverPasswordForm.php Form/Login/PhraseaRegisterForm.php diff --git a/templates/web/admin/personalisation_logo.html.twig b/templates/web/admin/personalisation_logo.html.twig index a68853f969..aa27316628 100644 --- a/templates/web/admin/personalisation_logo.html.twig +++ b/templates/web/admin/personalisation_logo.html.twig @@ -90,19 +90,22 @@ image.src = _file.target.result; image.file = this.file; image.data = this.data; + + console.log(image.file.type); + if (image.file.type != 'image/png' && image.file.type!= 'image/svg+xml') { + $('#general_personalize-logo-choice_personalizeLogoInput').val(""); + $('#error-text').text(errorFileType); + $('#error-text').show(); + $('#help-text').hide(); + $('#personalize-image-container').hide(); + return false; + } + image.onload = function () { var w = this.width, h = this.height; var ext = this.file.type.split('/').pop().toLowerCase(); - if (ext != 'png' && ext != 'svg+xml') { - $('#general_personalize-logo-choice_personalizeLogoInput').val(""); - $('#error-text').text(errorFileType); - $('#error-text').show(); - $('#help-text').hide(); - $('#personalize-image-container').hide(); - return false; - } if (h > 41 || w > 120 ) { $('#error-text').text(errorDimension); From f8a28f68211e3bc0198a50c00c814a762884c9be Mon Sep 17 00:00:00 2001 From: Harrys Ravalomanana Date: Thu, 16 May 2019 10:38:28 +0400 Subject: [PATCH 13/18] PHRAS-2079_Prod_Preview_logo --- resources/www/_shared/styles/_main-menu.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/www/_shared/styles/_main-menu.scss b/resources/www/_shared/styles/_main-menu.scss index 1f530bcc2b..505474882e 100644 --- a/resources/www/_shared/styles/_main-menu.scss +++ b/resources/www/_shared/styles/_main-menu.scss @@ -62,6 +62,7 @@ $mainMenuBottomBorder: none !default; } #mainLogo { margin:0 5px; + vertical-align: middle; } li { display: inline-block; From f5af760e866af29fa62a2c7b1ef217b23bed5f1b Mon Sep 17 00:00:00 2001 From: Nicolas Maillat Date: Thu, 16 May 2019 10:55:35 +0200 Subject: [PATCH 14/18] Remove artefact --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index faddad5734..c0ea67e61b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -74,7 +74,6 @@ COPY config /var/alchemy/config COPY grammar /var/alchemy/grammar COPY lib /var/alchemy/lib COPY resources /var/alchemy/resources -RUN ls -la COPY templates-profiler /var/alchemy/templates-profiler COPY templates /var/alchemy/templates COPY tests /var/alchemy/tests From bd58b8d2ed07fc836626c49825d5cca0099f6b07 Mon Sep 17 00:00:00 2001 From: Nicolas Maillat Date: Thu, 16 May 2019 14:20:55 +0200 Subject: [PATCH 15/18] PHRAS-2576 #comment typo fix mikey179/vfsstream --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index eb0ab4b394..ad1d0d3489 100644 --- a/composer.json +++ b/composer.json @@ -47,7 +47,7 @@ "php": ">=5.5.9", "ext-intl": "*", "alchemy-fr/tcpdf-clone": "~6.0", - "alchemy/embed-bundle": "^2.0.0", + "alchemy/embed-bundle": "^2.0.2", "alchemy/geonames-api-consumer": "~0.1.0", "alchemy/mediavorus": "^0.4.4", "alchemy/oauth2php": "1.1.0", @@ -123,7 +123,7 @@ "paragonie/random-lib": "^2.0" }, "require-dev": { - "mikey179/vfsStream": "~1.5", + "mikey179/vfsstream": "~1.5", "phpunit/phpunit": "^4.8|^5.0" }, "autoload": { From 25b66793140ab114c956a55ce2ccc61c8465b448 Mon Sep 17 00:00:00 2001 From: Alexandre BRACH Date: Thu, 16 May 2019 15:05:39 +0200 Subject: [PATCH 16/18] CircleCI : building machine use Docker Llayer caching --- .circleci/config.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c6a4198590..c1cadf6605 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,6 +1,10 @@ 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 @@ -109,8 +113,6 @@ workflows: oldfashion: jobs: - build - - newfashion: jobs: - aws-ecr/build_and_push_image: From aafa248fedfafc823934f5ab9c1077ac2886750b Mon Sep 17 00:00:00 2001 From: Harrys Ravalomanana Date: Thu, 16 May 2019 17:40:19 +0400 Subject: [PATCH 17/18] PHRAS-2079_Admin_personalisation_section #Remove console.log() --- templates/web/admin/personalisation_logo.html.twig | 1 - 1 file changed, 1 deletion(-) diff --git a/templates/web/admin/personalisation_logo.html.twig b/templates/web/admin/personalisation_logo.html.twig index aa27316628..b286f6fae5 100644 --- a/templates/web/admin/personalisation_logo.html.twig +++ b/templates/web/admin/personalisation_logo.html.twig @@ -91,7 +91,6 @@ image.file = this.file; image.data = this.data; - console.log(image.file.type); if (image.file.type != 'image/png' && image.file.type!= 'image/svg+xml') { $('#general_personalize-logo-choice_personalizeLogoInput').val(""); $('#error-text').text(errorFileType); From be588ca396ecdd8347468f605c9ea7c4877fb926 Mon Sep 17 00:00:00 2001 From: Alexandre BRACH Date: Thu, 16 May 2019 17:43:28 +0200 Subject: [PATCH 18/18] Docker build instruction in README, circle-ci can build and push the two images --- .circleci/config.yml | 13 ++++++++++++- README.md | 20 ++++++++++++++++++-- 2 files changed, 30 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c1cadf6605..e5921af091 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -122,7 +122,18 @@ workflows: context: "AWS London" create-repo: true dockerfile: Dockerfile - #profile-name: myProfileName + extra-build-args: "--target phraseanet" 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" diff --git a/README.md b/README.md index 8d35f5bfa1..6f0d5c38b5 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Phraseanet 4.1 - Digital Asset Management application - RestFull APIS - Elasticsearch search engine - Multiple resolution assets generation - + # Documentation : https://docs.phraseanet.com/ @@ -32,7 +32,7 @@ https://www.phraseanet.com/download/ For development purpose Phraseanet is shipped with ready to use development environments using vagrant. -- git clone +- git clone - vagrant up @@ -43,4 +43,20 @@ For development with Phraseanet API see https://docs.phraseanet.com/4.0/en/Devel Phraseanet is licensed under GPL-v3 license. +# Docker build + +The docker distribution come with 2 differents containers : +* an nginx that act as the front http server. +* the php-fpm who serves the php files through nginx. + +## How to build + +The two images can be built respectively with these two commands : + + # nginx server + docker build --target phraseanet-nginx -t phraseanet-nginx . + + # php-fpm application + docker build --target phraseanet -t phraseanet . +