From 29a325d18527032c74c680098f7434127db095c4 Mon Sep 17 00:00:00 2001 From: Nicolas Le Goff Date: Thu, 4 Sep 2014 19:24:17 +0200 Subject: [PATCH 01/16] Improve generation of vagrant vm --- Vagrantfile | 8 +- vagrant/config/phraseanet/configuration.yml | 169 ++++++++++++++++++ .../puphpet/config.yaml | 4 +- .../puphpet/files/exec-once/setup | 41 ++--- .../puphpet/shell/important-notices.txt | 72 +++----- .../puphpet/shell/self-promotion.txt | 6 +- 6 files changed, 220 insertions(+), 80 deletions(-) create mode 100644 vagrant/config/phraseanet/configuration.yml diff --git a/Vagrantfile b/Vagrantfile index a1b93fb5e6..e937119602 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,11 +1,15 @@ require 'yaml' +unless Vagrant.has_plugin?("vagrant-hostsupdater") + raise 'vagrant-hostmanager is not installed! please run "vagrant plugin install vagrant-hostsupdater' +end + root = File.dirname(File.expand_path(__FILE__)) Vagrant.configure("2") do |config| Dir.glob(root+"/vagrant/vms/**/puphpet/config.yaml").each do|f| - dir = File.dirname(File.expand_path(f)+"/..") - base_path = dir[0..-21] + dir = File.dirname(File.expand_path(f+"/..")) + base_path = dir configValues = YAML.load_file(f) data = configValues['vagrantfile-local'] diff --git a/vagrant/config/phraseanet/configuration.yml b/vagrant/config/phraseanet/configuration.yml new file mode 100644 index 0000000000..5788503d52 --- /dev/null +++ b/vagrant/config/phraseanet/configuration.yml @@ -0,0 +1,169 @@ +main: + servername: 'http://local.phrasea/' + maintenance: false + languages: [] + key: '' + database: + host: 'sql-host' + port: 3306 + user: 'sql-user' + password: 'sql-password' + dbname: ab_phraseanet + driver: pdo_mysql + charset: UTF8 + database-test: + driver: pdo_sqlite + path: '/tmp/db.sqlite' + charset: UTF8 + api-timers: false + cache: + type: ArrayCache + options: + options: [] + opcodecache: + type: ArrayCache + options: [] + search-engine: + type: Alchemy\Phrasea\SearchEngine\Phrasea\PhraseaEngine + options: [] + task-manager: + enabled: true + logger: + max-files: 10 + enabled: true + level: INFO +trusted-proxies: [] +debugger: + allowed-ips: ['192.168.56.1'] +binaries: + ghostscript_binary: null + php_binary: null + swf_extract_binary: null + pdf2swf_binary: null + swf_render_binary: null + unoconv_binary: null + ffmpeg_binary: null + ffprobe_binary: null + mp4box_binary: null + pdftotext_binary: null + recess_binary: null + phraseanet_indexer: null + ffmpeg_timeout: 3600 + ffprobe_timeout: 60 + gs_timeout: 60 + mp4box_timeout: 60 + swftools_timeout: 60 + unoconv_timeout: 60 +border-manager: + enabled: true + extension-mapping: { } + checkers: + - + type: Checker\Sha256 + enabled: true + - + type: Checker\UUID + enabled: true + - + type: Checker\Colorspace + enabled: false + options: + colorspaces: [cmyk, grayscale, rgb] + - + type: Checker\Dimension + enabled: false + options: + width: 80 + height: 160 + - + type: Checker\Extension + enabled: false + options: + extensions: [jpg, jpeg, bmp, tif, gif, png, pdf, doc, odt, mpg, mpeg, mov, avi, xls, flv, mp3, mp2] + - + type: Checker\Filename + enabled: false + options: + sensitive: true + - + type: Checker\MediaType + enabled: false + options: + mediatypes: [Audio, Document, Flash, Image, Video] +authentication: + auto-create: + templates: { } + captcha: + enabled: true + trials-before-display: 9 + providers: + facebook: + enabled: false + options: + app-id: '' + secret: '' + twitter: + enabled: false + options: + consumer-key: '' + consumer-secret: '' + google-plus: + enabled: false + options: + client-id: '' + client-secret: '' + github: + enabled: false + options: + client-id: '' + client-secret: '' + viadeo: + enabled: false + options: + client-id: '' + client-secret: '' + linkedin: + enabled: false + options: + client-id: '' + client-secret: '' +registration-fields: + - + name: company + required: true + - + name: lastname + required: true + - + name: firstname + required: true + - + name: geonameid + required: true +xsendfile: + enabled: false + type: nginx + mapping: [] +h264-pseudo-streaming: + enabled: false + type: nginx + mapping: [] +plugins: [] +api_cors: + enabled: false + allow_credentials: false + allow_origin: [] + allow_headers: [] + allow_methods: [] + expose_headers: [] + max_age: 0 + hosts: [] +session: + idle: 0 + # 1 week + lifetime: 604800 +crossdomain: + allow-access-from: + - + domain: '*.cooliris.com' + secure: 'false' diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/config.yaml b/vagrant/vms/phraseanet-php54-nginx/puphpet/config.yaml index e288891824..43728733ed 100644 --- a/vagrant/vms/phraseanet-php54-nginx/puphpet/config.yaml +++ b/vagrant/vms/phraseanet-php54-nginx/puphpet/config.yaml @@ -150,10 +150,10 @@ nginx: proxy_buffers: '4 256k' vhosts: issDOx17O4bn: - server_name: nginx.phraseanet + server_name: phraseanet-php54-nginx server_aliases: - nginx.phrasea.net - - nginx.alchemyasp.com + - phraseanet.php54.nginx www_root: /var/www/phraseanet/www listen_port: '8080' index_files: diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-once/setup b/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-once/setup index 1265fe50e0..475706edc0 100644 --- a/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-once/setup +++ b/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-once/setup @@ -30,16 +30,6 @@ sudo npm install -g recess sudo npm install -g grunt-cli sudo npm install -g bower -# python tools - -sudo easy_install -U taschenmesser scour boto - -# closure compiler -cd /tmp -wget –quiet http://dl.google.com/closure-compiler/compiler-latest.zip -unzip compiler-latest.zip -d closure -mv closure $HOME - #twig cd /tmp git clone https://github.com/fabpot/Twig.git @@ -82,27 +72,26 @@ cd swftools-0.9.2 make sudo make install -# zmq php extension -yes | sudo pecl install zmq-beta -if [ $? -eq 0 ]; then - sudo sh -c 'echo "extension=zmq.so" > /etc/php5/cli/conf.d/zmq.ini' - sudo sh -c 'echo "extension=zmq.so" > /etc/php5/fpm/conf.d/zmq.ini' -fi - -# libevent php extension -sudo apt-get autoremove --yes --purge libevent-dev -sudo apt-get install --yes libevent-dev -yes | sudo pecl install libevent-beta -if [ $? -eq 0 ]; then - sudo sh -c 'echo ";extension=libevent.so" > /etc/php5/cli/conf.d/libevent.ini' - sudo sh -c 'echo ";extension=libevent.so" > /etc/php5/fpm/conf.d/libevent.ini' -fi - # cache file sd sudo sh -c 'echo "RUN=yes" > /etc/default/cachefilesd' # copy www.conf sudo sh -c "cat /vagrant/vagrant/config/nginx/php5-fpm-www.conf > /etc/php5/fpm/pool.d/www.conf" +if [ ! -f /var/www/phraseanet/config/configuration.yml ] +then + #copy configuration template + mv /var/www/phraseanet/lib/conf.d/configuration.yml /var/www/phraseanet/lib/conf.d/configuration.yml.bkp + cp /vagrant/vagrant/config/phraseanet/configuration.yml /var/www/phraseanet/lib/conf.d/configuration.yml + cd /var/www/phraseanet + composer install -n --prefer-source --dev + bin/developer dependencies:bower + bin/developer assets:compile-less + rm -f /var/www/phraseanet/lib/conf.d/configuration.yml + mv /var/www/phraseanet/lib/conf.d/configuration.yml.bkp /var/www/phraseanet/lib/conf.d/configuration.yml +fi + # restart mysql to get new date system sudo service mysql restart +sudo service php5-fpm restart +sudo service nginx restart diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/important-notices.txt b/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/important-notices.txt index 0dc384f1e0..01637f599d 100644 --- a/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/important-notices.txt +++ b/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/important-notices.txt @@ -1,57 +1,39 @@ - _ - / ) - .--.; | _...,-"""-, - .-""-.-""""-. / _`'-._.' /` \ - /' \ \| (/'-._/ ) ; - .-""""-; ( '--' /-' _ | - .' | ; e / a , ; - / \ | __.'`-.__, ; / - / `._ ; .-' `--.,__.\ /` - //| \ \,-' /\_.' - // | `;.___> /,-'. - /`| / |`\ _..---\ | \ - |/ / _,.-----\ | \ /`| | |\ \ - / .; | | | \ / | | | \ ) - | / | \ / |\..' \ \ | \ \..' - jgs \../ \.../ \.../ \.../---' \.../ +▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔ + _____ _ _ + | __ \| | | | + | |__) | |__ _ __ __ _ ___ ___ __ _ _ __ ___| |_ + | ___/| '_ \| '__/ _` / __|/ _ \/ _` | '_ \ / _ \ __| + | | | | | | | | (_| \__ \ __/ (_| | | | | __/ |_ + |_| |_| |_|_| \__,_|___/\___|\__,_|_| |_|\___|\__| + +▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔ Read me for some important information! If Puppet did not blow up (you do not see a sea of red above), then your VM was generated successfully! -* A unique private key was generated for you! It is located at - "puphpet/files/dot/ssh/id_rsa". If you are on Windows, a PuTTY-friendly key - was also generated at same location with a ".ppk" extension. -* If you want to use your own private key for future provisions, overwrite the - generated key above with your own. Make sure to follow the naming pattern, - and include a ".pub" public key. -* If you wish to add packages, modules, Apache/Nginx vhosts, or anything else, - open up "puphpet/config.yaml" and make changes within! Some things will - have random strings like "DIdXRs2OI2LJ" - you must create a random string - as well! To do so, please apply face to keyboard and roll. -* If you change "puphpet/config.yaml", simple run "$ vagrant provision" and - your VM will be updated with the changes you requested! +* You can print current ssh information by running 'vagrant ssh-config' + command -Did something go wrong? Don't worry! I can (maybe) help! Please go to our -Github issues page at https://github.com/puphpet/puphpet/issues and search for -your problem. If you do not find your problem answered, open a new ticket! +* To access to phraseanet just type 'phraseanet-php54-nginx' in + your web browser address bar. ----------------------------------------------------------------------------- -PLEASE REMEMBER TO INCLUDE THE CONTENTS OF YOUR "puphpet/config.yaml" FILE. ----------------------------------------------------------------------------- +* The mysql default credentials are: + user: root + password: toor -Make sure to xxx out any potential API keys or passwords that you do not want -others to see! +Did something go wrong? Please fill a Github issues at +https://github.com/alchemy-fr/phraseanet/issues. Happy programming! - - Juan Treminio + - Phraseanet Team -┈╭━━━━━━━━━━━━┳━━╮┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ - ┃ ╭╯ ┃ ▋┃╭━┓ ____ _ _ _ _ -╭┫ ┃ ┃ ┃┃╭┛ | _ \ ___ __ _ __| | / \ | |__ _____ _____| | -┃┃ ╰━━╯ ┃╰╯┃ | |_) / _ \/ _` |/ _` | / _ \ | '_ \ / _ \ \ / / _ \ | -╯┃ ╰┳━╯ | _ < __/ (_| | (_| | / ___ \| |_) | (_) \ V / __/_| - ┃ ┃ |_| \_\___|\__,_|\__,_| /_/ \_\_.__/ \___/ \_/ \___(_) - ┃ ┏━┳━━━━━━━┓ ┏ ┃ -▔┗━┻━┛▔▔▔▔▔▔▔┗━┻━┛▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔ +▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔ + ____ _ _ _ _ + | _ \ ___ __ _ __| | / \ | |__ _____ _____| | + | |_) / _ \/ _` |/ _` | / _ \ | '_ \ / _ \ \ / / _ \ | + | _ < __/ (_| | (_| | / ___ \| |_) | (_) \ V / __/_| + |_| \_\___|\__,_|\__,_| /_/ \_\_.__/ \___/ \_/ \___(_) + +▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔ \ No newline at end of file diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/self-promotion.txt b/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/self-promotion.txt index 8cd11701e7..8c35649230 100644 --- a/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/self-promotion.txt +++ b/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/self-promotion.txt @@ -1,6 +1,2 @@ - ____ ____ _ _ ____ _ generated using - | _ \ _ _| _ \| | | | _ \ ___| |_ ___ ___ _ __ ___ - | |_) | | | | |_) | |_| | |_) / _ \ __| / __/ _ \| '_ ` _ \ - | __/| |_| | __/| _ | __/ __/ |_ | (_| (_) | | | | | | - |_| \__,_|_| |_| |_|_| \___|\__(_)___\___/|_| |_| |_| +generated using www.puphpet.com From 3202c3eb9d9253febcdc6319c2cae02cd56caa7c Mon Sep 17 00:00:00 2001 From: Nicolas Le Goff Date: Thu, 4 Sep 2014 19:42:51 +0200 Subject: [PATCH 02/16] Add gitignore rules --- .gitignore | 15 +++++++-------- .../puphpet/files/dot/ssh/.gitignore | 2 ++ 2 files changed, 9 insertions(+), 8 deletions(-) create mode 100644 vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/ssh/.gitignore diff --git a/.gitignore b/.gitignore index b9448fcb49..019903ce93 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,6 @@ /nbproject -/config/custom_files -/config/templates -/config/topics -/config/wm -/config/minilogos -/config/status -/config/stamp -/config/configuration.yml +/config +!/config/configuration.sample.yml .DS_Store /vendor /plugins @@ -16,3 +10,8 @@ behat.yml /www/assets /www/skins/build /www/crossdomain.xml +/www/plugins +/bin +!/bin/console +!/bin/developer +!/bin/setup diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/ssh/.gitignore b/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/ssh/.gitignore new file mode 100644 index 0000000000..d96f05db68 --- /dev/null +++ b/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/ssh/.gitignore @@ -0,0 +1,2 @@ +!.gitignore +!insecure_private_key From 7d41ca9cdd51ee40fd9fb974078b1957ce37d741 Mon Sep 17 00:00:00 2001 From: Nicolas Le Goff Date: Fri, 5 Sep 2014 11:42:41 +0200 Subject: [PATCH 03/16] add --config.interactive=false option for bower --- .../vms/phraseanet-php54-nginx/puphpet/files/exec-once/setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-once/setup b/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-once/setup index 475706edc0..109e96d976 100644 --- a/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-once/setup +++ b/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-once/setup @@ -85,7 +85,7 @@ then cp /vagrant/vagrant/config/phraseanet/configuration.yml /var/www/phraseanet/lib/conf.d/configuration.yml cd /var/www/phraseanet composer install -n --prefer-source --dev - bin/developer dependencies:bower + bower install --config.interactive=false bin/developer assets:compile-less rm -f /var/www/phraseanet/lib/conf.d/configuration.yml mv /var/www/phraseanet/lib/conf.d/configuration.yml.bkp /var/www/phraseanet/lib/conf.d/configuration.yml From 1561a5cc9272808df94734d3b9995e52c0dfd61e Mon Sep 17 00:00:00 2001 From: Nicolas Le Goff Date: Mon, 8 Sep 2014 16:39:52 +0200 Subject: [PATCH 04/16] Improve vm build --- .../puphpet/files/exec-always/setup | 25 +++---------------- .../puphpet/files/exec-once/setup | 16 +++++++++--- 2 files changed, 16 insertions(+), 25 deletions(-) diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-always/setup b/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-always/setup index 33b4febd88..0b862b43af 100755 --- a/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-always/setup +++ b/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-always/setup @@ -1,26 +1,7 @@ #! /bin/bash -# open rabbitmq ports -sudo iptables -I INPUT -p tcp --dport 15672 -j ACCEPT - -# open elastic search ports -sudo iptables -I INPUT -p tcp --dport 9200 -j ACCEPT - -# open mysql ports -sudo iptables -I INPUT -p tcp --dport 3306 -j ACCEPT - -#closure -echo 'export JS_COMPILER=$HOME/closure/compiler.jar' >> ~/.bashrc -source ~/.bashrc - -# java -echo 'export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64/jre/' >> ~/.bashrc -source ~/.bashrc - -# locales - -export LANGUAGE=fr_FR.UTF-8 -export LANG=fr_FR.UTF-8 -export LC_ALL=fr_FR.UTF-8 +# stoping iptable +sudo service iptables-persistent stop +# reload bash source ~/.bashrc \ No newline at end of file diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-once/setup b/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-once/setup index 109e96d976..66cc5be148 100644 --- a/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-once/setup +++ b/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-once/setup @@ -6,9 +6,9 @@ sudo dpkg-reconfigure -f noninteractive tzdata # locales -export LANGUAGE=fr_FR.UTF-8 -export LANG=fr_FR.UTF-8 -export LC_ALL=fr_FR.UTF-8 +sudo sh -c "echo 'LANGUAGE=fr_FR.UTF-8' >> /etc/environment" +sudo sh -c "echo 'LANG=fr_FR.UTF-8' >> /etc/environment" +sudo sh -c "echo 'LC_ALL=fr_FR.UTF-8' >> /etc/environment" sudo sh -c 'echo "en_GB.UTF-8 UTF-8" >> /etc/locale.gen' sudo sh -c 'echo "de_DE.UTF-8 UTF-8" >> /etc/locale.gen' sudo sh -c 'echo "es_ES.UTF-8 UTF-8" >> /etc/locale.gen' @@ -83,11 +83,15 @@ then #copy configuration template mv /var/www/phraseanet/lib/conf.d/configuration.yml /var/www/phraseanet/lib/conf.d/configuration.yml.bkp cp /vagrant/vagrant/config/phraseanet/configuration.yml /var/www/phraseanet/lib/conf.d/configuration.yml + mv /var/www/phraseanet/.bowerrc /var/www/phraseanet/.bowerrc.bkp + cp /vagrant/resources/vagrant/config/bower/.bower.rc /var/www/phraseanet/.bowerrc cd /var/www/phraseanet composer install -n --prefer-source --dev bower install --config.interactive=false bin/developer assets:compile-less rm -f /var/www/phraseanet/lib/conf.d/configuration.yml + rm -f /var/www/phraseanet/.bowerrc + mv /www/phraseanet/.bowerrc.bkp /www/phraseanet/.bowerrc mv /var/www/phraseanet/lib/conf.d/configuration.yml.bkp /var/www/phraseanet/lib/conf.d/configuration.yml fi @@ -95,3 +99,9 @@ fi sudo service mysql restart sudo service php5-fpm restart sudo service nginx restart + +# stoping iptable +sudo service iptables-persistent stop + +# reload bash +source ~/.bashrc From 2e6c11a9edc0919a68398f94d06f9bcd5ca067e3 Mon Sep 17 00:00:00 2001 From: Nicolas Le Goff Date: Mon, 8 Sep 2014 17:04:08 +0200 Subject: [PATCH 05/16] Update travis --- .travis.yml | 9 ++++++--- lib/Alchemy/Phrasea/Controller/Datafiles.php | 2 -- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7086e55e54..3ca8c328a2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,9 +20,12 @@ before_script: - echo 'extension="memcached.so"' > ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/memcached.ini - travis_retry composer self-update - travis_retry composer install --dev --prefer-source - - wget http://sphinxsearch.com/files/sphinx-2.0.6-release.tar.gz - - tar xzf sphinx-2.0.6-release.tar.gz - - sh -c "cd sphinx-2.0.6-release && wget http://snowball.tartarus.org/dist/libstemmer_c.tgz && tar xzf libstemmer_c.tgz && ./configure --with-libstemmer --with-iconv --with-mysql --enable-id64 --quiet && make -j --quiet && sudo make install" + - sh -c "wget http://sphinxsearch.com/files/sphinx-2.0.6-release.tar.gz && tar xzf sphinx-2.0.6-release.tar.gz && cd sphinx-2.0.6-release; + if curl -s --head --request GET http://snowball.tartarus.org/dist/libstemmer_c.tgz | grep '200 OK' > /dev/null; then + wget -q http://snowball.tartarus.org/dist/libstemmer_c.tgz && tar xzf libstemmer_c.tgz; + sed -i 's/stem_ISO_8859_1_hungarian/stem_ISO_8859_2_hungarian/g' libstemmer_c/Makefile.in; + ./configure --with-libstemmer --with-iconv --with-mysql --enable-id64 --quiet && make -j --quiet && sudo make install; + fi" - sudo mkdir -p /var/sphinx/datas - sudo chmod -R 0777 /var/sphinx - mysql -e 'create database ab_test;create database db_test; create database ab_unitTests; create database db_unitTests;' diff --git a/lib/Alchemy/Phrasea/Controller/Datafiles.php b/lib/Alchemy/Phrasea/Controller/Datafiles.php index 49b5848efa..35546007bc 100644 --- a/lib/Alchemy/Phrasea/Controller/Datafiles.php +++ b/lib/Alchemy/Phrasea/Controller/Datafiles.php @@ -84,11 +84,9 @@ class Datafiles extends AbstractDelivery } if ($watermark && !$all_access) { - $repository = $app['EM']->getRepository('\Entities\BasketElement'); /* @var $repository \Repositories\BasketElementRepository */ - $ValidationByRecord = $repository->findReceivedValidationElementsByRecord($record, $app['authentication']->getUser()); $ReceptionByRecord = $repository->findReceivedElementsByRecord($record, $app['authentication']->getUser()); From 755765bb4e2ac94b3fe63cdbdab1a7c775165db9 Mon Sep 17 00:00:00 2001 From: Nicolas Le Goff Date: Fri, 5 Sep 2014 16:11:20 +0200 Subject: [PATCH 06/16] PHRAS-275 #fix client_max_body_size for nginx --- .../puphpet/puppet/modules/nginx/manifests/params.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/params.pp b/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/params.pp index 8ecf101545..2dfdd2c4b9 100644 --- a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/params.pp +++ b/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/params.pp @@ -55,7 +55,7 @@ class nginx::params { $nx_client_body_temp_path = "${nx_run_dir}/client_body_temp" $nx_client_body_buffer_size = '128k' - $nx_client_max_body_size = '10m' + $nx_client_max_body_size = '1000m' $nx_proxy_temp_path = "${nx_run_dir}/proxy_temp" $nx_proxy_connect_timeout = '90' $nx_proxy_send_timeout = '90' From 9c4e098bb6771d6b95e5ce199c695570557d2ef0 Mon Sep 17 00:00:00 2001 From: Nicolas Le Goff Date: Fri, 5 Sep 2014 17:14:23 +0200 Subject: [PATCH 07/16] PHRAS-272 #fix database connection if no database provided --- lib/Alchemy/Phrasea/Controller/Setup.php | 12 ++++---- lib/Alchemy/Phrasea/Helper/DatabaseHelper.php | 2 +- lib/classes/connection/pdo.php | 2 +- templates/web/setup/step2.html.twig | 30 +++++++++---------- .../Tests/Phrasea/Controller/SetupTest.php | 8 ++--- 5 files changed, 27 insertions(+), 27 deletions(-) diff --git a/lib/Alchemy/Phrasea/Controller/Setup.php b/lib/Alchemy/Phrasea/Controller/Setup.php index f1a023491c..946c08fff6 100644 --- a/lib/Alchemy/Phrasea/Controller/Setup.php +++ b/lib/Alchemy/Phrasea/Controller/Setup.php @@ -139,16 +139,16 @@ class Setup implements ControllerProviderInterface $abConn = $dbConn = null; - $hostname = $request->request->get('ab_hostname'); - $port = $request->request->get('ab_port'); - $user_ab = $request->request->get('ab_user'); - $ab_password = $request->request->get('ab_password'); + $database_host = $request->request->get('hostname'); + $database_port = $request->request->get('port'); + $database_user = $request->request->get('user'); + $database_password = $request->request->get('password'); $appbox_name = $request->request->get('ab_name'); $databox_name = $request->request->get('db_name'); try { - $abConn = new \connection_pdo('appbox', $hostname, $port, $user_ab, $ab_password, $appbox_name, array(), $app['debug']); + $abConn = new \connection_pdo('appbox', $database_host, $database_port, $database_user, $database_password, $appbox_name, array(), $app['debug']); } catch (\Exception $e) { return $app->redirectPath('install_step2', array( 'error' => _('Appbox is unreachable'), @@ -157,7 +157,7 @@ class Setup implements ControllerProviderInterface try { if ($databox_name) { - $dbConn = new \connection_pdo('databox', $hostname, $port, $user_ab, $ab_password, $databox_name, array(), $app['debug']); + $dbConn = new \connection_pdo('databox', $database_host, $database_port, $database_user, $database_password, $databox_name, array(), $app['debug']); } } catch (\Exception $e) { return $app->redirectPath('install_step2', array( diff --git a/lib/Alchemy/Phrasea/Helper/DatabaseHelper.php b/lib/Alchemy/Phrasea/Helper/DatabaseHelper.php index 244ec4519c..d32b0347da 100644 --- a/lib/Alchemy/Phrasea/Helper/DatabaseHelper.php +++ b/lib/Alchemy/Phrasea/Helper/DatabaseHelper.php @@ -26,7 +26,7 @@ class DatabaseHelper extends Helper $connection_ok = $db_ok = $is_databox = $is_appbox = $empty = false; try { - $conn = new \connection_pdo('test', $hostname, $port, $user, $password, null, array(), false); + new \connection_pdo('test', $hostname, $port, $user, $password, $dbname, array(), false); $connection_ok = true; } catch (\Exception $e) { diff --git a/lib/classes/connection/pdo.php b/lib/classes/connection/pdo.php index c512d60918..e8c0d33176 100644 --- a/lib/classes/connection/pdo.php +++ b/lib/classes/connection/pdo.php @@ -164,6 +164,6 @@ class connection_pdo extends connection_abstract implements connection_interface return sprintf('mysql:host=%s;port=%s;dbname=%s;', $host, $port, $databaseName); } - return sprintf('host=%s;port=%s;', $host, $port); + return sprintf('mysql:host=%s;port=%s;', $host, $port); } } diff --git a/templates/web/setup/step2.html.twig b/templates/web/setup/step2.html.twig index d74217aed9..70e1899f67 100644 --- a/templates/web/setup/step2.html.twig +++ b/templates/web/setup/step2.html.twig @@ -59,15 +59,15 @@ password : {password:"#create_admin input[name=email]"}, password_confirm : {equalTo:"#create_admin input[name=password]"}, - ab_hostname : {required:true}, - ab_user : {required:true}, + hostname : {required:true}, + user : {required:true}, ab_name : {required:true} }, messages: { email:{ email : language.validateEmail }, - ab_hostname : { + hostname : { required : language.requiredField }, password : { @@ -149,10 +149,10 @@ function test_connection_appbox(callback) { var scope = $('.appbox_settings'); - var hostname_input = $('input[name="ab_hostname"]:visible', scope); - var port_input = $('input[name="ab_port"]:visible', scope); - var user_input = $('input[name="ab_user"]', scope); - var password_input = $('input[name="ab_password"]', scope); + var hostname_input = $('input[name="hostname"]:visible', scope); + var port_input = $('input[name="port"]:visible', scope); + var user_input = $('input[name="user"]', scope); + var password_input = $('input[name="password"]', scope); var dbname_input = $('input[name="ab_name"]', scope); var user = user_input.val(); @@ -187,10 +187,10 @@ var appbox_scope = $('.appbox_settings'); var databox_scope = $('.databox_settings'); - var hostname_input = $('input[name="ab_hostname"]', appbox_scope); - var port_input = $('input[name="ab_port"]', appbox_scope); - var user_input = $('input[name="ab_user"]', appbox_scope); - var password_input = $('input[name="ab_password"]', appbox_scope); + var hostname_input = $('input[name="hostname"]', appbox_scope); + var port_input = $('input[name="port"]', appbox_scope); + var user_input = $('input[name="user"]', appbox_scope); + var password_input = $('input[name="password"]', appbox_scope); var dbname_input = $('input[name="db_name"]', databox_scope); @@ -559,19 +559,19 @@ - + - + - + - + diff --git a/tests/Alchemy/Tests/Phrasea/Controller/SetupTest.php b/tests/Alchemy/Tests/Phrasea/Controller/SetupTest.php index 19550178bb..5a39ac1e5a 100644 --- a/tests/Alchemy/Tests/Phrasea/Controller/SetupTest.php +++ b/tests/Alchemy/Tests/Phrasea/Controller/SetupTest.php @@ -154,10 +154,10 @@ class SetupTest extends \Silex\WebTestCase 'binary_convert' => '/path/to/convert', 'binary_php' => '/path/to/php', 'datapath_noweb' => sys_get_temp_dir() . '/datainstall/noweb', - 'ab_hostname' => $host, - 'ab_port' => $port, - 'ab_user' => $user, - 'ab_password' => $password, + 'hostname' => $host, + 'port' => $port, + 'user' => $user, + 'password' => $password, 'ab_name' => $abName, 'db_name' => $dbName, 'db_template' => 'en', From af3043824f6734ce3c2afbec4a4d34ad5eac62ab Mon Sep 17 00:00:00 2001 From: Nicolas Le Goff Date: Fri, 5 Sep 2014 17:24:48 +0200 Subject: [PATCH 08/16] PHRAS-194 #fix update po template --- locale/phraseanet.pot | 3406 ++++++++++++++++++++--------------------- 1 file changed, 1624 insertions(+), 1782 deletions(-) diff --git a/locale/phraseanet.pot b/locale/phraseanet.pot index ab86bc2ef6..10816d5108 100644 --- a/locale/phraseanet.pot +++ b/locale/phraseanet.pot @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: Phraseanet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-22 17:13+0100\n" -"PO-Revision-Date: 2014-05-22 17:15+0100\n" -"Last-Translator: Romain Neutron \n" +"POT-Creation-Date: 2014-09-05 17:23+0100\n" +"PO-Revision-Date: 2014-09-05 17:24+0100\n" +"Last-Translator: \n" "Language-Team: \n" "Language: Francais\n" "MIME-Version: 1.0\n" @@ -25,531 +25,16 @@ msgstr "" "X-Poedit-SearchPath-6: ../lib/Doctrine\n" "X-Poedit-SearchPath-7: ../bin\n" -#: ../config/_GV_template.php:38 -msgid "HTTP Server" -msgstr "" - -#: ../config/_GV_template.php:43 -msgid "Default language" -msgstr "" - -#: ../config/_GV_template.php:52 -msgid "Static URL" -msgstr "" - -#: ../config/_GV_template.php:53 -msgid "optional" -msgstr "" - -#: ../config/_GV_template.php:58 -msgid "Maintenance state" -msgstr "" - -#: ../config/_GV_template.php:64 -msgid "Maintenance message" -msgstr "" - -#: ../config/_GV_template.php:70 -msgid "Enable maintenance message broadcast" -msgstr "" - -#: ../config/_GV_template.php:76 -msgid "Log errors" -msgstr "" - -#: ../config/_GV_template.php:81 -msgid "Webservices connectivity" -msgstr "" - -#: ../config/_GV_template.php:86 -msgid "Use Google API" -msgstr "" - -#: ../config/_GV_template.php:93 -msgid "Geonames server address" -msgstr "" - -#: ../config/_GV_template.php:101 -msgid "Use recaptcha API" -msgstr "" - -#: ../config/_GV_template.php:109 -msgid "Recaptcha public key" -msgstr "" - -#: ../config/_GV_template.php:115 -msgid "Recaptcha private key" -msgstr "" - -#: ../config/_GV_template.php:120 -msgid "Youtube connectivity" -msgstr "" - -#: ../config/_GV_template.php:125 -msgid "Use youtube API" -msgstr "" - -#: ../config/_GV_template.php:126 ../config/_GV_template.php:157 -#: ../config/_GV_template.php:181 -#, php-format -msgid "Create API account at %s, then use %s as callback URL value" -msgstr "" - -#: ../config/_GV_template.php:133 -msgid "Youtube public key" -msgstr "" - -#: ../config/_GV_template.php:139 -msgid "Youtube secret key" -msgstr "" - -#: ../config/_GV_template.php:145 -msgid "Youtube developer key" -msgstr "" - -#: ../config/_GV_template.php:146 -#, php-format -msgid "See %s" -msgstr "" - -#: ../config/_GV_template.php:151 -msgid "FlickR connectivity" -msgstr "" - -#: ../config/_GV_template.php:156 -msgid "Use Flickr API" -msgstr "" - -#: ../config/_GV_template.php:164 -msgid "Flickr public key" -msgstr "" - -#: ../config/_GV_template.php:170 -msgid "Flickr secret key" -msgstr "" - -#: ../config/_GV_template.php:175 -msgid "Dailymotion connectivity" -msgstr "" - -#: ../config/_GV_template.php:180 -msgid "Use Dailymotion API" -msgstr "" - -#: ../config/_GV_template.php:188 -msgid "Dailymotion public key" -msgstr "" - -#: ../config/_GV_template.php:194 -msgid "Dailymotion secret key" -msgstr "" - -#: ../config/_GV_template.php:199 -msgid "Phraseanet client API" -msgstr "" - -#: ../config/_GV_template.php:204 -msgid "Authorize *Phraseanet Navigator*" -msgstr "" - -#: ../config/_GV_template.php:205 -msgid "" -"*Phraseanet Navigator* is a smartphone application that allow user to " -"connect on this instance" -msgstr "" - -#: ../config/_GV_template.php:212 -msgid "Authorize Microsoft Office Plugin to connect." -msgstr "" - -#: ../config/_GV_template.php:218 -msgid "Documents storage" -msgstr "" - -#: ../config/_GV_template.php:224 -msgid "Default path for datas" -msgstr "" - -#: ../config/_GV_template.php:230 -msgid "Executables settings" -msgstr "" - -#: ../config/_GV_template.php:235 -msgid "php.ini path" -msgstr "" - -#: ../config/_GV_template.php:236 -msgid "Empty if not used" -msgstr "" - -#: ../config/_GV_template.php:243 -msgid "Imagine driver" -msgstr "" - -#: ../config/_GV_template.php:255 -msgid "Number of threads to use for FFMpeg" -msgstr "" - -#: ../config/_GV_template.php:261 -msgid "Maximum number of pages to be extracted from PDF" -msgstr "" - -#: ../config/_GV_template.php:266 -msgid "Main configuration" -msgstr "" - -#: ../config/_GV_template.php:271 -msgid "Enable Forcing authentication to see push content" -msgstr "" - -#: ../config/_GV_template.php:272 -msgid "" -"Adds an option to the push form submission to restrict push recipient(s) to " -"Phraseanet users only." -msgstr "" - -#: ../config/_GV_template.php:278 -msgid "Admin email" -msgstr "" - -#: ../config/_GV_template.php:284 -msgid "Display the name of databases and collections" -msgstr "" - -#: ../config/_GV_template.php:291 -msgid "Choose the title of the document to export" -msgstr "" - -#: ../config/_GV_template.php:298 -msgid "Default export title" -msgstr "" - -#: ../config/_GV_template.php:301 -msgid "Document title" -msgstr "" - -#: ../config/_GV_template.php:302 -msgid "Original name" -msgstr "" - -#: ../config/_GV_template.php:308 -msgid "Enable this setting to share on Facebook and Twitter" -msgstr "" - -#: ../config/_GV_template.php:310 -msgid "Disabled" -msgstr "" - -#: ../config/_GV_template.php:311 -msgid "Publishers" -msgstr "" - -#: ../config/_GV_template.php:312 -msgid "Enabled" -msgstr "" - -#: ../config/_GV_template.php:319 -msgid "Homepage" -msgstr "" - -#: ../config/_GV_template.php:325 -msgid "Homepage slideshow" -msgstr "" - -#: ../config/_GV_template.php:328 -msgid "Single image" -msgstr "" - -#: ../config/_GV_template.php:329 -msgid "Slide show" -msgstr "" - -#: ../config/_GV_template.php:331 -msgid "Carousel" -msgstr "" - -#: ../config/_GV_template.php:332 -msgid "Gallery" -msgstr "" - -#: ../config/_GV_template.php:338 -msgid "Search engine" -msgstr "" - -#: ../config/_GV_template.php:344 -msgid "Minimum number of letters before truncation" -msgstr "" - -#: ../config/_GV_template.php:345 -msgid "Used in search engine" -msgstr "" - -#: ../config/_GV_template.php:351 -msgid "Default query" -msgstr "" - -#: ../config/_GV_template.php:357 -msgid "Default searched type" -msgstr "" - -#: ../config/_GV_template.php:358 -msgid "Used when opening the application" -msgstr "" - -#: ../config/_GV_template.php:360 -msgid "Documents" -msgstr "" - -#: ../config/_GV_template.php:361 -msgid "Stories" -msgstr "" - -#: ../config/_GV_template.php:367 -#: ../tmp/cache_twig/51/0c/18503088e319b8875c981341ba05114f38df1aac9e32d800428337ffffeb.php:312 -msgid "Report" -msgstr "" - -#: ../config/_GV_template.php:373 -msgid "Anonymous report" -msgstr "" - -#: ../config/_GV_template.php:374 -msgid "Hide information about users" -msgstr "" - -#: ../config/_GV_template.php:380 -msgid "Additionnal modules" -msgstr "" - -#: ../config/_GV_template.php:386 -msgid "Enable thesaurus" -msgstr "" - -#: ../config/_GV_template.php:391 -msgid "Enable multi-doc mode" -msgstr "" - -#: ../config/_GV_template.php:396 -msgid "Enable HD substitution" -msgstr "" - -#: ../config/_GV_template.php:401 -msgid "Enable thumbnail substitution" -msgstr "" - -#: ../config/_GV_template.php:407 -msgid "Emails" -msgstr "" - -#: ../config/_GV_template.php:412 -msgid "Default mail sender address" -msgstr "" - -#: ../config/_GV_template.php:418 -msgid "Prefix for notification emails" -msgstr "" - -#: ../config/_GV_template.php:424 -msgid "Use a SMTP server" -msgstr "" - -#: ../config/_GV_template.php:430 -msgid "Enable SMTP authentication" -msgstr "" - -#: ../config/_GV_template.php:436 -msgid "SMTP host" -msgstr "" - -#: ../config/_GV_template.php:442 -msgid "SMTP port" -msgstr "" - -#: ../config/_GV_template.php:448 -msgid "SMTP encryption" -msgstr "" - -#: ../config/_GV_template.php:451 -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:450 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:171 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:450 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:171 -msgid "None" -msgstr "" - -#: ../config/_GV_template.php:459 -msgid "SMTP user" -msgstr "" - -#: ../config/_GV_template.php:465 -msgid "SMTP password" -msgstr "" - -#: ../config/_GV_template.php:470 -msgid "FTP Export" -msgstr "" - -#: ../config/_GV_template.php:475 -msgid "Enable FTP export" -msgstr "" - -#: ../config/_GV_template.php:476 -msgid "Available in multi-export tab" -msgstr "" - -#: ../config/_GV_template.php:482 -msgid "Enable FTP for users" -msgstr "" - -#: ../config/_GV_template.php:483 -msgid "By default it is available for admins" -msgstr "" - -#: ../config/_GV_template.php:488 -msgid "Client" -msgstr "" - -#: ../config/_GV_template.php:493 -msgid "Maximum megabytes allowed for download" -msgstr "" - -#: ../config/_GV_template.php:494 -msgid "If request is bigger, then mail is still available" -msgstr "" - -#: ../config/_GV_template.php:500 -msgid "Search tab position" -msgstr "" - -#: ../config/_GV_template.php:506 -msgid "Advanced search tab position" -msgstr "" - -#: ../config/_GV_template.php:512 -msgid "Topics tab position" -msgstr "" - -#: ../config/_GV_template.php:518 -msgid "Active tab position" -msgstr "" - -#: ../config/_GV_template.php:524 -msgid "Topics display mode" -msgstr "" - -#: ../config/_GV_template.php:526 -msgid "Trees" -msgstr "" - -#: ../config/_GV_template.php:527 ../config/_GV_template.php:549 -msgid "Drop-down" -msgstr "" - -#: ../config/_GV_template.php:534 -msgid "Enable roll-over on stories" -msgstr "" - -#: ../config/_GV_template.php:540 -msgid "Enable roll-over on basket elements" -msgstr "" - -#: ../config/_GV_template.php:546 -msgid "Collections display mode" -msgstr "" - -#: ../config/_GV_template.php:550 -msgid "Check-box" -msgstr "" - -#: ../config/_GV_template.php:556 -msgid "Display the total size of the document basket" -msgstr "" - -#: ../config/_GV_template.php:562 -msgid "Display proposals tab" -msgstr "" - -#: ../config/_GV_template.php:568 -msgid "Require authentication to download documents" -msgstr "" - -#: ../config/_GV_template.php:569 -msgid "Used for guest account" -msgstr "" - -#: ../config/_GV_template.php:575 -msgid "Users must accept Terms of Use for each export" -msgstr "" - -#: ../config/_GV_template.php:580 -msgid "Registration" -msgstr "" - -#: ../config/_GV_template.php:585 -msgid "Auto select databases" -msgstr "" - -#: ../config/_GV_template.php:586 -msgid "" -"This option disables the selecting of the databases on which a user can " -"register himself, and registration is made on all granted databases." -msgstr "" - -#: ../config/_GV_template.php:592 -msgid "Enable auto registration" -msgstr "" - -#: ../config/_GV_template.php:597 -msgid "Push configuration" -msgstr "" - -#: ../config/_GV_template.php:602 -msgid "" -"Number of days before the end of the validation to send a reminder email" -msgstr "" - -#: ../config/_GV_template.php:608 -msgid "Default validation links duration" -msgstr "" - -#: ../config/_GV_template.php:609 -msgid "If set to 0, duration is permanent" -msgstr "" - -#: ../config/_GV_template.php:614 -msgid "Robot indexing" -msgstr "" - -#: ../config/_GV_template.php:619 -msgid "Application title" -msgstr "" - -#: ../config/_GV_template.php:625 -msgid "Keywords used for indexing purposes by search engines robots" -msgstr "" - -#: ../config/_GV_template.php:631 -msgid "Application description" -msgstr "" - -#: ../config/_GV_template.php:637 -msgid "Google Analytics identifier" -msgstr "" - -#: ../config/_GV_template.php:643 -msgid "Allow the website to be indexed by search engines like Google" -msgstr "" - -#: ../lib/classes/databox.php:1324 +#: ../lib/classes/databox.php:1343 msgid "ERREUR : TOUTES LES BALISES subdefgroup necessitent un attribut name" msgstr "" -#: ../lib/classes/databox.php:1335 +#: ../lib/classes/databox.php:1354 msgid "" "ERREUR : Les name de subdef sont uniques par groupe de subdefs et necessaire" msgstr "" -#: ../lib/classes/databox.php:1339 +#: ../lib/classes/databox.php:1358 msgid "" "ERREUR : La classe de subdef est necessaire et egal a \"thumbnail\",\"preview" "\" ou \"document\"" @@ -716,9 +201,8 @@ msgid "Your install might need to build some sub-definitions" msgstr "" #: ../lib/classes/queries.php:168 ../lib/classes/queries.php:181 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:197 -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1405 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1405 +#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1398 +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1398 #: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:202 #: ../tmp/cache_twig/08/16/03bf13cb1a99a73a5231f0d0f7f0e327ccd12cd3288ac87096407b704187.php:105 #: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:197 @@ -800,21 +284,17 @@ msgstr "" msgid "export::ftp: reglages manuels" msgstr "" -#: ../lib/classes/API/V1/adapter.php:1106 -#: ../lib/classes/API/V1/adapter.php:1152 -#: ../lib/classes/API/V1/adapter.php:1202 -#: ../lib/classes/API/V1/adapter.php:1226 +#: ../lib/classes/API/V1/adapter.php:1117 +#: ../lib/classes/API/V1/adapter.php:1163 +#: ../lib/classes/API/V1/adapter.php:1213 +#: ../lib/classes/API/V1/adapter.php:1237 #: ../tmp/cache_twig/01/76/7202d9b016d6892bf9a0c3d8d47d7c372edd6aa7c646076d04d09c1a198d.php:46 -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:58 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:860 #: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:228 #: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:331 #: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:58 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:65 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:65 #: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:860 #: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:53 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:53 #: ../lib/Alchemy/Phrasea/Controller/Admin/Collection.php:550 #: ../lib/Alchemy/Phrasea/Controller/Admin/Collection.php:585 #: ../lib/Alchemy/Phrasea/Controller/Admin/Collection.php:620 @@ -843,20 +323,20 @@ msgstr "" #: ../lib/Alchemy/Phrasea/Controller/Prod/Lazaret.php:428 #: ../lib/Alchemy/Phrasea/Controller/Prod/Lazaret.php:502 #: ../lib/Alchemy/Phrasea/Controller/Prod/MoveCollection.php:113 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:316 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:324 #: ../lib/Alchemy/Phrasea/Controller/Prod/Feed.php:68 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:118 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:182 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:200 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:206 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:115 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:179 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:201 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:207 msgid "An error occured" msgstr "" -#: ../lib/classes/API/V1/adapter.php:1200 +#: ../lib/classes/API/V1/adapter.php:1211 msgid "Record Not Found" msgstr "" -#: ../lib/classes/API/V1/adapter.php:1224 +#: ../lib/classes/API/V1/adapter.php:1235 msgid "Story Not Found" msgstr "" @@ -1090,8 +570,8 @@ msgstr "" #: ../lib/classes/task/period/archive.php:232 #: ../lib/classes/task/period/RecordMover.php:288 #: ../lib/classes/task/period/ftpPull.php:226 -#: ../lib/classes/task/period/subdef.php:222 -#: ../lib/classes/task/period/writemeta.php:172 +#: ../lib/classes/task/period/subdef.php:269 +#: ../lib/classes/task/period/writemeta.php:174 #: ../lib/classes/task/period/ftp.php:158 msgid "task::_common_:periodicite de la tache" msgstr "" @@ -1100,8 +580,8 @@ msgstr "" #: ../lib/classes/task/period/archive.php:242 #: ../lib/classes/task/period/RecordMover.php:291 #: ../lib/classes/task/period/ftpPull.php:229 -#: ../lib/classes/task/period/subdef.php:225 -#: ../lib/classes/task/period/writemeta.php:175 +#: ../lib/classes/task/period/subdef.php:272 +#: ../lib/classes/task/period/writemeta.php:177 #: ../lib/classes/task/period/ftp.php:161 msgid "task::_common_:secondes (unite temporelle)" msgstr "" @@ -1174,47 +654,96 @@ msgstr "" msgid "task::ftp:utiliser SSL" msgstr "" -#: ../lib/classes/task/period/subdef.php:43 +#: ../lib/classes/task/period/subdef.php:45 msgid "task::subdef:creation des sous definitions des documents d'origine" msgstr "" -#: ../lib/classes/task/period/subdef.php:54 +#: ../lib/classes/task/period/subdef.php:56 msgid "task::subdef:creation des sous definitions" msgstr "" -#: ../lib/classes/task/period/subdef.php:229 +#: ../lib/classes/task/period/subdef.php:276 +#, php-format +msgid "Databox" +msgstr "" + +#: ../lib/classes/task/period/subdef.php:279 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:244 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:269 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:294 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:319 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:344 +#: ../tmp/cache_twig/9d/de/4a3fc48903fedfcf545b274e1584032d25e8b5d0713f2d25c0c3ed18920b.php:42 +msgid "All" +msgstr "" + +#: ../lib/classes/task/period/subdef.php:293 +msgid "recordtype" +msgstr "" + +#: ../lib/classes/task/period/subdef.php:296 +#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:45 +msgid "image" +msgstr "" + +#: ../lib/classes/task/period/subdef.php:299 +#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:63 +msgid "video" +msgstr "" + +#: ../lib/classes/task/period/subdef.php:302 +#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:69 +msgid "audio" +msgstr "" + +#: ../lib/classes/task/period/subdef.php:305 +#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:51 +#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:244 +#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:397 +msgid "document" +msgstr "" + +#: ../lib/classes/task/period/subdef.php:308 +msgid "flash" +msgstr "" + +#: ../lib/classes/task/period/subdef.php:311 +msgid "unknown" +msgstr "" + +#: ../lib/classes/task/period/subdef.php:316 #, php-format msgid "Number of records to process per batch" msgstr "" -#: ../lib/classes/task/period/subdef.php:235 -#: ../lib/classes/task/period/writemeta.php:187 +#: ../lib/classes/task/period/subdef.php:322 +#: ../lib/classes/task/period/writemeta.php:189 msgid "Restart the task every X records" msgstr "" -#: ../lib/classes/task/period/subdef.php:241 +#: ../lib/classes/task/period/subdef.php:328 msgid "Restart the task if memory reaches" msgstr "" -#: ../lib/classes/task/period/subdef.php:248 +#: ../lib/classes/task/period/subdef.php:335 msgid "Try to extract embedded thumbnails" msgstr "" -#: ../lib/classes/task/period/writemeta.php:24 +#: ../lib/classes/task/period/writemeta.php:26 msgid "" "task::writemeta:(re)ecriture des metadatas dans les documents (et subdefs " "concernees)" msgstr "" -#: ../lib/classes/task/period/writemeta.php:35 +#: ../lib/classes/task/period/writemeta.php:37 msgid "task::writemeta:ecriture des metadatas" msgstr "" -#: ../lib/classes/task/period/writemeta.php:182 +#: ../lib/classes/task/period/writemeta.php:184 msgid "task::writemeta:effacer les metadatas non presentes dans la structure" msgstr "" -#: ../lib/classes/task/period/writemeta.php:193 +#: ../lib/classes/task/period/writemeta.php:195 msgid "task::_common_:records, ou si la memoire depasse" msgstr "" @@ -1465,10 +994,8 @@ msgid "" msgstr "" #: ../lib/classes/eventsmanager/notify/autoregister.php:195 -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:843 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:295 #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:670 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:295 #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:290 #: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:290 #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:163 @@ -1479,10 +1006,8 @@ msgid "admin::compte-utilisateur nom" msgstr "" #: ../lib/classes/eventsmanager/notify/autoregister.php:196 -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:829 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:297 #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:683 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:297 #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:176 #: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:829 #: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:65 @@ -1491,11 +1016,8 @@ msgid "admin::compte-utilisateur prenom" msgstr "" #: ../lib/classes/eventsmanager/notify/autoregister.php:197 -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:857 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:307 #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:696 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:327 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:307 #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:314 #: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:314 #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:189 @@ -1505,16 +1027,16 @@ msgstr "" msgid "admin::compte-utilisateur email" msgstr "" -#: ../lib/classes/eventsmanager/notify/feed.php:150 +#: ../lib/classes/eventsmanager/notify/feed.php:148 #, php-format msgid "%1$s has published %2$s" msgstr "" -#: ../lib/classes/eventsmanager/notify/feed.php:166 +#: ../lib/classes/eventsmanager/notify/feed.php:164 msgid "Feeds" msgstr "" -#: ../lib/classes/eventsmanager/notify/feed.php:175 +#: ../lib/classes/eventsmanager/notify/feed.php:173 msgid "Receive notification when a publication is available" msgstr "" @@ -1606,7 +1128,7 @@ msgid "Refus d'elements de commande" msgstr "" #: ../lib/classes/module/report.php:661 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:251 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:250 #: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:132 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:467 msgid "report:: utilisateur" @@ -1614,7 +1136,7 @@ msgstr "" #: ../lib/classes/module/report.php:662 #: ../lib/classes/module/report/filter.php:68 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:322 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:321 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:78 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:307 msgid "report:: collections" @@ -1636,7 +1158,7 @@ msgstr "" #: ../lib/classes/module/report.php:664 #: ../lib/classes/module/report/filter.php:69 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:323 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:322 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:79 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:308 msgid "report:: commentaire" @@ -1647,7 +1169,7 @@ msgstr "" #: ../lib/classes/module/report/filter.php:70 #: ../tmp/cache_twig/94/8a/600a8fd8ba7ee3e38728d78a824d0d0eb3e3b979f4478ababab2a8f774a7.php:226 #: ../tmp/cache_twig/94/8a/600a8fd8ba7ee3e38728d78a824d0d0eb3e3b979f4478ababab2a8f774a7.php:238 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:252 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:251 #: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:190 #: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:242 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:82 @@ -1656,9 +1178,9 @@ msgstr "" #: ../lib/classes/module/report.php:666 ../lib/classes/module/report.php:667 #: ../lib/classes/module/report/filter.php:59 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:190 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:253 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:319 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:189 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:252 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:318 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:58 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:71 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:75 @@ -1671,8 +1193,8 @@ msgstr "" #: ../lib/classes/module/report.php:668 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:185 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:289 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:254 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:324 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:253 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:323 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:309 msgid "report:: fonction" msgstr "" @@ -1680,8 +1202,8 @@ msgstr "" #: ../lib/classes/module/report.php:669 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:193 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:297 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:255 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:325 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:254 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:324 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:310 msgid "report:: activite" msgstr "" @@ -1689,8 +1211,8 @@ msgstr "" #: ../lib/classes/module/report.php:670 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:197 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:301 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:256 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:326 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:255 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:325 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:311 msgid "report:: pays" msgstr "" @@ -1698,18 +1220,18 @@ msgstr "" #: ../lib/classes/module/report.php:671 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:189 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:293 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:257 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:327 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:256 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:326 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:312 msgid "report:: societe" msgstr "" #: ../lib/classes/module/report.php:672 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:449 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:455 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:460 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:465 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:470 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:448 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:454 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:459 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:464 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:469 #: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:191 #: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:243 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:100 @@ -1718,11 +1240,11 @@ msgid "report:: nombre" msgstr "" #: ../lib/classes/module/report.php:673 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:450 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:456 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:461 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:466 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:471 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:449 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:455 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:460 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:465 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:470 msgid "report:: pourcentage" msgstr "" @@ -1732,8 +1254,8 @@ msgstr "" #: ../lib/classes/module/report.php:675 #: ../lib/classes/module/report/filter.php:66 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:320 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:389 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:319 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:388 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:57 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:76 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:296 @@ -1745,17 +1267,17 @@ msgid "report:: type d'action" msgstr "" #: ../lib/classes/module/report.php:678 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:391 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:390 msgid "report:: fichier" msgstr "" #: ../lib/classes/module/report.php:679 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:392 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:391 msgid "report:: type" msgstr "" #: ../lib/classes/module/report.php:680 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:393 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:392 msgid "report:: taille" msgstr "" @@ -1765,7 +1287,7 @@ msgstr "" #: ../lib/classes/module/report.php:682 #: ../lib/classes/module/report/filter.php:67 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:390 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:389 msgid "phraseanet:: sous definition" msgstr "" @@ -1845,7 +1367,7 @@ msgstr "" msgid "decembre" msgstr "" -#: ../lib/classes/module/console/systemUpgrade.php:61 +#: ../lib/classes/module/console/systemUpgrade.php:55 msgid "Continuer ?" msgstr "" @@ -1882,7 +1404,7 @@ msgid "report:: edited documents" msgstr "" #: ../lib/classes/module/report/nav.php:103 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:448 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:447 msgid "report:: navigateur" msgstr "" @@ -1891,18 +1413,18 @@ msgid "report:: Plateforme" msgstr "" #: ../lib/classes/module/report/nav.php:219 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:464 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:463 msgid "report:: resolution" msgstr "" #: ../lib/classes/module/report/nav.php:279 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:454 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:453 msgid "report:: navigateurs et plateforme" msgstr "" #: ../lib/classes/module/report/nav.php:340 #: ../lib/classes/module/report/filter.php:61 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:192 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:191 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:72 msgid "report:: modules" msgstr "" @@ -1945,37 +1467,37 @@ msgstr "" #: ../tmp/cache_twig/94/8a/600a8fd8ba7ee3e38728d78a824d0d0eb3e3b979f4478ababab2a8f774a7.php:208 #: ../tmp/cache_twig/86/96/c50474d682d60204be567efebad9abb32aea7fe04e1aae0a24cd042dd09b.php:48 #: ../tmp/cache_twig/5d/ad/5b91b7a6cfc18481894d2b8c7bbe5d265dc8cfc78a8f648f76a7fd93264c.php:48 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:388 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:387 msgid "report:: telechargements" msgstr "" #: ../lib/classes/module/report/filter.php:58 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:189 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:188 msgid "phraseanet::utilisateurs" msgstr "" #: ../lib/classes/module/report/filter.php:60 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:191 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:190 msgid "report:: IP" msgstr "" #: ../lib/classes/module/report/filter.php:62 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:193 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:192 msgid "report::fonction" msgstr "" #: ../lib/classes/module/report/filter.php:63 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:194 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:193 msgid "report::activite" msgstr "" #: ../lib/classes/module/report/filter.php:64 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:195 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:194 msgid "report::pays" msgstr "" #: ../lib/classes/module/report/filter.php:65 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:196 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:195 msgid "report::societe" msgstr "" @@ -2143,10 +1665,8 @@ msgid "boutton::enregistrer" msgstr "" #: ../tmp/cache_twig/01/76/7202d9b016d6892bf9a0c3d8d47d7c372edd6aa7c646076d04d09c1a198d.php:36 -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:48 #: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:48 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:55 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:55 #: ../lib/Alchemy/Phrasea/Controller/Admin/Collection.php:984 #: ../lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1022 #: ../lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1061 @@ -2249,6 +1769,81 @@ msgstr "" msgid "boutton::monter" msgstr "" +#: ../tmp/cache_twig/01/9a/b60c0fcbeb44c2c9f47cb74645be87474c725160b22a757c74fdc091dac2.php:22 +#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:22 +#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:63 +#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:63 +msgid "Setup" +msgstr "" + +#: ../tmp/cache_twig/01/9a/b60c0fcbeb44c2c9f47cb74645be87474c725160b22a757c74fdc091dac2.php:276 +#: ../tmp/cache_twig/01/9a/b60c0fcbeb44c2c9f47cb74645be87474c725160b22a757c74fdc091dac2.php:327 +#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:276 +#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:327 +msgid "erreur avec la valeur %name%" +msgstr "" + +#: ../tmp/cache_twig/01/9a/b60c0fcbeb44c2c9f47cb74645be87474c725160b22a757c74fdc091dac2.php:482 +#: ../tmp/cache_twig/3b/ab/b47f963b377299aea801c165a16a39fc97d6a60d7005cd70f666315b2bce.php:78 +#: ../tmp/cache_twig/86/95/a766bab60e20263f3a76e303a87aef30aeed628c7887227aac384b9ffdc4.php:74 +#: ../tmp/cache_twig/0a/1b/e34e137b60267bb2074a1eebce9913a239a1ae6d2cbeca7d7c7bc8626089.php:77 +#: ../tmp/cache_twig/f5/25/26a9c9c89a4544b638d8cb920b86e4ad4a53a3447eb398985cc99e29a27a.php:196 +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:488 +#: ../tmp/cache_twig/c9/db/fc05a687527ffcea5900b8c3639bc1fb1e451abea2f6f32868a11c122bc8.php:180 +#: ../tmp/cache_twig/a4/29/9d4202bef5356fa2348fbc0c8ca67c470bd6d541b1a88626a37a13058220.php:131 +#: ../tmp/cache_twig/6e/bd/f9193590d15ae5f9c4d187bb1e6b891149980ed7702ba39fadf5d6feead3.php:74 +#: ../tmp/cache_twig/c2/cd/0edfdf965cae686928b893aecee859cc95eabd7c0f1d0e9529d886303081.php:74 +#: ../tmp/cache_twig/c6/14/eb1b4181802db8b69470965dc865cf6c643b0dfec76fb8bb1a3a491c5ab9.php:160 +#: ../tmp/cache_twig/79/dc/66fde540fca94a734960ec1caff0853d35b682f22c085f5deb14749a0d06.php:182 +#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:482 +#: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:113 +#: ../tmp/cache_twig/f0/4d/5fa9878e5e837c599426d7949a7560835bd9022aef1c645e6c00eecce499.php:180 +#: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:152 +#: ../tmp/cache_twig/ef/d4/b0d18671f32d3a0ebea5dcde8c814f610214c29a0e536c22584d6cb3d9b9.php:234 +#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:72 +#: ../tmp/cache_twig/4c/bf/5727e2a78ae25e76bf3dd674c0f499bd5300296aaed204214aa455a50987.php:111 +#: ../tmp/cache_twig/2b/d7/0f5f275852582b8dea384f3ea54b8d2dfa693d41e0c626b1b4beb2dc26a1.php:120 +#: ../tmp/cache_twig/f4/c7/5574405b1ed7d6237c4c894fc093d06961fc01a172d22fe904ec51a41b74.php:129 +#: ../tmp/cache_twig/71/3a/d49ad1d50eb2444c0bcb1449c2f6b21bfa95013a375870d95df60e59525c.php:138 +#: ../tmp/cache_twig/f6/48/9fdef8e5bcd467702bf0fc37b74a372eea4f8a0095f9b843a2bbb5492ad5.php:103 +#: ../tmp/cache_twig/ba/7d/e75c50395bcaf6529e78a2fb3aa60137de877e6835e66be82712e66ae2d3.php:103 +#: ../tmp/cache_twig/f2/87/6b100ae1c9075a7357e8702579ae166529504e1c6bbbdf2b0a14c26f76f0.php:74 +#: ../tmp/cache_twig/37/fe/644ac28917c84e903c2640c6dc036440c6b810143a478e9fc6e511797679.php:103 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:509 +#: ../tmp/cache_twig/88/b3/a68391b09fbc77bacf14181cf9292ad30591784465daaf3f80a24ca136c1.php:67 +#: ../tmp/cache_twig/f7/fe/2b6b0647bba4cd3a38bd497eb217e1353439050817ee0a5e815ecb368789.php:231 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:990 +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:221 +#: ../tmp/cache_twig/18/81/534c52ed6dc27a9b3d96d0e556c668e45049b0544b019bcdc19a2a190621.php:178 +#: ../tmp/cache_twig/78/e0/fc37749b10cd47bdee7978fcdfc6f998488df32c4344ae16ab45b52de332.php:74 +#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:171 +#: ../tmp/cache_twig/a2/33/8d87342695b62d292dd7029c19564cc3ab9b99ce9034d81019263d15a804.php:63 +#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:734 +#: ../tmp/cache_twig/e2/07/010647dc8415a615d5f8cf2093c6fa3721c9a3b8e58e708eb900cc7bdebf.php:67 +#: ../tmp/cache_twig/0f/1a/2943a9b8534b0da4f702678616cb595709744afee1183ddee046bccc69f9.php:103 +#: ../tmp/cache_twig/96/a1/7b38f615336af0c84683a91ace70b9aa67c1a43acb498429d6882ac2dfbc.php:315 +#: ../tmp/cache_twig/a9/0c/8a8cbfe5d6b1a893662f865ece58bd76a8bd33b7c696dc4ff370eaadd4a9.php:306 +#: ../tmp/cache_twig/35/29/71e36a293225ce5372e99db946bf567585c4a65a61433e3c73ad354f9236.php:76 +#: ../tmp/cache_twig/35/3c/c8c14efa08266d7255db5f4b30255297ebb9500894c7d9af510fc4550214.php:169 +#: ../tmp/cache_twig/35/3c/c8c14efa08266d7255db5f4b30255297ebb9500894c7d9af510fc4550214.php:246 +#: ../tmp/cache_twig/6c/a4/1f01b162e7851408eead3a04d9e6de6374b54a32a55e7d6380cdba0f2f53.php:127 +#: ../tmp/cache_twig/98/a5/f945c93304136135a26fa3cce67ff847dd8e2b2c48296b14aa0d643dde2b.php:109 +#: ../tmp/cache_twig/8f/ac/36591e4ba588a071b21bae71ea6da83259df62670763ae7e9cd2e5da556e.php:480 +#: ../tmp/cache_twig/64/81/83b73fb5a6159fbb4692452426501112d9f3e3746c6a4da2a126b639e326.php:73 +#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:462 +#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:485 +#: ../tmp/cache_twig/bb/68/1551edcbc53574a4b19f29bd9604f86b97c0c81fdad097803bc3f82c51b1.php:74 +#: ../tmp/cache_twig/97/fe/c90f86fa3cdc292b5f1e598b398f5eb76d0db3adc514986e60285ccdb92e.php:134 +#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1975 +#: ../tmp/cache_twig/5e/93/f96277b28158c423dfdf2cc2e1699111753fcae4276f0173f3eb0cd67ec4.php:81 +#: ../tmp/cache_twig/57/d7/862a6d9ece31ca7a8450dd2dd95202d61a8181dd207a620b9d9b179f08ac.php:115 +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1975 +#: ../tmp/cache_twig/7d/1d/0e0610f67f01a7610b14ed19d95faa829f3da46d9c1c8e5b43116a1f9d33.php:42 +#: ../tmp/cache_twig/46/16/ce4342ba8d6f1ad6ad3ec6d404a050649a3a11d1578ade704aadb9b4b8cf.php:126 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:47 +msgid "boutton::valider" +msgstr "" + #: ../tmp/cache_twig/94/90/cc824cded39dcf79a157b837e4df1e45ddc8623271a52ff7f6c1574c666a.php:22 msgid "Upload a csv file for users creation" msgstr "" @@ -2289,10 +1884,6 @@ msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:567 #: ../tmp/cache_twig/96/a1/7b38f615336af0c84683a91ace70b9aa67c1a43acb498429d6882ac2dfbc.php:132 #: ../tmp/cache_twig/96/a1/7b38f615336af0c84683a91ace70b9aa67c1a43acb498429d6882ac2dfbc.php:252 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:399 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:455 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:511 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:567 #: ../tmp/cache_twig/5f/5b/af90ed6dd30d3a17dd01e65d349b45edf4aad5dadbb00da847719774c6d7.php:416 msgid "Select files..." msgstr "" @@ -2300,7 +1891,6 @@ msgstr "" #: ../tmp/cache_twig/94/90/cc824cded39dcf79a157b837e4df1e45ddc8623271a52ff7f6c1574c666a.php:131 #: ../tmp/cache_twig/3b/ab/b47f963b377299aea801c165a16a39fc97d6a60d7005cd70f666315b2bce.php:82 #: ../tmp/cache_twig/86/95/a766bab60e20263f3a76e303a87aef30aeed628c7887227aac384b9ffdc4.php:78 -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:996 #: ../tmp/cache_twig/6e/bd/f9193590d15ae5f9c4d187bb1e6b891149980ed7702ba39fadf5d6feead3.php:78 #: ../tmp/cache_twig/c2/cd/0edfdf965cae686928b893aecee859cc95eabd7c0f1d0e9529d886303081.php:78 #: ../tmp/cache_twig/2b/16/5fc7947aac4b3242f75df1003a949bea49617571578732ab068bce43637e.php:213 @@ -2324,9 +1914,7 @@ msgstr "" #: ../tmp/cache_twig/94/90/cc824cded39dcf79a157b837e4df1e45ddc8623271a52ff7f6c1574c666a.php:146 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:594 #: ../tmp/cache_twig/96/a1/7b38f615336af0c84683a91ace70b9aa67c1a43acb498429d6882ac2dfbc.php:350 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:594 -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:694 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:694 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:715 msgid "" "Invalid file type, only (%supported_file_types%) file formats are supported" msgstr "" @@ -2365,7 +1953,7 @@ msgstr "" #: ../tmp/cache_twig/94/8a/600a8fd8ba7ee3e38728d78a824d0d0eb3e3b979f4478ababab2a8f774a7.php:151 #: ../tmp/cache_twig/94/8a/600a8fd8ba7ee3e38728d78a824d0d0eb3e3b979f4478ababab2a8f774a7.php:169 #: ../tmp/cache_twig/94/8a/600a8fd8ba7ee3e38728d78a824d0d0eb3e3b979f4478ababab2a8f774a7.php:223 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:318 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:317 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:305 msgid "report:: utilisateurs" msgstr "" @@ -2403,7 +1991,7 @@ msgid "report:: preview les plus telecharges" msgstr "" #: ../tmp/cache_twig/94/8a/600a8fd8ba7ee3e38728d78a824d0d0eb3e3b979f4478ababab2a8f774a7.php:205 -#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:349 +#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:347 msgid "report:: preview" msgstr "" @@ -2583,8 +2171,7 @@ msgid "preview:: Popularite" msgstr "" #: ../tmp/cache_twig/3b/07/a9a3906b11952256cf2866410a28899d5afd5215ff59479df7cdac37a126.php:1024 -#: ../tmp/cache_twig/fe/10/44fd599573da2ce552a9f03c8515023a4a847cdadb287e12e2327782eb0e.php:88 -#: ../tmp/cache_twig/77/56/1124cf333071bb255188be0cabe9d749e349e9b29d513f8e948d83f7e2e3.php:488 +#: ../tmp/cache_twig/77/56/1124cf333071bb255188be0cabe9d749e349e9b29d513f8e948d83f7e2e3.php:490 #: ../tmp/cache_twig/39/b4/7f3771406edf35ef9d791fd45a7048688d56c740ced66241b76f382ccd5a.php:144 #: ../tmp/cache_twig/39/b4/7f3771406edf35ef9d791fd45a7048688d56c740ced66241b76f382ccd5a.php:338 #: ../tmp/cache_twig/e9/3e/149ce3009cd2c4aa24e1f29bdab9e7dee50b5d5c1c97f151abfb9e481ae3.php:83 @@ -2611,7 +2198,7 @@ msgstr "" #: ../tmp/cache_twig/a1/71/db604186696f9f739dc9f30bd6fe95f4bf4525b906cd381b89c84f1ac628.php:95 #: ../tmp/cache_twig/c9/db/fc05a687527ffcea5900b8c3639bc1fb1e451abea2f6f32868a11c122bc8.php:67 #: ../tmp/cache_twig/f0/4d/5fa9878e5e837c599426d7949a7560835bd9022aef1c645e6c00eecce499.php:67 -#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:37 +#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:38 #: ../tmp/cache_twig/6a/bd/fb12585e7041a6be70c4636cf1b414aed005587f3d961ab3724217c21ea7.php:119 #: ../tmp/cache_twig/f7/fe/2b6b0647bba4cd3a38bd497eb217e1353439050817ee0a5e815ecb368789.php:133 #: ../tmp/cache_twig/0f/1a/2943a9b8534b0da4f702678616cb595709744afee1183ddee046bccc69f9.php:67 @@ -2636,71 +2223,6 @@ msgstr "" msgid "Description" msgstr "" -#: ../tmp/cache_twig/3b/ab/b47f963b377299aea801c165a16a39fc97d6a60d7005cd70f666315b2bce.php:78 -#: ../tmp/cache_twig/86/95/a766bab60e20263f3a76e303a87aef30aeed628c7887227aac384b9ffdc4.php:74 -#: ../tmp/cache_twig/0a/1b/e34e137b60267bb2074a1eebce9913a239a1ae6d2cbeca7d7c7bc8626089.php:77 -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:990 -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:221 -#: ../tmp/cache_twig/f5/25/26a9c9c89a4544b638d8cb920b86e4ad4a53a3447eb398985cc99e29a27a.php:196 -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:488 -#: ../tmp/cache_twig/c9/db/fc05a687527ffcea5900b8c3639bc1fb1e451abea2f6f32868a11c122bc8.php:180 -#: ../tmp/cache_twig/a4/29/9d4202bef5356fa2348fbc0c8ca67c470bd6d541b1a88626a37a13058220.php:131 -#: ../tmp/cache_twig/6e/bd/f9193590d15ae5f9c4d187bb1e6b891149980ed7702ba39fadf5d6feead3.php:74 -#: ../tmp/cache_twig/c2/cd/0edfdf965cae686928b893aecee859cc95eabd7c0f1d0e9529d886303081.php:74 -#: ../tmp/cache_twig/c6/14/eb1b4181802db8b69470965dc865cf6c643b0dfec76fb8bb1a3a491c5ab9.php:160 -#: ../tmp/cache_twig/79/dc/66fde540fca94a734960ec1caff0853d35b682f22c085f5deb14749a0d06.php:182 -#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:467 -#: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:113 -#: ../tmp/cache_twig/f0/4d/5fa9878e5e837c599426d7949a7560835bd9022aef1c645e6c00eecce499.php:180 -#: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:152 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:488 -#: ../tmp/cache_twig/ef/d4/b0d18671f32d3a0ebea5dcde8c814f610214c29a0e536c22584d6cb3d9b9.php:234 -#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:117 -#: ../tmp/cache_twig/4c/bf/5727e2a78ae25e76bf3dd674c0f499bd5300296aaed204214aa455a50987.php:111 -#: ../tmp/cache_twig/2b/d7/0f5f275852582b8dea384f3ea54b8d2dfa693d41e0c626b1b4beb2dc26a1.php:120 -#: ../tmp/cache_twig/f4/c7/5574405b1ed7d6237c4c894fc093d06961fc01a172d22fe904ec51a41b74.php:129 -#: ../tmp/cache_twig/71/3a/d49ad1d50eb2444c0bcb1449c2f6b21bfa95013a375870d95df60e59525c.php:138 -#: ../tmp/cache_twig/f6/48/9fdef8e5bcd467702bf0fc37b74a372eea4f8a0095f9b843a2bbb5492ad5.php:103 -#: ../tmp/cache_twig/ba/7d/e75c50395bcaf6529e78a2fb3aa60137de877e6835e66be82712e66ae2d3.php:103 -#: ../tmp/cache_twig/f2/87/6b100ae1c9075a7357e8702579ae166529504e1c6bbbdf2b0a14c26f76f0.php:74 -#: ../tmp/cache_twig/37/fe/644ac28917c84e903c2640c6dc036440c6b810143a478e9fc6e511797679.php:103 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:509 -#: ../tmp/cache_twig/88/b3/a68391b09fbc77bacf14181cf9292ad30591784465daaf3f80a24ca136c1.php:67 -#: ../tmp/cache_twig/f7/fe/2b6b0647bba4cd3a38bd497eb217e1353439050817ee0a5e815ecb368789.php:231 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:990 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:221 -#: ../tmp/cache_twig/18/81/534c52ed6dc27a9b3d96d0e556c668e45049b0544b019bcdc19a2a190621.php:178 -#: ../tmp/cache_twig/78/e0/fc37749b10cd47bdee7978fcdfc6f998488df32c4344ae16ab45b52de332.php:74 -#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:171 -#: ../tmp/cache_twig/a2/33/8d87342695b62d292dd7029c19564cc3ab9b99ce9034d81019263d15a804.php:63 -#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:734 -#: ../tmp/cache_twig/e2/07/010647dc8415a615d5f8cf2093c6fa3721c9a3b8e58e708eb900cc7bdebf.php:67 -#: ../tmp/cache_twig/0f/1a/2943a9b8534b0da4f702678616cb595709744afee1183ddee046bccc69f9.php:103 -#: ../tmp/cache_twig/96/a1/7b38f615336af0c84683a91ace70b9aa67c1a43acb498429d6882ac2dfbc.php:315 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:171 -#: ../tmp/cache_twig/a9/0c/8a8cbfe5d6b1a893662f865ece58bd76a8bd33b7c696dc4ff370eaadd4a9.php:306 -#: ../tmp/cache_twig/35/29/71e36a293225ce5372e99db946bf567585c4a65a61433e3c73ad354f9236.php:76 -#: ../tmp/cache_twig/35/3c/c8c14efa08266d7255db5f4b30255297ebb9500894c7d9af510fc4550214.php:169 -#: ../tmp/cache_twig/35/3c/c8c14efa08266d7255db5f4b30255297ebb9500894c7d9af510fc4550214.php:246 -#: ../tmp/cache_twig/6c/a4/1f01b162e7851408eead3a04d9e6de6374b54a32a55e7d6380cdba0f2f53.php:127 -#: ../tmp/cache_twig/98/a5/f945c93304136135a26fa3cce67ff847dd8e2b2c48296b14aa0d643dde2b.php:109 -#: ../tmp/cache_twig/8f/ac/36591e4ba588a071b21bae71ea6da83259df62670763ae7e9cd2e5da556e.php:480 -#: ../tmp/cache_twig/64/81/83b73fb5a6159fbb4692452426501112d9f3e3746c6a4da2a126b639e326.php:73 -#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:462 -#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:485 -#: ../tmp/cache_twig/bb/68/1551edcbc53574a4b19f29bd9604f86b97c0c81fdad097803bc3f82c51b1.php:74 -#: ../tmp/cache_twig/97/fe/c90f86fa3cdc292b5f1e598b398f5eb76d0db3adc514986e60285ccdb92e.php:134 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1975 -#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:113 -#: ../tmp/cache_twig/5e/93/f96277b28158c423dfdf2cc2e1699111753fcae4276f0173f3eb0cd67ec4.php:81 -#: ../tmp/cache_twig/57/d7/862a6d9ece31ca7a8450dd2dd95202d61a8181dd207a620b9d9b179f08ac.php:115 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1975 -#: ../tmp/cache_twig/7d/1d/0e0610f67f01a7610b14ed19d95faa829f3da46d9c1c8e5b43116a1f9d33.php:42 -#: ../tmp/cache_twig/46/16/ce4342ba8d6f1ad6ad3ec6d404a050649a3a11d1578ade704aadb9b4b8cf.php:126 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:47 -msgid "boutton::valider" -msgstr "" - #: ../tmp/cache_twig/86/96/c50474d682d60204be567efebad9abb32aea7fe04e1aae0a24cd042dd09b.php:40 #: ../tmp/cache_twig/23/ab/fc23a43cbaa77075d8a5710b8dcddec6d52ec614aeb8749d0d7fb2cac59f.php:76 #: ../tmp/cache_twig/d2/57/968a95f30bb57ee2923f27c75cac31e1ef1498bbefbe1dbf50456b9863ba.php:32 @@ -2730,344 +2252,24 @@ msgid "Reorder collections" msgstr "" #: ../tmp/cache_twig/0a/1b/e34e137b60267bb2074a1eebce9913a239a1ae6d2cbeca7d7c7bc8626089.php:55 -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:164 #: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:164 msgid "admin::base:collorder: monter" msgstr "" #: ../tmp/cache_twig/0a/1b/e34e137b60267bb2074a1eebce9913a239a1ae6d2cbeca7d7c7bc8626089.php:59 -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:168 #: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:168 msgid "admin::base:collorder: descendre" msgstr "" #: ../tmp/cache_twig/0a/1b/e34e137b60267bb2074a1eebce9913a239a1ae6d2cbeca7d7c7bc8626089.php:63 -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:176 #: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:176 msgid "admin::base:collorder: reinitialiser en ordre alphabetique" msgstr "" -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:69 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:69 -msgid "Rights" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:79 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:79 -msgid "Infos" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:111 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:89 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:111 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:89 -msgid "Reglages:: reglages d acces guest" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:117 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:97 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:117 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:97 -msgid "Reglages:: reglages d inscitpition automatisee" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:129 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:129 -msgid "Edition des droits de %display_name%" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:141 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:141 -msgid "Edition des droits de %number% utilisateurs" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:150 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:209 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:150 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:209 -msgid "Apply a template" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:155 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:214 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:155 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:214 -msgid "boutton::choisir" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:177 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:249 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:177 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:249 -msgid "Delete all users rights" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:461 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:461 -msgid "Allowed to publish" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:470 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:470 -msgid "Manage Thesaurus" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:479 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:479 -msgid "Manage Database" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:488 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:488 -msgid "Manage DB fields" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:509 -#: ../tmp/cache_twig/ef/aa/32409302817ec4ea0b8377058286e46bd91b8fd5a78e1344868065062e0f.php:113 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:509 -msgid "Access" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:518 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:518 -msgid "Active" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:527 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:527 -msgid "Allowed to add in basket" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:536 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:536 -msgid "Access to preview" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:545 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:545 -msgid "Remove watermark" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:554 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:554 -msgid "Access to HD" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:563 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:563 -msgid "Allowed to order" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:572 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:572 -msgid "Set download quotas" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:599 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:599 -msgid "Set time restrictions" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:626 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:626 -msgid "Set statuses restrictions" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:656 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:656 -msgid "Allowed to add" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:665 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:665 -msgid "Allowed to edit" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:674 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:674 -msgid "Allowed to change statuses" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:683 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:683 -msgid "Allowed to delete" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:692 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:692 -msgid "Access to image tools" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:701 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:701 -msgid "Manage users" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:710 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:710 -msgid "Allowed to access report" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:719 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:719 -msgid "Allowed to push" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:728 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:728 -msgid "Manage collection" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:737 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:737 -msgid "Manage values lists" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:779 -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:287 -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:112 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:1555 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:279 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:287 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:105 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:429 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:779 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:279 -#: ../tmp/cache_twig/98/a5/f945c93304136135a26fa3cce67ff847dd8e2b2c48296b14aa0d643dde2b.php:67 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:46 -msgid "admin::compte-utilisateur identifiant" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:793 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:118 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:793 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:54 -msgid "admin::compte-utilisateur sexe" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:804 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:645 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:131 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:804 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:59 -msgid "admin::compte-utilisateur:sexe: mademoiselle" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:812 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:653 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:142 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:812 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:60 -msgid "admin::compte-utilisateur:sexe: madame" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:820 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:661 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:153 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:820 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:61 -msgid "admin::compte-utilisateur:sexe: monsieur" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:871 -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:347 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:748 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:347 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:220 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:871 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:79 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:307 -msgid "admin::compte-utilisateur adresse" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:885 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:761 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:233 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:885 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:86 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:309 -msgid "admin::compte-utilisateur code postal" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:899 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:774 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:246 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:899 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:93 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:308 -msgid "admin::compte-utilisateur ville" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:913 -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:323 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:735 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:323 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:259 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:913 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:100 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:313 -msgid "admin::compte-utilisateur poste" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:927 -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:315 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:722 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:311 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:315 -#: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:298 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:298 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:272 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:927 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:311 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:107 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:314 -msgid "admin::compte-utilisateur societe" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:941 -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:331 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:331 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:285 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:941 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:114 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:315 -msgid "admin::compte-utilisateur activite" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:956 -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:339 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:709 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:339 -#: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:306 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:306 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:298 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:956 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:311 -msgid "admin::compte-utilisateur telephone" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:970 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:787 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:311 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:970 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:128 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:312 -msgid "admin::compte-utilisateur fax" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:1022 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:1022 -msgid "Are you sure you want to reset rights?" -msgstr "" - -#: ../tmp/cache_twig/22/ef/8de4574ba387681254d8ca690ca094d967e06f29de0f54440c080f283b8b.php:23 -#: ../tmp/cache_twig/16/58/89313f4a32aefb4c4fe9c0d844742a9b5419ba1d73841c6efa78e4a35f34.php:23 -msgid "Security" -msgstr "" - #: ../tmp/cache_twig/22/68/5e0be77af6e35c71581a839825c948f0b8f936a6fded555bbdf97d7effd6.php:54 #: ../tmp/cache_twig/c9/f8/7dfad135d6bf4a7f2fbd1dab2796c6c60fce7da03d1230ceed632be013c6.php:54 -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:57 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:61 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:61 msgid "Voulez-vous dire %link% ?" msgstr "" @@ -3170,7 +2372,6 @@ msgstr "" #: ../tmp/cache_twig/63/be/6319a6590241f1bba28be561b484a113f4f0a9da138aa3a915209195710f.php:145 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:243 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:243 #: ../tmp/cache_twig/58/2e/35657b1dddc3ea0f5e3d2aeba8419f9f2a24a8c863028accbb2cfc7c6f3b.php:145 #: ../tmp/cache_twig/97/fe/c90f86fa3cdc292b5f1e598b398f5eb76d0db3adc514986e60285ccdb92e.php:359 msgid "Informations" @@ -3196,215 +2397,141 @@ msgstr "" msgid "Developpeur" msgstr "" -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:35 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:35 -msgid "Suggested values" -msgstr "" - -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:72 -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:112 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:72 -#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:311 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:46 -msgid "phraseanet::chargement" -msgstr "" - -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:95 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:95 -msgid "admin::sugval: Valeurs suggerees/Preferences de la collection" -msgstr "" - -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:111 -#: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:104 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:111 -msgid "boutton::vue xml" -msgstr "" - -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:115 -#: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:108 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:115 -msgid "boutton::vue graphique" -msgstr "" - -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:130 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:130 -msgid "admin::sugval: champs" -msgstr "" - -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:172 -#: ../tmp/cache_twig/54/eb/24de8e2b2f2d3e5df15554d09316516b0231f4d1ec0b320ef58117d194b5.php:73 -#: ../tmp/cache_twig/cd/d1/b849e0496d21408721110e0288e2033d07cb96483c0113280dfa0c81b64a.php:53 -#: ../tmp/cache_twig/2e/f3/a84d1ad7a7721d057a5a9682c259fd5b75da040aab8417cd6dbdb4d3789c.php:78 -#: ../tmp/cache_twig/e9/07/be09c70decea00f9953235fed236d74d2f25054c91c724f798530a0bba3e.php:73 -#: ../tmp/cache_twig/c7/20/7ca546f3a781705835b8042a1415de7cfbddcd9422998a3a3e90d55dc826.php:86 -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1538 -#: ../tmp/cache_twig/ba/16/635be613ef6420a0da108eb79d3b94a3094ccba2a606078122e5f4577218.php:73 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1538 -#: ../tmp/cache_twig/f7/fe/2b6b0647bba4cd3a38bd497eb217e1353439050817ee0a5e815ecb368789.php:328 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:172 -#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:344 -#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:378 -#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:434 -#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:490 -#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:546 -#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:314 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:344 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:378 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:434 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:490 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:546 -#: ../tmp/cache_twig/6c/a4/1f01b162e7851408eead3a04d9e6de6374b54a32a55e7d6380cdba0f2f53.php:248 -#: ../tmp/cache_twig/61/ad/a1dab7350e55ecd75fd86474403fae6a65230d9a395ba92f75107bdbb4cd.php:53 -#: ../tmp/cache_twig/97/55/e54b9e19b2763af131c9194c8c964217d1ca86991124a891bfc434b19e99.php:53 -#: ../lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:485 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:42 -msgid "boutton::supprimer" -msgstr "" - -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:196 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:196 -#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:246 -#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:473 -msgid "boutton::ajouter" -msgstr "" - -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:1064 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:1064 -msgid "" -"admin::sugval: Attention, passer en mode graphique implique la perte des " -"modifications du xml si vous n'appliquez pas les changements avant.\n" -"Continuer quand meme" -msgstr "" - -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:118 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:96 msgid "regeneration of sub-definitions" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:138 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:116 msgid "video tool" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:161 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:136 msgid "image tool" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:175 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:148 msgid "substitution" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:189 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:162 msgid "meta-datas" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:208 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:181 msgid "Reconstruire les sous definitions" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:217 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:190 msgid "Attention, certain documents ont des sous-definitions substituees" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:224 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:197 msgid "" "Forcer la reconstruction sur les enregistrements ayant des thumbnails " "substituees" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:240 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:213 msgid "recreer aucune sous-definitions" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:246 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:219 msgid "recreer toutes les sous-definitions" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:260 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:429 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:459 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:531 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:610 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:659 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:233 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:402 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:432 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:506 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:582 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:631 msgid "validate" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:264 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:535 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:614 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:663 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:237 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:510 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:586 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:635 msgid "cancel" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:287 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:260 msgid "screenshot video" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:353 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:326 msgid "No preview available" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:364 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:475 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:337 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:448 msgid "take a screenshot" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:380 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:353 msgid "To take a screenshot click on camera" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:410 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:383 msgid "brightness settings" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:440 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:413 msgid "contrast settings" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:504 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:469 +msgid "" +"Changes for rotation will be applied only on the sub-definitions of \"image" +"\" type." +msgstr "" + +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:479 msgid "image rotation" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:510 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:485 msgid "rotation 90 degres horaire" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:518 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:493 msgid "rotation 90 degres anti-horaires" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:561 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:533 msgid "Substitution is not possible for this kind of record" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:583 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:555 msgid "substitution HD" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:592 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:564 msgid "mettre a jour le nom original de fichier apres substitution" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:641 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:613 msgid "substitution SD" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:988 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:960 msgid "alert" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:999 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:971 msgid "no image selected" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:1055 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:1027 msgid "processing" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:1070 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:246 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:1042 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:243 msgid "an error occured" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:1084 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:1056 msgid "thumbnail validation" msgstr "" @@ -3445,7 +2572,7 @@ msgstr "" #: ../tmp/cache_twig/f5/25/26a9c9c89a4544b638d8cb920b86e4ad4a53a3447eb398985cc99e29a27a.php:191 #: ../tmp/cache_twig/c9/db/fc05a687527ffcea5900b8c3639bc1fb1e451abea2f6f32868a11c122bc8.php:47 #: ../tmp/cache_twig/c9/db/fc05a687527ffcea5900b8c3639bc1fb1e451abea2f6f32868a11c122bc8.php:184 -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:213 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:218 #: ../tmp/cache_twig/c6/14/eb1b4181802db8b69470965dc865cf6c643b0dfec76fb8bb1a3a491c5ab9.php:155 #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:270 #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:486 @@ -3474,7 +2601,6 @@ msgstr "" #: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:250 #: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:489 #: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:324 -#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:119 #: ../tmp/cache_twig/ae/ac/607531696dda8fb5b66a7ab9d8901e54012d11edda41f60645d9473f53ed.php:188 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:324 #: ../tmp/cache_twig/46/16/ce4342ba8d6f1ad6ad3ec6d404a050649a3a11d1578ade704aadb9b4b8cf.php:131 @@ -3484,30 +2610,6 @@ msgstr "" msgid "boutton::annuler" msgstr "" -#: ../tmp/cache_twig/fe/10/44fd599573da2ce552a9f03c8515023a4a847cdadb287e12e2327782eb0e.php:68 -#: ../tmp/cache_twig/77/56/1124cf333071bb255188be0cabe9d749e349e9b29d513f8e948d83f7e2e3.php:508 -#: ../tmp/cache_twig/e9/3e/149ce3009cd2c4aa24e1f29bdab9e7dee50b5d5c1c97f151abfb9e481ae3.php:31 -#: ../tmp/cache_twig/10/7b/8164a1c1e4ee3ff6ab9801cdfdb8871881d8c31a9c7fb91333dec6ac13cc.php:68 -msgid "action : ajouter au panier" -msgstr "" - -#: ../tmp/cache_twig/fe/10/44fd599573da2ce552a9f03c8515023a4a847cdadb287e12e2327782eb0e.php:105 -#: ../tmp/cache_twig/77/56/1124cf333071bb255188be0cabe9d749e349e9b29d513f8e948d83f7e2e3.php:498 -#: ../tmp/cache_twig/39/b4/7f3771406edf35ef9d791fd45a7048688d56c740ced66241b76f382ccd5a.php:155 -#: ../tmp/cache_twig/e9/3e/149ce3009cd2c4aa24e1f29bdab9e7dee50b5d5c1c97f151abfb9e481ae3.php:69 -#: ../tmp/cache_twig/10/7b/8164a1c1e4ee3ff6ab9801cdfdb8871881d8c31a9c7fb91333dec6ac13cc.php:105 -#: ../tmp/cache_twig/a9/19/8f9ba6319a22ee423e3fc74e98bcdbf9814a2ba850ffce3d04de14936907.php:35 -#: ../tmp/cache_twig/9c/16/a0e4180a47fa7ae7b8a328953789ff927d94aef0808c0eaf8e4ced094a0e.php:34 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1096 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1096 -msgid "action : print" -msgstr "" - -#: ../tmp/cache_twig/fe/10/44fd599573da2ce552a9f03c8515023a4a847cdadb287e12e2327782eb0e.php:126 -#: ../tmp/cache_twig/10/7b/8164a1c1e4ee3ff6ab9801cdfdb8871881d8c31a9c7fb91333dec6ac13cc.php:126 -msgid "reponses:: partager" -msgstr "" - #: ../tmp/cache_twig/a1/e9/ada267627adbc3fe06e90fda2e200af6c348401bbca1bbb248257672b732.php:34 #: ../tmp/cache_twig/a9/19/8f9ba6319a22ee423e3fc74e98bcdbf9814a2ba850ffce3d04de14936907.php:45 #: ../tmp/cache_twig/9c/16/a0e4180a47fa7ae7b8a328953789ff927d94aef0808c0eaf8e4ced094a0e.php:44 @@ -3599,68 +2701,116 @@ msgid "Retour" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:185 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:185 msgid "admin:: demandes en cours" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:197 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:197 msgid "Requests for the application registrations were recorded successfully" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:215 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:389 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:393 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:215 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:389 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:393 msgid "admin:: refuser l'acces" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:221 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:400 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:404 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:221 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:400 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:404 msgid "admin:: donner les droits de telechargement et consultation de previews" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:227 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:411 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:415 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:227 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:411 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:415 msgid "admin:: donner les droits de telechargements de preview et hd" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:233 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:422 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:426 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:233 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:422 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:426 msgid "admin:: watermarquer les documents" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:247 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:247 msgid "admin::collection" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:251 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:251 msgid "Models" msgstr "" +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:287 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:114 +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:1555 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:105 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:429 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:779 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:279 +#: ../tmp/cache_twig/98/a5/f945c93304136135a26fa3cce67ff847dd8e2b2c48296b14aa0d643dde2b.php:67 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:46 +msgid "admin::compte-utilisateur identifiant" +msgstr "" + +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:315 +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:722 +#: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:298 +#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:298 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:272 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:927 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:311 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:107 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:314 +msgid "admin::compte-utilisateur societe" +msgstr "" + +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:323 +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:735 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:259 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:913 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:100 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:313 +msgid "admin::compte-utilisateur poste" +msgstr "" + +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:331 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:285 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:941 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:114 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:315 +msgid "admin::compte-utilisateur activite" +msgstr "" + +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:339 +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:709 +#: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:306 +#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:306 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:298 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:956 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:311 +msgid "admin::compte-utilisateur telephone" +msgstr "" + +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:347 +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:748 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:220 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:871 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:79 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:307 +msgid "admin::compte-utilisateur adresse" +msgstr "" + #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:440 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:440 msgid "admin:: appliquer le modele" msgstr "" +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:450 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:171 +#: ../lib/conf.d/_GV_template.inc:464 +msgid "None" +msgstr "" + #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:496 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:496 msgid "No application for registration has been recorded" msgstr "" @@ -3732,9 +2882,9 @@ msgstr "" #: ../tmp/cache_twig/0e/94/4782424602bf224d1be7d4d05e825a35299aa13cfccec6953bf307c4c0b3.php:465 #: ../tmp/cache_twig/0e/94/4782424602bf224d1be7d4d05e825a35299aa13cfccec6953bf307c4c0b3.php:469 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:85 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:88 #: ../tmp/cache_twig/82/ee/7d3619c7a707092a5722fd9cac12de771fd3362df1666b62af348c66380e.php:72 -#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:147 +#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:159 msgid "Delete" msgstr "" @@ -3805,7 +2955,7 @@ msgstr "" #: ../tmp/cache_twig/a4/29/9d4202bef5356fa2348fbc0c8ca67c470bd6d541b1a88626a37a13058220.php:30 #: ../tmp/cache_twig/7e/2b/cc1be9d15ea85dc701c90c500cd986b5da63d38352ea375ab03e15707403.php:46 #: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:30 -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:311 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:319 #: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:267 #: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:247 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:247 @@ -3837,15 +2987,15 @@ msgstr "" msgid "Ajouter ma selection courrante" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:99 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:101 msgid "Erreur de login / mot de passe" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:107 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:109 msgid "Bonjour, veuillez vous identifier sur %home_title% :" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:116 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:118 #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:1571 #: ../tmp/cache_twig/50/69/a4a9283c5e8d05f572a3558b98b463102522cf57228ad562e5f0ba8a8764.php:845 #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:442 @@ -3853,34 +3003,34 @@ msgstr "" msgid "admin::compte-utilisateur mot de passe" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:120 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:122 msgid "Se connecter" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:126 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:128 msgid "Problèmes de connexion ?" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:143 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:145 #: ../tmp/cache_twig/d1/be/831744873b5b165b6af565a7f750e773ed30b1dee6fa45f29e8601e3ed5f.php:95 msgid "Hello %username%" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:157 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:159 msgid "Autorisation d'accès" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:168 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:170 msgid "" "Autorisez-vous l'application \"%application_name%\" à " "accéder à votre contenu sur %home_title% ?" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:198 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:200 msgid "Autoriser" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:222 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:224 msgid "Ne pas autoriser" msgstr "" @@ -3894,182 +3044,213 @@ msgstr "" msgid "Etes vous sur de supprimer %number% playlists ?" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:95 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:98 msgid "Notify users about this publication" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:99 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:104 #: ../tmp/cache_twig/ae/ac/607531696dda8fb5b66a7ab9d8901e54012d11edda41f60645d9473f53ed.php:69 msgid "publication : titre" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:107 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:112 #: ../tmp/cache_twig/ae/ac/607531696dda8fb5b66a7ab9d8901e54012d11edda41f60645d9473f53ed.php:77 msgid "publication : sous titre" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:115 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:120 #: ../tmp/cache_twig/ae/ac/607531696dda8fb5b66a7ab9d8901e54012d11edda41f60645d9473f53ed.php:85 msgid "publication : autheur" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:123 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:128 #: ../tmp/cache_twig/ae/ac/607531696dda8fb5b66a7ab9d8901e54012d11edda41f60645d9473f53ed.php:93 msgid "publication : email autheur" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:135 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:140 #: ../tmp/cache_twig/ae/ac/607531696dda8fb5b66a7ab9d8901e54012d11edda41f60645d9473f53ed.php:105 msgid "Fils disponibles" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:174 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:179 #: ../tmp/cache_twig/6c/a4/1f01b162e7851408eead3a04d9e6de6374b54a32a55e7d6380cdba0f2f53.php:232 msgid "This feed is public" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:209 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:214 msgid "boutton::publier" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:44 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:48 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:48 msgid "Votre recherche ne retourne aucun resultat" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:76 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:80 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:80 msgid "" "La recherche s'effectue grâce à la boîte de dialogue qui se trouve en haut à " "gauche de l'écran." msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:79 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:83 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:83 msgid "" "Sachez que vous pouvez utiliser les opérateurs ou caractères spéciaux " "suivants :" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:83 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:87 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:87 msgid "" "* , ? , ET , OU , SAUF , DANS , DERNIERS , TOUT (ou AND , OR , EXCEPT , " "LAST , ALL)" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:88 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:92 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:92 msgid "Caractères de troncature" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:95 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:99 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:99 msgid "auto*" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:99 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:103 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:103 msgid "retourne \"automobile\", \"automate\", \"autoroute\", ..." msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:105 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:109 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:109 msgid "dé?it" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:109 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:113 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:113 msgid "retourne \"délit\", \"débit\", ..." msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:116 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:120 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:120 msgid "Visualiser tous les enregistrements / les derniers enregistrements" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:122 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:126 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:126 msgid "TOUT" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:126 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:130 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:130 msgid "retourne tous les enregistrements des collections selectionnees" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:132 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:136 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:136 msgid "LAST 20" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:136 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:140 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:140 msgid "" "retourne les 20 derniers enregistrements archives dans les collections " "selectionnees" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:143 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:147 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:147 msgid "Recherche multicritères" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:147 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:151 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:151 msgid "" "Vous pouvez affiner votre recherche avec les opérateurs : ET, OU, SAUF ou " "DANS" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:153 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:157 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:157 msgid "sport" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:155 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:159 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:159 msgid "automobile" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:159 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:163 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:163 msgid "retourne les documents comprenant les deux mots." msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:165 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:169 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:169 msgid "journal OU jt" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:169 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:173 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:173 msgid "retourne les documents comprenant un mot et/ou l'autre." msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:175 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:179 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:179 msgid "cannes SAUF festival" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:179 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:183 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:183 msgid "retourne les documents comprenant cannes sans le mot festival." msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:185 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:189 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:189 msgid "thalassa DANS titre" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:189 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:193 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:193 msgid "" "retourne les documents où le terme est au moins présent dans le titre, en " "évitant par exemple celles où le terme est uniquement cité dans la légende." msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:197 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:201 #: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:120 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:201 #: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:120 #: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:99 msgid "Attention" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:201 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:205 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:205 msgid "" "pour chercher une phrase contenant un des mots-clé ci-dessus, utilisez les " "guillemets :" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:205 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:209 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:209 msgid "C dans l'air" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:209 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:213 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:213 msgid "Et Dieu créa la femme" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:213 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:217 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:217 msgid "bijou en or" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:217 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:221 +#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:221 msgid "tout le sport" msgstr "" @@ -4101,6 +3282,30 @@ msgstr "" msgid "Actions" msgstr "" +#: ../tmp/cache_twig/54/eb/24de8e2b2f2d3e5df15554d09316516b0231f4d1ec0b320ef58117d194b5.php:73 +#: ../tmp/cache_twig/cd/d1/b849e0496d21408721110e0288e2033d07cb96483c0113280dfa0c81b64a.php:53 +#: ../tmp/cache_twig/2e/f3/a84d1ad7a7721d057a5a9682c259fd5b75da040aab8417cd6dbdb4d3789c.php:78 +#: ../tmp/cache_twig/e9/07/be09c70decea00f9953235fed236d74d2f25054c91c724f798530a0bba3e.php:73 +#: ../tmp/cache_twig/c7/20/7ca546f3a781705835b8042a1415de7cfbddcd9422998a3a3e90d55dc826.php:86 +#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1531 +#: ../tmp/cache_twig/ba/16/635be613ef6420a0da108eb79d3b94a3094ccba2a606078122e5f4577218.php:73 +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1531 +#: ../tmp/cache_twig/f7/fe/2b6b0647bba4cd3a38bd497eb217e1353439050817ee0a5e815ecb368789.php:328 +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:172 +#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:344 +#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:378 +#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:434 +#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:490 +#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:546 +#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:314 +#: ../tmp/cache_twig/6c/a4/1f01b162e7851408eead3a04d9e6de6374b54a32a55e7d6380cdba0f2f53.php:248 +#: ../tmp/cache_twig/61/ad/a1dab7350e55ecd75fd86474403fae6a65230d9a395ba92f75107bdbb4cd.php:53 +#: ../tmp/cache_twig/97/55/e54b9e19b2763af131c9194c8c964217d1ca86991124a891bfc434b19e99.php:53 +#: ../lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:486 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:42 +msgid "boutton::supprimer" +msgstr "" + #: ../tmp/cache_twig/c6/86/cee1b197293f5fb731fe5d1cc4230ab451c3b39f7e057098f700012af514.php:61 #: ../tmp/cache_twig/27/3d/79c71db3414feabaed441cd232912dab3f93dae3bfa671db7fd6b7950419.php:55 msgid "%nb_records% records" @@ -4251,6 +3456,51 @@ msgstr "" msgid "Civility" msgstr "" +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:645 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:131 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:804 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:59 +msgid "admin::compte-utilisateur:sexe: mademoiselle" +msgstr "" + +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:653 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:142 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:812 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:60 +msgid "admin::compte-utilisateur:sexe: madame" +msgstr "" + +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:661 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:153 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:820 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:61 +msgid "admin::compte-utilisateur:sexe: monsieur" +msgstr "" + +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:761 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:233 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:885 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:86 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:309 +msgid "admin::compte-utilisateur code postal" +msgstr "" + +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:774 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:246 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:899 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:93 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:308 +msgid "admin::compte-utilisateur ville" +msgstr "" + +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:787 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:311 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:970 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:128 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:312 +msgid "admin::compte-utilisateur fax" +msgstr "" + #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:823 msgid "boutton::commander" msgstr "" @@ -4318,7 +3568,6 @@ msgstr "" #: ../tmp/cache_twig/50/69/a4a9283c5e8d05f572a3558b98b463102522cf57228ad562e5f0ba8a8764.php:831 #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:416 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:85 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:85 msgid "phraseanet:: adresse" msgstr "" @@ -4425,6 +3674,23 @@ msgstr "" msgid "client::answers: %available_results% reponses" msgstr "" +#: ../tmp/cache_twig/77/56/1124cf333071bb255188be0cabe9d749e349e9b29d513f8e948d83f7e2e3.php:500 +#: ../tmp/cache_twig/39/b4/7f3771406edf35ef9d791fd45a7048688d56c740ced66241b76f382ccd5a.php:155 +#: ../tmp/cache_twig/e9/3e/149ce3009cd2c4aa24e1f29bdab9e7dee50b5d5c1c97f151abfb9e481ae3.php:69 +#: ../tmp/cache_twig/10/7b/8164a1c1e4ee3ff6ab9801cdfdb8871881d8c31a9c7fb91333dec6ac13cc.php:105 +#: ../tmp/cache_twig/a9/19/8f9ba6319a22ee423e3fc74e98bcdbf9814a2ba850ffce3d04de14936907.php:35 +#: ../tmp/cache_twig/9c/16/a0e4180a47fa7ae7b8a328953789ff927d94aef0808c0eaf8e4ced094a0e.php:34 +#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1096 +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1096 +msgid "action : print" +msgstr "" + +#: ../tmp/cache_twig/77/56/1124cf333071bb255188be0cabe9d749e349e9b29d513f8e948d83f7e2e3.php:510 +#: ../tmp/cache_twig/e9/3e/149ce3009cd2c4aa24e1f29bdab9e7dee50b5d5c1c97f151abfb9e481ae3.php:31 +#: ../tmp/cache_twig/10/7b/8164a1c1e4ee3ff6ab9801cdfdb8871881d8c31a9c7fb91333dec6ac13cc.php:68 +msgid "action : ajouter au panier" +msgstr "" + #: ../tmp/cache_twig/5a/93/0f252e925966654810d27615faeb5ccc00e27bca12f769e954aac5b5b4ad.php:25 #: ../tmp/cache_twig/ca/ad/6180b9deacd03924bb5b091226eb2a840bea46b45e7ca1ee5c3ef801be72.php:324 #: ../tmp/cache_twig/48/68/9ee0a0d02de30c1bc9f99f678edfdb0cf8d29e547c14c07089b718b03059.php:324 @@ -4505,19 +3771,19 @@ msgid "You can not upload files" msgstr "" #: ../tmp/cache_twig/79/a4/677d7a522aafdad241e0a6bf492062a86de45135da075ffb1ffcbe4bdd67.php:36 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:198 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:199 msgid "The records have been properly ordered" msgstr "" #: ../tmp/cache_twig/79/a4/677d7a522aafdad241e0a6bf492062a86de45135da075ffb1ffcbe4bdd67.php:42 #: ../tmp/cache_twig/21/be/ec8f164aa4221e0c07872816865e91bef7e904a4125093e417546b5c6da5.php:51 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:293 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:294 msgid "Order has been sent" msgstr "" #: ../tmp/cache_twig/79/a4/677d7a522aafdad241e0a6bf492062a86de45135da075ffb1ffcbe4bdd67.php:48 #: ../tmp/cache_twig/21/be/ec8f164aa4221e0c07872816865e91bef7e904a4125093e417546b5c6da5.php:57 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:328 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:329 msgid "Order has been denied" msgstr "" @@ -4647,45 +3913,29 @@ msgstr "" msgid "No URL available" msgstr "" -#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:22 -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:63 -#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:63 -msgid "Setup" -msgstr "" - -#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:261 -#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:312 -msgid "erreur avec la valeur %name%" -msgstr "" - #: ../tmp/cache_twig/4e/bb/8dda57e76aeebf518aba376f448b35caf96a9e3b156c47fc162938fc47e1.php:38 #: ../tmp/cache_twig/ef/64/5cea90ceef30cbdd896088270a3fea9ef25941881f0b67c3538c4ae9bf41.php:36 #: ../tmp/cache_twig/1a/c7/9f4d35e216d902c13390ce56aec05c0c813b02d8bbf605c5f24701e067e3.php:36 -#: ../tmp/cache_twig/4a/02/65d52ad5a7382b6921c83022933d87bfc55a3e9e9d4c9320a16514a02536.php:38 #: ../tmp/cache_twig/5f/8c/a0fda08bf8166d5402804ace67a7420bf62316429b61364cb217b3b79fc8.php:36 #: ../tmp/cache_twig/80/14/0243e87c831fd5c01bb92f110393631aa5184797a34a02fd1313f2f9a197.php:35 msgid "Register" msgstr "" #: ../tmp/cache_twig/4e/bb/8dda57e76aeebf518aba376f448b35caf96a9e3b156c47fc162938fc47e1.php:51 -#: ../tmp/cache_twig/4a/02/65d52ad5a7382b6921c83022933d87bfc55a3e9e9d4c9320a16514a02536.php:51 #: ../tmp/cache_twig/80/14/0243e87c831fd5c01bb92f110393631aa5184797a34a02fd1313f2f9a197.php:48 msgid "Inscription" msgstr "" #: ../tmp/cache_twig/4e/bb/8dda57e76aeebf518aba376f448b35caf96a9e3b156c47fc162938fc47e1.php:57 -#: ../tmp/cache_twig/4a/02/65d52ad5a7382b6921c83022933d87bfc55a3e9e9d4c9320a16514a02536.php:57 msgid "Complete the fields below to register on %instance_title%!" msgstr "" #: ../tmp/cache_twig/4e/bb/8dda57e76aeebf518aba376f448b35caf96a9e3b156c47fc162938fc47e1.php:157 #: ../tmp/cache_twig/1a/c7/9f4d35e216d902c13390ce56aec05c0c813b02d8bbf605c5f24701e067e3.php:153 -#: ../tmp/cache_twig/4a/02/65d52ad5a7382b6921c83022933d87bfc55a3e9e9d4c9320a16514a02536.php:157 msgid "I have read the terms of use" msgstr "" #: ../tmp/cache_twig/4e/bb/8dda57e76aeebf518aba376f448b35caf96a9e3b156c47fc162938fc47e1.php:217 -#: ../tmp/cache_twig/4a/02/65d52ad5a7382b6921c83022933d87bfc55a3e9e9d4c9320a16514a02536.php:217 msgid "Request access" msgstr "" @@ -4696,43 +3946,34 @@ msgid "Creer" msgstr "" #: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:22 -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:285 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:285 -#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:22 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:293 msgid "admin::base:collection: Creer une collection" msgstr "" #: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:34 -#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:34 msgid "" "admin:: La collection n'a pas ete creee : vous devez donner un nom a votre " "collection" msgstr "" #: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:45 -#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:45 msgid "An error occured, please retry or contact an admin if problem persist" msgstr "" #: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:61 -#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:61 msgid "admin::base:collection: Nom de la nouvelle collection : " msgstr "" #: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:70 -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:404 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:404 -#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:70 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:412 msgid "" "admin::base:collection: Vous pouvez choisir une collection de reference pour " "donenr des acces " msgstr "" #: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:85 -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:409 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:409 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:417 #: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1900 -#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:85 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1900 msgid "choisir" msgstr "" @@ -4829,8 +4070,8 @@ msgstr "" #: ../tmp/cache_twig/39/b4/7f3771406edf35ef9d791fd45a7048688d56c740ced66241b76f382ccd5a.php:129 #: ../tmp/cache_twig/39/b4/7f3771406edf35ef9d791fd45a7048688d56c740ced66241b76f382ccd5a.php:328 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:370 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:370 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:364 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:364 #: ../tmp/cache_twig/a9/19/8f9ba6319a22ee423e3fc74e98bcdbf9814a2ba850ffce3d04de14936907.php:135 #: ../tmp/cache_twig/9c/16/a0e4180a47fa7ae7b8a328953789ff927d94aef0808c0eaf8e4ced094a0e.php:134 #: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1449 @@ -4977,7 +4218,7 @@ msgstr "" #: ../tmp/cache_twig/ac/9e/fb01f1028d8846495dbbbe2bf2f1bb39a51f3f5688d02ad5ef34a6df5ee4.php:184 #: ../lib/Alchemy/Phrasea/Controller/Admin/Collection.php:491 #: ../lib/Alchemy/Phrasea/Controller/Admin/Databox.php:876 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:280 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:288 msgid "An error occurred" msgstr "" @@ -5013,171 +4254,6 @@ msgstr "" msgid "preview::statistiques de telechargement" msgstr "" -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:44 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:44 -msgid "The user has been created." -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:50 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:50 -#, php-format -msgid "%user_count% users have been created." -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:63 -#: ../tmp/cache_twig/f4/c7/5574405b1ed7d6237c4c894fc093d06961fc01a172d22fe904ec51a41b74.php:91 -#: ../tmp/cache_twig/ce/f5/3fc6514831a3beba14a6cf8235c50358ef94e24cf34037cff6f24d2c4c47.php:182 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:63 -#: ../lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php:48 -msgid "Users" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:71 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:71 -msgid "admin::user: nouvel utilisateur" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:75 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:75 -msgid "admin::user: nouveau template" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:81 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:81 -msgid "admin::user: import d'utilisateurs" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:85 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:85 -msgid "admin::user: export d'utilisateurs" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:112 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:112 -msgid "Filter" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:121 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:161 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:121 -msgid "Push::filter on login" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:129 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:295 -#: ../tmp/cache_twig/b4/9c/07c23ab66a045a8e5227f1d772335d8a711fcfe612db32f5ee1317a5f553.php:71 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:129 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:295 -msgid "First/Last Name" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:137 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:173 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:137 -msgid "Push::filter on countries" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:145 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:179 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:145 -msgid "Push::filter on companies" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:153 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:185 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:153 -msgid "Push::filter on emails" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:158 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:197 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:158 -msgid "Push::filter starts" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:166 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:166 -msgid "Last applied template" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:236 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:236 -msgid "boutton::appliquer" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:265 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:265 -msgid "admin::compte-utilisateur id utilisateur" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:343 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:343 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:310 -msgid "admin::compte-utilisateur pays" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:359 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:359 -msgid "admin::compte-utilisateur dernier modele applique" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:375 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:375 -msgid "admin::compte-utilisateur date de creation" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:420 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:420 -msgid "This is a template" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:429 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:429 -msgid "This user has no rights" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:638 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:649 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:660 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:638 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:649 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:660 -msgid "%n_par_page% par page" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:665 -#: ../tmp/cache_twig/c4/88/c141694af2943b78af7cf167f27ce764039ff5705347b19ace268934697f.php:22 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:665 -#: ../tmp/cache_twig/3f/18/7fae8acb3562b67fc49741799c3c4010e3fb3e1c8b9c83d35749f5bc62a3.php:22 -#: ../tmp/cache_twig/1e/70/2d1aa33a2a9ecb61b3c9f9f292b295bdf5c8451ffe9ea674aef0f7363634.php:22 -msgid "boutton::modifier" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:669 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:669 -msgid "Supprimer" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:807 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:807 -msgid "boutton::exporter" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:831 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:831 -msgid "select at least one user" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:843 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:843 -msgid "Are you sure you want delete users rights ?" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:867 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:867 -msgid "users rights have been reseted" -msgstr "" - #: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:58 #: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:66 msgid "admin::tasks: nom de la tache" @@ -5195,6 +4271,16 @@ msgstr "" msgid "admin::tasks: reinitialiser el compteur de crashes" msgstr "" +#: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:104 +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:111 +msgid "boutton::vue xml" +msgstr "" + +#: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:108 +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:115 +msgid "boutton::vue graphique" +msgstr "" + #: ../tmp/cache_twig/2e/f3/a84d1ad7a7721d057a5a9682c259fd5b75da040aab8417cd6dbdb4d3789c.php:24 msgid "" "Vous etes actuellement deconnecte de votre compte, vous devez vous connecter " @@ -5229,6 +4315,7 @@ msgstr "" #: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:88 #: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:88 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:168 #: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:37 #: ../lib/Alchemy/Phrasea/Controller/Client/Root.php:273 msgid "" @@ -5303,38 +4390,38 @@ msgstr "" msgid "Would you like to reset rights before applying the template?" msgstr "" -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:332 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:332 +#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:335 +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:335 msgid "Successful install" msgstr "" -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:350 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:350 +#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:353 +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:353 msgid "Ajouter un nouvel utilisateur" msgstr "" -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:355 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:355 +#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:358 +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:358 msgid "Adresse email du nouvel utilisateur" msgstr "" -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:362 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:362 +#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:365 +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:365 msgid "Send an email to the user to setup his password" msgstr "" -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:369 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:369 +#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:372 +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:372 msgid "Require email validation to activate the account" msgstr "" -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:377 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:377 +#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:380 +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:380 msgid "Creer un modele" msgstr "" -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:382 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:382 +#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:385 +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:385 msgid "Nom du nouveau modele" msgstr "" @@ -5451,6 +4538,11 @@ msgstr "" msgid "Role" msgstr "" +#: ../tmp/cache_twig/ef/aa/32409302817ec4ea0b8377058286e46bd91b8fd5a78e1344868065062e0f.php:113 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:509 +msgid "Access" +msgstr "" + #: ../tmp/cache_twig/ef/aa/32409302817ec4ea0b8377058286e46bd91b8fd5a78e1344868065062e0f.php:126 msgid "Editor" msgstr "" @@ -5471,39 +4563,39 @@ msgstr "" msgid "Remove from basket" msgstr "" -#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:24 +#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:25 #: ../tmp/cache_twig/64/81/83b73fb5a6159fbb4692452426501112d9f3e3746c6a4da2a126b639e326.php:26 msgid "Reordonner automatiquement" msgstr "" -#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:29 +#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:30 #: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:475 #: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:605 #: ../tmp/cache_twig/64/81/83b73fb5a6159fbb4692452426501112d9f3e3746c6a4da2a126b639e326.php:31 msgid "Choisir" msgstr "" -#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:33 +#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:34 #: ../tmp/cache_twig/64/81/83b73fb5a6159fbb4692452426501112d9f3e3746c6a4da2a126b639e326.php:35 #: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:687 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:687 msgid "Re-initialiser" msgstr "" -#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:42 +#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:43 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:373 #: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:379 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:385 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:507 #: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:513 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:519 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:373 #: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:379 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:385 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:507 #: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:513 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:519 #: ../tmp/cache_twig/64/81/83b73fb5a6159fbb4692452426501112d9f3e3746c6a4da2a126b639e326.php:44 msgid "Re-ordonner" msgstr "" -#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:46 +#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:47 #: ../tmp/cache_twig/64/81/83b73fb5a6159fbb4692452426501112d9f3e3746c6a4da2a126b639e326.php:48 msgid "Inverser" msgstr "" @@ -5590,6 +4682,10 @@ msgstr "" msgid "admin::base: structure" msgstr "" +#: ../tmp/cache_twig/16/58/89313f4a32aefb4c4fe9c0d844742a9b5419ba1d73841c6efa78e4a35f34.php:23 +msgid "Security" +msgstr "" + #: ../tmp/cache_twig/16/27/832767e264016631625c82bea439d891e208ddc96a86f2373157cc2083a6.php:31 msgid "First Name" msgstr "" @@ -5640,6 +4736,13 @@ msgstr "" msgid "Apply a model" msgstr "" +#: ../tmp/cache_twig/f4/c7/5574405b1ed7d6237c4c894fc093d06961fc01a172d22fe904ec51a41b74.php:91 +#: ../tmp/cache_twig/ce/f5/3fc6514831a3beba14a6cf8235c50358ef94e24cf34037cff6f24d2c4c47.php:182 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:63 +#: ../lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php:48 +msgid "Users" +msgstr "" + #: ../tmp/cache_twig/f4/c7/5574405b1ed7d6237c4c894fc093d06961fc01a172d22fe904ec51a41b74.php:146 msgid "You need define a model before importing a list of users" msgstr "" @@ -5648,11 +4751,6 @@ msgstr "" msgid "There is no user to add." msgstr "" -#: ../tmp/cache_twig/f4/50/3e8696c531ec0100df491cfd8b925ea7909510ce910f9712638ad13938fc.php:26 -#: ../tmp/cache_twig/fd/d2/59bea1d752df653426a516d1059248f3fe0caeeb2049f1d3d763ff9c4fae.php:26 -msgid "Caption" -msgstr "" - #: ../tmp/cache_twig/8a/3d/7fc97ed3d56ebbf9be70953f845469b47745f11ed7c44e4cba328bc22467.php:28 #: ../tmp/cache_twig/c0/5d/74a098a6a082faaf800e3ff2b172eab4641c5ea1cb332b22108bc5576d19.php:28 msgid "Aucune notification" @@ -5680,37 +4778,13 @@ msgid "validation:: editer ma note" msgstr "" #: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:39 -#: ../tmp/cache_twig/c1/5e/cf8db8bc94d42a00aedc9c03659834a436d564629b4ae7f05814d5bfc52d.php:39 msgid "reportage" msgstr "" -#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:45 -#: ../tmp/cache_twig/c1/5e/cf8db8bc94d42a00aedc9c03659834a436d564629b4ae7f05814d5bfc52d.php:45 -msgid "image" -msgstr "" - -#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:51 -#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:244 -#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:397 -#: ../tmp/cache_twig/c1/5e/cf8db8bc94d42a00aedc9c03659834a436d564629b4ae7f05814d5bfc52d.php:51 -msgid "document" -msgstr "" - #: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:57 -#: ../tmp/cache_twig/c1/5e/cf8db8bc94d42a00aedc9c03659834a436d564629b4ae7f05814d5bfc52d.php:57 msgid "animation flash" msgstr "" -#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:63 -#: ../tmp/cache_twig/c1/5e/cf8db8bc94d42a00aedc9c03659834a436d564629b4ae7f05814d5bfc52d.php:63 -msgid "video" -msgstr "" - -#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:69 -#: ../tmp/cache_twig/c1/5e/cf8db8bc94d42a00aedc9c03659834a436d564629b4ae7f05814d5bfc52d.php:69 -msgid "audio" -msgstr "" - #: ../tmp/cache_twig/c7/20/7ca546f3a781705835b8042a1415de7cfbddcd9422998a3a3e90d55dc826.php:63 msgid "Par %author%" msgstr "" @@ -5917,32 +4991,30 @@ msgstr "" msgid "prod::thesaurusTab:dlg:supprimer les %d termes des fiches ?" msgstr "" -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:776 -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:781 -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1038 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:776 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:781 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1038 +#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:773 +#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1031 +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:773 +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1031 msgid "prod::thesaurusTab:tree:loading" msgstr "" -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1415 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1415 +#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1408 +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1408 msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" msgstr "" -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1425 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1425 +#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1418 +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1418 msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" msgstr "" -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1507 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1507 +#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1500 +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1500 msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" msgstr "" -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1527 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1527 +#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1520 +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1520 msgid "prod::thesaurusTab:cmenu:Remplacer par..." msgstr "" @@ -5996,7 +5068,7 @@ msgstr "" #: ../tmp/cache_twig/b4/9c/07c23ab66a045a8e5227f1d772335d8a711fcfe612db32f5ee1317a5f553.php:53 #: ../tmp/cache_twig/d4/8b/fe38991c5bbee8da424f61ed8f650ad4af837f54d8bff6db80fcfc6c90c2.php:38 #: ../tmp/cache_twig/51/72/a2a84c4596c645b645a25306b5814bd362620ab9c177c757a275f96a8f88.php:40 -#: ../lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:23 +#: ../lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:31 msgid "Login" msgstr "" @@ -6026,6 +5098,13 @@ msgstr "" msgid "En cours d'envoi" msgstr "" +#: ../tmp/cache_twig/c4/88/c141694af2943b78af7cf167f27ce764039ff5705347b19ace268934697f.php:22 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:665 +#: ../tmp/cache_twig/3f/18/7fae8acb3562b67fc49741799c3c4010e3fb3e1c8b9c83d35749f5bc62a3.php:22 +#: ../tmp/cache_twig/1e/70/2d1aa33a2a9ecb61b3c9f9f292b295bdf5c8451ffe9ea674aef0f7363634.php:22 +msgid "boutton::modifier" +msgstr "" + #: ../tmp/cache_twig/ec/ad/35a6086a385e182c02e25c928b51514f7e1846f5be323b63c35ca93c79dd.php:30 #: ../tmp/cache_twig/20/f9/502e6bea58def37b27b89f78b7b38a46e6f199feab2babc2aa990f295c85.php:30 msgid "Guest access" @@ -6069,98 +5148,98 @@ msgstr "" msgid "Vous avez recu un nouveau panier" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:111 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:111 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:106 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:106 msgid "Vous avez recu une demande de validation de document sur ce panier" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:134 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:301 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:480 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:134 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:301 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:480 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:129 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:295 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:468 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:129 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:295 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:468 msgid "action::exporter" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:145 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:491 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:145 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:491 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:144 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:483 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:144 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:483 msgid "action::editer" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:170 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:341 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:170 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:341 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:172 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:335 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:172 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:335 msgid "action::Valider" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:253 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:253 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:247 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:247 msgid "Vous avez envoye une demande de validation de document sur ce panier" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:274 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:274 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:268 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:268 msgid "paniers:: panier recu de %pusher%" msgstr "" +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:311 #: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:317 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:323 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:311 #: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:317 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:323 msgid "action::renommer" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:358 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:358 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:352 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:352 msgid "Archive" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:504 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:504 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:498 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:498 msgid "action::detacher" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:720 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:720 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:707 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:707 msgid "delete" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:809 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:809 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:796 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:796 msgid "panier:: ordre du panier" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:817 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:817 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:804 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:804 msgid "panier:: ordre Validation ascendante" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:825 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:825 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:812 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:812 msgid "panier:: ordre Validation descendante" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:873 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:873 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:860 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:860 msgid "L'utilisateur approuve ce document" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:879 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:879 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:866 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:866 msgid "L'utilisateur n'a pas encore donne son avis sur ce document" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:885 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:885 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:872 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:872 msgid "L'utilisateur desapprouve ce document" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:894 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:894 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:881 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:881 msgid "This user does not participate to the validation but is only viewer." msgstr "" @@ -6532,6 +5611,10 @@ msgstr "" msgid "Installation is currenlty processing, please wait..." msgstr "" +#: ../tmp/cache_twig/fd/d2/59bea1d752df653426a516d1059248f3fe0caeeb2049f1d3d763ff9c4fae.php:26 +msgid "Caption" +msgstr "" + #: ../tmp/cache_twig/d3/4a/935ee7f92da2e1661502992f9a8f3e754a644c8a00ebe80cee29914b3054.php:40 msgid "Toutes les publications" msgstr "" @@ -6566,95 +5649,102 @@ msgstr "" msgid "validation::envoyer mon rapport" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:204 -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:244 -msgid "thesaurus::menu: proprietes" -msgstr "" - -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:208 -msgid "thesaurus::menu: refuser" +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:112 +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:72 +#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:311 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:46 +msgid "phraseanet::chargement" msgstr "" #: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:212 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:252 +msgid "thesaurus::menu: proprietes" +msgstr "" + +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:216 +msgid "thesaurus::menu: refuser" +msgstr "" + +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:220 msgid "thesaurus::menu: accepter" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:217 -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:256 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:225 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:264 #: ../tmp/cache_twig/7a/72/f20894272ff1593d8f0771e60af00d476051d6843ac928e4937209748a05.php:112 msgid "thesaurus::menu: supprimer" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:221 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:229 msgid "thesaurus::menu: supprimer les candidats a 0 hits" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:226 -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:261 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:234 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:269 msgid "thesaurus::menu: chercher" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:230 -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:265 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:238 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:273 msgid "thesaurus::menu: exporter" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:237 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:245 msgid "thesaurus::menu: importer" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:248 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:256 msgid "thesaurus::menu: Nouveau terme" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:252 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:260 msgid "thesaurus::menu: Nouveau synonyme" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:269 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:277 msgid "thesaurus::menu: export topics" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:274 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:282 msgid "thesaurus::menu: lier au champ" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:322 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:330 msgid "thesaurus:: onglet stock" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:328 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:336 msgid "thesaurus:: afficher les termes refuses" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:342 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:350 msgid "thesaurus:: onglet thesaurus" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:547 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:555 msgid "" "thesaurus:: Supprimer cette branche ? (les termes concernes remonteront " "en candidats a la prochaine indexation)" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:552 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:560 msgid "" "thesaurus:: Des reponses sont retournees par cette branche. Supprimer " "quand meme ? (les termes concernes remonteront en candidats a la " "prochaine indexation)" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:606 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:614 msgid "thesaurus:: Tous les termes ont des hits" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:615 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:623 msgid "" "thesaurus:: Des termes de cette branche ne renvoient pas de hits. Les " "supprimer ?" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:1218 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:1226 msgid "thesaurus:: deplacer le terme dans la corbeille ?" msgstr "" @@ -6710,13 +5800,19 @@ msgstr "" msgid "Informations personnelles" msgstr "" +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:118 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:793 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:54 +msgid "admin::compte-utilisateur sexe" +msgstr "" + #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:198 msgid "login:: Changer mon adresse email" msgstr "" #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:206 #: ../lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:53 -#: ../lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:32 +#: ../lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:40 msgid "Password" msgstr "" @@ -6766,7 +5862,7 @@ msgid "%length% peoples" msgstr "" #: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:113 -#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:129 +#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:136 msgid "Edit" msgstr "" @@ -6774,14 +5870,39 @@ msgstr "" msgid "View" msgstr "" +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:161 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:121 +msgid "Push::filter on login" +msgstr "" + #: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:167 msgid "Push::filter on name" msgstr "" +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:173 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:137 +msgid "Push::filter on countries" +msgstr "" + +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:179 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:145 +msgid "Push::filter on companies" +msgstr "" + +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:185 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:153 +msgid "Push::filter on emails" +msgstr "" + #: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:191 msgid "Push::filter on templates" msgstr "" +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:197 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:158 +msgid "Push::filter starts" +msgstr "" + #: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:211 msgid "Activite" msgstr "" @@ -6799,15 +5920,6 @@ msgstr "" msgid "Position" msgstr "" -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:244 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:269 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:294 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:319 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:344 -#: ../tmp/cache_twig/9d/de/4a3fc48903fedfcf545b274e1584032d25e8b5d0713f2d25c0c3ed18920b.php:42 -msgid "All" -msgstr "" - #: ../tmp/cache_twig/1a/e7/c3a81dbf862a5b83cba1eb1bea56137758a339e52aae332db56749a2ea35.php:24 msgid "Nom du nouveau panier" msgstr "" @@ -6850,7 +5962,7 @@ msgstr "" #: ../tmp/cache_twig/88/b3/a68391b09fbc77bacf14181cf9292ad30591784465daaf3f80a24ca136c1.php:98 #: ../tmp/cache_twig/e2/07/010647dc8415a615d5f8cf2093c6fa3721c9a3b8e58e708eb900cc7bdebf.php:98 -#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:347 +#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:345 msgid "report:: jour" msgstr "" @@ -6946,6 +6058,143 @@ msgstr "" msgid "Do you want to send your report ?" msgstr "" +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:69 +msgid "Rights" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:79 +msgid "Infos" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:111 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:89 +msgid "Reglages:: reglages d acces guest" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:117 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:97 +msgid "Reglages:: reglages d inscitpition automatisee" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:129 +msgid "Edition des droits de %display_name%" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:141 +msgid "Edition des droits de %number% utilisateurs" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:150 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:209 +msgid "Apply a template" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:155 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:214 +msgid "boutton::choisir" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:177 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:249 +msgid "Delete all users rights" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:461 +msgid "Allowed to publish" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:470 +msgid "Manage Thesaurus" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:479 +msgid "Manage Database" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:488 +msgid "Manage DB fields" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:518 +msgid "Active" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:527 +msgid "Allowed to add in basket" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:536 +msgid "Access to preview" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:545 +msgid "Remove watermark" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:554 +msgid "Access to HD" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:563 +msgid "Allowed to order" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:572 +msgid "Set download quotas" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:599 +msgid "Set time restrictions" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:626 +msgid "Set statuses restrictions" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:656 +msgid "Allowed to add" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:665 +msgid "Allowed to edit" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:674 +msgid "Allowed to change statuses" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:683 +msgid "Allowed to delete" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:692 +msgid "Access to image tools" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:701 +msgid "Manage users" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:710 +msgid "Allowed to access report" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:719 +msgid "Allowed to push" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:728 +msgid "Manage collection" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:737 +msgid "Manage values lists" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:1022 +msgid "Are you sure you want to reset rights?" +msgstr "" + #: ../tmp/cache_twig/f1/c9/dbf9ae7044827c2101e54f3cf96ca794d3a1fe6570efec13f218513c5008.php:49 msgid "thesaurus:: suppression du lien du champ %field%" msgstr "" @@ -6969,6 +6218,31 @@ msgstr "" msgid "thesaurus:: reindexer tous les enregistrements" msgstr "" +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:35 +msgid "Suggested values" +msgstr "" + +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:95 +msgid "admin::sugval: Valeurs suggerees/Preferences de la collection" +msgstr "" + +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:130 +msgid "admin::sugval: champs" +msgstr "" + +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:196 +#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:246 +#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:473 +msgid "boutton::ajouter" +msgstr "" + +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:1064 +msgid "" +"admin::sugval: Attention, passer en mode graphique implique la perte des " +"modifications du xml si vous n'appliquez pas les changements avant.\n" +"Continuer quand meme" +msgstr "" + #: ../tmp/cache_twig/08/16/03bf13cb1a99a73a5231f0d0f7f0e327ccd12cd3288ac87096407b704187.php:28 msgid "Chercher" msgstr "" @@ -7081,114 +6355,90 @@ msgid "Mettre a jour" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:40 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:40 msgid "phraseanet:: collection" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:91 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:91 msgid "admin::base:collection: numero de collection distante" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:97 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:97 msgid "admin::base:collection: etat de la collection" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:99 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:312 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:99 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:312 msgid "admin::base:collection: activer la collection" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:99 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:312 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:99 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:312 msgid "admin::base:collection: descativer la collection" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:107 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:107 #: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:122 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:122 msgid "phraseanet:: details" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:118 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:118 msgid "admin::collection:: Gestionnaires des commandes" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:166 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:166 msgid "setup:: ajouter un administrateur des commandes" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:180 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:180 msgid "" "admin::collection:: presentation des elements lors de la diffusion aux " "utilisateurs externes (publications)" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:193 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:193 msgid "admin::colelction::presentation des elements : rien" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:203 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:203 msgid "admin::colelction::presentation des elements : watermark" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:213 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:213 msgid "admin::colelction::presentation des elements : stamp" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:271 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:271 -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:268 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:268 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:276 msgid "Set labels" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:291 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:291 msgid "admin::base:collection: renommer la collection" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:307 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:307 msgid "" "admin::base:collection: etes vous sur darreter la publication de cette " "collection" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:307 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:307 msgid "admin::base:collection: etes vous sur de publier cette collection ?" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:323 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:323 msgid "admin::base:collection: etes vous sur de vider la collection ?" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:328 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:328 msgid "admin::base:collection: vider la collection" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:339 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:339 msgid "admin::collection: Confirmez vous la suppression de cette collection ?" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:358 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:358 msgid "admin::base:collection: minilogo actuel" msgstr "" @@ -7196,32 +6446,23 @@ msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:445 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:501 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:557 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:389 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:445 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:501 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:557 -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:534 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:534 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:542 msgid "admin::base:collection: aucun fichier (minilogo, watermark ...)" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:414 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:414 msgid "Watermark" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:470 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:470 msgid "Stamp logo" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:526 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:526 msgid "admin::base:collection: image de presentation : " msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:584 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:584 #: ../tmp/cache_twig/5f/5b/af90ed6dd30d3a17dd01e65d349b45edf4aad5dadbb00da847719774c6d7.php:484 msgid "Invalid file type" msgstr "" @@ -7294,6 +6535,10 @@ msgstr "" msgid "Name" msgstr "" +#: ../tmp/cache_twig/10/7b/8164a1c1e4ee3ff6ab9801cdfdb8871881d8c31a9c7fb91333dec6ac13cc.php:126 +msgid "reponses:: partager" +msgstr "" + #: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:213 msgid "Create new subdef" msgstr "" @@ -7414,6 +6659,12 @@ msgstr "" msgid "Apply to all selected documents" msgstr "" +#: ../tmp/cache_twig/b4/9c/07c23ab66a045a8e5227f1d772335d8a711fcfe612db32f5ee1317a5f553.php:71 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:129 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:295 +msgid "First/Last Name" +msgstr "" + #: ../tmp/cache_twig/b4/9c/07c23ab66a045a8e5227f1d772335d8a711fcfe612db32f5ee1317a5f553.php:107 msgid "E-Mail" msgstr "" @@ -7482,8 +6733,8 @@ msgstr "" #: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:138 #: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:142 -#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:312 -#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:316 +#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:325 +#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:329 #: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:102 msgid "User can download HD" msgstr "" @@ -7513,11 +6764,11 @@ msgstr "" msgid "Accuse de reception" msgstr "" -#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:261 +#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:274 msgid "Force authentication" msgstr "" -#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:270 +#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:283 msgid "" "The parameter \"force authentication\" forces the recipient(s) of the push " "to possess a Phraseanet account\n" @@ -7724,6 +6975,11 @@ msgstr "" msgid "Read-only" msgstr "" +#: ../tmp/cache_twig/51/0c/18503088e319b8875c981341ba05114f38df1aac9e32d800428337ffffeb.php:312 +#: ../lib/conf.d/_GV_template.inc:380 +msgid "Report" +msgstr "" + #: ../tmp/cache_twig/51/0c/18503088e319b8875c981341ba05114f38df1aac9e32d800428337ffffeb.php:320 msgid "Display thumbnails" msgstr "" @@ -7874,10 +7130,10 @@ msgstr "" #: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:116 #: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:394 -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:483 +#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:480 #: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:116 #: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:394 -#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:483 +#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:480 msgid "admin::utilisateurs: utilisateurs" msgstr "" @@ -8413,6 +7669,94 @@ msgstr "" msgid "Sent" msgstr "" +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:44 +msgid "The user has been created." +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:50 +#, php-format +msgid "%user_count% users have been created." +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:71 +msgid "admin::user: nouvel utilisateur" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:75 +msgid "admin::user: nouveau template" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:81 +msgid "admin::user: import d'utilisateurs" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:85 +msgid "admin::user: export d'utilisateurs" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:112 +msgid "Filter" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:166 +msgid "Last applied template" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:236 +msgid "boutton::appliquer" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:265 +msgid "admin::compte-utilisateur id utilisateur" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:343 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:310 +msgid "admin::compte-utilisateur pays" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:359 +msgid "admin::compte-utilisateur dernier modele applique" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:375 +msgid "admin::compte-utilisateur date de creation" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:420 +msgid "This is a template" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:429 +msgid "This user has no rights" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:638 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:649 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:660 +msgid "%n_par_page% par page" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:669 +msgid "Supprimer" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:807 +msgid "boutton::exporter" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:831 +msgid "select at least one user" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:843 +msgid "Are you sure you want delete users rights ?" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:867 +msgid "users rights have been reseted" +msgstr "" + #: ../tmp/cache_twig/8c/3d/8799257e40172576b2c4610f3409da0c1fd33e1559a70eb893004c802202.php:77 msgid "No matches found" msgstr "" @@ -8537,146 +7881,121 @@ msgid "boutton::retry" msgstr "" #: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:43 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:43 msgid "forms::operation effectuee OK" msgstr "" #: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:81 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:81 msgid "admin::base: Alias" msgstr "" #: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:99 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:99 msgid "Rename" msgstr "" #: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:112 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:112 msgid "admin::base: nombre d'enregistrements sur la base :" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:133 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:133 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:129 +msgid "admin::base: subdefs to be created :" +msgstr "" + +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:141 msgid "admin::base: nombre de mots uniques sur la base : " msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:142 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:142 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:150 msgid "admin::base: nombre de mots indexes sur la base" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:155 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:155 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:163 msgid "admin::base: nombre de termes de Thesaurus indexes :" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:174 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:174 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:182 msgid "admin::base: document indexes en utilisant la fiche xml" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:185 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:185 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:193 msgid "admin::base: document indexes en utilisant le thesaurus" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:210 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:210 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:218 msgid "admin::base: Cette base est indexable" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:296 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:296 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:304 msgid "admin::base: Confirmer la suppression de tous les logs" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:301 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:301 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:309 msgid "admin::base: supprimer tous les logs" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:312 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:312 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:320 msgid "admin::base: Confirmer vous l'arret de la publication de la base" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:317 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:317 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:325 msgid "admin::base: arreter la publication de la base" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:328 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:328 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:336 msgid "admin::base: Confirmer le vidage complet de la base" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:333 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:333 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:341 msgid "admin::base: vider la base" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:344 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:344 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:352 msgid "admin::base: Confirmer la suppression de la base" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:349 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:349 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:357 msgid "admin::base: supprimer la base" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:361 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:361 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:369 msgid "Confirmez-vous la re-indexation de la base ?" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:365 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:365 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:373 msgid "base:: re-indexer" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:379 -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:436 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:379 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:436 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:387 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:444 msgid "admin::base:collection: Monter une collection" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:397 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:397 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:405 msgid "Monter la collection %name%" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:464 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:464 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:472 msgid "Activer une collection" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:486 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:486 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:494 #: ../tmp/cache_twig/cf/5b/3bf639774f4a6aa64dba02220ef918ec08a83365af21a4c60c81bde44a14.php:50 #: ../tmp/cache_twig/e8/54/dfb697806e2c91b99ffdbd24a1ebc60c6e99761bb866cafc0809cff8252e.php:58 msgid "Activer" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:508 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:508 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:516 msgid "admin::base: logo impression PDF" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:524 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:524 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:532 msgid "admin::base:collection: supprimer le logo" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:544 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:544 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:552 msgid "admin::base: envoyer un logo (jpeg 35px de hauteur max)" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:567 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:567 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:580 #: ../lib/Alchemy/Phrasea/Controller/Admin/Databox.php:949 msgid "admin::base: aucun alias" msgstr "" @@ -8741,19 +8060,19 @@ msgstr "" msgid "admin::tasks: etat de progression de la tache" msgstr "" -#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:135 +#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:145 msgid "Start" msgstr "" -#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:141 +#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:151 msgid "Stop" msgstr "" -#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:153 +#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:165 msgid "Logs" msgstr "" -#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:216 +#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:218 msgid "admin::tasks: Nouvelle tache" msgstr "" @@ -9641,22 +8960,22 @@ msgstr "" #: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1803 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1803 -msgid "Informations techniques" +msgid "Display technical data" msgstr "" #: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1814 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1814 -msgid "Afficher" +msgid "In the answer grid" msgstr "" #: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1826 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1826 -msgid "Afficher dans la notice" +msgid "After metadata" msgstr "" #: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1838 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1838 -msgid "Ne pas afficher" +msgid "Do not display" msgstr "" #: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1848 @@ -9728,7 +9047,7 @@ msgstr "" msgid "Apparait aussi dans ces reportages" msgstr "" -#: ../tmp/cache_twig/cc/49/de3b22a0ad2136aa4a2d04ab8029e9576ebc9278899da69e600ed81ac675.php:73 +#: ../tmp/cache_twig/cc/49/de3b22a0ad2136aa4a2d04ab8029e9576ebc9278899da69e600ed81ac675.php:75 msgid "Apparait aussi dans ces paniers" msgstr "" @@ -9768,7 +9087,7 @@ msgstr "" msgid "thesaurus:: Lier la branche de thesaurus au champ %branch%" msgstr "" -#: ../lib/Alchemy/Phrasea/Application.php:627 +#: ../lib/Alchemy/Phrasea/Application.php:606 msgid "Open the URL in a new window" msgstr "" @@ -10085,19 +9404,19 @@ msgstr "" msgid "Validate e-mail address" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Setup.php:99 +#: ../lib/Alchemy/Phrasea/Controller/Setup.php:119 msgid "It is not recommended to install Phraseanet without HTTPS support" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Setup.php:134 +#: ../lib/Alchemy/Phrasea/Controller/Setup.php:154 msgid "Appbox is unreachable" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Setup.php:144 +#: ../lib/Alchemy/Phrasea/Controller/Setup.php:164 msgid "Databox is unreachable" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Setup.php:186 +#: ../lib/Alchemy/Phrasea/Controller/Setup.php:206 #, php-format msgid "an error occured : %s" msgstr "" @@ -10140,47 +9459,47 @@ msgstr "" msgid "Unable to add file to Phraseanet" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:167 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:319 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:168 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:320 #: ../lib/Alchemy/Phrasea/Controller/Admin/Databox.php:927 #: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:187 #: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:213 -#: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:245 -#: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:276 -#: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:313 +#: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:244 +#: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:275 +#: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:312 #: ../lib/Alchemy/Phrasea/Controller/Root/Account.php:211 msgid "Bad request format, only JSON is allowed" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:171 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:172 msgid "Missing tests parameter" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:175 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:176 msgid "Missing path parameter" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:231 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:232 msgid "Missing \"structure\" parameter" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:273 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:274 msgid "You do not enough rights to update status" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:276 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:277 msgid "File is too big : 64k max" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:279 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:280 msgid "Status icon upload failed : upload error" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:282 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:283 msgid "Status icon upload failed : can not write on disk" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:285 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:286 msgid "Something wrong happend" msgstr "" @@ -10361,8 +9680,8 @@ msgstr "" msgid "A task has been created, please run it to complete empty collection" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/TaskManager.php:111 -#: ../lib/Alchemy/Phrasea/Controller/Admin/TaskManager.php:151 +#: ../lib/Alchemy/Phrasea/Controller/Admin/TaskManager.php:119 +#: ../lib/Alchemy/Phrasea/Controller/Admin/TaskManager.php:159 msgid "Clear" msgstr "" @@ -10406,11 +9725,6 @@ msgstr "" msgid "The use of phraseanet Navigator is not allowed" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Api/Oauth2.php:82 -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1047 -msgid "login::erreur: Erreur d'authentification" -msgstr "" - #: ../lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:431 #, php-format msgid "thesaurus:: fichier genere le %s" @@ -10446,12 +9760,12 @@ msgstr "" msgid "thesaurus:: corbeille" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1531 +#: ../lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1590 #, php-format msgid "prod::thesaurusTab:dlg:%d record(s) updated" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1534 +#: ../lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1593 #, php-format msgid "prod::thesaurusTab:dlg:too many (%1$d) records to update (limit=%2$d)" msgstr "" @@ -10503,40 +9817,40 @@ msgstr "" msgid "Missing mandatory parameter %s" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:453 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:456 #, php-format msgid "%1$d records have been sent for validation to %2$d users" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:517 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:520 msgid "You are not allowed to add users" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:520 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:523 msgid "First name is required" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:523 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:526 msgid "Last name is required" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:526 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:529 msgid "Email is required" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:529 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:532 msgid "Email is invalid" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:543 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:546 msgid "User already exists" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:566 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:569 msgid "User successfully created" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:570 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:573 msgid "Error while creating user" msgstr "" @@ -10545,7 +9859,7 @@ msgid "Story created" msgstr "" #: ../lib/Alchemy/Phrasea/Controller/Prod/Story.php:140 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:413 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:421 #, php-format msgid "%d records added" msgstr "" @@ -10654,35 +9968,35 @@ msgstr "" msgid "Basket has been deleted" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:249 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:257 msgid "Record removed from basket" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:274 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:282 msgid "Basket has been updated" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:276 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:284 msgid "The requested basket does not exist" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:278 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:286 msgid "You do not have access to this basket" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:333 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:341 msgid "Basket updated" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:354 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:362 msgid "Basket has been archived" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:356 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:364 msgid "Basket has been unarchived" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:447 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:455 #, php-format msgid "%d records moved" msgstr "" @@ -10721,18 +10035,18 @@ msgstr "" msgid "publications::votre rss personnel" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:163 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:160 msgid "Document has been successfully substitued" msgstr "" +#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:162 #: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:165 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:168 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:216 #: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:219 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:222 msgid "file is not valid" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:217 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:214 msgid "Thumbnail has been successfully substitued" msgstr "" @@ -10807,21 +10121,21 @@ msgstr "" msgid "Unable to remove usr from list" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:189 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:190 msgid "There is no one to validate orders, please contact an administrator" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:203 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:204 msgid "There is no record eligible for an order" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:293 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:294 msgid "" "An error occured while sending, please retry or contact an admin if problem " "persists" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:328 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:329 msgid "" "An error occured while denying, please retry or contact an admin if problem " "persists" @@ -11221,105 +10535,110 @@ msgstr "" msgid "Great" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:292 -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:300 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:298 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:306 msgid "You tried to register with an unknown provider" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:327 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:333 msgid "Invalid captcha answer." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:432 -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:503 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:438 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:509 msgid "login::notification: demande de confirmation par mail envoyee" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:435 -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:506 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:441 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:512 msgid "Unable to send your account unlock email." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:496 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:502 msgid "Invalid link." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:545 -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:553 -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:561 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:551 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:559 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:567 msgid "Invalid unlock link." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:567 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:573 msgid "Account is already unlocked, you can login." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:578 -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:589 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:584 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:595 msgid "Account has been unlocked, you can now login." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:594 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:600 msgid "Account has been unlocked, you still have to wait for admin approval." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:628 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:634 #: ../lib/Alchemy/Phrasea/Controller/Root/Account.php:98 msgid "login::notification: Mise a jour du mot de passe avec succes" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:664 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:670 msgid "phraseanet::erreur: Le compte n'a pas ete trouve" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:670 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:676 msgid "Invalid email address" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:686 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:692 msgid "phraseanet:: Un email vient de vous etre envoye" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:734 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:740 msgid "Vous etes maintenant deconnecte. A bientot." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:761 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:767 msgid "login::erreur: No available connection - Please contact sys-admin" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:806 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:812 msgid "Phraseanet guest-access is disabled" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:926 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:932 #, php-format msgid "Unable to authenticate with %s" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:950 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:956 msgid "Unable to retrieve provider identity" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:989 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:995 msgid "Your identity is not recognized." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1021 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1027 msgid "" "An unexpected error occured during authentication process, please contact an " "admin" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1036 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1042 msgid "Please fill the captcha" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1040 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1046 msgid "login::erreur: Vous n'avez pas confirme votre email" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Session.php:124 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1053 +msgid "login::erreur: Erreur d'authentification" +msgstr "" + +#: ../lib/Alchemy/Phrasea/Controller/Root/Session.php:111 +#: ../lib/Alchemy/Phrasea/Controller/Root/Session.php:196 msgid "The application is going down for maintenance, please logout." msgstr "" @@ -11373,7 +10692,7 @@ msgstr "" msgid "forms::erreurs lors de l'enregistrement des modifications" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:321 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:320 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:59 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:77 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:298 @@ -11381,21 +10700,21 @@ msgstr "" msgid "phrseanet:: sous definition" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:459 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:458 msgid "report:: plateforme" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:469 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:468 msgid "report:: module" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:569 -#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:746 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:568 +#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:744 msgid "configuration" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:596 -#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:773 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:595 +#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:771 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:155 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:407 #, php-format @@ -11423,15 +10742,15 @@ msgstr "" msgid "report:: nombre de reponses" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:348 +#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:346 msgid "report:: total des telechargements" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:350 +#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:348 msgid "report:: document original" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:658 +#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:656 msgid "Receiver" msgstr "" @@ -11532,7 +10851,7 @@ msgstr "" msgid "New password (confirmation)" msgstr "" -#: ../lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:41 +#: ../lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:50 msgid "Remember me" msgstr "" @@ -11616,6 +10935,10 @@ msgstr "" msgid "test::test" msgstr "" +#: ../lib/Alchemy/Phrasea/Command/Developer/IniReset.php:88 +msgid "Please enter the databox name to reset" +msgstr "" + #: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngineQueryParser.php:133 msgid "qparser::la question est vide" msgstr "" @@ -11662,30 +10985,30 @@ msgstr "" msgid "qparser:: Formulation incorrecte, necessite plus de caractere : " msgstr "" -#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:111 +#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:123 msgid "No sort" msgstr "" -#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:136 +#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:148 #: ../lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:138 msgid "descendant" msgstr "" -#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:137 +#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:149 #: ../lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:139 msgid "ascendant" msgstr "" -#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:416 +#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:428 msgid "Unable to execute query" msgstr "" -#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:496 +#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:508 #, php-format msgid "reponses::propositions pour la base %s" msgstr "" -#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:502 +#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:514 #, php-format msgid "reponses::propositions pour le terme %s" msgstr "" @@ -11717,7 +11040,7 @@ msgid "GOP size" msgstr "" #: ../lib/Alchemy/Phrasea/Media/Subdef/Video.php:36 -#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:33 +#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:34 msgid "Dimension" msgstr "" @@ -11738,19 +11061,23 @@ msgstr "" msgid "Generates a video file" msgstr "" -#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:34 +#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:35 msgid "Resolution" msgstr "" -#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:35 +#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:36 msgid "Remove ICC Profile" msgstr "" -#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:36 +#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:37 +msgid "Flatten layers" +msgstr "" + +#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:38 msgid "Quality" msgstr "" -#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:46 +#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:48 msgid "Generates a Jpeg image" msgstr "" @@ -11826,3 +11153,518 @@ msgstr "" #: ../lib/Doctrine/Repositories/BasketRepository.php:160 msgid "You have not access to this basket" msgstr "" + +#: ../lib/conf.d/_GV_template.inc:38 +msgid "HTTP Server" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:43 +msgid "Default language" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:52 +msgid "Static URL" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:53 +msgid "optional" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:58 +msgid "Maintenance state" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:64 +msgid "Maintenance message" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:70 +msgid "Enable maintenance message broadcast" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:76 +msgid "Log errors" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:81 +msgid "Webservices connectivity" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:86 +msgid "Use Google API" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:93 +msgid "Geonames server address" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:101 +msgid "Use recaptcha API" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:109 +msgid "Recaptcha public key" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:115 +msgid "Recaptcha private key" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:120 +msgid "Youtube connectivity" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:125 +msgid "Use youtube API" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:126 ../lib/conf.d/_GV_template.inc:157 +#: ../lib/conf.d/_GV_template.inc:181 +#, php-format +msgid "Create API account at %s, then use %s as callback URL value" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:133 +msgid "Youtube public key" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:139 +msgid "Youtube secret key" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:145 +msgid "Youtube developer key" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:146 +#, php-format +msgid "See %s" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:151 +msgid "FlickR connectivity" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:156 +msgid "Use Flickr API" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:164 +msgid "Flickr public key" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:170 +msgid "Flickr secret key" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:175 +msgid "Dailymotion connectivity" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:180 +msgid "Use Dailymotion API" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:188 +msgid "Dailymotion public key" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:194 +msgid "Dailymotion secret key" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:199 +msgid "Phraseanet client API" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:204 +msgid "Authorize *Phraseanet Navigator*" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:205 +msgid "" +"*Phraseanet Navigator* is a smartphone application that allow user to " +"connect on this instance" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:212 +msgid "Authorize Microsoft Office Plugin to connect." +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:218 +msgid "Documents storage" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:224 +msgid "Default path for datas" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:230 +msgid "Executables settings" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:235 +msgid "php.ini path" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:236 +msgid "Empty if not used" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:243 +msgid "Imagine driver" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:255 +msgid "Number of threads to use for FFMpeg" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:261 +msgid "Maximum number of pages to be extracted from PDF" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:266 +msgid "Main configuration" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:271 +msgid "Enable Forcing authentication to see push content" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:272 +msgid "" +"Adds an option to the push form submission to restrict push recipient(s) to " +"Phraseanet users only." +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:278 +msgid "Set force authentication option to see push content as mandatory" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:279 +msgid "" +"Disallow the possibility for the end user to disable push authentication" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:285 +msgid "Enable possibility to notify users when publishing a new feed entry" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:291 +msgid "Admin email" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:297 +msgid "Display the name of databases and collections" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:304 +msgid "Choose the title of the document to export" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:311 +msgid "Default export title" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:314 +msgid "Document title" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:315 +msgid "Original name" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:321 +msgid "Enable this setting to share on Facebook and Twitter" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:323 +msgid "Disabled" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:324 +msgid "Publishers" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:325 +msgid "Enabled" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:332 +msgid "Homepage" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:338 +msgid "Homepage slideshow" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:341 +msgid "Single image" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:342 +msgid "Slide show" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:344 +msgid "Carousel" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:345 +msgid "Gallery" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:351 +msgid "Search engine" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:357 +msgid "Minimum number of letters before truncation" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:358 +msgid "Used in search engine" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:364 +msgid "Default query" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:370 +msgid "Default searched type" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:371 +msgid "Used when opening the application" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:373 +msgid "Documents" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:374 +msgid "Stories" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:386 +msgid "Anonymous report" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:387 +msgid "Hide information about users" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:393 +msgid "Additionnal modules" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:399 +msgid "Enable thesaurus" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:404 +msgid "Enable multi-doc mode" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:409 +msgid "Enable HD substitution" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:414 +msgid "Enable thumbnail substitution" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:420 +msgid "Emails" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:425 +msgid "Default mail sender address" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:431 +msgid "Prefix for notification emails" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:437 +msgid "Use a SMTP server" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:443 +msgid "Enable SMTP authentication" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:449 +msgid "SMTP host" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:455 +msgid "SMTP port" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:461 +msgid "SMTP encryption" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:472 +msgid "SMTP user" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:478 +msgid "SMTP password" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:483 +msgid "FTP Export" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:488 +msgid "Enable FTP export" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:489 +msgid "Available in multi-export tab" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:495 +msgid "Enable FTP for users" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:496 +msgid "By default it is available for admins" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:501 +msgid "Client" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:506 +msgid "Maximum megabytes allowed for download" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:507 +msgid "If request is bigger, then mail is still available" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:513 +msgid "Search tab position" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:519 +msgid "Advanced search tab position" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:525 +msgid "Topics tab position" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:531 +msgid "Active tab position" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:537 +msgid "Topics display mode" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:539 +msgid "Trees" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:540 ../lib/conf.d/_GV_template.inc:562 +msgid "Drop-down" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:547 +msgid "Enable roll-over on stories" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:553 +msgid "Enable roll-over on basket elements" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:559 +msgid "Collections display mode" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:563 +msgid "Check-box" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:569 +msgid "Display the total size of the document basket" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:575 +msgid "Display proposals tab" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:581 +msgid "Require authentication to download documents" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:582 +msgid "Used for guest account" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:588 +msgid "Users must accept Terms of Use for each export" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:593 +msgid "Registration" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:598 +msgid "Auto select databases" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:599 +msgid "" +"This option disables the selecting of the databases on which a user can " +"register himself, and registration is made on all granted databases." +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:605 +msgid "Enable auto registration" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:610 +msgid "Push configuration" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:615 +msgid "" +"Number of days before the end of the validation to send a reminder email" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:621 +msgid "Default validation links duration" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:622 +msgid "If set to 0, duration is permanent" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:627 +msgid "Robot indexing" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:632 +msgid "Application title" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:638 +msgid "Keywords used for indexing purposes by search engines robots" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:644 +msgid "Application description" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:650 +msgid "Google Analytics identifier" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:656 +msgid "Allow the website to be indexed by search engines like Google" +msgstr "" From 74a32e1ee4842ba3e02d74d134a79992898610f0 Mon Sep 17 00:00:00 2001 From: Nicolas Le Goff Date: Fri, 5 Sep 2014 17:31:15 +0200 Subject: [PATCH 09/16] update locales --- locale/de_DE/LC_MESSAGES/phraseanet.mo | Bin 207400 -> 207372 bytes locale/de_DE/LC_MESSAGES/phraseanet.po | 16 +++++++++++--- locale/en_GB/LC_MESSAGES/phraseanet.mo | Bin 192870 -> 193259 bytes locale/en_GB/LC_MESSAGES/phraseanet.po | 28 +++++++++++++++++++------ locale/fr_FR/LC_MESSAGES/phraseanet.mo | Bin 210231 -> 210610 bytes locale/fr_FR/LC_MESSAGES/phraseanet.po | 28 ++++++++++++++++++------- locale/nl_NL/LC_MESSAGES/phraseanet.mo | Bin 203871 -> 203793 bytes locale/nl_NL/LC_MESSAGES/phraseanet.po | 18 ++++++++++++---- 8 files changed, 70 insertions(+), 20 deletions(-) diff --git a/locale/de_DE/LC_MESSAGES/phraseanet.mo b/locale/de_DE/LC_MESSAGES/phraseanet.mo index 1d581e8c0fd2d791b4ceb5d856121e6dbd24b699..fc6fdde1f9057bd24155a076323e323407bc7fc9 100644 GIT binary patch delta 19329 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\n" +"PO-Revision-Date: 2014-09-05 17:30+0100\n" +"Last-Translator: \n" "Language-Team: \n" "Language: de_DE\n" "MIME-Version: 1.0\n" @@ -16,7 +16,7 @@ msgstr "" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Basepath: /Users/romain/Documents/workspace/Phraseanet\n" "X-Poedit-KeywordsList: _e;__\n" -"X-POOTLE-MTIME: 1401867081.000000\n" +"X-POOTLE-MTIME: 1406297568.000000\n" "X-Poedit-SearchPath-0: config\n" "X-Poedit-SearchPath-1: lib/classes\n" "X-Poedit-SearchPath-2: lib/conf.d\n" @@ -11657,9 +11657,19 @@ msgstr "Unmöglich, Vorlage zu erstellen: Name bereits vergeben" msgid "Unable to create the user." msgstr "Unmöglich, Benutzer zu erstellen" +#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:37 msgid "Flatten layers" msgstr "Flatten Schichten" +#: ../lib/conf.d/_GV_template.inc:278 +msgid "Set force authentication option to see push content as mandatory" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:279 +msgid "" +"Disallow the possibility for the end user to disable push authentication" +msgstr "" + #~ msgid "Enable H264 stream mode" #~ msgstr "H264 Stream Modus aktivieren" diff --git a/locale/en_GB/LC_MESSAGES/phraseanet.mo b/locale/en_GB/LC_MESSAGES/phraseanet.mo index 4000a50595ce48997d4f2dd70abddc487c69698d..3ddccfcd931c4a1d01ee238acbb4c79366e687a7 100644 GIT binary patch delta 51730 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 ri`G}b7+^_CmldD<^KOFX*-WNuPF0B;pe^e delta 51394 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 RGDgQGCi!NDop4O^`X2`-M=<~Z diff --git a/locale/en_GB/LC_MESSAGES/phraseanet.po b/locale/en_GB/LC_MESSAGES/phraseanet.po index 1a955b08fd..47148cb30c 100644 --- a/locale/en_GB/LC_MESSAGES/phraseanet.po +++ b/locale/en_GB/LC_MESSAGES/phraseanet.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-11-14 14:10+0100\n" -"PO-Revision-Date: 2014-07-08 11:58+0100\n" -"Last-Translator: Anthony \n" +"PO-Revision-Date: 2014-09-05 17:30+0100\n" +"Last-Translator: \n" "Language-Team: \n" "Language: en_GB\n" "MIME-Version: 1.0\n" @@ -16,7 +16,7 @@ msgstr "" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Basepath: /Users/romain/Documents/workspace/Phraseanet\n" "X-Poedit-KeywordsList: _e;__\n" -"X-POOTLE-MTIME: 1404404647.000000\n" +"X-POOTLE-MTIME: 1409915813.000000\n" "X-Poedit-SearchPath-0: config\n" "X-Poedit-SearchPath-1: lib/classes\n" "X-Poedit-SearchPath-2: lib/conf.d\n" @@ -6392,7 +6392,9 @@ msgstr "Create new database" #: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:236 msgid "" "phraseanet:: Creer une base sur un serveur different de l'application box" -msgstr "Create a new database on another server" +msgstr "" +"Create a base on a different database server than the one of the Application " +"Box" #: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:242 #: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:323 @@ -6431,7 +6433,9 @@ msgstr "Mount database" msgid "" "phraseanet:: Monter une base provenant d'un serveur different de " "l'application box" -msgstr "Mount Database from a distant host." +msgstr "" +"Mount an existing base from a different database server than the one of the " +"Application Box" #: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:350 msgid "boutton::monter" @@ -11331,7 +11335,9 @@ msgstr "Enable the force authentication option for Push and Feedbacks sessions" msgid "" "Adds an option to the push form submission to restrict push recipient(s) to " "Phraseanet users only." -msgstr "Force authentication for Push and Feedbacks recipients." +msgstr "" +"Adds an option in forms to force the recipients of a Push or a Feedback to " +"authenticate." #: ../lib/classes/task/period/apiwebhooks.php:18 msgid "Api Webhook" @@ -11499,9 +11505,19 @@ msgstr "Unable to create template, its given name is already used." msgid "Unable to create the user." msgstr "Unable to create the user." +#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:37 msgid "Flatten layers" msgstr "Flatten layers" +#: ../lib/conf.d/_GV_template.inc:278 +msgid "Set force authentication option to see push content as mandatory" +msgstr "Mandating authentication for Pushes and Feedbacks" + +#: ../lib/conf.d/_GV_template.inc:279 +msgid "" +"Disallow the possibility for the end user to disable push authentication" +msgstr "Removes the choice of authentication options in submission forms." + #~ msgid "Enable H264 stream mode" #~ msgstr "Enable H264 stream mode" diff --git a/locale/fr_FR/LC_MESSAGES/phraseanet.mo b/locale/fr_FR/LC_MESSAGES/phraseanet.mo index a51cd50f5d56e67e69e0cca00e88319fc61b369d..478f3639d1b1ab2402d88a6a8a58f29712395b87 100644 GIT binary patch delta 51680 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 delta 51378 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 diff --git a/locale/fr_FR/LC_MESSAGES/phraseanet.po b/locale/fr_FR/LC_MESSAGES/phraseanet.po index a2783a67ef..268f55196b 100644 --- a/locale/fr_FR/LC_MESSAGES/phraseanet.po +++ b/locale/fr_FR/LC_MESSAGES/phraseanet.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-11-14 14:10+0100\n" -"PO-Revision-Date: 2014-07-08 11:58+0100\n" -"Last-Translator: Anthony \n" +"PO-Revision-Date: 2014-09-05 17:30+0100\n" +"Last-Translator: \n" "Language-Team: \n" "Language: fr_FR\n" "MIME-Version: 1.0\n" @@ -16,7 +16,7 @@ msgstr "" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Basepath: /Users/romain/Documents/workspace/Phraseanet\n" "X-Poedit-KeywordsList: _e;__\n" -"X-POOTLE-MTIME: 1404404560.000000\n" +"X-POOTLE-MTIME: 1409915751.000000\n" "X-Poedit-SearchPath-0: config\n" "X-Poedit-SearchPath-1: lib/classes\n" "X-Poedit-SearchPath-2: lib/conf.d\n" @@ -6457,7 +6457,7 @@ msgstr "Créer une base" #: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:236 msgid "" "phraseanet:: Creer une base sur un serveur different de l'application box" -msgstr "Créer une base sur un autre serveur" +msgstr "Créer une base sur un serveur different de celui de l'Application Box" #: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:242 #: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:323 @@ -6496,7 +6496,9 @@ msgstr "Monter une base" msgid "" "phraseanet:: Monter une base provenant d'un serveur different de " "l'application box" -msgstr "Monter une base provenant d'un serveur different de l'application box" +msgstr "" +"Monter une base existante provenant d'un serveur different de celui de " +"l'Application Box" #: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:350 msgid "boutton::monter" @@ -11508,8 +11510,8 @@ msgid "" "Adds an option to the push form submission to restrict push recipient(s) to " "Phraseanet users only." msgstr "" -"Force les utilisateurs destinataires d'un Push et d'une validation à " -"s'authentifier." +"Ajoute une option dans les formulaires d'envoi pour contraindre les " +"destinataires d'un Push ou d'une Validation à s'authentifier." #: ../lib/classes/task/period/apiwebhooks.php:18 msgid "Api Webhook" @@ -11678,9 +11680,21 @@ msgstr "Impossible le créer ce modèle, le nom donné est déjà utilisé." msgid "Unable to create the user." msgstr "Impossible de créer cet utilisateur." +#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:37 msgid "Flatten layers" msgstr "Aplatir les calques" +#: ../lib/conf.d/_GV_template.inc:278 +msgid "Set force authentication option to see push content as mandatory" +msgstr "Forcer l'authentification pour les Pushs et les Validations" + +#: ../lib/conf.d/_GV_template.inc:279 +msgid "" +"Disallow the possibility for the end user to disable push authentication" +msgstr "" +"Supprime le choix des options d'authentification dans les formulaires " +"d'envoi." + #~ msgid "Enable H264 stream mode" #~ msgstr "Activer H264 en mode flux continu (lecture en streaming)" diff --git a/locale/nl_NL/LC_MESSAGES/phraseanet.mo b/locale/nl_NL/LC_MESSAGES/phraseanet.mo index 1eaff2b729e5581d474aedea74382ccdee6ccbc0..69956c70d082248d4809d7d0db488f74f03d2053 100644 GIT binary patch delta 51020 zcmY)13Al|_-}v$Em@|_h!ZFX8hcX@WEOTYdT!s{iO6`ayLrH{EAyJx$B8@5%qEeEm zNGYNsiRl0R?zNuldjI>n&huGo-S@r5-&*%R^m@PBkbCZi+{uFlv&>KM>6tT;xE$AY zOe7}cP9!>~N)w4v=Zj-@+2) zzrg%>GMd<)NK~NxL;(_xup!c;#6--Fi_iy_;uW|SZSV)|hJT|Cx8D)&8-xYO-;9^y zG|YpKV_sZ=#c&M7_0Z(wKKjdq~qr}jLNsEfJrI?RJ3 z@DiMeb}Wf@WC51M)z}la;Xo|8i+ggAm_kBlpi@5wt>7tiD%VGMVomZ#(CdYF2dhV0 zVJ6D^VrlG;)o=<{!ByzUKSyII`)AC*iHy$(2)rF@<1%c8d(dDi_IV;P7W-jU+=fXH3`|7|RUUtkCP8SPN*FGCCsL_077y>DzRpNj5+2a_b6%B|=U9K_7{Gv>o% zXa~>7>p8v(6&1iClvhAU`T!aebI_5lLwC!2XgxooyXiE#&GYU}BywW18i^t#>Z2X# zj770G8Z=|kshWw7UtRZybRmoQM93&`@;xZU=Q-c(IDJ_HhdVJxzo`L=n`c6Htd3eSeASpER4O; z>!Y!#`+pJ%r}kmA!R6?htw*Q!BQyqnLHGF?wBalVLcTD1f|f(KT^n@fhR6Iwbcr8B z54P3l%)Exl+9bY<1qBW!5*5ieMH?7~9w@h>YkLpc^M|knF2D!yYcvQ4e;3a9kyxDk zbLfcQM|Z(qybKTG6?pbL=HHQ5`aVQuV>Ev)*2ghu#mmqcScP_AJvu}0qxXM?m*NpL z2F{@!&htaq#zoO>+z9Q^2rPzEen^Iw!+Z*SU=7}bo3JD{Ih06@$G+%{>_j_q5N-Gv zR>uF(cSq&JVOMlPJK6&s@j$fU$>`F|K|8P{Ny2UMIyz;a#{4g61DSpd4-`h%t~}Pm z>evtmqa$8~R{SD*-zId1KEMw61y;b4N5TMFp-YnNM#43|CSDj4FN}-jx1lpJ6|MMb zbVMuBsDB@wxlgb$?!l&*|EKV-=!!mnH#*QK(UGr1mL!?jNy3qy$10fb=P;#LVm0zZ z&<5wAYq$!#;8$1?%O4HTb;9=KZ$)S39lRdTU}?POm(YPpn1lSoc!~ReAqji99CPCP z=ndO3JMKZ(?pt)<|A|?!WDpE=?!?)2ebT^NVLX$SPOfh&&|L#_%!CiBhf#8 zWB!LyaDjq8IQT?pa06B%zXc7d6W9~0o(%i^?&v&pM61yIUPU{896d?1{~o6PGBjTU z^I&sy=DPgO`nxtGC~$4=z$$nTI>j$wP27T3a0c^Yjz7YT6-5u8O6W{BLD#%LX5cu? zkFR1?d>H&~ z^YgF?zJS*MbG&{W?O5_0i2@{Yoemu-iRt8PU>bHs8}1(Mi{3vJ?Z~a@ls}Bl%nNua zZbTdS6rIuU&>7A7SLj#;q@&416B2H(j+h&-$1*q;t>|HNWY3~Y^cA|jzD0M#VRXdj z(GKK16PC0XmLgvr9eF2A$8P9-w_thq|2-s(&J}2M9z#3wcQni2VZ;T{U@M2-R}HI<;+LejGZohtLi!!lJkwU9wGB4|k&Vq@82_?O`qwPH7qR!OG}V*NNqgqRsI- z%G+XRdTUq<3x3VdK6+VBaqr>D__ zrOLlyO6#E&bVY+}FgmjFcsWi-52mGP10SN#Z%6O@3VrS=yMzo{bu{M5>MX=z1VM(fBG4id^dIz90JPpg?LM(xAVLtpiNx~U8 ziuNomktsFuLTF61M}uwz8f-VA9k>(g;v?7&KSb9$ccx6KhRUNIXphd=Sae42LD&9% z?1{-oNOU0aBRaw>(lVvCO$J&%2%F;bH~@df8?a60OsO?}8C#J52CLxZSu&+gy0%z> z{4Fv6ICdw$86DWASu;8CWTFlU3p(TFI0~Jz`_ZXgg3i!7td5_eNAme-wQQlhA38G+ zM35gX%^Sj_fupjWf}atVY*t3)+!lmxQIM zf(BJ{v;#fR`v;&MpNw{ND*D`mv3xQ5+;X(TuV0cWnMfzGGZvh{QslGd3R7A>+5|m7 zdf~%(4`#vqxih7$v|*6bWZ}S8PCj8hT)C#6frpn_r&pN1pD9Mx|srl>o#@&;ir1E2gF#t!GHgkH^~N??q>7Jvu`>&>8s&3%UQ#lW;%hD;p}R zgx=T)E$@LoFbWNxBwFEoG$>z;zJadkW^}4QK@X&F(OCH&9l&pBJvqyv`@b}abgYjy z+y@=u&FIwKipIj?=oV~1{!etutCSBNs*lD_=a}z{uJtY01Sg}rW<9=$`!MO6+*cv= zcs|;JmFR=-V|)A|uES16xTvCbs z@AgTjz>d^I&-PZB8VMTxebEOeqf2r(x@{N4{PXCHy^qew7IY~-N2mT9wBDc5=YK~# zmZNeq93T}chy8mk8cajb8JG~u??9(+I(ElZ=o+5G5tzS9xIPIhkbeS);`?aB6{?2% zuRxcg5xS(eCP}!KOR*__jZS%yYMByUaS+zTm(iXd#7cMuTVbi{;m96>?wVO>2VOz% z{}M~%Z}EDb8eyqwq4y(M%hYoc^gJ~|>@FKLLXVDIB z!Wy_4tK#p`5_Q7&ini#0CZN}!jOAOgF6}2ylkl}$xo)_j2fD_0p=-1PtK;@~{Vdie zU#?zwuV07WHy<6@CUiG_hAz?f=*#JNynY5f&~n#j|J$Q7B4X!oN0NjO zY(cltm)HhRqicRu1F4j=ze|+}mhJccLBt2`l2CXwY8PB-~#fy}vf5 zW3mMax8D$Sf6hQFn2C1iakR&;qi?mh(csyIzRiA&<%y=@zJlm^aT(gt>(K3a1G)>w zqQSiYtGWN*Az=r8MSGT~SyxljomaW%ApI%vn5qf>b`8f1OZk=%j?<)V1~wRrs<^tmt5 z4jn;b=QKLA*)!<4`@bTInph1TK|l1tG2Vbv(Cs!A-L8+L(Z3mu>K*8aenDg8Ld<7t z5jtEP?QjLOqfOBI`e4#EA49^m9gpUxqdk5omM=o5ZZ!_Xjo1&1wG6+YOvI_=_h1j~ z(<;o|^Js@&M+fpQI)fjgF}AA}`@b}a{S++0^Js7_Y8_6vm(jP_kJuRhMT4tRn{d!f z#)jlK;#K$urepQCVF|mS4faCMnL+5TxC?FP*|y2BZ8lP1bbgLLa2}nBZ0*8pIXAjA z9ntIk(DPyh*2V|W=ifwQ=P)|*U(u1DLWA}!x)l7mTxyAnCP}2C9MdVUk2cUJmJdcN z8i#gZG8%LbqD!;}ZSXyGO1GlVe}Nw92hoNLbqFz20u90n(PSeMu6-x8X9LiNCZZ#p zf#q>!bVn@z0}aAL9mA58LPUt0(YYW`43&H@?G3b?7uD~oYKiy z9iK^E;3!2-sKi-xdzJ4RDrkh>KLDA8#0*R)zw7F7#{Z56*`?h=zA<|LAavi~kB#s- zyu$te9SL6&dAo<8tAh5tCbq(nXpdK;XZ#*?iGITtcoEYvqesXO#;eIMNAEv{RWNtY zFmnyi0S&{XYd)ET2hhXlws;o}l0BG?KjSRS(JLI)^RWT>4cHn_qT94y?@Wnnu`?PQ zE26JpRq`9LH~xrr?5aNT_y3-K!qi@eZo9kDSeTCXbar%UyuKa{u1#n|@1Y&|1f7{f zXsn!y`NTD$-U890=q@RF4g24hPh|?MuoF7+ZfM0r(cLi?-Cjxb!I@}OFFN~8BMFxc%+oK&B zfL1URo#Jt5(B6i2;7)9b_n{4JLucY3I)f+BSV~+UW}q}CUGusm>_A)e!CTN7xDVgL zXRrwl7#x;hF}5bZ9Sz3(Lo%hJz6RQXuIK>fqQU(E8UqKhE@mDY4yuMj+5e3wxSayO zP^?9#D(|px^wvTv?2n%DPoo_)X&N{{r1!U!zO$2RajHv1zrsHmOssBJ{I(hk+utv?$DZLK8FgN-d`nvrRU5dr0VOih*iSc11<L>+Oh6)jik| zU&A4I5#64HZwn{dZD@nDqEDmSZ7mwSJJFNwK+OMvb~w|daJ>*F9ceidd9fWDoqfnjXOdt4Z{rb3(;-151qL)=+fl6GX&{X zce4NONlyxl{&CTj(eE&w@}g71R5n6`wKEz__n=GlD%QipXa|ek6|9B^TQl?}H5@&H zr=Ta|6G;+I<$LHz_G3%TeRnw7u12@t6f`(rz=3!;mbYX8&B@=4KL09u{}0$5^W77^ zLk>pIixud7Kcd?=S$Jv)x~AyVOhC8YGBjFuU^<>fx7lUWLR2?IXJR}$^5@VF?ni^{ z(tE=;tcdQKvFMB~z|pt`*){zA|MX0W$0?YM?(h6F!po&DdJs)Ur+6{C<~z|CIfb4J zweJgOe}D9-o`ZJuWwhZP=yQLeOHtzfaJ?nga{pgX!Zn$TR`4pO=gwmWmUu9ni2dOE9 z)Fx(!>-Eu@7>7ptGIUD!q0i-<6V|u|I?{WvI<7=#Vh_5s7tpn@^f3G1V7r=xBYYH{ ziFN3<`2wBF-_fPX`$)K68@<09dVM^m<0CP@CSKo#MJfLS4f33G!%~$;cU_;k?0-iv zo`O`+q0zeoGw@u@H-0pncsE9qXb0w_Q~w6qk-ca=f8kOrJul4U`{;MT|ImRHek=^I z(PMGD^rpb*zZb1&EgCet(S3Rbo%#~p2wq0@DlRN zWBz3A)!fFe{NE@O-(--Z~wCFta#CsNf{*73^EtY?Sc`5%b zUjG;EaNb3!0VETpNLXRrXlt~h-sp`ZWBH_5{s4NEE{^#%=zSlc4Sj)j=nz`(U+7yf z+v1Qfjy_)v3%dVXl5i?}qZN%pE4l-%;6b#)#pr!6p);`=z5iGAzH?~Bxt<95vS`C~ z(fit=1G@&Z;f;8y`~PMVPW24*SE;$!3!g$?m#5GMIy@OF>WjWLN8tdRj;`$?G$?;V zgEs$?@Mk~u(FU8M18a>As3#`fmm^5n!>Q=@n~OE^UF?D z0QwtkxaQNLycb?U{th&zo<|3I0PVmpPqY6$X#S-j4_@|6n4(H(hpxob$k7M;Vh$XE zj%XY@^4riLo*J(&LZ^Bedfz&T^G#3Rw% z&xM$%i^jxYw8L}J1Lqa=pjn3o*PG~)Y{P-L2kmIxm0^h+qxlZV^T|Ya60T_b1@ zlj#Zch+K!Y@hfyja;yqVPyz2G-w2(7b?C{s1zp>dXwcPuK1}&=Y(oA~bZK^BQ}_QR zFN7}=?a>M+U@Gd-3YxACUzu(}x7RW>>OVrG`&i5ue=+2hjm#dntUSYl%KT z1ATq3!d~wG??^c1^Mbjpjo5?(GP(6hcVI^}K92D`=bS?GbZ z0Mqa#bf#WK>)nh=x5pL|uE|bxDZY&PgE9XTTER*5!9UT8&)^Wu^J>^7H>1%%1Kn5%k@U6uL4?sGqk)LT7PmB2_JkEyW#U#3(w&&thOQi>h%bE za(#<7m~&&OsA4oD+84b(5$*Wgn12yHH@2be{T!|*6BkK%5?%IYc%TtFvYzOaPC$cc z78*=zVt#MT|BKE{*-c?;8=@oZf_7wN%uh!<@Knsdg{9s9Uy-n(GiY??dn^1Yb~SWY zOh?yj7TVCV=o@Iqcc2|UhOTk0w?jka&?#<#o+CG+16YC{Kp$W_?I$jhaLr1;6M9|? zJt#V2Rve3N(+Ox4-+?#c3~YlZu_xAlH&dc7K8U`qf5gF9_q}kg%*Q_D4`VuB^*;OG zv%en+dzi#V_!>I0H0!d=TEEw_mjr@&h@Xg0|xEcMTa>R)Q9k_B^xPL0TG;7fq*@(u_ zE;Oc&q31!CPckJ&Vli~a??GeX*(8Z7BtF3wcp9DJ2HQi!*P=5p8&d}oW|02{-KJG{ zgpu|`m*5HX06T~oSbJw!`|;?>`X0Iq&Z0AzEb?i1ZMH^(Yb-kQ$>@j{#{A1@&p(a% zKhbC}xGVgMRTbUWH=x@!i8tf3Xe<@p9qOxxZqJU$%p?=TNVo)(qw~=YtVMhJIeMo5 zj&7%-pM~qqql3_sEg7AQKDQig_|H9ON|C4D?h=KaiLFhJl z5bg06G>Cq~`k3j<5IhahXdi&iz~gA_Jdf$P9i8gq=s>c46*^QFJ#U&~(jIjsVGjpJ zC!iyH0R3A21lqv!XjE@PN45u@+LP#azoL6XgB8(y2HMco==0ZOSsagcbpBrUzZJYe zfgSh`ZSXYOv9zy41qIO=D2Gmj5eh?k$DRf_F`6fJH6|MhDbOw5&Gdmm| z$mAr6bP`X*3vZz}?m|2A13Dvrp=+Oce`x4RbmSe;4)sNsW;{BzGovqII{95_!@r{g z%lvKVK(ZhSw@ZDrp`Pf-2BRaJjGhCt(V19|HvAs?+-|IkC(w?UJrEkIhu4vBhv~Q! zU7F2k2M!l?z?ckCEC%U=n_mu8+s6( zk!NH1+vvISDH=N`FrWMXJP9kz^?j(ID&{2L7#&#~Ovl@?7cRzTcoJ*j6+eWdbr3#5 z{&8%Mbq|H-CSWQk(GI?XcI-V&{rX8kn`s011#)zFb=pdG*F*JOBYPNSeV1s|a! zEO9IZWlQv}_yD>c=b>x461{IT4#Hp1ec$1Dcn6F_U)%GrHNK0^SeD;1C01a4?2h}B zB#g=$CqfUqpufcq!P+Lr>by z==Y6@u{`+{iM|xPjzh4(AEBoc(GzL~y7nKVQ}{#l3_8WR{tO*0gRRK-#0K~{j>1pT z?S18`Fw;piRyHFunoN8{!l^ugPGRBGVQm_t9T&!N%32@T$p=+svEE5uM= zbVlc4I=+VaaSs~YN6;Ai3yZn`FFh0f7_A1{z)ZA(XV9tIgEnvx?MThP!;ExB^TW{w zr$v{=>zmOf*pEhk_Oro;=**48Qna7Ai-Zk5iA+gi3;IRk8+038#4E7cKk=-Ojz=qc z2#u9zurq#+ov`$|(DBh&hy0W10C%C!{fJ5T_c;kY0^f;qBB7W)Pa!?dy-GbaX1kTrXMjE{)QeX|DYYu zc}eK_<@k8oz={p1f~9UPG-+_wmgjqPZ8B5ztE>Csr1glpJ3+8LdZUg(q#Mq}hI z^b5*DbhoTT*K#X*(*1y*lzH-{rQZ9^urc|$=-Tf@m-+~H#B=%5lBtol$)A?UM!~q~ zZD#&^f|2s$+Y)_#LuSM5rKRV^-&~1}eB8;RVdf#w#o6bQy zupznyeQpmLyx(F?{0Z;GBA15_K8hXO|4)%f$D?QrnVe>wChu8W=zozZv5UFqz98{QCad>`G0pP^Cv7utb> zWkLm2(0t37zYbl~@tB$!bUQ9XNB$bRbnjv#JdN&>8f8OFbSRq)Yc-Gp9~^;waT2;_ zpQCG=RxTV+`O#o3iZ)OdUE?dzU~GiGZrh(EIO7 z$^Ltggljq~A-Wy&Rt*i;LOa+Dy{|QTvUNrqx(++yL^SB$#Vc?> z+TJDAcwM{y3zKMyBhVA@S!{*d&>Qnq55ZFmJ%Y>N0K5Z@g|D$89>=a&zD8PNB2GY; z;wU>XQMH&3?0#1=u~b)@B1Dd`5CN+|HkW;Ylby% zj?Uy*bXO#!bI^ll33?v9T9f_njoT<_jr-AjdaZE8*1>7y`=R9r(F%V@gX%wYsLWA-ttcp8ov;XbU-xOHUC3V8dQ~@2~_2>+YK=<(kbV{eA zGw~!=$F-P--=Pg3LWArWxkbB{su>=*%pM*I$VFx6%7PL3hPZvHS!&!1L$~1lzZMCX zpdnVqZfKO=jyAXwt@vHEgImyGJ%l!N0j)T5<1moMXe_ivW952GZEtibXQR(QgUJdc zHj%J_AJE`9ioSmTL4&MFleE;Ik2hREU%w@qhp6p@#=sbKrlv&aV{`H^qbKJHG$;#Y zgn^`^GgupIVFzr3cc2}3FC!Taf&&zIlI3U-wp~4RO*^17(-p7A-e?6Y(Cv8)oytVZ zwA9}ZmcS-thhPtU8i(MYXa{?@3g^om=*+KAl5mRlqic39UbwV%TI$bkuR>os4`U@< zgB5XKG|?tZbtQCao1!z+53ArrbQe7p{T!W%Y;D8RCL5CQflg>N4?}x;6Z)Q>hwhHY z(fzy(z5fOD{twWg+KEQ>_m~xbL1X7+yq>vT=x7miNvb2knM|~f1^uEEuq`*tM5p$1 zERDaRGnA)&*#DK#{PpOX-+>0<{pgY{LOb*f+QH{z{w*{(Kf?U(|NSKF@$q=!Pqc?Q zI)v?$j#khR-5nj#3i_c-atpd7i_qA34~>m%9fKv%j@63!mS{cKU@rIn4J4e}iD<=B z(BOL%ecL^bPWf}_Zh1H651})2KIThw3eVR=w`oV5g-Nu&+?~Uc6hJ#r0aO3}Ujq^b zVdv;*bj=?^*LXgVcm zPk|@fJoLnR1$|%(rr~k4LnpB+o{Qxbx~3&E$XCYdcq2~21?cw6dv%ER!MK3@qv$uQ zD&4}8kL||(H%cc^V6fefPWdu)s@GsT?m!GpL1KVR?9D>WyB}!)N6{0p5T48rAk0a0-n29a$Wpw1fqZOaW8}PE;;g8#C) zeZxKtbbj{QHh3L)QvuLrsm!_g7l5zFVG9bOvC-$Wb!6z$M=F@G|e7#L2#0_ZL&hn_1}4UFIaTT|f3 z`k-q)5HoNVTJg?!{U92YKVf6cIVc2G8+463qXW7Pow)^=jvHe6K6GaPLC>24*C)eB zYFr<_gtkQ+9EJAqPRxNb(CD3mj(k2kV=trky@svvZA=B<;4qUJ=s9q8%=br^W;7ZL zwMekdUKDPz!*pZmOh|WaG zVIfAUBC(cCTt&jD?|_bUM7WR`jjr__Xah^o2HuF}pQFL_7y4Z8;o+N30c=LT4Z0N5 zu`_N)gEQZV5R9cUxBI^~31^@gx|ZG12l`=oT!o8qC%R@gj0_b_L_2UF8XHUSYJ3(w zH%_D5uJ{e%CDtO^8r`n#u!;Ns=2-9&rj!2)?djj>+GW2n%s_rLdaI%hw?rGh4&Aob zqfe1*#^ZaJZ55V^53B4wQdUMz$Emw`#AdCPOOCm$A#c+HIDsXm4eX}IOPk_HGd90 zP`0B7$zSM$MQ;v4*&c_HAC1o3ZnWcHqX*a#%)mmogpv0`XX-{Qi4)N!c{CXdUPh;6 z2RfB!(O~=!ow}Uk!-f|M)qSC{1pxQD?_3*3e_m}_FFw=jBt8T4gTADz+0$U&D( z3?N|)OpOQT@TGte6+qbJ!k^mn(Jn2t-Z3ciDG zqoe5kzoAR?HyY)+sn_$QAR0UVJ%dr-6rG7dXa^@JNwg<%5Bk8icwrwJY(JpUTj-uJ zvSwI|{6utQE6@(CL!W;KUBXY}^?fma6dO~13T?RN)X!SX%YkyDtC7qJSKo)*5~bU>COnHWpLDY_eda1q+z zi|7d7L#J#P+R#yS&HuzywBH+Ir!%GofNr}nSQj5eXXb6R13S@r|Hjn6|C?=kXdo}z z<4WjA>!AC(V{{lgGk2p6&qQNj8M+-;q61iuHuy0P!mqJAHkuK>S3HE%$nQ08RQJ6v zO!Z21ZC;CRLM!?JZTJi1$V_~XD=^Fbp(8KgmE_+?x8Hdjj71*^zoOla?Z_X(23YmM z5L1IOX;jW4;YeOa*Zehff4_@v!vpBrracs9swmo#T4=|5p;12=4d#(($6rNf<~=Nn zpQ20m2Uf>=Gui*X?FP>bBfkOd$j#{XyA?eb?v6f&R`>#@;|6re_QmoaWByNcpI<-+ zkat#yjk?jMXbiNQ#r862`cUA(aXs3h1!xDBpd)_{?Z_sy;?K|^Jru8>L66#8vqO+o zMQ64bI+M4dGy532RL`K#f0HEP!E*u~dBr*5#%j@q=oGg?gRWc5k3>5-5v}O1=v=hJ zE6@(ViA`}g8WVXR4*8qWm`J`%q9chjconvIBpf_bup;@Fu`+&%_3$DZM0Mwe`$u6T z@+;7h9Yl9eu}8xfnp$YA^v9x^5{Y}z?YwYaYKD@DH6&c4FG4}$ELI|4{IO6`OYA_t zFWSLp(JB274Y~_h2Q$wP|G7>BG`Jo@2k-_OGY8QTAIH*IZ$TRW*D&nAUL*!kuo|7p zoR5biwj|ai-xZzGY3P(b9?M^f`5(~d{>D@cEKEy0OTH>P@?F>oPod{P^F<*x=Hj*P z|JO*kmbn*)U@VM2SQ=fsR_F;i6&>-D=!loa{Fi7n??*fGD|!%JM1#4&6Ct*Wp}}4f z4dP0e`tSc5kubFjgR6<4N|v!PJuiD}E^Y7S3S@Ho6)J=gO2ntI>J-vOkMI!xLyif z`x8f3?!*_MYXErT|6HQIrZn2z_NXZo|~ zRBlCM;Ad=(f1j!8Dc1Dk&=fwrA zk7ZYcZF()bRI|`s@&sD%Qp}Dop~1W!t@j8ry2Z-O0ZKQWMmYy3Rgk^SfhPe(6% zK3s2xbtu0X`{HsegBQ^yNPi*xhLeGwl+)4QE8azq=zp;q)?XcV(O^tgq+lkAhPW2J z;a6;hMP3Xs&=*ILe*k;pNpwb9y%e@z4|FE(#Hu(Oo#GAXQfx+J>tl2&4x=-1>?QWU z1=(K?YnTrmVJoyFx1kj;Lt|qd`jXj-?vhNegtI*Z4Zg0JhS#CnxId1=8?hbkLkCvo z)exk^UrnYZCR4D20xK-FCM_`s2Vh-1jvhqmYr~1v9sP1S361i{(3jDk=%46w`Ckj) zgj%CZIU7Ck*5VNS8a*!>C)b6k>5E45t!VVG#ti%vJs0w=5C3gvA9P=@MA!Bgtd135 z4{O>Jy?z&3&%4n>=*(t)Bg9N2>_R@-mqdFKtFQt7fmT>~L#VJfR`N!4Br9Y24zz+Z zn2xPCh5-ymm+lGl{;lYgA4iw6)|=s5a7!cxl8J{&c&4vL&*(4FGriEJFl9}!ANe6@ z6u*N;``_r26@4pg$3AF7_hEnh1l_)s-VRIF4BcJ*(DP&>rvClEStPPiuoR8jRp>#n zHs&{>(f$#7gziD3`d2jQe#b0$9<3+wPB7LAo2=<7F$&eTij^KYR`^#R)8VKkQVZ4Nfv z%>MVrK@?=i5$M5i6FOB7p;P`?EPnx=$}Q+N+Z)aGK{y|pM|+?R4@YBU23pUDXotT+ zVA$&e`ZVfgj9K3>6vThJSyLEmCK(S{G9OK~ce=lLi!To$dcK01)jXpHnigS&6c zPmk9hLI?P0GA5ox51QxDqjE3W@So_Bn|({zPW|vE^7o)Ia}qrV&Y=x9+!{L46b<5D z=u8YigYm9-{UP-Jt61_htsbj-CaE%6yXf==m>PeKshjz;m5=v(hibSb{YLU;xZ z(o437T~H2vzH!X=KxbeSIUnM2Q((mps`SHNBAmM4_(XF zXail*=lY@d-5jq^McbJf^YbwE-~TKj;S@a^Z+I!*upU!qc+4L{*YY^J&vWk#yQMt( z`p&=#I2qklPeoUtZ_gLe?fGuZe~PI;|NDW&d@lTr2I1^aLj~`kYyJ`D!oBD=I*d;3 zKj;Ya?+Vw;pyf5tj8xQZ?hXIu%d0~Onifm@G#or^JuhRvOBDK zVRVEw(I{?!<**6*TD?BzlhNg9Y-~mA`yOrQT+Tb=cHV&cf9FO_G&;k6HjEQWYha2;t9Vv3Ne2L zT494&o`KFxhj_hLyxt$JX9U{N7_^=Vv3yE2IW6As09w(*F~1n?z*2N+o<|#g6TR<4 zw1Hjd5`Kv`a0HE&6X<>C&;u>&7oj8RXn7?hHu(4dNH~>k&^7N7Zy1GEbSv8M)OdYn zEMJa3_X>8xx6oaXV^8QvMzjN_>cx&+ABA>&Jr?)-|0WV1EMK8hbvk+;9a-9!p}Zg( z&6mY|b@c677u}{q(YNS*=-2P}(A{$$9YCJ1LVZQi_9|iO-~Vkx!W;XbL32ZND%#*; zbZTEhPrBF9k$-|7G<(tDJB~*8IdsW#?hVfsM`yBJ%-2NQYlKNF?nuIhdZIHh0?XrA z^r(Flo8vlkq^GeS7X3PWIqi&hk)MZ7ZGnBE!J=pf%c18&BXk#Cjh+WL?qmP^@<~!q z1@FbwNYNg?j+OD_SpElE;W@O!`MwD=Q5LPRCVKF+K^q*7Zr3Sjy$fUcQcNem;T!h9 zH|(Rpsr?J>NY4G?H<`NVejbPh(OuE`Xt2G6j_3$FGyh>ami;!wMl1C9g$d|DA3F5kShsMfA9EV%b zU~F(O1YrrLY0Itp=h!pMx&Z6IdJHK%@K@td3`+6%K_d?t$*2 zKIl}BLu2Arbma5V8GjlZy8mAwVQ?HmdwdLCt4xQ(nrB7xCD8}VpcPj~pR0o|L1VOm zR+xreqTSG7?1^1*6sDF0Q~&=zwvcdYwnvYmBgpz=i1t!gk$hboi+$0h`4|ntGgt|) zI1;|R_CXJr8E8;0$BDQFZMgAIVRyC1q&M^>;YoKFI)d5gNFPTJj%C;iUq*xRPc(Y} z#$K59=P-c2==DkH3{8poY3R9fKU)7BwEl%Z$M65kDR3%ZK&SGxnBNrr5UqG;%zutH zupd3?en7YBpYeKuqoISv(E(JB){EsCXh*spO@@ZArN9GcFk0b+c*AtGf;s3CEk+xD z16$(T=u{_u34hm93LBBV8{I{3pdD)s=nPLoJN6i|jg$OS3h}LmPUR=)L2?v5ka8an zuhrV<5j+~5%6rj~&PKP_5_DBxP!yVWeYyTGhB<1du?EhUPx^N-=L>S3U z*pB=s*a-`s3^6e(evXYbo=f{M|wJ%{r4~f#nB_WI##6pL{}14 zcq>-Gg=huupfj=;o$9}^IcEMNELAJ?zOLxhj>H;xJKB+z=(c?uUHeRbhVmk4d(|=Z z-~U}r!lQH?deA(HRqz9>jK5)PEOIJLX+N}q;b;f%M5lfc8ud@39eES2_b9qVg-?f> zs*c87z0>Uf)QLoa+pIlWQ7;^TebKXi0~&l=F&+0~HT)Nyfy#e{j<-P1fg8}7ydS;q zC3MR7VIw?`zVzyyVgI}KH=haLXx>4m_!Rm;-M_=y_eS^s2z1TwMR&^*bS74zOYja> z!rkcoXQPGBh9#_n9@!Z&KRHRlDZ39x;Zn51-2a3I%Azw+1D%;BXwh*sDbeXeD+Bf9TAQ}tP?Qx|Nm!3EO-(PrkByR{1}aeeKCJD z=Knz}%<*67a2~YbBIxs_&~4Z#=C6tQThN(%1YP1M{$u}NLE`y%;cIja52G{kFWO_r zX>8;~XQDJZ4yv&u>g5GpDx62NXCZ-(fob5pOJ* zDRZhLCD83v295eF(HUrij;JGAVegn9gx)_2U8-ql$7f(od=hPMN0NjU9K`PU3p$03 z(?SKk(T2vN(LNqC@Da3v&tmyu^c=~QIn31M*qVHun4c7#jn2?=wB6)uBz*84G+6eb zQ+5KK@-t`$a%TzU1<;_pEan@aBX5Qcus!U~%ba>EO+-ifI67tPu{`cTr}PiB!JOGMr-HK(Rv=#%?O1!Pfy2=b&5QX@(2kwO zvUqt8mzMq4oP;B9gKe=dx^I`FBVUhB)tl%+@=?tHj7IUF(L~O$ba~MZR*v~PSe1Nd z^hlnB#?U;h;r@S`gd^OEcHmE}h*w?`Msht`!5p;b8`10EV(P@pl{xj_c3h4|_ubL^ zaSHiI&=WFG?ht$}(d|7RlT}FEOTr$#ga*e(bnUmHBm52x%HPm6%$_H#Z3A?v?nS41 zDLP|cqrrIqeeNXM;hcFhr~ZqmTIh^Fk~ees_kUJU;K<&@rg#8d(-QeICmz8T===I} zbZPSD4@*)OUGo~~{T;C(-i#hxtI&bHfyUAY=zzY#p?EYu``@7ITp)Amy*&)QVHVo+ z#aJ5Gp)s%ruf^~1CTvtNbLvk_SE3#J8vR0Z9JAp+m=zO+!t>eCAS{3mw0@F=Yd-(4lqtM{I1r55XXosFgN4^RT=6BGS&r$UL?8Smb(HW_PZsXe6 z$^GAx#MKl$jaT7GbV;gS78)Dwxn{Ux7BT8m;ej zY=;}sfo8fqbLyASt$bBT{l!C1?pjDqW4M@~IUaB8e5TKvI=@izA=}_HmAl@g{-IoL zlZk_vbY1$hoNGhL`?z)uOJAbjFWI#%j_7sr!GQ&tpeM#1142QBZ}eyayB4lRm}|-|!M?EXx!s zelk8;1HYvM7qC0mM$ow#~MLU%(cVZGn1bg**q2b zG^N4bu}3?&X)8C~#0?uLD?++HmDh3fu_B*o_t`1Cjm%2>RY+{&$Ip%2$R95yTJrFH+`N;UThnM>M%Xo0!oT>LsK#|(=!ug2 zwBeeE=a2j>=I3pmJIwX}efT4Z#1QJ}%YB8ZZ&<9SA~#&-_}lS-pV{~hKlgLvVDgX0 zPCZJ#E9p^Ody(?C{8Z(q9p#7PvqMPx@!Qukl+EC$G0W7QhW!kQqc&YWcJ2UmCSRd9 z{Q8+_5eo-$!=6~_V5gM_ujBeY((U3sKk#5JD!!SY?4teNo+y-jm0MR*Z3Q0p^FZvzLm`{` z-#(PJ;>iwiyk~gkU4HyDqUqlm#%Qk32t|pX$zR6xSE;v4EL+2~$El}soU1dzWTF=j zmf^$P-$-RQ+cK`Wko3K#ZOJjzoYC@%J`>W6N{+4 zNo=Sc_4(OOz6Z}%j`>g;wn!o~4?W4xhjiowmF=dY_WYD5{SpuOch{CaYWBk)}NoUv9VE9?57@`FG*Pzo`0S6Jjw_1^9K3z z|7V6q#Prv+pSYTe@8+gzG&Y7x*N|S!4dW^IvxT4HRPY>S?Md&Zfuf`7G{3M?7lf#+hem}4BQ=Y-3{vX4Wemk~Nm$E;ow=$ll zJUN?8V=@Jpj>S|^9{pTH`hTDL+%ttn^3dR%*b%SYL8aGHwt}+tT<=IdMY-3{sMrzH zA5wN8mT#o|RqpM}v-A0bE3YT6pkP+);Rq_sMg9<#UQ2~pVu!r%Ps;jH!Gu_O>aV>i z-^??9I?zZn>M6tXh47)+=q}Qux#!B5uSxzLe)xkUdP?Dc@q(39;o<%?#6M)5$VWp3 z(a&yXZ08C??VAH((k*VTDIMR_(+cp)HSS2Pxs8YO}# zSU^w_1iRR~qGB{^jG}@C+hU0|7F>Iey+us`@wb9vO+>Nx7JDqQi}inIcQ$8F=A3cn zy>sWzydPkIC74gXakG==AQdddO~m$4^ab!MYHCB_`mn zajVr~sW&XT8*DjX1M+pccx7q}=o`)8f2hgVZB5W_sTbWRfB*ABHNPg;D#zzT2$iPc zI6fBm9GptTFz^lV7O|KePoWOEUdWIJN6cG+A#e`jFImKuK6m0t&QV%_OZ0$mOw_?E z0QR!TTgY3%w$tE&XMkN27cm;-OXKOB*TTC+9zndpGGg_(RW!XxVD|9EdXcwA$7*fJ zSL?FbmiKEu_ksM1#)q&$w4algZn`v6{2y zd(iKo*PTutjCK|^J905&2M(i1g1HV~M;p>06vmG;*lL^fIzPbO2X76vUSM(Xylr^G zuLWL+h0?W$Zzh^8fIq8(Rl-YC?~BffJmy!s`M{%?q{M6FZxHTGY|XR2qMLFw+d~9` z5O4%<25*3A+*)_zS=RVYnWIrEjQnh>ZNSdp)lm|wM5h?9hZ(}?SxcU(*tg_e=*a?K zPV^<#G?G0HM;Si^4CUZL_!%V){s~m0jsU%JdGuq!g;I1&LD6bP6mSO zsL6NJDuRi1gg+Kuh%PPP7~2KsoDMXT_``|%OmN#oz-R7CblZ!pj_zvtd8ne)A47LKk)$*fTM=k@fl-hXa^Nnpw zc??ZCG(|!PNBlhG^|)AL7Q0350r@e-Uclowz5i<+$x6Uk&jK@aXddeMz{Db%6HLC6 z`a^vp^7{_WHk^i?WV0z+ttR9#;BE?(r*_Ny*!b_04k&==-)KxAo+N&U%Qv~j7Qvl| zMhRj~>J{lBQw=c@XED?1muvd9~lrmGc?BaXIQ?s&zrWvhAdW`l#$hWFX|z2xa0YWB~Q=80tp8 zgIcuSydrofdio&758fCmQ|n6H3s)?L*oB@=@J0{|;9|A#Yw&i%?;@Z0%#ii5v-lYn z_<`ao+=G0f4wL#+1X93<&=bJTPJ&&=pTKEK{DoQeU|2i+i3R32-t#UGrxE;G zHX8D=>_bg#6}4DAgn9${sj`Y%D5-I)g=g5pLS@-r?3E6#&w_8@ogyY85=p#dwypT>aiiCej~ zSQ6sf=n*>$mZ-R#gW*<1tBo!{nOSX=EA?b>Pf5<{&6~>-G>IJ}dU2z6rob&O#*S3P zQixxJ%D>ktRfGZ<_Wd`Ga#U}7=&JkD#( zC!PVl58#{v6I;QeFTrl;oSEjIJ*3cG3CReTCjW>hFd&zP;Vj{UFUG&nxE}sg23F!} zwI}x`^2*Y`c3z)`0QL;4rnP9DA$WOoMvK0@|IX0uy@?-ao~zq6*M@BHEr=w8msPBm z4w=Hj<#DSO*WSJi78{`aH4OU$-wWnNw3=}pLU(BLR>8VdvJrd>X%K@ODIP<9TyN40 z@jP&rBVGsoEY3&p8l3kKFA)F68*op|lVyvP#7#c~)H%QB%n z(&J!1B2t4`hI1kf^>DF+8vPki3y#=pc*FGea_+-<8hQ>k*q`)`V1cUON6B;ZTIL&8 zK;8#%k_~+*zUSOQR4@;)aNXVk<g7pOI(K=WAUKyeb#^ zN{3gcE*8QJ6Sdy_1drjeiod3D1I2nuuB3}d!#@mNsk}n)_LKX-OHl4NoZaBB6;Wxx zp3zeo7aL0b5OEsyDdhE7BoUpp@{Ou397+)11Bhj6ljO-XWa}cg;5F2N1ISB(r)cdI zH{J$UY(FuU`puY=>BH-l_*hI6~4VHRG&q}-(xL8Nx1ma}k&w9)AQlPguAq}or3iVawN$C1H zSFwQRf)142j{)BLXuZIH)aLr8%oLaC15`4Qv9;%5f51GzxFSf0sM=&=GTh5xPvPX{ z8Q7ub&b5bwS6_{=VexN2i^+d6h>3Hs88+z>kYKIVoCC&)Pmr(#y_%5A|i=0 zi2N~e5`qh<9pk*37=+$P`odLHhE4%L4StjS0`V};$6{DoKIc^07vl#_ts1V$B;EOniGw3?!Rd5R6Ch$+D zoHSSC8PHuQwO~qTSO>|)e9Wuy)&duE)F`<(oG!Y_5Y&6HMH=V)%Bcaz4SXwGdpUJx!@$M#DOr)dh)!@B;Ex2t^RdNBtF;*nGXlbj}Mo_oTi+ zg&!g+wu!#W^qj({QGY`HEm$?nKtoY@GvQ^J=klMEoe(NQT#5Ka9k5-={wgXz_fnXr z@P+zrhS#Qfoj#$(^bVl@keEVjrW)PQtw$aME_RnVmA=;Wxq}yAhWx%Y!)FSUAe;kC zFjFmmctPkvZ6ZQZ=56`*7^RV%#d^TsNdI;697OwqXGj72pnS=9!kI|j3BEUaYlvb4 z(KjaRVFRR*+B6X?7qM(GvG))gar=ARd@BNC&EQ@lZp4RzRf2OFx1-mKb3X>|Cpw|i z6;2g>6H5Cbu!nHp%NHf>wE%9mrovG3V8}BByCW6~uK?%&5w}T%H%*t{Oe_k=YG>gz z#|tv#Gk68PNGQ=k^=FVjm)F(u>3g@e*^ljBGe9huJQNYJ$;1obZ&Y9`!bi1MPzN-j z9?mjL815@NivL2-HeL1(wVSHnPkw%&A`8@^=&azM3`?dl3Gw$}ah&^d-i}C1Vg%Tq zhyi71#&+Ij%Tn~Gq97|+#DdkhjfERdv>P9{HpdQYmVsYRm1XfYYkLYv@Y$!mz zH@tPkwbTj{k7>VB3?o?T6FpM^jL#X84iF7#5#UXPZSDSl&f^dt#$a3Xr+=c}tS|Ku z4Bd_1JhZL01*{6#7X^-zKa*dGI2p0K9K`A(bOK@p8ds8E)j`$3E`SX~+=W4#so7e2 zo}QSe4IZou3EmcWM8lVQZ*->O3((qU$J>8C#1sx`ded;k>avg@5K_r+5&MAu zL0pP=qRXE1eZ+S!!RAe@*_%RCK?K@hPi(E$hI{gVJTH4~b$QaA1B0T}~ET zp!pD#(%|hRF4J{|(M0P#$S=}-nY!3tsHQ zMKk*L4hrP_H~AdZSwfFD{UhOuJ=R#nT-OiiEh_3toQ-$J zcd%4teG-2mvI{I6@2A4&$VW5i7h);=7#yn&pf7+ysSMtV$KmDZ`yPHH;&J5`mcMe| zQp^MSFMOtM*II|XqoFZ%u`$GDEcF}M&*UlOVoSBB1wA7k>+mnRAI@bxC6cR z;I)XxBpPCAd~DOS1kwS-%RmqtO1%LBXW=|$SO)cX-0&H3CipC{{%}pyqsYH#-)CZ3 zIDZhU5@*xXo%&q8T#lomp802j-6BKmrLg)uLo~Bgt!bGvY z)M}HLAbw@?%yOyUpK7{Rzt!g;%r#(*6u$z;0kwFp5k=>C&XKxa6!~dWVwSgEf77z8 zlE!k{GXd`R)Wl+RRmq3pv%r_(A@Z2e6FbWJ2)u!+n?tODhS(%D2dma$@KNB$bxvc> zJ$NKOcoZMZ=7!+rGC!1EI;fuGm9oc(Fusf);2>^HDf9U|um=#&LJOy6N$ zER1s^F1DL`6?=C!<5rz$>;;e)@(p4d4VCZ}rkq1A#eYgJrhjq3%se|k8}-t^u!(!9pHF!%@?|s;E%O_1-+sU{C_byG+zaL zpm)xz_sm65X7r_bEIt){hA3dY$lKE==FEVW)bE3Jr{_MxVjs~P3^oXnXzDlcd8VAh z{7Y=gSVHv;)iRuWvq1-4?GD&*^53aPQu9WwFUr+Z${#6QFFn%PZt)w>5dVN09)ZE3 z)dKti0s{i_HH(c;@NYXLc3}LEu?cZQLOs&F>|N}ff~tlD2h|KtuWe_a+b})6vAz45 F{{yJ7?i2t3 delta 51111 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\n" "POT-Creation-Date: 2013-11-14 14:10+0100\n" -"PO-Revision-Date: 2014-07-08 11:58+0100\n" -"Last-Translator: Pieter \n" +"PO-Revision-Date: 2014-09-05 17:30+0100\n" +"Last-Translator: \n" "Language-Team: Dutch \n" "Language: nl_NL\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 1.5.4\n" "X-Launchpad-Export-Date: 2014-02-24 14:56+0000\n" -"X-POOTLE-MTIME: 1401694323.000000\n" +"X-POOTLE-MTIME: 1406297687.000000\n" #: lib/classes/appbox.php:300 lib/classes/appbox.php:385 msgid "Flushing cache" @@ -11588,8 +11588,18 @@ msgstr "Onmogelijk om een template te maken, de naam is al in gebruik." msgid "Unable to create the user." msgstr "Onmogelijk om een gebruiker aan te maken." +#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:37 msgid "Flatten layers" -msgstr "Plat lagen" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:278 +msgid "Set force authentication option to see push content as mandatory" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:279 +msgid "" +"Disallow the possibility for the end user to disable push authentication" +msgstr "" #~ msgid "Enable H264 stream mode" #~ msgstr "Maak H264 stream mode actief" From 8189010d9be7db49b074a44afdffa184c184d4a3 Mon Sep 17 00:00:00 2001 From: Nicolas Le Goff Date: Fri, 5 Sep 2014 18:08:36 +0200 Subject: [PATCH 10/16] Move crossdomain generator command to bin/setup --- bin/console | 2 -- bin/setup | 2 ++ .../Phrasea/Command/Setup/CrossDomainGenerator.php | 12 ++++++++---- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/bin/console b/bin/console index ecf7aaa816..449afd50d7 100755 --- a/bin/console +++ b/bin/console @@ -17,7 +17,6 @@ namespace KonsoleKommander; * @link www.phraseanet.com */ use Alchemy\Phrasea\Command\Plugin\ListPlugin; -use Alchemy\Phrasea\Command\Setup\CrossDomainGenerator; use Alchemy\Phrasea\Command\Setup\H264ConfigurationDumper; use Alchemy\Phrasea\Command\Setup\H264MappingGenerator; use Alchemy\Phrasea\Core\Version; @@ -105,7 +104,6 @@ $cli->command(new H264ConfigurationDumper()); $cli->command(new H264MappingGenerator()); $cli->command(new XSendFileConfigurationDumper()); $cli->command(new XSendFileMappingGenerator()); -$cli->command(new CrossDomainGenerator()); $cli->loadPlugins(); diff --git a/bin/setup b/bin/setup index 868681ea50..b513414fbf 100755 --- a/bin/setup +++ b/bin/setup @@ -19,6 +19,7 @@ namespace KonsoleKommander; use Alchemy\Phrasea\Core\Version; use Alchemy\Phrasea\Command\UpgradeDBDatas; use Alchemy\Phrasea\Command\Setup\Install; +use Alchemy\Phrasea\Command\Setup\CrossDomainGenerator; use Alchemy\Phrasea\Command\Setup\PluginsReset; use Alchemy\Phrasea\Command\Plugin\ListPlugin; use Alchemy\Phrasea\Command\Plugin\AddPlugin; @@ -69,5 +70,6 @@ $app->command(new RemovePlugin()); $app->command(new PluginsReset()); $app->command(new CheckEnvironment('check:system')); $app->command(new Install('system:install')); +$app->command(new CrossDomainGenerator()); exit(is_int($app->run()) ? : 1); diff --git a/lib/Alchemy/Phrasea/Command/Setup/CrossDomainGenerator.php b/lib/Alchemy/Phrasea/Command/Setup/CrossDomainGenerator.php index 6e54a4b1f2..636824f1a9 100644 --- a/lib/Alchemy/Phrasea/Command/Setup/CrossDomainGenerator.php +++ b/lib/Alchemy/Phrasea/Command/Setup/CrossDomainGenerator.php @@ -15,6 +15,7 @@ use Alchemy\Phrasea\Command\Command; use Alchemy\Phrasea\Utilities\CrossDomainDumper; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; +use Symfony\Component\Yaml\Yaml; class CrossDomainGenerator extends Command { @@ -30,13 +31,16 @@ class CrossDomainGenerator extends Command */ protected function doExecute(InputInterface $input, OutputInterface $output) { - $configuration = $this->container['phraseanet.configuration']['crossdomain']; + if ($this->container['phraseanet.configuration-tester']->isInstalled()) { + $configuration = $this->container['phraseanet.configuration']['crossdomain']; + } else { + $default = Yaml::parse($this->container['root.path'].'/lib/conf.d/configuration.yml'); + $configuration = $default['crossdomain']; + } $dumper = new CrossDomainDumper(); - $xml = $dumper->dump($configuration); - - $output->writeln($xml); + $output->writeln("Generating crossdomain.xml"); $this->container['filesystem']->dumpFile($this->container['root.path'].'/www/crossdomain.xml', $xml); From 9cef4528dbd336186c60db1abae8c3487f624022 Mon Sep 17 00:00:00 2001 From: Jean-Yves Gaulier Date: Wed, 3 Sep 2014 11:53:17 +0200 Subject: [PATCH 11/16] PHRAS-270 #time 6h nb: exiftool MUST be updated - issue opened --- lib/classes/task/period/writemeta.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/lib/classes/task/period/writemeta.php b/lib/classes/task/period/writemeta.php index 9306310a86..5a02f30a3a 100644 --- a/lib/classes/task/period/writemeta.php +++ b/lib/classes/task/period/writemeta.php @@ -12,7 +12,9 @@ use Alchemy\Phrasea\Core\Configuration\Configuration; use PHPExiftool\Driver\Metadata; use PHPExiftool\Driver\Value; use PHPExiftool\Driver\Tag; +use PHPExiftool\Driver\TagFactory; use PHPExiftool\Writer; +use PHPExiftool\Exception\TagUnknown; class task_period_writemeta extends task_databoxAbstract { @@ -290,6 +292,20 @@ class task_period_writemeta extends task_databoxAbstract foreach ($record->get_caption()->get_fields() as $field) { $meta = $field->get_databox_field(); + $tagName = $meta->get_tag()->getTagname(); + + // skip fields with no src + if($tagName == '') { + continue; + } + + // check exiftool known tags to skip Phraseanet:tf-* + try { + TagFactory::getFromRDFTagname($tagName); + } catch (TagUnknown $e) { + continue; + } + /* @var $meta \databox_field */ $datas = $field->get_values(); From b05fb498daf12840bd90b4fcaa34df6a6e57bffc Mon Sep 17 00:00:00 2001 From: Jean-Yves Gaulier Date: Wed, 3 Sep 2014 20:05:25 +0200 Subject: [PATCH 12/16] PHRAS-270 #time 3h erase blank fields when writing metadatas = write back every field of the STRUCTURE, not only fields of the record. --- lib/classes/task/period/writemeta.php | 74 ++++++++++++++++++--------- 1 file changed, 50 insertions(+), 24 deletions(-) diff --git a/lib/classes/task/period/writemeta.php b/lib/classes/task/period/writemeta.php index 5a02f30a3a..c17d51ab8d 100644 --- a/lib/classes/task/period/writemeta.php +++ b/lib/classes/task/period/writemeta.php @@ -13,12 +13,13 @@ use PHPExiftool\Driver\Metadata; use PHPExiftool\Driver\Value; use PHPExiftool\Driver\Tag; use PHPExiftool\Driver\TagFactory; -use PHPExiftool\Writer; +use PHPExiftool\Writer as ExifWriter; use PHPExiftool\Exception\TagUnknown; class task_period_writemeta extends task_databoxAbstract { protected $clear_doc; + protected $mwg; protected $metasubdefs = array(); private $_todo = 0; // set by "retrieveSbasContent", dec by "postProcessOneContent" @@ -31,6 +32,7 @@ class task_period_writemeta extends task_databoxAbstract protected function loadSettings(SimpleXMLElement $sx_task_settings) { $this->clear_doc = p4field::isyes($sx_task_settings->cleardoc); + $this->mwg = p4field::isyes($sx_task_settings->mwg); parent::loadSettings($sx_task_settings); } @@ -43,13 +45,13 @@ class task_period_writemeta extends task_databoxAbstract { $request = http_request::getInstance(); - $parm2 = $request->get_parms('period', 'cleardoc', 'maxrecs', 'maxmegs'); + $parm2 = $request->get_parms('period', 'cleardoc', 'mwg', 'maxrecs', 'maxmegs'); $dom = new DOMDocument(); $dom->preserveWhiteSpace = false; $dom->formatOutput = true; if ($dom->loadXML($oldxml)) { $xmlchanged = false; - foreach (array('str:period', 'str:maxrecs', 'str:maxmegs', 'boo:cleardoc') as $pname) { + foreach (array('str:period', 'str:maxrecs', 'str:maxmegs', 'boo:cleardoc', 'boo:mwg') as $pname) { $ptype = substr($pname, 0, 3); $pname = substr($pname, 4); $pvalue = $parm2[$pname]; @@ -105,6 +107,7 @@ class task_period_writemeta extends task_databoxAbstract @@ -131,6 +134,7 @@ class task_period_writemeta extends task_databoxAbstract { period.value = xml.find("period").text(); cleardoc.checked = Number(xml.find("cleardoc").text()) > 0; + cleardoc.mwg = Number(xml.find("mwg").text()) > 0; maxrecs.value = xml.find("maxrecs").text(); maxmegs.value = xml.find("maxmegs").text(); } @@ -187,6 +191,14 @@ class task_period_writemeta extends task_databoxAbstract +
+
+ +
+
@@ -209,8 +221,6 @@ class task_period_writemeta extends task_databoxAbstract protected function retrieveSbasContent(databox $databox) { - $this->dependencyContainer['exiftool.writer']->setModule(Writer::MODULE_MWG, true); - $connbas = $databox->get_connection(); $subdefgroups = $databox->get_subdef_structure(); $metasubdefs = array(); @@ -289,10 +299,13 @@ class task_period_writemeta extends task_databoxAbstract ); } - foreach ($record->get_caption()->get_fields() as $field) { + /* @var $caption \caption_record */ + $caption = $record->get_caption(); + /* @var $struct_field \databox_field */ + foreach($databox->get_meta_structure() as $struct_field_id=>$struct_field) { - $meta = $field->get_databox_field(); - $tagName = $meta->get_tag()->getTagname(); + $tagName = $struct_field->get_tag()->getTagname(); + $fieldName = $struct_field->get_name(); // skip fields with no src if($tagName == '') { @@ -306,34 +319,46 @@ class task_period_writemeta extends task_databoxAbstract continue; } - /* @var $meta \databox_field */ + try { + /* @var $struct_field \databox_field */ + $field = $caption->get_field($fieldName); + $datas = $field->get_values(); - $datas = $field->get_values(); + if ($struct_field->is_multi()) { + $values = array(); + foreach ($datas as $data) { + $values[] = $data->getValue(); + } - if ($meta->is_multi()) { - $values = array(); - foreach ($datas as $data) { - $values[] = $data->getValue(); + $value = new Value\Multi($values); + } else { + $data = array_pop($datas); + $value = $data->getValue(); + + $value = new Value\Mono($value); + } + } catch(\Exception $e) { + // the field is not set in the record, erase it + if ($struct_field->is_multi()) { + $value = new Value\Multi(Array("")); + } + else { + $value = new Value\Mono(""); } - - $value = new Value\Multi($values); - } else { - $data = array_pop($datas); - $value = $data->getValue(); - - $value = new Value\Mono($value); } $metadatas->add( - new Metadata\Metadata($meta->get_tag(), $value) + new Metadata\Metadata($struct_field->get_tag(), $value) ); } $this->dependencyContainer['exiftool.writer']->reset(); + if($this->mwg) { + $this->dependencyContainer['exiftool.writer']->setModule(ExifWriter::MODULE_MWG, true); + } + foreach ($tsub as $name => $file) { - $this->dependencyContainer['exiftool.writer']->erase($name != 'document' || $this->clear_doc, true); - try { $this->dependencyContainer['exiftool.writer']->write($file, $metadatas); @@ -382,6 +407,7 @@ class task_period_writemeta extends task_databoxAbstract %s %s 0 + 0 ', min(max($period, self::MINPERIOD), self::MAXPERIOD), min(max($maxrecs, self::MINRECS), self::MAXRECS), From 752f0d5da4aef0fea470163d72f1e3bdb742ebfe Mon Sep 17 00:00:00 2001 From: Jean-Yves Gaulier Date: Fri, 5 Sep 2014 18:58:17 +0200 Subject: [PATCH 13/16] PHRAS-64 #time 1h show progression number (records to do) for subdef task --- lib/classes/task/period/subdef.php | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/lib/classes/task/period/subdef.php b/lib/classes/task/period/subdef.php index e7f85a496f..083eb45e88 100644 --- a/lib/classes/task/period/subdef.php +++ b/lib/classes/task/period/subdef.php @@ -362,7 +362,7 @@ foreach ($this->dependencyContainer['phraseanet.appbox']->get_databoxes() as $da $connbas = $databox->get_connection(); - $sql = 'SELECT coll_id, record_id' + $sql = 'SELECT SQL_CALC_FOUND_ROWS coll_id, record_id' . ' FROM record' . ' WHERE jeton & ' . JETON_MAKE_SUBDEF . ' > 0' . ' AND type IN(' . implode(',', $sqlqmark) . ')' @@ -371,6 +371,14 @@ foreach ($this->dependencyContainer['phraseanet.appbox']->get_databoxes() as $da $stmt->execute($sqlparms); $rs = $stmt->fetchAll(PDO::FETCH_ASSOC); $stmt->closeCursor(); + + $sql = 'SELECT FOUND_ROWS()'; + $stmt = $connbas->prepare($sql); + $stmt->execute(); + $this->_todo = (int) $stmt->fetchColumn(0); + $stmt->closeCursor(); + + $this->setProgress(0, $this->_todo); } return $rs; } @@ -409,6 +417,11 @@ foreach ($this->dependencyContainer['phraseanet.appbox']->get_databoxes() as $da protected function postProcessOneContent(databox $databox, Array $row) { + if($this->_todo > 0) { + $this->_todo--; + $this->setProgress(0, $this->_todo); + } + $connbas = $databox->get_connection(); $sql = 'UPDATE record SET jeton=(jeton & ~' . JETON_MAKE_SUBDEF . '), moddate=NOW() From 4441eae4a549fed9ab61c53c757956adef5a9952 Mon Sep 17 00:00:00 2001 From: Jean-Yves Gaulier Date: Mon, 8 Sep 2014 11:56:54 +0200 Subject: [PATCH 14/16] PHRAS-64 #time 1h fix "subdefs to be done" in admin/base --- lib/classes/databox.php | 9 ++------- templates/web/admin/databox/databox.html.twig | 3 +++ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/lib/classes/databox.php b/lib/classes/databox.php index 63dfd78518..a765bb4440 100644 --- a/lib/classes/databox.php +++ b/lib/classes/databox.php @@ -430,19 +430,14 @@ class databox extends base $ret['thesaurus_indexed'] += $row['n']; } - $sql = "SELECT type, jeton, COUNT(record_id) AS n FROM record WHERE jeton & ".JETON_MAKE_SUBDEF." GROUP BY type, jeton"; + $sql = "SELECT type, COUNT(record_id) AS n FROM record WHERE jeton & ".JETON_MAKE_SUBDEF." GROUP BY type"; $stmt = $this->get_connection()->prepare($sql); $stmt->execute(); $rs = $stmt->fetchAll(PDO::FETCH_ASSOC); $stmt->closeCursor(); foreach ($rs as $row) { - if(!array_key_exists($row['type'], $ret['jeton_subdef'])) { - $ret['jeton_subdef'][$row['type']] = 0; - } - if((int)$row['jeton'] & JETON_MAKE_SUBDEF) { - $ret['jeton_subdef'][$row['type']] += (int)$row['n']; - } + $ret['jeton_subdef'][$row['type']] = (int)$row['n']; } return $ret; diff --git a/templates/web/admin/databox/databox.html.twig b/templates/web/admin/databox/databox.html.twig index 177493dc7f..7ded3830c8 100644 --- a/templates/web/admin/databox/databox.html.twig +++ b/templates/web/admin/databox/databox.html.twig @@ -287,6 +287,9 @@ { t += (t==""?"":" ; ") + i + ": " + data.jeton_subdef[i]; } + if(t == "") { + t = "0"; + } $("#subdefs_todo").text(t); } From 932287f3f6d34e397a80e803cb9a55828576881b Mon Sep 17 00:00:00 2001 From: Jean-Yves Gaulier Date: Mon, 8 Sep 2014 12:02:26 +0200 Subject: [PATCH 15/16] PHRAS-64 #time 1h add string "subdefs to be created" --- locale/phraseanet.pot | 3400 +++++++++++++++++++++-------------------- 1 file changed, 1779 insertions(+), 1621 deletions(-) diff --git a/locale/phraseanet.pot b/locale/phraseanet.pot index 10816d5108..ab86bc2ef6 100644 --- a/locale/phraseanet.pot +++ b/locale/phraseanet.pot @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: Phraseanet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-05 17:23+0100\n" -"PO-Revision-Date: 2014-09-05 17:24+0100\n" -"Last-Translator: \n" +"POT-Creation-Date: 2014-05-22 17:13+0100\n" +"PO-Revision-Date: 2014-05-22 17:15+0100\n" +"Last-Translator: Romain Neutron \n" "Language-Team: \n" "Language: Francais\n" "MIME-Version: 1.0\n" @@ -25,16 +25,531 @@ msgstr "" "X-Poedit-SearchPath-6: ../lib/Doctrine\n" "X-Poedit-SearchPath-7: ../bin\n" -#: ../lib/classes/databox.php:1343 +#: ../config/_GV_template.php:38 +msgid "HTTP Server" +msgstr "" + +#: ../config/_GV_template.php:43 +msgid "Default language" +msgstr "" + +#: ../config/_GV_template.php:52 +msgid "Static URL" +msgstr "" + +#: ../config/_GV_template.php:53 +msgid "optional" +msgstr "" + +#: ../config/_GV_template.php:58 +msgid "Maintenance state" +msgstr "" + +#: ../config/_GV_template.php:64 +msgid "Maintenance message" +msgstr "" + +#: ../config/_GV_template.php:70 +msgid "Enable maintenance message broadcast" +msgstr "" + +#: ../config/_GV_template.php:76 +msgid "Log errors" +msgstr "" + +#: ../config/_GV_template.php:81 +msgid "Webservices connectivity" +msgstr "" + +#: ../config/_GV_template.php:86 +msgid "Use Google API" +msgstr "" + +#: ../config/_GV_template.php:93 +msgid "Geonames server address" +msgstr "" + +#: ../config/_GV_template.php:101 +msgid "Use recaptcha API" +msgstr "" + +#: ../config/_GV_template.php:109 +msgid "Recaptcha public key" +msgstr "" + +#: ../config/_GV_template.php:115 +msgid "Recaptcha private key" +msgstr "" + +#: ../config/_GV_template.php:120 +msgid "Youtube connectivity" +msgstr "" + +#: ../config/_GV_template.php:125 +msgid "Use youtube API" +msgstr "" + +#: ../config/_GV_template.php:126 ../config/_GV_template.php:157 +#: ../config/_GV_template.php:181 +#, php-format +msgid "Create API account at %s, then use %s as callback URL value" +msgstr "" + +#: ../config/_GV_template.php:133 +msgid "Youtube public key" +msgstr "" + +#: ../config/_GV_template.php:139 +msgid "Youtube secret key" +msgstr "" + +#: ../config/_GV_template.php:145 +msgid "Youtube developer key" +msgstr "" + +#: ../config/_GV_template.php:146 +#, php-format +msgid "See %s" +msgstr "" + +#: ../config/_GV_template.php:151 +msgid "FlickR connectivity" +msgstr "" + +#: ../config/_GV_template.php:156 +msgid "Use Flickr API" +msgstr "" + +#: ../config/_GV_template.php:164 +msgid "Flickr public key" +msgstr "" + +#: ../config/_GV_template.php:170 +msgid "Flickr secret key" +msgstr "" + +#: ../config/_GV_template.php:175 +msgid "Dailymotion connectivity" +msgstr "" + +#: ../config/_GV_template.php:180 +msgid "Use Dailymotion API" +msgstr "" + +#: ../config/_GV_template.php:188 +msgid "Dailymotion public key" +msgstr "" + +#: ../config/_GV_template.php:194 +msgid "Dailymotion secret key" +msgstr "" + +#: ../config/_GV_template.php:199 +msgid "Phraseanet client API" +msgstr "" + +#: ../config/_GV_template.php:204 +msgid "Authorize *Phraseanet Navigator*" +msgstr "" + +#: ../config/_GV_template.php:205 +msgid "" +"*Phraseanet Navigator* is a smartphone application that allow user to " +"connect on this instance" +msgstr "" + +#: ../config/_GV_template.php:212 +msgid "Authorize Microsoft Office Plugin to connect." +msgstr "" + +#: ../config/_GV_template.php:218 +msgid "Documents storage" +msgstr "" + +#: ../config/_GV_template.php:224 +msgid "Default path for datas" +msgstr "" + +#: ../config/_GV_template.php:230 +msgid "Executables settings" +msgstr "" + +#: ../config/_GV_template.php:235 +msgid "php.ini path" +msgstr "" + +#: ../config/_GV_template.php:236 +msgid "Empty if not used" +msgstr "" + +#: ../config/_GV_template.php:243 +msgid "Imagine driver" +msgstr "" + +#: ../config/_GV_template.php:255 +msgid "Number of threads to use for FFMpeg" +msgstr "" + +#: ../config/_GV_template.php:261 +msgid "Maximum number of pages to be extracted from PDF" +msgstr "" + +#: ../config/_GV_template.php:266 +msgid "Main configuration" +msgstr "" + +#: ../config/_GV_template.php:271 +msgid "Enable Forcing authentication to see push content" +msgstr "" + +#: ../config/_GV_template.php:272 +msgid "" +"Adds an option to the push form submission to restrict push recipient(s) to " +"Phraseanet users only." +msgstr "" + +#: ../config/_GV_template.php:278 +msgid "Admin email" +msgstr "" + +#: ../config/_GV_template.php:284 +msgid "Display the name of databases and collections" +msgstr "" + +#: ../config/_GV_template.php:291 +msgid "Choose the title of the document to export" +msgstr "" + +#: ../config/_GV_template.php:298 +msgid "Default export title" +msgstr "" + +#: ../config/_GV_template.php:301 +msgid "Document title" +msgstr "" + +#: ../config/_GV_template.php:302 +msgid "Original name" +msgstr "" + +#: ../config/_GV_template.php:308 +msgid "Enable this setting to share on Facebook and Twitter" +msgstr "" + +#: ../config/_GV_template.php:310 +msgid "Disabled" +msgstr "" + +#: ../config/_GV_template.php:311 +msgid "Publishers" +msgstr "" + +#: ../config/_GV_template.php:312 +msgid "Enabled" +msgstr "" + +#: ../config/_GV_template.php:319 +msgid "Homepage" +msgstr "" + +#: ../config/_GV_template.php:325 +msgid "Homepage slideshow" +msgstr "" + +#: ../config/_GV_template.php:328 +msgid "Single image" +msgstr "" + +#: ../config/_GV_template.php:329 +msgid "Slide show" +msgstr "" + +#: ../config/_GV_template.php:331 +msgid "Carousel" +msgstr "" + +#: ../config/_GV_template.php:332 +msgid "Gallery" +msgstr "" + +#: ../config/_GV_template.php:338 +msgid "Search engine" +msgstr "" + +#: ../config/_GV_template.php:344 +msgid "Minimum number of letters before truncation" +msgstr "" + +#: ../config/_GV_template.php:345 +msgid "Used in search engine" +msgstr "" + +#: ../config/_GV_template.php:351 +msgid "Default query" +msgstr "" + +#: ../config/_GV_template.php:357 +msgid "Default searched type" +msgstr "" + +#: ../config/_GV_template.php:358 +msgid "Used when opening the application" +msgstr "" + +#: ../config/_GV_template.php:360 +msgid "Documents" +msgstr "" + +#: ../config/_GV_template.php:361 +msgid "Stories" +msgstr "" + +#: ../config/_GV_template.php:367 +#: ../tmp/cache_twig/51/0c/18503088e319b8875c981341ba05114f38df1aac9e32d800428337ffffeb.php:312 +msgid "Report" +msgstr "" + +#: ../config/_GV_template.php:373 +msgid "Anonymous report" +msgstr "" + +#: ../config/_GV_template.php:374 +msgid "Hide information about users" +msgstr "" + +#: ../config/_GV_template.php:380 +msgid "Additionnal modules" +msgstr "" + +#: ../config/_GV_template.php:386 +msgid "Enable thesaurus" +msgstr "" + +#: ../config/_GV_template.php:391 +msgid "Enable multi-doc mode" +msgstr "" + +#: ../config/_GV_template.php:396 +msgid "Enable HD substitution" +msgstr "" + +#: ../config/_GV_template.php:401 +msgid "Enable thumbnail substitution" +msgstr "" + +#: ../config/_GV_template.php:407 +msgid "Emails" +msgstr "" + +#: ../config/_GV_template.php:412 +msgid "Default mail sender address" +msgstr "" + +#: ../config/_GV_template.php:418 +msgid "Prefix for notification emails" +msgstr "" + +#: ../config/_GV_template.php:424 +msgid "Use a SMTP server" +msgstr "" + +#: ../config/_GV_template.php:430 +msgid "Enable SMTP authentication" +msgstr "" + +#: ../config/_GV_template.php:436 +msgid "SMTP host" +msgstr "" + +#: ../config/_GV_template.php:442 +msgid "SMTP port" +msgstr "" + +#: ../config/_GV_template.php:448 +msgid "SMTP encryption" +msgstr "" + +#: ../config/_GV_template.php:451 +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:450 +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:171 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:450 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:171 +msgid "None" +msgstr "" + +#: ../config/_GV_template.php:459 +msgid "SMTP user" +msgstr "" + +#: ../config/_GV_template.php:465 +msgid "SMTP password" +msgstr "" + +#: ../config/_GV_template.php:470 +msgid "FTP Export" +msgstr "" + +#: ../config/_GV_template.php:475 +msgid "Enable FTP export" +msgstr "" + +#: ../config/_GV_template.php:476 +msgid "Available in multi-export tab" +msgstr "" + +#: ../config/_GV_template.php:482 +msgid "Enable FTP for users" +msgstr "" + +#: ../config/_GV_template.php:483 +msgid "By default it is available for admins" +msgstr "" + +#: ../config/_GV_template.php:488 +msgid "Client" +msgstr "" + +#: ../config/_GV_template.php:493 +msgid "Maximum megabytes allowed for download" +msgstr "" + +#: ../config/_GV_template.php:494 +msgid "If request is bigger, then mail is still available" +msgstr "" + +#: ../config/_GV_template.php:500 +msgid "Search tab position" +msgstr "" + +#: ../config/_GV_template.php:506 +msgid "Advanced search tab position" +msgstr "" + +#: ../config/_GV_template.php:512 +msgid "Topics tab position" +msgstr "" + +#: ../config/_GV_template.php:518 +msgid "Active tab position" +msgstr "" + +#: ../config/_GV_template.php:524 +msgid "Topics display mode" +msgstr "" + +#: ../config/_GV_template.php:526 +msgid "Trees" +msgstr "" + +#: ../config/_GV_template.php:527 ../config/_GV_template.php:549 +msgid "Drop-down" +msgstr "" + +#: ../config/_GV_template.php:534 +msgid "Enable roll-over on stories" +msgstr "" + +#: ../config/_GV_template.php:540 +msgid "Enable roll-over on basket elements" +msgstr "" + +#: ../config/_GV_template.php:546 +msgid "Collections display mode" +msgstr "" + +#: ../config/_GV_template.php:550 +msgid "Check-box" +msgstr "" + +#: ../config/_GV_template.php:556 +msgid "Display the total size of the document basket" +msgstr "" + +#: ../config/_GV_template.php:562 +msgid "Display proposals tab" +msgstr "" + +#: ../config/_GV_template.php:568 +msgid "Require authentication to download documents" +msgstr "" + +#: ../config/_GV_template.php:569 +msgid "Used for guest account" +msgstr "" + +#: ../config/_GV_template.php:575 +msgid "Users must accept Terms of Use for each export" +msgstr "" + +#: ../config/_GV_template.php:580 +msgid "Registration" +msgstr "" + +#: ../config/_GV_template.php:585 +msgid "Auto select databases" +msgstr "" + +#: ../config/_GV_template.php:586 +msgid "" +"This option disables the selecting of the databases on which a user can " +"register himself, and registration is made on all granted databases." +msgstr "" + +#: ../config/_GV_template.php:592 +msgid "Enable auto registration" +msgstr "" + +#: ../config/_GV_template.php:597 +msgid "Push configuration" +msgstr "" + +#: ../config/_GV_template.php:602 +msgid "" +"Number of days before the end of the validation to send a reminder email" +msgstr "" + +#: ../config/_GV_template.php:608 +msgid "Default validation links duration" +msgstr "" + +#: ../config/_GV_template.php:609 +msgid "If set to 0, duration is permanent" +msgstr "" + +#: ../config/_GV_template.php:614 +msgid "Robot indexing" +msgstr "" + +#: ../config/_GV_template.php:619 +msgid "Application title" +msgstr "" + +#: ../config/_GV_template.php:625 +msgid "Keywords used for indexing purposes by search engines robots" +msgstr "" + +#: ../config/_GV_template.php:631 +msgid "Application description" +msgstr "" + +#: ../config/_GV_template.php:637 +msgid "Google Analytics identifier" +msgstr "" + +#: ../config/_GV_template.php:643 +msgid "Allow the website to be indexed by search engines like Google" +msgstr "" + +#: ../lib/classes/databox.php:1324 msgid "ERREUR : TOUTES LES BALISES subdefgroup necessitent un attribut name" msgstr "" -#: ../lib/classes/databox.php:1354 +#: ../lib/classes/databox.php:1335 msgid "" "ERREUR : Les name de subdef sont uniques par groupe de subdefs et necessaire" msgstr "" -#: ../lib/classes/databox.php:1358 +#: ../lib/classes/databox.php:1339 msgid "" "ERREUR : La classe de subdef est necessaire et egal a \"thumbnail\",\"preview" "\" ou \"document\"" @@ -201,8 +716,9 @@ msgid "Your install might need to build some sub-definitions" msgstr "" #: ../lib/classes/queries.php:168 ../lib/classes/queries.php:181 -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1398 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1398 +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:197 +#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1405 +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1405 #: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:202 #: ../tmp/cache_twig/08/16/03bf13cb1a99a73a5231f0d0f7f0e327ccd12cd3288ac87096407b704187.php:105 #: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:197 @@ -284,17 +800,21 @@ msgstr "" msgid "export::ftp: reglages manuels" msgstr "" -#: ../lib/classes/API/V1/adapter.php:1117 -#: ../lib/classes/API/V1/adapter.php:1163 -#: ../lib/classes/API/V1/adapter.php:1213 -#: ../lib/classes/API/V1/adapter.php:1237 +#: ../lib/classes/API/V1/adapter.php:1106 +#: ../lib/classes/API/V1/adapter.php:1152 +#: ../lib/classes/API/V1/adapter.php:1202 +#: ../lib/classes/API/V1/adapter.php:1226 #: ../tmp/cache_twig/01/76/7202d9b016d6892bf9a0c3d8d47d7c372edd6aa7c646076d04d09c1a198d.php:46 +#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:58 +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:860 #: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:228 #: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:331 #: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:58 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:65 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:65 #: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:860 #: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:53 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:53 #: ../lib/Alchemy/Phrasea/Controller/Admin/Collection.php:550 #: ../lib/Alchemy/Phrasea/Controller/Admin/Collection.php:585 #: ../lib/Alchemy/Phrasea/Controller/Admin/Collection.php:620 @@ -323,20 +843,20 @@ msgstr "" #: ../lib/Alchemy/Phrasea/Controller/Prod/Lazaret.php:428 #: ../lib/Alchemy/Phrasea/Controller/Prod/Lazaret.php:502 #: ../lib/Alchemy/Phrasea/Controller/Prod/MoveCollection.php:113 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:324 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:316 #: ../lib/Alchemy/Phrasea/Controller/Prod/Feed.php:68 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:115 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:179 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:201 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:207 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:118 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:182 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:200 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:206 msgid "An error occured" msgstr "" -#: ../lib/classes/API/V1/adapter.php:1211 +#: ../lib/classes/API/V1/adapter.php:1200 msgid "Record Not Found" msgstr "" -#: ../lib/classes/API/V1/adapter.php:1235 +#: ../lib/classes/API/V1/adapter.php:1224 msgid "Story Not Found" msgstr "" @@ -570,8 +1090,8 @@ msgstr "" #: ../lib/classes/task/period/archive.php:232 #: ../lib/classes/task/period/RecordMover.php:288 #: ../lib/classes/task/period/ftpPull.php:226 -#: ../lib/classes/task/period/subdef.php:269 -#: ../lib/classes/task/period/writemeta.php:174 +#: ../lib/classes/task/period/subdef.php:222 +#: ../lib/classes/task/period/writemeta.php:172 #: ../lib/classes/task/period/ftp.php:158 msgid "task::_common_:periodicite de la tache" msgstr "" @@ -580,8 +1100,8 @@ msgstr "" #: ../lib/classes/task/period/archive.php:242 #: ../lib/classes/task/period/RecordMover.php:291 #: ../lib/classes/task/period/ftpPull.php:229 -#: ../lib/classes/task/period/subdef.php:272 -#: ../lib/classes/task/period/writemeta.php:177 +#: ../lib/classes/task/period/subdef.php:225 +#: ../lib/classes/task/period/writemeta.php:175 #: ../lib/classes/task/period/ftp.php:161 msgid "task::_common_:secondes (unite temporelle)" msgstr "" @@ -654,96 +1174,47 @@ msgstr "" msgid "task::ftp:utiliser SSL" msgstr "" -#: ../lib/classes/task/period/subdef.php:45 +#: ../lib/classes/task/period/subdef.php:43 msgid "task::subdef:creation des sous definitions des documents d'origine" msgstr "" -#: ../lib/classes/task/period/subdef.php:56 +#: ../lib/classes/task/period/subdef.php:54 msgid "task::subdef:creation des sous definitions" msgstr "" -#: ../lib/classes/task/period/subdef.php:276 -#, php-format -msgid "Databox" -msgstr "" - -#: ../lib/classes/task/period/subdef.php:279 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:244 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:269 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:294 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:319 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:344 -#: ../tmp/cache_twig/9d/de/4a3fc48903fedfcf545b274e1584032d25e8b5d0713f2d25c0c3ed18920b.php:42 -msgid "All" -msgstr "" - -#: ../lib/classes/task/period/subdef.php:293 -msgid "recordtype" -msgstr "" - -#: ../lib/classes/task/period/subdef.php:296 -#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:45 -msgid "image" -msgstr "" - -#: ../lib/classes/task/period/subdef.php:299 -#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:63 -msgid "video" -msgstr "" - -#: ../lib/classes/task/period/subdef.php:302 -#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:69 -msgid "audio" -msgstr "" - -#: ../lib/classes/task/period/subdef.php:305 -#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:51 -#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:244 -#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:397 -msgid "document" -msgstr "" - -#: ../lib/classes/task/period/subdef.php:308 -msgid "flash" -msgstr "" - -#: ../lib/classes/task/period/subdef.php:311 -msgid "unknown" -msgstr "" - -#: ../lib/classes/task/period/subdef.php:316 +#: ../lib/classes/task/period/subdef.php:229 #, php-format msgid "Number of records to process per batch" msgstr "" -#: ../lib/classes/task/period/subdef.php:322 -#: ../lib/classes/task/period/writemeta.php:189 +#: ../lib/classes/task/period/subdef.php:235 +#: ../lib/classes/task/period/writemeta.php:187 msgid "Restart the task every X records" msgstr "" -#: ../lib/classes/task/period/subdef.php:328 +#: ../lib/classes/task/period/subdef.php:241 msgid "Restart the task if memory reaches" msgstr "" -#: ../lib/classes/task/period/subdef.php:335 +#: ../lib/classes/task/period/subdef.php:248 msgid "Try to extract embedded thumbnails" msgstr "" -#: ../lib/classes/task/period/writemeta.php:26 +#: ../lib/classes/task/period/writemeta.php:24 msgid "" "task::writemeta:(re)ecriture des metadatas dans les documents (et subdefs " "concernees)" msgstr "" -#: ../lib/classes/task/period/writemeta.php:37 +#: ../lib/classes/task/period/writemeta.php:35 msgid "task::writemeta:ecriture des metadatas" msgstr "" -#: ../lib/classes/task/period/writemeta.php:184 +#: ../lib/classes/task/period/writemeta.php:182 msgid "task::writemeta:effacer les metadatas non presentes dans la structure" msgstr "" -#: ../lib/classes/task/period/writemeta.php:195 +#: ../lib/classes/task/period/writemeta.php:193 msgid "task::_common_:records, ou si la memoire depasse" msgstr "" @@ -994,8 +1465,10 @@ msgid "" msgstr "" #: ../lib/classes/eventsmanager/notify/autoregister.php:195 +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:843 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:295 #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:670 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:295 #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:290 #: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:290 #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:163 @@ -1006,8 +1479,10 @@ msgid "admin::compte-utilisateur nom" msgstr "" #: ../lib/classes/eventsmanager/notify/autoregister.php:196 +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:829 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:297 #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:683 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:297 #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:176 #: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:829 #: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:65 @@ -1016,8 +1491,11 @@ msgid "admin::compte-utilisateur prenom" msgstr "" #: ../lib/classes/eventsmanager/notify/autoregister.php:197 +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:857 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:307 #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:696 +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:327 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:307 #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:314 #: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:314 #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:189 @@ -1027,16 +1505,16 @@ msgstr "" msgid "admin::compte-utilisateur email" msgstr "" -#: ../lib/classes/eventsmanager/notify/feed.php:148 +#: ../lib/classes/eventsmanager/notify/feed.php:150 #, php-format msgid "%1$s has published %2$s" msgstr "" -#: ../lib/classes/eventsmanager/notify/feed.php:164 +#: ../lib/classes/eventsmanager/notify/feed.php:166 msgid "Feeds" msgstr "" -#: ../lib/classes/eventsmanager/notify/feed.php:173 +#: ../lib/classes/eventsmanager/notify/feed.php:175 msgid "Receive notification when a publication is available" msgstr "" @@ -1128,7 +1606,7 @@ msgid "Refus d'elements de commande" msgstr "" #: ../lib/classes/module/report.php:661 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:250 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:251 #: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:132 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:467 msgid "report:: utilisateur" @@ -1136,7 +1614,7 @@ msgstr "" #: ../lib/classes/module/report.php:662 #: ../lib/classes/module/report/filter.php:68 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:321 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:322 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:78 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:307 msgid "report:: collections" @@ -1158,7 +1636,7 @@ msgstr "" #: ../lib/classes/module/report.php:664 #: ../lib/classes/module/report/filter.php:69 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:322 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:323 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:79 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:308 msgid "report:: commentaire" @@ -1169,7 +1647,7 @@ msgstr "" #: ../lib/classes/module/report/filter.php:70 #: ../tmp/cache_twig/94/8a/600a8fd8ba7ee3e38728d78a824d0d0eb3e3b979f4478ababab2a8f774a7.php:226 #: ../tmp/cache_twig/94/8a/600a8fd8ba7ee3e38728d78a824d0d0eb3e3b979f4478ababab2a8f774a7.php:238 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:251 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:252 #: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:190 #: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:242 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:82 @@ -1178,9 +1656,9 @@ msgstr "" #: ../lib/classes/module/report.php:666 ../lib/classes/module/report.php:667 #: ../lib/classes/module/report/filter.php:59 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:189 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:252 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:318 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:190 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:253 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:319 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:58 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:71 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:75 @@ -1193,8 +1671,8 @@ msgstr "" #: ../lib/classes/module/report.php:668 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:185 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:289 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:253 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:323 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:254 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:324 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:309 msgid "report:: fonction" msgstr "" @@ -1202,8 +1680,8 @@ msgstr "" #: ../lib/classes/module/report.php:669 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:193 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:297 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:254 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:324 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:255 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:325 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:310 msgid "report:: activite" msgstr "" @@ -1211,8 +1689,8 @@ msgstr "" #: ../lib/classes/module/report.php:670 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:197 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:301 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:255 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:325 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:256 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:326 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:311 msgid "report:: pays" msgstr "" @@ -1220,18 +1698,18 @@ msgstr "" #: ../lib/classes/module/report.php:671 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:189 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:293 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:256 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:326 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:257 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:327 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:312 msgid "report:: societe" msgstr "" #: ../lib/classes/module/report.php:672 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:448 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:454 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:459 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:464 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:469 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:449 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:455 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:460 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:465 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:470 #: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:191 #: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:243 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:100 @@ -1240,11 +1718,11 @@ msgid "report:: nombre" msgstr "" #: ../lib/classes/module/report.php:673 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:449 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:455 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:460 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:465 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:470 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:450 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:456 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:461 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:466 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:471 msgid "report:: pourcentage" msgstr "" @@ -1254,8 +1732,8 @@ msgstr "" #: ../lib/classes/module/report.php:675 #: ../lib/classes/module/report/filter.php:66 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:319 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:388 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:320 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:389 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:57 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:76 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:296 @@ -1267,17 +1745,17 @@ msgid "report:: type d'action" msgstr "" #: ../lib/classes/module/report.php:678 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:390 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:391 msgid "report:: fichier" msgstr "" #: ../lib/classes/module/report.php:679 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:391 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:392 msgid "report:: type" msgstr "" #: ../lib/classes/module/report.php:680 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:392 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:393 msgid "report:: taille" msgstr "" @@ -1287,7 +1765,7 @@ msgstr "" #: ../lib/classes/module/report.php:682 #: ../lib/classes/module/report/filter.php:67 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:389 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:390 msgid "phraseanet:: sous definition" msgstr "" @@ -1367,7 +1845,7 @@ msgstr "" msgid "decembre" msgstr "" -#: ../lib/classes/module/console/systemUpgrade.php:55 +#: ../lib/classes/module/console/systemUpgrade.php:61 msgid "Continuer ?" msgstr "" @@ -1404,7 +1882,7 @@ msgid "report:: edited documents" msgstr "" #: ../lib/classes/module/report/nav.php:103 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:447 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:448 msgid "report:: navigateur" msgstr "" @@ -1413,18 +1891,18 @@ msgid "report:: Plateforme" msgstr "" #: ../lib/classes/module/report/nav.php:219 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:463 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:464 msgid "report:: resolution" msgstr "" #: ../lib/classes/module/report/nav.php:279 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:453 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:454 msgid "report:: navigateurs et plateforme" msgstr "" #: ../lib/classes/module/report/nav.php:340 #: ../lib/classes/module/report/filter.php:61 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:191 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:192 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:72 msgid "report:: modules" msgstr "" @@ -1467,37 +1945,37 @@ msgstr "" #: ../tmp/cache_twig/94/8a/600a8fd8ba7ee3e38728d78a824d0d0eb3e3b979f4478ababab2a8f774a7.php:208 #: ../tmp/cache_twig/86/96/c50474d682d60204be567efebad9abb32aea7fe04e1aae0a24cd042dd09b.php:48 #: ../tmp/cache_twig/5d/ad/5b91b7a6cfc18481894d2b8c7bbe5d265dc8cfc78a8f648f76a7fd93264c.php:48 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:387 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:388 msgid "report:: telechargements" msgstr "" #: ../lib/classes/module/report/filter.php:58 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:188 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:189 msgid "phraseanet::utilisateurs" msgstr "" #: ../lib/classes/module/report/filter.php:60 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:190 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:191 msgid "report:: IP" msgstr "" #: ../lib/classes/module/report/filter.php:62 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:192 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:193 msgid "report::fonction" msgstr "" #: ../lib/classes/module/report/filter.php:63 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:193 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:194 msgid "report::activite" msgstr "" #: ../lib/classes/module/report/filter.php:64 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:194 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:195 msgid "report::pays" msgstr "" #: ../lib/classes/module/report/filter.php:65 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:195 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:196 msgid "report::societe" msgstr "" @@ -1665,8 +2143,10 @@ msgid "boutton::enregistrer" msgstr "" #: ../tmp/cache_twig/01/76/7202d9b016d6892bf9a0c3d8d47d7c372edd6aa7c646076d04d09c1a198d.php:36 +#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:48 #: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:48 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:55 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:55 #: ../lib/Alchemy/Phrasea/Controller/Admin/Collection.php:984 #: ../lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1022 #: ../lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1061 @@ -1769,81 +2249,6 @@ msgstr "" msgid "boutton::monter" msgstr "" -#: ../tmp/cache_twig/01/9a/b60c0fcbeb44c2c9f47cb74645be87474c725160b22a757c74fdc091dac2.php:22 -#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:22 -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:63 -#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:63 -msgid "Setup" -msgstr "" - -#: ../tmp/cache_twig/01/9a/b60c0fcbeb44c2c9f47cb74645be87474c725160b22a757c74fdc091dac2.php:276 -#: ../tmp/cache_twig/01/9a/b60c0fcbeb44c2c9f47cb74645be87474c725160b22a757c74fdc091dac2.php:327 -#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:276 -#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:327 -msgid "erreur avec la valeur %name%" -msgstr "" - -#: ../tmp/cache_twig/01/9a/b60c0fcbeb44c2c9f47cb74645be87474c725160b22a757c74fdc091dac2.php:482 -#: ../tmp/cache_twig/3b/ab/b47f963b377299aea801c165a16a39fc97d6a60d7005cd70f666315b2bce.php:78 -#: ../tmp/cache_twig/86/95/a766bab60e20263f3a76e303a87aef30aeed628c7887227aac384b9ffdc4.php:74 -#: ../tmp/cache_twig/0a/1b/e34e137b60267bb2074a1eebce9913a239a1ae6d2cbeca7d7c7bc8626089.php:77 -#: ../tmp/cache_twig/f5/25/26a9c9c89a4544b638d8cb920b86e4ad4a53a3447eb398985cc99e29a27a.php:196 -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:488 -#: ../tmp/cache_twig/c9/db/fc05a687527ffcea5900b8c3639bc1fb1e451abea2f6f32868a11c122bc8.php:180 -#: ../tmp/cache_twig/a4/29/9d4202bef5356fa2348fbc0c8ca67c470bd6d541b1a88626a37a13058220.php:131 -#: ../tmp/cache_twig/6e/bd/f9193590d15ae5f9c4d187bb1e6b891149980ed7702ba39fadf5d6feead3.php:74 -#: ../tmp/cache_twig/c2/cd/0edfdf965cae686928b893aecee859cc95eabd7c0f1d0e9529d886303081.php:74 -#: ../tmp/cache_twig/c6/14/eb1b4181802db8b69470965dc865cf6c643b0dfec76fb8bb1a3a491c5ab9.php:160 -#: ../tmp/cache_twig/79/dc/66fde540fca94a734960ec1caff0853d35b682f22c085f5deb14749a0d06.php:182 -#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:482 -#: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:113 -#: ../tmp/cache_twig/f0/4d/5fa9878e5e837c599426d7949a7560835bd9022aef1c645e6c00eecce499.php:180 -#: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:152 -#: ../tmp/cache_twig/ef/d4/b0d18671f32d3a0ebea5dcde8c814f610214c29a0e536c22584d6cb3d9b9.php:234 -#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:72 -#: ../tmp/cache_twig/4c/bf/5727e2a78ae25e76bf3dd674c0f499bd5300296aaed204214aa455a50987.php:111 -#: ../tmp/cache_twig/2b/d7/0f5f275852582b8dea384f3ea54b8d2dfa693d41e0c626b1b4beb2dc26a1.php:120 -#: ../tmp/cache_twig/f4/c7/5574405b1ed7d6237c4c894fc093d06961fc01a172d22fe904ec51a41b74.php:129 -#: ../tmp/cache_twig/71/3a/d49ad1d50eb2444c0bcb1449c2f6b21bfa95013a375870d95df60e59525c.php:138 -#: ../tmp/cache_twig/f6/48/9fdef8e5bcd467702bf0fc37b74a372eea4f8a0095f9b843a2bbb5492ad5.php:103 -#: ../tmp/cache_twig/ba/7d/e75c50395bcaf6529e78a2fb3aa60137de877e6835e66be82712e66ae2d3.php:103 -#: ../tmp/cache_twig/f2/87/6b100ae1c9075a7357e8702579ae166529504e1c6bbbdf2b0a14c26f76f0.php:74 -#: ../tmp/cache_twig/37/fe/644ac28917c84e903c2640c6dc036440c6b810143a478e9fc6e511797679.php:103 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:509 -#: ../tmp/cache_twig/88/b3/a68391b09fbc77bacf14181cf9292ad30591784465daaf3f80a24ca136c1.php:67 -#: ../tmp/cache_twig/f7/fe/2b6b0647bba4cd3a38bd497eb217e1353439050817ee0a5e815ecb368789.php:231 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:990 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:221 -#: ../tmp/cache_twig/18/81/534c52ed6dc27a9b3d96d0e556c668e45049b0544b019bcdc19a2a190621.php:178 -#: ../tmp/cache_twig/78/e0/fc37749b10cd47bdee7978fcdfc6f998488df32c4344ae16ab45b52de332.php:74 -#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:171 -#: ../tmp/cache_twig/a2/33/8d87342695b62d292dd7029c19564cc3ab9b99ce9034d81019263d15a804.php:63 -#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:734 -#: ../tmp/cache_twig/e2/07/010647dc8415a615d5f8cf2093c6fa3721c9a3b8e58e708eb900cc7bdebf.php:67 -#: ../tmp/cache_twig/0f/1a/2943a9b8534b0da4f702678616cb595709744afee1183ddee046bccc69f9.php:103 -#: ../tmp/cache_twig/96/a1/7b38f615336af0c84683a91ace70b9aa67c1a43acb498429d6882ac2dfbc.php:315 -#: ../tmp/cache_twig/a9/0c/8a8cbfe5d6b1a893662f865ece58bd76a8bd33b7c696dc4ff370eaadd4a9.php:306 -#: ../tmp/cache_twig/35/29/71e36a293225ce5372e99db946bf567585c4a65a61433e3c73ad354f9236.php:76 -#: ../tmp/cache_twig/35/3c/c8c14efa08266d7255db5f4b30255297ebb9500894c7d9af510fc4550214.php:169 -#: ../tmp/cache_twig/35/3c/c8c14efa08266d7255db5f4b30255297ebb9500894c7d9af510fc4550214.php:246 -#: ../tmp/cache_twig/6c/a4/1f01b162e7851408eead3a04d9e6de6374b54a32a55e7d6380cdba0f2f53.php:127 -#: ../tmp/cache_twig/98/a5/f945c93304136135a26fa3cce67ff847dd8e2b2c48296b14aa0d643dde2b.php:109 -#: ../tmp/cache_twig/8f/ac/36591e4ba588a071b21bae71ea6da83259df62670763ae7e9cd2e5da556e.php:480 -#: ../tmp/cache_twig/64/81/83b73fb5a6159fbb4692452426501112d9f3e3746c6a4da2a126b639e326.php:73 -#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:462 -#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:485 -#: ../tmp/cache_twig/bb/68/1551edcbc53574a4b19f29bd9604f86b97c0c81fdad097803bc3f82c51b1.php:74 -#: ../tmp/cache_twig/97/fe/c90f86fa3cdc292b5f1e598b398f5eb76d0db3adc514986e60285ccdb92e.php:134 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1975 -#: ../tmp/cache_twig/5e/93/f96277b28158c423dfdf2cc2e1699111753fcae4276f0173f3eb0cd67ec4.php:81 -#: ../tmp/cache_twig/57/d7/862a6d9ece31ca7a8450dd2dd95202d61a8181dd207a620b9d9b179f08ac.php:115 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1975 -#: ../tmp/cache_twig/7d/1d/0e0610f67f01a7610b14ed19d95faa829f3da46d9c1c8e5b43116a1f9d33.php:42 -#: ../tmp/cache_twig/46/16/ce4342ba8d6f1ad6ad3ec6d404a050649a3a11d1578ade704aadb9b4b8cf.php:126 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:47 -msgid "boutton::valider" -msgstr "" - #: ../tmp/cache_twig/94/90/cc824cded39dcf79a157b837e4df1e45ddc8623271a52ff7f6c1574c666a.php:22 msgid "Upload a csv file for users creation" msgstr "" @@ -1884,6 +2289,10 @@ msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:567 #: ../tmp/cache_twig/96/a1/7b38f615336af0c84683a91ace70b9aa67c1a43acb498429d6882ac2dfbc.php:132 #: ../tmp/cache_twig/96/a1/7b38f615336af0c84683a91ace70b9aa67c1a43acb498429d6882ac2dfbc.php:252 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:399 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:455 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:511 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:567 #: ../tmp/cache_twig/5f/5b/af90ed6dd30d3a17dd01e65d349b45edf4aad5dadbb00da847719774c6d7.php:416 msgid "Select files..." msgstr "" @@ -1891,6 +2300,7 @@ msgstr "" #: ../tmp/cache_twig/94/90/cc824cded39dcf79a157b837e4df1e45ddc8623271a52ff7f6c1574c666a.php:131 #: ../tmp/cache_twig/3b/ab/b47f963b377299aea801c165a16a39fc97d6a60d7005cd70f666315b2bce.php:82 #: ../tmp/cache_twig/86/95/a766bab60e20263f3a76e303a87aef30aeed628c7887227aac384b9ffdc4.php:78 +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:996 #: ../tmp/cache_twig/6e/bd/f9193590d15ae5f9c4d187bb1e6b891149980ed7702ba39fadf5d6feead3.php:78 #: ../tmp/cache_twig/c2/cd/0edfdf965cae686928b893aecee859cc95eabd7c0f1d0e9529d886303081.php:78 #: ../tmp/cache_twig/2b/16/5fc7947aac4b3242f75df1003a949bea49617571578732ab068bce43637e.php:213 @@ -1914,7 +2324,9 @@ msgstr "" #: ../tmp/cache_twig/94/90/cc824cded39dcf79a157b837e4df1e45ddc8623271a52ff7f6c1574c666a.php:146 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:594 #: ../tmp/cache_twig/96/a1/7b38f615336af0c84683a91ace70b9aa67c1a43acb498429d6882ac2dfbc.php:350 -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:715 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:594 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:694 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:694 msgid "" "Invalid file type, only (%supported_file_types%) file formats are supported" msgstr "" @@ -1953,7 +2365,7 @@ msgstr "" #: ../tmp/cache_twig/94/8a/600a8fd8ba7ee3e38728d78a824d0d0eb3e3b979f4478ababab2a8f774a7.php:151 #: ../tmp/cache_twig/94/8a/600a8fd8ba7ee3e38728d78a824d0d0eb3e3b979f4478ababab2a8f774a7.php:169 #: ../tmp/cache_twig/94/8a/600a8fd8ba7ee3e38728d78a824d0d0eb3e3b979f4478ababab2a8f774a7.php:223 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:317 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:318 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:305 msgid "report:: utilisateurs" msgstr "" @@ -1991,7 +2403,7 @@ msgid "report:: preview les plus telecharges" msgstr "" #: ../tmp/cache_twig/94/8a/600a8fd8ba7ee3e38728d78a824d0d0eb3e3b979f4478ababab2a8f774a7.php:205 -#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:347 +#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:349 msgid "report:: preview" msgstr "" @@ -2171,7 +2583,8 @@ msgid "preview:: Popularite" msgstr "" #: ../tmp/cache_twig/3b/07/a9a3906b11952256cf2866410a28899d5afd5215ff59479df7cdac37a126.php:1024 -#: ../tmp/cache_twig/77/56/1124cf333071bb255188be0cabe9d749e349e9b29d513f8e948d83f7e2e3.php:490 +#: ../tmp/cache_twig/fe/10/44fd599573da2ce552a9f03c8515023a4a847cdadb287e12e2327782eb0e.php:88 +#: ../tmp/cache_twig/77/56/1124cf333071bb255188be0cabe9d749e349e9b29d513f8e948d83f7e2e3.php:488 #: ../tmp/cache_twig/39/b4/7f3771406edf35ef9d791fd45a7048688d56c740ced66241b76f382ccd5a.php:144 #: ../tmp/cache_twig/39/b4/7f3771406edf35ef9d791fd45a7048688d56c740ced66241b76f382ccd5a.php:338 #: ../tmp/cache_twig/e9/3e/149ce3009cd2c4aa24e1f29bdab9e7dee50b5d5c1c97f151abfb9e481ae3.php:83 @@ -2198,7 +2611,7 @@ msgstr "" #: ../tmp/cache_twig/a1/71/db604186696f9f739dc9f30bd6fe95f4bf4525b906cd381b89c84f1ac628.php:95 #: ../tmp/cache_twig/c9/db/fc05a687527ffcea5900b8c3639bc1fb1e451abea2f6f32868a11c122bc8.php:67 #: ../tmp/cache_twig/f0/4d/5fa9878e5e837c599426d7949a7560835bd9022aef1c645e6c00eecce499.php:67 -#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:38 +#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:37 #: ../tmp/cache_twig/6a/bd/fb12585e7041a6be70c4636cf1b414aed005587f3d961ab3724217c21ea7.php:119 #: ../tmp/cache_twig/f7/fe/2b6b0647bba4cd3a38bd497eb217e1353439050817ee0a5e815ecb368789.php:133 #: ../tmp/cache_twig/0f/1a/2943a9b8534b0da4f702678616cb595709744afee1183ddee046bccc69f9.php:67 @@ -2223,6 +2636,71 @@ msgstr "" msgid "Description" msgstr "" +#: ../tmp/cache_twig/3b/ab/b47f963b377299aea801c165a16a39fc97d6a60d7005cd70f666315b2bce.php:78 +#: ../tmp/cache_twig/86/95/a766bab60e20263f3a76e303a87aef30aeed628c7887227aac384b9ffdc4.php:74 +#: ../tmp/cache_twig/0a/1b/e34e137b60267bb2074a1eebce9913a239a1ae6d2cbeca7d7c7bc8626089.php:77 +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:990 +#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:221 +#: ../tmp/cache_twig/f5/25/26a9c9c89a4544b638d8cb920b86e4ad4a53a3447eb398985cc99e29a27a.php:196 +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:488 +#: ../tmp/cache_twig/c9/db/fc05a687527ffcea5900b8c3639bc1fb1e451abea2f6f32868a11c122bc8.php:180 +#: ../tmp/cache_twig/a4/29/9d4202bef5356fa2348fbc0c8ca67c470bd6d541b1a88626a37a13058220.php:131 +#: ../tmp/cache_twig/6e/bd/f9193590d15ae5f9c4d187bb1e6b891149980ed7702ba39fadf5d6feead3.php:74 +#: ../tmp/cache_twig/c2/cd/0edfdf965cae686928b893aecee859cc95eabd7c0f1d0e9529d886303081.php:74 +#: ../tmp/cache_twig/c6/14/eb1b4181802db8b69470965dc865cf6c643b0dfec76fb8bb1a3a491c5ab9.php:160 +#: ../tmp/cache_twig/79/dc/66fde540fca94a734960ec1caff0853d35b682f22c085f5deb14749a0d06.php:182 +#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:467 +#: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:113 +#: ../tmp/cache_twig/f0/4d/5fa9878e5e837c599426d7949a7560835bd9022aef1c645e6c00eecce499.php:180 +#: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:152 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:488 +#: ../tmp/cache_twig/ef/d4/b0d18671f32d3a0ebea5dcde8c814f610214c29a0e536c22584d6cb3d9b9.php:234 +#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:117 +#: ../tmp/cache_twig/4c/bf/5727e2a78ae25e76bf3dd674c0f499bd5300296aaed204214aa455a50987.php:111 +#: ../tmp/cache_twig/2b/d7/0f5f275852582b8dea384f3ea54b8d2dfa693d41e0c626b1b4beb2dc26a1.php:120 +#: ../tmp/cache_twig/f4/c7/5574405b1ed7d6237c4c894fc093d06961fc01a172d22fe904ec51a41b74.php:129 +#: ../tmp/cache_twig/71/3a/d49ad1d50eb2444c0bcb1449c2f6b21bfa95013a375870d95df60e59525c.php:138 +#: ../tmp/cache_twig/f6/48/9fdef8e5bcd467702bf0fc37b74a372eea4f8a0095f9b843a2bbb5492ad5.php:103 +#: ../tmp/cache_twig/ba/7d/e75c50395bcaf6529e78a2fb3aa60137de877e6835e66be82712e66ae2d3.php:103 +#: ../tmp/cache_twig/f2/87/6b100ae1c9075a7357e8702579ae166529504e1c6bbbdf2b0a14c26f76f0.php:74 +#: ../tmp/cache_twig/37/fe/644ac28917c84e903c2640c6dc036440c6b810143a478e9fc6e511797679.php:103 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:509 +#: ../tmp/cache_twig/88/b3/a68391b09fbc77bacf14181cf9292ad30591784465daaf3f80a24ca136c1.php:67 +#: ../tmp/cache_twig/f7/fe/2b6b0647bba4cd3a38bd497eb217e1353439050817ee0a5e815ecb368789.php:231 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:990 +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:221 +#: ../tmp/cache_twig/18/81/534c52ed6dc27a9b3d96d0e556c668e45049b0544b019bcdc19a2a190621.php:178 +#: ../tmp/cache_twig/78/e0/fc37749b10cd47bdee7978fcdfc6f998488df32c4344ae16ab45b52de332.php:74 +#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:171 +#: ../tmp/cache_twig/a2/33/8d87342695b62d292dd7029c19564cc3ab9b99ce9034d81019263d15a804.php:63 +#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:734 +#: ../tmp/cache_twig/e2/07/010647dc8415a615d5f8cf2093c6fa3721c9a3b8e58e708eb900cc7bdebf.php:67 +#: ../tmp/cache_twig/0f/1a/2943a9b8534b0da4f702678616cb595709744afee1183ddee046bccc69f9.php:103 +#: ../tmp/cache_twig/96/a1/7b38f615336af0c84683a91ace70b9aa67c1a43acb498429d6882ac2dfbc.php:315 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:171 +#: ../tmp/cache_twig/a9/0c/8a8cbfe5d6b1a893662f865ece58bd76a8bd33b7c696dc4ff370eaadd4a9.php:306 +#: ../tmp/cache_twig/35/29/71e36a293225ce5372e99db946bf567585c4a65a61433e3c73ad354f9236.php:76 +#: ../tmp/cache_twig/35/3c/c8c14efa08266d7255db5f4b30255297ebb9500894c7d9af510fc4550214.php:169 +#: ../tmp/cache_twig/35/3c/c8c14efa08266d7255db5f4b30255297ebb9500894c7d9af510fc4550214.php:246 +#: ../tmp/cache_twig/6c/a4/1f01b162e7851408eead3a04d9e6de6374b54a32a55e7d6380cdba0f2f53.php:127 +#: ../tmp/cache_twig/98/a5/f945c93304136135a26fa3cce67ff847dd8e2b2c48296b14aa0d643dde2b.php:109 +#: ../tmp/cache_twig/8f/ac/36591e4ba588a071b21bae71ea6da83259df62670763ae7e9cd2e5da556e.php:480 +#: ../tmp/cache_twig/64/81/83b73fb5a6159fbb4692452426501112d9f3e3746c6a4da2a126b639e326.php:73 +#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:462 +#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:485 +#: ../tmp/cache_twig/bb/68/1551edcbc53574a4b19f29bd9604f86b97c0c81fdad097803bc3f82c51b1.php:74 +#: ../tmp/cache_twig/97/fe/c90f86fa3cdc292b5f1e598b398f5eb76d0db3adc514986e60285ccdb92e.php:134 +#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1975 +#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:113 +#: ../tmp/cache_twig/5e/93/f96277b28158c423dfdf2cc2e1699111753fcae4276f0173f3eb0cd67ec4.php:81 +#: ../tmp/cache_twig/57/d7/862a6d9ece31ca7a8450dd2dd95202d61a8181dd207a620b9d9b179f08ac.php:115 +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1975 +#: ../tmp/cache_twig/7d/1d/0e0610f67f01a7610b14ed19d95faa829f3da46d9c1c8e5b43116a1f9d33.php:42 +#: ../tmp/cache_twig/46/16/ce4342ba8d6f1ad6ad3ec6d404a050649a3a11d1578ade704aadb9b4b8cf.php:126 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:47 +msgid "boutton::valider" +msgstr "" + #: ../tmp/cache_twig/86/96/c50474d682d60204be567efebad9abb32aea7fe04e1aae0a24cd042dd09b.php:40 #: ../tmp/cache_twig/23/ab/fc23a43cbaa77075d8a5710b8dcddec6d52ec614aeb8749d0d7fb2cac59f.php:76 #: ../tmp/cache_twig/d2/57/968a95f30bb57ee2923f27c75cac31e1ef1498bbefbe1dbf50456b9863ba.php:32 @@ -2252,24 +2730,344 @@ msgid "Reorder collections" msgstr "" #: ../tmp/cache_twig/0a/1b/e34e137b60267bb2074a1eebce9913a239a1ae6d2cbeca7d7c7bc8626089.php:55 +#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:164 #: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:164 msgid "admin::base:collorder: monter" msgstr "" #: ../tmp/cache_twig/0a/1b/e34e137b60267bb2074a1eebce9913a239a1ae6d2cbeca7d7c7bc8626089.php:59 +#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:168 #: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:168 msgid "admin::base:collorder: descendre" msgstr "" #: ../tmp/cache_twig/0a/1b/e34e137b60267bb2074a1eebce9913a239a1ae6d2cbeca7d7c7bc8626089.php:63 +#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:176 #: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:176 msgid "admin::base:collorder: reinitialiser en ordre alphabetique" msgstr "" +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:69 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:69 +msgid "Rights" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:79 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:79 +msgid "Infos" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:111 +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:89 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:111 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:89 +msgid "Reglages:: reglages d acces guest" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:117 +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:97 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:117 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:97 +msgid "Reglages:: reglages d inscitpition automatisee" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:129 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:129 +msgid "Edition des droits de %display_name%" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:141 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:141 +msgid "Edition des droits de %number% utilisateurs" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:150 +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:209 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:150 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:209 +msgid "Apply a template" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:155 +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:214 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:155 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:214 +msgid "boutton::choisir" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:177 +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:249 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:177 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:249 +msgid "Delete all users rights" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:461 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:461 +msgid "Allowed to publish" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:470 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:470 +msgid "Manage Thesaurus" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:479 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:479 +msgid "Manage Database" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:488 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:488 +msgid "Manage DB fields" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:509 +#: ../tmp/cache_twig/ef/aa/32409302817ec4ea0b8377058286e46bd91b8fd5a78e1344868065062e0f.php:113 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:509 +msgid "Access" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:518 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:518 +msgid "Active" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:527 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:527 +msgid "Allowed to add in basket" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:536 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:536 +msgid "Access to preview" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:545 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:545 +msgid "Remove watermark" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:554 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:554 +msgid "Access to HD" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:563 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:563 +msgid "Allowed to order" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:572 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:572 +msgid "Set download quotas" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:599 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:599 +msgid "Set time restrictions" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:626 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:626 +msgid "Set statuses restrictions" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:656 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:656 +msgid "Allowed to add" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:665 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:665 +msgid "Allowed to edit" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:674 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:674 +msgid "Allowed to change statuses" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:683 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:683 +msgid "Allowed to delete" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:692 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:692 +msgid "Access to image tools" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:701 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:701 +msgid "Manage users" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:710 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:710 +msgid "Allowed to access report" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:719 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:719 +msgid "Allowed to push" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:728 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:728 +msgid "Manage collection" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:737 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:737 +msgid "Manage values lists" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:779 +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:287 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:112 +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:1555 +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:279 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:287 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:105 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:429 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:779 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:279 +#: ../tmp/cache_twig/98/a5/f945c93304136135a26fa3cce67ff847dd8e2b2c48296b14aa0d643dde2b.php:67 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:46 +msgid "admin::compte-utilisateur identifiant" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:793 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:118 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:793 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:54 +msgid "admin::compte-utilisateur sexe" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:804 +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:645 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:131 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:804 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:59 +msgid "admin::compte-utilisateur:sexe: mademoiselle" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:812 +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:653 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:142 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:812 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:60 +msgid "admin::compte-utilisateur:sexe: madame" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:820 +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:661 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:153 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:820 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:61 +msgid "admin::compte-utilisateur:sexe: monsieur" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:871 +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:347 +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:748 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:347 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:220 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:871 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:79 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:307 +msgid "admin::compte-utilisateur adresse" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:885 +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:761 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:233 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:885 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:86 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:309 +msgid "admin::compte-utilisateur code postal" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:899 +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:774 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:246 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:899 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:93 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:308 +msgid "admin::compte-utilisateur ville" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:913 +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:323 +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:735 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:323 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:259 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:913 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:100 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:313 +msgid "admin::compte-utilisateur poste" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:927 +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:315 +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:722 +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:311 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:315 +#: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:298 +#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:298 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:272 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:927 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:311 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:107 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:314 +msgid "admin::compte-utilisateur societe" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:941 +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:331 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:331 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:285 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:941 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:114 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:315 +msgid "admin::compte-utilisateur activite" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:956 +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:339 +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:709 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:339 +#: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:306 +#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:306 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:298 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:956 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:311 +msgid "admin::compte-utilisateur telephone" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:970 +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:787 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:311 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:970 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:128 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:312 +msgid "admin::compte-utilisateur fax" +msgstr "" + +#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:1022 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:1022 +msgid "Are you sure you want to reset rights?" +msgstr "" + +#: ../tmp/cache_twig/22/ef/8de4574ba387681254d8ca690ca094d967e06f29de0f54440c080f283b8b.php:23 +#: ../tmp/cache_twig/16/58/89313f4a32aefb4c4fe9c0d844742a9b5419ba1d73841c6efa78e4a35f34.php:23 +msgid "Security" +msgstr "" + #: ../tmp/cache_twig/22/68/5e0be77af6e35c71581a839825c948f0b8f936a6fded555bbdf97d7effd6.php:54 #: ../tmp/cache_twig/c9/f8/7dfad135d6bf4a7f2fbd1dab2796c6c60fce7da03d1230ceed632be013c6.php:54 -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:61 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:61 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:57 msgid "Voulez-vous dire %link% ?" msgstr "" @@ -2372,6 +3170,7 @@ msgstr "" #: ../tmp/cache_twig/63/be/6319a6590241f1bba28be561b484a113f4f0a9da138aa3a915209195710f.php:145 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:243 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:243 #: ../tmp/cache_twig/58/2e/35657b1dddc3ea0f5e3d2aeba8419f9f2a24a8c863028accbb2cfc7c6f3b.php:145 #: ../tmp/cache_twig/97/fe/c90f86fa3cdc292b5f1e598b398f5eb76d0db3adc514986e60285ccdb92e.php:359 msgid "Informations" @@ -2397,141 +3196,215 @@ msgstr "" msgid "Developpeur" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:96 +#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:35 +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:35 +msgid "Suggested values" +msgstr "" + +#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:72 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:112 +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:72 +#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:311 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:46 +msgid "phraseanet::chargement" +msgstr "" + +#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:95 +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:95 +msgid "admin::sugval: Valeurs suggerees/Preferences de la collection" +msgstr "" + +#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:111 +#: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:104 +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:111 +msgid "boutton::vue xml" +msgstr "" + +#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:115 +#: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:108 +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:115 +msgid "boutton::vue graphique" +msgstr "" + +#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:130 +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:130 +msgid "admin::sugval: champs" +msgstr "" + +#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:172 +#: ../tmp/cache_twig/54/eb/24de8e2b2f2d3e5df15554d09316516b0231f4d1ec0b320ef58117d194b5.php:73 +#: ../tmp/cache_twig/cd/d1/b849e0496d21408721110e0288e2033d07cb96483c0113280dfa0c81b64a.php:53 +#: ../tmp/cache_twig/2e/f3/a84d1ad7a7721d057a5a9682c259fd5b75da040aab8417cd6dbdb4d3789c.php:78 +#: ../tmp/cache_twig/e9/07/be09c70decea00f9953235fed236d74d2f25054c91c724f798530a0bba3e.php:73 +#: ../tmp/cache_twig/c7/20/7ca546f3a781705835b8042a1415de7cfbddcd9422998a3a3e90d55dc826.php:86 +#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1538 +#: ../tmp/cache_twig/ba/16/635be613ef6420a0da108eb79d3b94a3094ccba2a606078122e5f4577218.php:73 +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1538 +#: ../tmp/cache_twig/f7/fe/2b6b0647bba4cd3a38bd497eb217e1353439050817ee0a5e815ecb368789.php:328 +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:172 +#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:344 +#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:378 +#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:434 +#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:490 +#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:546 +#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:314 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:344 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:378 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:434 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:490 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:546 +#: ../tmp/cache_twig/6c/a4/1f01b162e7851408eead3a04d9e6de6374b54a32a55e7d6380cdba0f2f53.php:248 +#: ../tmp/cache_twig/61/ad/a1dab7350e55ecd75fd86474403fae6a65230d9a395ba92f75107bdbb4cd.php:53 +#: ../tmp/cache_twig/97/55/e54b9e19b2763af131c9194c8c964217d1ca86991124a891bfc434b19e99.php:53 +#: ../lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:485 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:42 +msgid "boutton::supprimer" +msgstr "" + +#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:196 +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:196 +#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:246 +#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:473 +msgid "boutton::ajouter" +msgstr "" + +#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:1064 +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:1064 +msgid "" +"admin::sugval: Attention, passer en mode graphique implique la perte des " +"modifications du xml si vous n'appliquez pas les changements avant.\n" +"Continuer quand meme" +msgstr "" + +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:118 msgid "regeneration of sub-definitions" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:116 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:138 msgid "video tool" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:136 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:161 msgid "image tool" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:148 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:175 msgid "substitution" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:162 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:189 msgid "meta-datas" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:181 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:208 msgid "Reconstruire les sous definitions" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:190 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:217 msgid "Attention, certain documents ont des sous-definitions substituees" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:197 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:224 msgid "" "Forcer la reconstruction sur les enregistrements ayant des thumbnails " "substituees" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:213 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:240 msgid "recreer aucune sous-definitions" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:219 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:246 msgid "recreer toutes les sous-definitions" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:233 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:402 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:432 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:506 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:582 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:631 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:260 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:429 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:459 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:531 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:610 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:659 msgid "validate" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:237 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:510 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:586 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:635 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:264 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:535 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:614 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:663 msgid "cancel" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:260 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:287 msgid "screenshot video" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:326 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:353 msgid "No preview available" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:337 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:448 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:364 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:475 msgid "take a screenshot" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:353 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:380 msgid "To take a screenshot click on camera" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:383 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:410 msgid "brightness settings" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:413 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:440 msgid "contrast settings" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:469 -msgid "" -"Changes for rotation will be applied only on the sub-definitions of \"image" -"\" type." -msgstr "" - -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:479 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:504 msgid "image rotation" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:485 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:510 msgid "rotation 90 degres horaire" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:493 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:518 msgid "rotation 90 degres anti-horaires" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:533 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:561 msgid "Substitution is not possible for this kind of record" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:555 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:583 msgid "substitution HD" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:564 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:592 msgid "mettre a jour le nom original de fichier apres substitution" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:613 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:641 msgid "substitution SD" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:960 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:988 msgid "alert" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:971 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:999 msgid "no image selected" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:1027 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:1055 msgid "processing" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:1042 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:243 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:1070 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:246 msgid "an error occured" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:1056 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:1084 msgid "thumbnail validation" msgstr "" @@ -2572,7 +3445,7 @@ msgstr "" #: ../tmp/cache_twig/f5/25/26a9c9c89a4544b638d8cb920b86e4ad4a53a3447eb398985cc99e29a27a.php:191 #: ../tmp/cache_twig/c9/db/fc05a687527ffcea5900b8c3639bc1fb1e451abea2f6f32868a11c122bc8.php:47 #: ../tmp/cache_twig/c9/db/fc05a687527ffcea5900b8c3639bc1fb1e451abea2f6f32868a11c122bc8.php:184 -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:218 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:213 #: ../tmp/cache_twig/c6/14/eb1b4181802db8b69470965dc865cf6c643b0dfec76fb8bb1a3a491c5ab9.php:155 #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:270 #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:486 @@ -2601,6 +3474,7 @@ msgstr "" #: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:250 #: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:489 #: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:324 +#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:119 #: ../tmp/cache_twig/ae/ac/607531696dda8fb5b66a7ab9d8901e54012d11edda41f60645d9473f53ed.php:188 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:324 #: ../tmp/cache_twig/46/16/ce4342ba8d6f1ad6ad3ec6d404a050649a3a11d1578ade704aadb9b4b8cf.php:131 @@ -2610,6 +3484,30 @@ msgstr "" msgid "boutton::annuler" msgstr "" +#: ../tmp/cache_twig/fe/10/44fd599573da2ce552a9f03c8515023a4a847cdadb287e12e2327782eb0e.php:68 +#: ../tmp/cache_twig/77/56/1124cf333071bb255188be0cabe9d749e349e9b29d513f8e948d83f7e2e3.php:508 +#: ../tmp/cache_twig/e9/3e/149ce3009cd2c4aa24e1f29bdab9e7dee50b5d5c1c97f151abfb9e481ae3.php:31 +#: ../tmp/cache_twig/10/7b/8164a1c1e4ee3ff6ab9801cdfdb8871881d8c31a9c7fb91333dec6ac13cc.php:68 +msgid "action : ajouter au panier" +msgstr "" + +#: ../tmp/cache_twig/fe/10/44fd599573da2ce552a9f03c8515023a4a847cdadb287e12e2327782eb0e.php:105 +#: ../tmp/cache_twig/77/56/1124cf333071bb255188be0cabe9d749e349e9b29d513f8e948d83f7e2e3.php:498 +#: ../tmp/cache_twig/39/b4/7f3771406edf35ef9d791fd45a7048688d56c740ced66241b76f382ccd5a.php:155 +#: ../tmp/cache_twig/e9/3e/149ce3009cd2c4aa24e1f29bdab9e7dee50b5d5c1c97f151abfb9e481ae3.php:69 +#: ../tmp/cache_twig/10/7b/8164a1c1e4ee3ff6ab9801cdfdb8871881d8c31a9c7fb91333dec6ac13cc.php:105 +#: ../tmp/cache_twig/a9/19/8f9ba6319a22ee423e3fc74e98bcdbf9814a2ba850ffce3d04de14936907.php:35 +#: ../tmp/cache_twig/9c/16/a0e4180a47fa7ae7b8a328953789ff927d94aef0808c0eaf8e4ced094a0e.php:34 +#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1096 +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1096 +msgid "action : print" +msgstr "" + +#: ../tmp/cache_twig/fe/10/44fd599573da2ce552a9f03c8515023a4a847cdadb287e12e2327782eb0e.php:126 +#: ../tmp/cache_twig/10/7b/8164a1c1e4ee3ff6ab9801cdfdb8871881d8c31a9c7fb91333dec6ac13cc.php:126 +msgid "reponses:: partager" +msgstr "" + #: ../tmp/cache_twig/a1/e9/ada267627adbc3fe06e90fda2e200af6c348401bbca1bbb248257672b732.php:34 #: ../tmp/cache_twig/a9/19/8f9ba6319a22ee423e3fc74e98bcdbf9814a2ba850ffce3d04de14936907.php:45 #: ../tmp/cache_twig/9c/16/a0e4180a47fa7ae7b8a328953789ff927d94aef0808c0eaf8e4ced094a0e.php:44 @@ -2701,116 +3599,68 @@ msgid "Retour" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:185 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:185 msgid "admin:: demandes en cours" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:197 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:197 msgid "Requests for the application registrations were recorded successfully" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:215 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:389 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:393 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:215 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:389 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:393 msgid "admin:: refuser l'acces" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:221 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:400 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:404 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:221 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:400 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:404 msgid "admin:: donner les droits de telechargement et consultation de previews" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:227 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:411 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:415 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:227 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:411 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:415 msgid "admin:: donner les droits de telechargements de preview et hd" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:233 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:422 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:426 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:233 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:422 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:426 msgid "admin:: watermarquer les documents" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:247 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:247 msgid "admin::collection" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:251 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:251 msgid "Models" msgstr "" -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:287 -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:114 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:1555 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:105 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:429 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:779 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:279 -#: ../tmp/cache_twig/98/a5/f945c93304136135a26fa3cce67ff847dd8e2b2c48296b14aa0d643dde2b.php:67 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:46 -msgid "admin::compte-utilisateur identifiant" -msgstr "" - -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:315 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:722 -#: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:298 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:298 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:272 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:927 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:311 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:107 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:314 -msgid "admin::compte-utilisateur societe" -msgstr "" - -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:323 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:735 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:259 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:913 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:100 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:313 -msgid "admin::compte-utilisateur poste" -msgstr "" - -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:331 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:285 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:941 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:114 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:315 -msgid "admin::compte-utilisateur activite" -msgstr "" - -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:339 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:709 -#: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:306 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:306 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:298 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:956 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:311 -msgid "admin::compte-utilisateur telephone" -msgstr "" - -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:347 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:748 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:220 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:871 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:79 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:307 -msgid "admin::compte-utilisateur adresse" -msgstr "" - #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:440 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:440 msgid "admin:: appliquer le modele" msgstr "" -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:450 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:171 -#: ../lib/conf.d/_GV_template.inc:464 -msgid "None" -msgstr "" - #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:496 +#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:496 msgid "No application for registration has been recorded" msgstr "" @@ -2882,9 +3732,9 @@ msgstr "" #: ../tmp/cache_twig/0e/94/4782424602bf224d1be7d4d05e825a35299aa13cfccec6953bf307c4c0b3.php:465 #: ../tmp/cache_twig/0e/94/4782424602bf224d1be7d4d05e825a35299aa13cfccec6953bf307c4c0b3.php:469 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:88 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:85 #: ../tmp/cache_twig/82/ee/7d3619c7a707092a5722fd9cac12de771fd3362df1666b62af348c66380e.php:72 -#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:159 +#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:147 msgid "Delete" msgstr "" @@ -2955,7 +3805,7 @@ msgstr "" #: ../tmp/cache_twig/a4/29/9d4202bef5356fa2348fbc0c8ca67c470bd6d541b1a88626a37a13058220.php:30 #: ../tmp/cache_twig/7e/2b/cc1be9d15ea85dc701c90c500cd986b5da63d38352ea375ab03e15707403.php:46 #: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:30 -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:319 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:311 #: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:267 #: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:247 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:247 @@ -2987,15 +3837,15 @@ msgstr "" msgid "Ajouter ma selection courrante" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:101 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:99 msgid "Erreur de login / mot de passe" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:109 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:107 msgid "Bonjour, veuillez vous identifier sur %home_title% :" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:118 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:116 #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:1571 #: ../tmp/cache_twig/50/69/a4a9283c5e8d05f572a3558b98b463102522cf57228ad562e5f0ba8a8764.php:845 #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:442 @@ -3003,34 +3853,34 @@ msgstr "" msgid "admin::compte-utilisateur mot de passe" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:122 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:120 msgid "Se connecter" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:128 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:126 msgid "Problèmes de connexion ?" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:145 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:143 #: ../tmp/cache_twig/d1/be/831744873b5b165b6af565a7f750e773ed30b1dee6fa45f29e8601e3ed5f.php:95 msgid "Hello %username%" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:159 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:157 msgid "Autorisation d'accès" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:170 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:168 msgid "" "Autorisez-vous l'application \"%application_name%\" à " "accéder à votre contenu sur %home_title% ?" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:200 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:198 msgid "Autoriser" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:224 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:222 msgid "Ne pas autoriser" msgstr "" @@ -3044,213 +3894,182 @@ msgstr "" msgid "Etes vous sur de supprimer %number% playlists ?" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:98 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:95 msgid "Notify users about this publication" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:104 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:99 #: ../tmp/cache_twig/ae/ac/607531696dda8fb5b66a7ab9d8901e54012d11edda41f60645d9473f53ed.php:69 msgid "publication : titre" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:112 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:107 #: ../tmp/cache_twig/ae/ac/607531696dda8fb5b66a7ab9d8901e54012d11edda41f60645d9473f53ed.php:77 msgid "publication : sous titre" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:120 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:115 #: ../tmp/cache_twig/ae/ac/607531696dda8fb5b66a7ab9d8901e54012d11edda41f60645d9473f53ed.php:85 msgid "publication : autheur" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:128 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:123 #: ../tmp/cache_twig/ae/ac/607531696dda8fb5b66a7ab9d8901e54012d11edda41f60645d9473f53ed.php:93 msgid "publication : email autheur" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:140 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:135 #: ../tmp/cache_twig/ae/ac/607531696dda8fb5b66a7ab9d8901e54012d11edda41f60645d9473f53ed.php:105 msgid "Fils disponibles" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:179 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:174 #: ../tmp/cache_twig/6c/a4/1f01b162e7851408eead3a04d9e6de6374b54a32a55e7d6380cdba0f2f53.php:232 msgid "This feed is public" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:214 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:209 msgid "boutton::publier" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:48 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:48 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:44 msgid "Votre recherche ne retourne aucun resultat" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:80 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:80 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:76 msgid "" "La recherche s'effectue grâce à la boîte de dialogue qui se trouve en haut à " "gauche de l'écran." msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:83 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:83 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:79 msgid "" "Sachez que vous pouvez utiliser les opérateurs ou caractères spéciaux " "suivants :" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:87 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:87 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:83 msgid "" "* , ? , ET , OU , SAUF , DANS , DERNIERS , TOUT (ou AND , OR , EXCEPT , " "LAST , ALL)" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:92 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:92 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:88 msgid "Caractères de troncature" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:99 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:99 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:95 msgid "auto*" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:103 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:103 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:99 msgid "retourne \"automobile\", \"automate\", \"autoroute\", ..." msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:109 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:109 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:105 msgid "dé?it" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:113 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:113 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:109 msgid "retourne \"délit\", \"débit\", ..." msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:120 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:120 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:116 msgid "Visualiser tous les enregistrements / les derniers enregistrements" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:126 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:126 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:122 msgid "TOUT" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:130 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:130 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:126 msgid "retourne tous les enregistrements des collections selectionnees" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:136 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:136 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:132 msgid "LAST 20" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:140 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:140 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:136 msgid "" "retourne les 20 derniers enregistrements archives dans les collections " "selectionnees" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:147 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:147 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:143 msgid "Recherche multicritères" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:151 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:151 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:147 msgid "" "Vous pouvez affiner votre recherche avec les opérateurs : ET, OU, SAUF ou " "DANS" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:157 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:157 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:153 msgid "sport" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:159 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:159 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:155 msgid "automobile" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:163 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:163 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:159 msgid "retourne les documents comprenant les deux mots." msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:169 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:169 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:165 msgid "journal OU jt" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:173 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:173 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:169 msgid "retourne les documents comprenant un mot et/ou l'autre." msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:179 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:179 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:175 msgid "cannes SAUF festival" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:183 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:183 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:179 msgid "retourne les documents comprenant cannes sans le mot festival." msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:189 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:189 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:185 msgid "thalassa DANS titre" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:193 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:193 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:189 msgid "" "retourne les documents où le terme est au moins présent dans le titre, en " "évitant par exemple celles où le terme est uniquement cité dans la légende." msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:201 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:197 #: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:120 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:201 #: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:120 #: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:99 msgid "Attention" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:205 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:205 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:201 msgid "" "pour chercher une phrase contenant un des mots-clé ci-dessus, utilisez les " "guillemets :" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:209 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:209 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:205 msgid "C dans l'air" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:213 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:213 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:209 msgid "Et Dieu créa la femme" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:217 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:217 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:213 msgid "bijou en or" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:221 -#: ../tmp/cache_twig/ec/87/4f0c36c9f6136d4df3ee98a789ffa07e1f7ef4db65445b39ee22ad0c41b1.php:221 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:217 msgid "tout le sport" msgstr "" @@ -3282,30 +4101,6 @@ msgstr "" msgid "Actions" msgstr "" -#: ../tmp/cache_twig/54/eb/24de8e2b2f2d3e5df15554d09316516b0231f4d1ec0b320ef58117d194b5.php:73 -#: ../tmp/cache_twig/cd/d1/b849e0496d21408721110e0288e2033d07cb96483c0113280dfa0c81b64a.php:53 -#: ../tmp/cache_twig/2e/f3/a84d1ad7a7721d057a5a9682c259fd5b75da040aab8417cd6dbdb4d3789c.php:78 -#: ../tmp/cache_twig/e9/07/be09c70decea00f9953235fed236d74d2f25054c91c724f798530a0bba3e.php:73 -#: ../tmp/cache_twig/c7/20/7ca546f3a781705835b8042a1415de7cfbddcd9422998a3a3e90d55dc826.php:86 -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1531 -#: ../tmp/cache_twig/ba/16/635be613ef6420a0da108eb79d3b94a3094ccba2a606078122e5f4577218.php:73 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1531 -#: ../tmp/cache_twig/f7/fe/2b6b0647bba4cd3a38bd497eb217e1353439050817ee0a5e815ecb368789.php:328 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:172 -#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:344 -#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:378 -#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:434 -#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:490 -#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:546 -#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:314 -#: ../tmp/cache_twig/6c/a4/1f01b162e7851408eead3a04d9e6de6374b54a32a55e7d6380cdba0f2f53.php:248 -#: ../tmp/cache_twig/61/ad/a1dab7350e55ecd75fd86474403fae6a65230d9a395ba92f75107bdbb4cd.php:53 -#: ../tmp/cache_twig/97/55/e54b9e19b2763af131c9194c8c964217d1ca86991124a891bfc434b19e99.php:53 -#: ../lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:486 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:42 -msgid "boutton::supprimer" -msgstr "" - #: ../tmp/cache_twig/c6/86/cee1b197293f5fb731fe5d1cc4230ab451c3b39f7e057098f700012af514.php:61 #: ../tmp/cache_twig/27/3d/79c71db3414feabaed441cd232912dab3f93dae3bfa671db7fd6b7950419.php:55 msgid "%nb_records% records" @@ -3456,51 +4251,6 @@ msgstr "" msgid "Civility" msgstr "" -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:645 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:131 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:804 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:59 -msgid "admin::compte-utilisateur:sexe: mademoiselle" -msgstr "" - -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:653 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:142 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:812 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:60 -msgid "admin::compte-utilisateur:sexe: madame" -msgstr "" - -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:661 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:153 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:820 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:61 -msgid "admin::compte-utilisateur:sexe: monsieur" -msgstr "" - -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:761 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:233 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:885 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:86 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:309 -msgid "admin::compte-utilisateur code postal" -msgstr "" - -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:774 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:246 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:899 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:93 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:308 -msgid "admin::compte-utilisateur ville" -msgstr "" - -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:787 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:311 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:970 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:128 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:312 -msgid "admin::compte-utilisateur fax" -msgstr "" - #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:823 msgid "boutton::commander" msgstr "" @@ -3568,6 +4318,7 @@ msgstr "" #: ../tmp/cache_twig/50/69/a4a9283c5e8d05f572a3558b98b463102522cf57228ad562e5f0ba8a8764.php:831 #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:416 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:85 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:85 msgid "phraseanet:: adresse" msgstr "" @@ -3674,23 +4425,6 @@ msgstr "" msgid "client::answers: %available_results% reponses" msgstr "" -#: ../tmp/cache_twig/77/56/1124cf333071bb255188be0cabe9d749e349e9b29d513f8e948d83f7e2e3.php:500 -#: ../tmp/cache_twig/39/b4/7f3771406edf35ef9d791fd45a7048688d56c740ced66241b76f382ccd5a.php:155 -#: ../tmp/cache_twig/e9/3e/149ce3009cd2c4aa24e1f29bdab9e7dee50b5d5c1c97f151abfb9e481ae3.php:69 -#: ../tmp/cache_twig/10/7b/8164a1c1e4ee3ff6ab9801cdfdb8871881d8c31a9c7fb91333dec6ac13cc.php:105 -#: ../tmp/cache_twig/a9/19/8f9ba6319a22ee423e3fc74e98bcdbf9814a2ba850ffce3d04de14936907.php:35 -#: ../tmp/cache_twig/9c/16/a0e4180a47fa7ae7b8a328953789ff927d94aef0808c0eaf8e4ced094a0e.php:34 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1096 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1096 -msgid "action : print" -msgstr "" - -#: ../tmp/cache_twig/77/56/1124cf333071bb255188be0cabe9d749e349e9b29d513f8e948d83f7e2e3.php:510 -#: ../tmp/cache_twig/e9/3e/149ce3009cd2c4aa24e1f29bdab9e7dee50b5d5c1c97f151abfb9e481ae3.php:31 -#: ../tmp/cache_twig/10/7b/8164a1c1e4ee3ff6ab9801cdfdb8871881d8c31a9c7fb91333dec6ac13cc.php:68 -msgid "action : ajouter au panier" -msgstr "" - #: ../tmp/cache_twig/5a/93/0f252e925966654810d27615faeb5ccc00e27bca12f769e954aac5b5b4ad.php:25 #: ../tmp/cache_twig/ca/ad/6180b9deacd03924bb5b091226eb2a840bea46b45e7ca1ee5c3ef801be72.php:324 #: ../tmp/cache_twig/48/68/9ee0a0d02de30c1bc9f99f678edfdb0cf8d29e547c14c07089b718b03059.php:324 @@ -3771,19 +4505,19 @@ msgid "You can not upload files" msgstr "" #: ../tmp/cache_twig/79/a4/677d7a522aafdad241e0a6bf492062a86de45135da075ffb1ffcbe4bdd67.php:36 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:199 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:198 msgid "The records have been properly ordered" msgstr "" #: ../tmp/cache_twig/79/a4/677d7a522aafdad241e0a6bf492062a86de45135da075ffb1ffcbe4bdd67.php:42 #: ../tmp/cache_twig/21/be/ec8f164aa4221e0c07872816865e91bef7e904a4125093e417546b5c6da5.php:51 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:294 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:293 msgid "Order has been sent" msgstr "" #: ../tmp/cache_twig/79/a4/677d7a522aafdad241e0a6bf492062a86de45135da075ffb1ffcbe4bdd67.php:48 #: ../tmp/cache_twig/21/be/ec8f164aa4221e0c07872816865e91bef7e904a4125093e417546b5c6da5.php:57 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:329 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:328 msgid "Order has been denied" msgstr "" @@ -3913,29 +4647,45 @@ msgstr "" msgid "No URL available" msgstr "" +#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:22 +#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:63 +#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:63 +msgid "Setup" +msgstr "" + +#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:261 +#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:312 +msgid "erreur avec la valeur %name%" +msgstr "" + #: ../tmp/cache_twig/4e/bb/8dda57e76aeebf518aba376f448b35caf96a9e3b156c47fc162938fc47e1.php:38 #: ../tmp/cache_twig/ef/64/5cea90ceef30cbdd896088270a3fea9ef25941881f0b67c3538c4ae9bf41.php:36 #: ../tmp/cache_twig/1a/c7/9f4d35e216d902c13390ce56aec05c0c813b02d8bbf605c5f24701e067e3.php:36 +#: ../tmp/cache_twig/4a/02/65d52ad5a7382b6921c83022933d87bfc55a3e9e9d4c9320a16514a02536.php:38 #: ../tmp/cache_twig/5f/8c/a0fda08bf8166d5402804ace67a7420bf62316429b61364cb217b3b79fc8.php:36 #: ../tmp/cache_twig/80/14/0243e87c831fd5c01bb92f110393631aa5184797a34a02fd1313f2f9a197.php:35 msgid "Register" msgstr "" #: ../tmp/cache_twig/4e/bb/8dda57e76aeebf518aba376f448b35caf96a9e3b156c47fc162938fc47e1.php:51 +#: ../tmp/cache_twig/4a/02/65d52ad5a7382b6921c83022933d87bfc55a3e9e9d4c9320a16514a02536.php:51 #: ../tmp/cache_twig/80/14/0243e87c831fd5c01bb92f110393631aa5184797a34a02fd1313f2f9a197.php:48 msgid "Inscription" msgstr "" #: ../tmp/cache_twig/4e/bb/8dda57e76aeebf518aba376f448b35caf96a9e3b156c47fc162938fc47e1.php:57 +#: ../tmp/cache_twig/4a/02/65d52ad5a7382b6921c83022933d87bfc55a3e9e9d4c9320a16514a02536.php:57 msgid "Complete the fields below to register on %instance_title%!" msgstr "" #: ../tmp/cache_twig/4e/bb/8dda57e76aeebf518aba376f448b35caf96a9e3b156c47fc162938fc47e1.php:157 #: ../tmp/cache_twig/1a/c7/9f4d35e216d902c13390ce56aec05c0c813b02d8bbf605c5f24701e067e3.php:153 +#: ../tmp/cache_twig/4a/02/65d52ad5a7382b6921c83022933d87bfc55a3e9e9d4c9320a16514a02536.php:157 msgid "I have read the terms of use" msgstr "" #: ../tmp/cache_twig/4e/bb/8dda57e76aeebf518aba376f448b35caf96a9e3b156c47fc162938fc47e1.php:217 +#: ../tmp/cache_twig/4a/02/65d52ad5a7382b6921c83022933d87bfc55a3e9e9d4c9320a16514a02536.php:217 msgid "Request access" msgstr "" @@ -3946,34 +4696,43 @@ msgid "Creer" msgstr "" #: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:22 -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:293 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:285 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:285 +#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:22 msgid "admin::base:collection: Creer une collection" msgstr "" #: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:34 +#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:34 msgid "" "admin:: La collection n'a pas ete creee : vous devez donner un nom a votre " "collection" msgstr "" #: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:45 +#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:45 msgid "An error occured, please retry or contact an admin if problem persist" msgstr "" #: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:61 +#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:61 msgid "admin::base:collection: Nom de la nouvelle collection : " msgstr "" #: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:70 -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:412 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:404 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:404 +#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:70 msgid "" "admin::base:collection: Vous pouvez choisir une collection de reference pour " "donenr des acces " msgstr "" #: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:85 -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:417 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:409 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:409 #: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1900 +#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:85 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1900 msgid "choisir" msgstr "" @@ -4070,8 +4829,8 @@ msgstr "" #: ../tmp/cache_twig/39/b4/7f3771406edf35ef9d791fd45a7048688d56c740ced66241b76f382ccd5a.php:129 #: ../tmp/cache_twig/39/b4/7f3771406edf35ef9d791fd45a7048688d56c740ced66241b76f382ccd5a.php:328 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:364 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:364 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:370 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:370 #: ../tmp/cache_twig/a9/19/8f9ba6319a22ee423e3fc74e98bcdbf9814a2ba850ffce3d04de14936907.php:135 #: ../tmp/cache_twig/9c/16/a0e4180a47fa7ae7b8a328953789ff927d94aef0808c0eaf8e4ced094a0e.php:134 #: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1449 @@ -4218,7 +4977,7 @@ msgstr "" #: ../tmp/cache_twig/ac/9e/fb01f1028d8846495dbbbe2bf2f1bb39a51f3f5688d02ad5ef34a6df5ee4.php:184 #: ../lib/Alchemy/Phrasea/Controller/Admin/Collection.php:491 #: ../lib/Alchemy/Phrasea/Controller/Admin/Databox.php:876 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:288 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:280 msgid "An error occurred" msgstr "" @@ -4254,6 +5013,171 @@ msgstr "" msgid "preview::statistiques de telechargement" msgstr "" +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:44 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:44 +msgid "The user has been created." +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:50 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:50 +#, php-format +msgid "%user_count% users have been created." +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:63 +#: ../tmp/cache_twig/f4/c7/5574405b1ed7d6237c4c894fc093d06961fc01a172d22fe904ec51a41b74.php:91 +#: ../tmp/cache_twig/ce/f5/3fc6514831a3beba14a6cf8235c50358ef94e24cf34037cff6f24d2c4c47.php:182 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:63 +#: ../lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php:48 +msgid "Users" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:71 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:71 +msgid "admin::user: nouvel utilisateur" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:75 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:75 +msgid "admin::user: nouveau template" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:81 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:81 +msgid "admin::user: import d'utilisateurs" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:85 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:85 +msgid "admin::user: export d'utilisateurs" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:112 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:112 +msgid "Filter" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:121 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:161 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:121 +msgid "Push::filter on login" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:129 +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:295 +#: ../tmp/cache_twig/b4/9c/07c23ab66a045a8e5227f1d772335d8a711fcfe612db32f5ee1317a5f553.php:71 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:129 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:295 +msgid "First/Last Name" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:137 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:173 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:137 +msgid "Push::filter on countries" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:145 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:179 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:145 +msgid "Push::filter on companies" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:153 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:185 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:153 +msgid "Push::filter on emails" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:158 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:197 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:158 +msgid "Push::filter starts" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:166 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:166 +msgid "Last applied template" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:236 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:236 +msgid "boutton::appliquer" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:265 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:265 +msgid "admin::compte-utilisateur id utilisateur" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:343 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:343 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:310 +msgid "admin::compte-utilisateur pays" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:359 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:359 +msgid "admin::compte-utilisateur dernier modele applique" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:375 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:375 +msgid "admin::compte-utilisateur date de creation" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:420 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:420 +msgid "This is a template" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:429 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:429 +msgid "This user has no rights" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:638 +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:649 +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:660 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:638 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:649 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:660 +msgid "%n_par_page% par page" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:665 +#: ../tmp/cache_twig/c4/88/c141694af2943b78af7cf167f27ce764039ff5705347b19ace268934697f.php:22 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:665 +#: ../tmp/cache_twig/3f/18/7fae8acb3562b67fc49741799c3c4010e3fb3e1c8b9c83d35749f5bc62a3.php:22 +#: ../tmp/cache_twig/1e/70/2d1aa33a2a9ecb61b3c9f9f292b295bdf5c8451ffe9ea674aef0f7363634.php:22 +msgid "boutton::modifier" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:669 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:669 +msgid "Supprimer" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:807 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:807 +msgid "boutton::exporter" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:831 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:831 +msgid "select at least one user" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:843 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:843 +msgid "Are you sure you want delete users rights ?" +msgstr "" + +#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:867 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:867 +msgid "users rights have been reseted" +msgstr "" + #: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:58 #: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:66 msgid "admin::tasks: nom de la tache" @@ -4271,16 +5195,6 @@ msgstr "" msgid "admin::tasks: reinitialiser el compteur de crashes" msgstr "" -#: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:104 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:111 -msgid "boutton::vue xml" -msgstr "" - -#: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:108 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:115 -msgid "boutton::vue graphique" -msgstr "" - #: ../tmp/cache_twig/2e/f3/a84d1ad7a7721d057a5a9682c259fd5b75da040aab8417cd6dbdb4d3789c.php:24 msgid "" "Vous etes actuellement deconnecte de votre compte, vous devez vous connecter " @@ -4315,7 +5229,6 @@ msgstr "" #: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:88 #: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:88 -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:168 #: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:37 #: ../lib/Alchemy/Phrasea/Controller/Client/Root.php:273 msgid "" @@ -4390,38 +5303,38 @@ msgstr "" msgid "Would you like to reset rights before applying the template?" msgstr "" -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:335 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:335 +#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:332 +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:332 msgid "Successful install" msgstr "" -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:353 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:353 +#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:350 +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:350 msgid "Ajouter un nouvel utilisateur" msgstr "" -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:358 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:358 +#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:355 +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:355 msgid "Adresse email du nouvel utilisateur" msgstr "" -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:365 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:365 +#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:362 +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:362 msgid "Send an email to the user to setup his password" msgstr "" -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:372 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:372 +#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:369 +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:369 msgid "Require email validation to activate the account" msgstr "" -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:380 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:380 +#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:377 +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:377 msgid "Creer un modele" msgstr "" -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:385 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:385 +#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:382 +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:382 msgid "Nom du nouveau modele" msgstr "" @@ -4538,11 +5451,6 @@ msgstr "" msgid "Role" msgstr "" -#: ../tmp/cache_twig/ef/aa/32409302817ec4ea0b8377058286e46bd91b8fd5a78e1344868065062e0f.php:113 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:509 -msgid "Access" -msgstr "" - #: ../tmp/cache_twig/ef/aa/32409302817ec4ea0b8377058286e46bd91b8fd5a78e1344868065062e0f.php:126 msgid "Editor" msgstr "" @@ -4563,39 +5471,39 @@ msgstr "" msgid "Remove from basket" msgstr "" -#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:25 +#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:24 #: ../tmp/cache_twig/64/81/83b73fb5a6159fbb4692452426501112d9f3e3746c6a4da2a126b639e326.php:26 msgid "Reordonner automatiquement" msgstr "" -#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:30 +#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:29 #: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:475 #: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:605 #: ../tmp/cache_twig/64/81/83b73fb5a6159fbb4692452426501112d9f3e3746c6a4da2a126b639e326.php:31 msgid "Choisir" msgstr "" -#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:34 +#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:33 #: ../tmp/cache_twig/64/81/83b73fb5a6159fbb4692452426501112d9f3e3746c6a4da2a126b639e326.php:35 #: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:687 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:687 msgid "Re-initialiser" msgstr "" -#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:43 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:373 +#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:42 #: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:379 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:507 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:385 #: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:513 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:373 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:519 #: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:379 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:507 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:385 #: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:513 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:519 #: ../tmp/cache_twig/64/81/83b73fb5a6159fbb4692452426501112d9f3e3746c6a4da2a126b639e326.php:44 msgid "Re-ordonner" msgstr "" -#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:47 +#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:46 #: ../tmp/cache_twig/64/81/83b73fb5a6159fbb4692452426501112d9f3e3746c6a4da2a126b639e326.php:48 msgid "Inverser" msgstr "" @@ -4682,10 +5590,6 @@ msgstr "" msgid "admin::base: structure" msgstr "" -#: ../tmp/cache_twig/16/58/89313f4a32aefb4c4fe9c0d844742a9b5419ba1d73841c6efa78e4a35f34.php:23 -msgid "Security" -msgstr "" - #: ../tmp/cache_twig/16/27/832767e264016631625c82bea439d891e208ddc96a86f2373157cc2083a6.php:31 msgid "First Name" msgstr "" @@ -4736,13 +5640,6 @@ msgstr "" msgid "Apply a model" msgstr "" -#: ../tmp/cache_twig/f4/c7/5574405b1ed7d6237c4c894fc093d06961fc01a172d22fe904ec51a41b74.php:91 -#: ../tmp/cache_twig/ce/f5/3fc6514831a3beba14a6cf8235c50358ef94e24cf34037cff6f24d2c4c47.php:182 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:63 -#: ../lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php:48 -msgid "Users" -msgstr "" - #: ../tmp/cache_twig/f4/c7/5574405b1ed7d6237c4c894fc093d06961fc01a172d22fe904ec51a41b74.php:146 msgid "You need define a model before importing a list of users" msgstr "" @@ -4751,6 +5648,11 @@ msgstr "" msgid "There is no user to add." msgstr "" +#: ../tmp/cache_twig/f4/50/3e8696c531ec0100df491cfd8b925ea7909510ce910f9712638ad13938fc.php:26 +#: ../tmp/cache_twig/fd/d2/59bea1d752df653426a516d1059248f3fe0caeeb2049f1d3d763ff9c4fae.php:26 +msgid "Caption" +msgstr "" + #: ../tmp/cache_twig/8a/3d/7fc97ed3d56ebbf9be70953f845469b47745f11ed7c44e4cba328bc22467.php:28 #: ../tmp/cache_twig/c0/5d/74a098a6a082faaf800e3ff2b172eab4641c5ea1cb332b22108bc5576d19.php:28 msgid "Aucune notification" @@ -4778,13 +5680,37 @@ msgid "validation:: editer ma note" msgstr "" #: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:39 +#: ../tmp/cache_twig/c1/5e/cf8db8bc94d42a00aedc9c03659834a436d564629b4ae7f05814d5bfc52d.php:39 msgid "reportage" msgstr "" +#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:45 +#: ../tmp/cache_twig/c1/5e/cf8db8bc94d42a00aedc9c03659834a436d564629b4ae7f05814d5bfc52d.php:45 +msgid "image" +msgstr "" + +#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:51 +#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:244 +#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:397 +#: ../tmp/cache_twig/c1/5e/cf8db8bc94d42a00aedc9c03659834a436d564629b4ae7f05814d5bfc52d.php:51 +msgid "document" +msgstr "" + #: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:57 +#: ../tmp/cache_twig/c1/5e/cf8db8bc94d42a00aedc9c03659834a436d564629b4ae7f05814d5bfc52d.php:57 msgid "animation flash" msgstr "" +#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:63 +#: ../tmp/cache_twig/c1/5e/cf8db8bc94d42a00aedc9c03659834a436d564629b4ae7f05814d5bfc52d.php:63 +msgid "video" +msgstr "" + +#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:69 +#: ../tmp/cache_twig/c1/5e/cf8db8bc94d42a00aedc9c03659834a436d564629b4ae7f05814d5bfc52d.php:69 +msgid "audio" +msgstr "" + #: ../tmp/cache_twig/c7/20/7ca546f3a781705835b8042a1415de7cfbddcd9422998a3a3e90d55dc826.php:63 msgid "Par %author%" msgstr "" @@ -4991,30 +5917,32 @@ msgstr "" msgid "prod::thesaurusTab:dlg:supprimer les %d termes des fiches ?" msgstr "" -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:773 -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1031 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:773 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1031 +#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:776 +#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:781 +#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1038 +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:776 +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:781 +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1038 msgid "prod::thesaurusTab:tree:loading" msgstr "" -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1408 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1408 +#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1415 +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1415 msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" msgstr "" -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1418 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1418 +#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1425 +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1425 msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" msgstr "" -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1500 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1500 +#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1507 +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1507 msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" msgstr "" -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1520 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1520 +#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1527 +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1527 msgid "prod::thesaurusTab:cmenu:Remplacer par..." msgstr "" @@ -5068,7 +5996,7 @@ msgstr "" #: ../tmp/cache_twig/b4/9c/07c23ab66a045a8e5227f1d772335d8a711fcfe612db32f5ee1317a5f553.php:53 #: ../tmp/cache_twig/d4/8b/fe38991c5bbee8da424f61ed8f650ad4af837f54d8bff6db80fcfc6c90c2.php:38 #: ../tmp/cache_twig/51/72/a2a84c4596c645b645a25306b5814bd362620ab9c177c757a275f96a8f88.php:40 -#: ../lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:31 +#: ../lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:23 msgid "Login" msgstr "" @@ -5098,13 +6026,6 @@ msgstr "" msgid "En cours d'envoi" msgstr "" -#: ../tmp/cache_twig/c4/88/c141694af2943b78af7cf167f27ce764039ff5705347b19ace268934697f.php:22 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:665 -#: ../tmp/cache_twig/3f/18/7fae8acb3562b67fc49741799c3c4010e3fb3e1c8b9c83d35749f5bc62a3.php:22 -#: ../tmp/cache_twig/1e/70/2d1aa33a2a9ecb61b3c9f9f292b295bdf5c8451ffe9ea674aef0f7363634.php:22 -msgid "boutton::modifier" -msgstr "" - #: ../tmp/cache_twig/ec/ad/35a6086a385e182c02e25c928b51514f7e1846f5be323b63c35ca93c79dd.php:30 #: ../tmp/cache_twig/20/f9/502e6bea58def37b27b89f78b7b38a46e6f199feab2babc2aa990f295c85.php:30 msgid "Guest access" @@ -5148,98 +6069,98 @@ msgstr "" msgid "Vous avez recu un nouveau panier" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:106 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:106 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:111 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:111 msgid "Vous avez recu une demande de validation de document sur ce panier" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:129 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:295 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:468 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:129 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:295 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:468 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:134 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:301 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:480 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:134 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:301 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:480 msgid "action::exporter" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:144 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:483 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:144 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:483 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:145 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:491 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:145 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:491 msgid "action::editer" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:172 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:335 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:172 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:335 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:170 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:341 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:170 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:341 msgid "action::Valider" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:247 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:247 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:253 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:253 msgid "Vous avez envoye une demande de validation de document sur ce panier" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:268 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:268 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:274 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:274 msgid "paniers:: panier recu de %pusher%" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:311 #: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:317 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:311 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:323 #: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:317 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:323 msgid "action::renommer" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:352 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:352 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:358 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:358 msgid "Archive" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:498 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:498 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:504 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:504 msgid "action::detacher" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:707 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:707 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:720 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:720 msgid "delete" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:796 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:796 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:809 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:809 msgid "panier:: ordre du panier" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:804 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:804 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:817 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:817 msgid "panier:: ordre Validation ascendante" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:812 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:812 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:825 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:825 msgid "panier:: ordre Validation descendante" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:860 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:860 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:873 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:873 msgid "L'utilisateur approuve ce document" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:866 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:866 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:879 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:879 msgid "L'utilisateur n'a pas encore donne son avis sur ce document" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:872 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:872 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:885 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:885 msgid "L'utilisateur desapprouve ce document" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:881 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:881 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:894 +#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:894 msgid "This user does not participate to the validation but is only viewer." msgstr "" @@ -5611,10 +6532,6 @@ msgstr "" msgid "Installation is currenlty processing, please wait..." msgstr "" -#: ../tmp/cache_twig/fd/d2/59bea1d752df653426a516d1059248f3fe0caeeb2049f1d3d763ff9c4fae.php:26 -msgid "Caption" -msgstr "" - #: ../tmp/cache_twig/d3/4a/935ee7f92da2e1661502992f9a8f3e754a644c8a00ebe80cee29914b3054.php:40 msgid "Toutes les publications" msgstr "" @@ -5649,102 +6566,95 @@ msgstr "" msgid "validation::envoyer mon rapport" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:112 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:72 -#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:311 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:46 -msgid "phraseanet::chargement" -msgstr "" - -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:212 -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:252 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:204 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:244 msgid "thesaurus::menu: proprietes" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:216 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:208 msgid "thesaurus::menu: refuser" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:220 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:212 msgid "thesaurus::menu: accepter" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:225 -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:264 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:217 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:256 #: ../tmp/cache_twig/7a/72/f20894272ff1593d8f0771e60af00d476051d6843ac928e4937209748a05.php:112 msgid "thesaurus::menu: supprimer" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:229 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:221 msgid "thesaurus::menu: supprimer les candidats a 0 hits" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:234 -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:269 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:226 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:261 msgid "thesaurus::menu: chercher" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:238 -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:273 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:230 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:265 msgid "thesaurus::menu: exporter" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:245 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:237 msgid "thesaurus::menu: importer" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:256 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:248 msgid "thesaurus::menu: Nouveau terme" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:260 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:252 msgid "thesaurus::menu: Nouveau synonyme" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:277 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:269 msgid "thesaurus::menu: export topics" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:282 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:274 msgid "thesaurus::menu: lier au champ" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:330 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:322 msgid "thesaurus:: onglet stock" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:336 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:328 msgid "thesaurus:: afficher les termes refuses" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:350 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:342 msgid "thesaurus:: onglet thesaurus" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:555 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:547 msgid "" "thesaurus:: Supprimer cette branche ? (les termes concernes remonteront " "en candidats a la prochaine indexation)" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:560 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:552 msgid "" "thesaurus:: Des reponses sont retournees par cette branche. Supprimer " "quand meme ? (les termes concernes remonteront en candidats a la " "prochaine indexation)" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:614 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:606 msgid "thesaurus:: Tous les termes ont des hits" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:623 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:615 msgid "" "thesaurus:: Des termes de cette branche ne renvoient pas de hits. Les " "supprimer ?" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:1226 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:1218 msgid "thesaurus:: deplacer le terme dans la corbeille ?" msgstr "" @@ -5800,19 +6710,13 @@ msgstr "" msgid "Informations personnelles" msgstr "" -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:118 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:793 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:54 -msgid "admin::compte-utilisateur sexe" -msgstr "" - #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:198 msgid "login:: Changer mon adresse email" msgstr "" #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:206 #: ../lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:53 -#: ../lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:40 +#: ../lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:32 msgid "Password" msgstr "" @@ -5862,7 +6766,7 @@ msgid "%length% peoples" msgstr "" #: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:113 -#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:136 +#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:129 msgid "Edit" msgstr "" @@ -5870,39 +6774,14 @@ msgstr "" msgid "View" msgstr "" -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:161 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:121 -msgid "Push::filter on login" -msgstr "" - #: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:167 msgid "Push::filter on name" msgstr "" -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:173 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:137 -msgid "Push::filter on countries" -msgstr "" - -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:179 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:145 -msgid "Push::filter on companies" -msgstr "" - -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:185 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:153 -msgid "Push::filter on emails" -msgstr "" - #: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:191 msgid "Push::filter on templates" msgstr "" -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:197 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:158 -msgid "Push::filter starts" -msgstr "" - #: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:211 msgid "Activite" msgstr "" @@ -5920,6 +6799,15 @@ msgstr "" msgid "Position" msgstr "" +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:244 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:269 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:294 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:319 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:344 +#: ../tmp/cache_twig/9d/de/4a3fc48903fedfcf545b274e1584032d25e8b5d0713f2d25c0c3ed18920b.php:42 +msgid "All" +msgstr "" + #: ../tmp/cache_twig/1a/e7/c3a81dbf862a5b83cba1eb1bea56137758a339e52aae332db56749a2ea35.php:24 msgid "Nom du nouveau panier" msgstr "" @@ -5962,7 +6850,7 @@ msgstr "" #: ../tmp/cache_twig/88/b3/a68391b09fbc77bacf14181cf9292ad30591784465daaf3f80a24ca136c1.php:98 #: ../tmp/cache_twig/e2/07/010647dc8415a615d5f8cf2093c6fa3721c9a3b8e58e708eb900cc7bdebf.php:98 -#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:345 +#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:347 msgid "report:: jour" msgstr "" @@ -6058,143 +6946,6 @@ msgstr "" msgid "Do you want to send your report ?" msgstr "" -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:69 -msgid "Rights" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:79 -msgid "Infos" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:111 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:89 -msgid "Reglages:: reglages d acces guest" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:117 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:97 -msgid "Reglages:: reglages d inscitpition automatisee" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:129 -msgid "Edition des droits de %display_name%" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:141 -msgid "Edition des droits de %number% utilisateurs" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:150 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:209 -msgid "Apply a template" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:155 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:214 -msgid "boutton::choisir" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:177 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:249 -msgid "Delete all users rights" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:461 -msgid "Allowed to publish" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:470 -msgid "Manage Thesaurus" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:479 -msgid "Manage Database" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:488 -msgid "Manage DB fields" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:518 -msgid "Active" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:527 -msgid "Allowed to add in basket" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:536 -msgid "Access to preview" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:545 -msgid "Remove watermark" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:554 -msgid "Access to HD" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:563 -msgid "Allowed to order" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:572 -msgid "Set download quotas" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:599 -msgid "Set time restrictions" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:626 -msgid "Set statuses restrictions" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:656 -msgid "Allowed to add" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:665 -msgid "Allowed to edit" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:674 -msgid "Allowed to change statuses" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:683 -msgid "Allowed to delete" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:692 -msgid "Access to image tools" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:701 -msgid "Manage users" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:710 -msgid "Allowed to access report" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:719 -msgid "Allowed to push" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:728 -msgid "Manage collection" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:737 -msgid "Manage values lists" -msgstr "" - -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:1022 -msgid "Are you sure you want to reset rights?" -msgstr "" - #: ../tmp/cache_twig/f1/c9/dbf9ae7044827c2101e54f3cf96ca794d3a1fe6570efec13f218513c5008.php:49 msgid "thesaurus:: suppression du lien du champ %field%" msgstr "" @@ -6218,31 +6969,6 @@ msgstr "" msgid "thesaurus:: reindexer tous les enregistrements" msgstr "" -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:35 -msgid "Suggested values" -msgstr "" - -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:95 -msgid "admin::sugval: Valeurs suggerees/Preferences de la collection" -msgstr "" - -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:130 -msgid "admin::sugval: champs" -msgstr "" - -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:196 -#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:246 -#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:473 -msgid "boutton::ajouter" -msgstr "" - -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:1064 -msgid "" -"admin::sugval: Attention, passer en mode graphique implique la perte des " -"modifications du xml si vous n'appliquez pas les changements avant.\n" -"Continuer quand meme" -msgstr "" - #: ../tmp/cache_twig/08/16/03bf13cb1a99a73a5231f0d0f7f0e327ccd12cd3288ac87096407b704187.php:28 msgid "Chercher" msgstr "" @@ -6355,90 +7081,114 @@ msgid "Mettre a jour" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:40 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:40 msgid "phraseanet:: collection" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:91 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:91 msgid "admin::base:collection: numero de collection distante" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:97 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:97 msgid "admin::base:collection: etat de la collection" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:99 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:312 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:99 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:312 msgid "admin::base:collection: activer la collection" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:99 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:312 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:99 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:312 msgid "admin::base:collection: descativer la collection" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:107 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:107 #: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:122 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:122 msgid "phraseanet:: details" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:118 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:118 msgid "admin::collection:: Gestionnaires des commandes" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:166 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:166 msgid "setup:: ajouter un administrateur des commandes" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:180 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:180 msgid "" "admin::collection:: presentation des elements lors de la diffusion aux " "utilisateurs externes (publications)" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:193 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:193 msgid "admin::colelction::presentation des elements : rien" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:203 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:203 msgid "admin::colelction::presentation des elements : watermark" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:213 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:213 msgid "admin::colelction::presentation des elements : stamp" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:271 -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:276 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:271 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:268 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:268 msgid "Set labels" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:291 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:291 msgid "admin::base:collection: renommer la collection" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:307 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:307 msgid "" "admin::base:collection: etes vous sur darreter la publication de cette " "collection" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:307 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:307 msgid "admin::base:collection: etes vous sur de publier cette collection ?" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:323 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:323 msgid "admin::base:collection: etes vous sur de vider la collection ?" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:328 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:328 msgid "admin::base:collection: vider la collection" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:339 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:339 msgid "admin::collection: Confirmez vous la suppression de cette collection ?" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:358 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:358 msgid "admin::base:collection: minilogo actuel" msgstr "" @@ -6446,23 +7196,32 @@ msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:445 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:501 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:557 -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:542 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:389 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:445 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:501 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:557 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:534 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:534 msgid "admin::base:collection: aucun fichier (minilogo, watermark ...)" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:414 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:414 msgid "Watermark" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:470 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:470 msgid "Stamp logo" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:526 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:526 msgid "admin::base:collection: image de presentation : " msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:584 +#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:584 #: ../tmp/cache_twig/5f/5b/af90ed6dd30d3a17dd01e65d349b45edf4aad5dadbb00da847719774c6d7.php:484 msgid "Invalid file type" msgstr "" @@ -6535,10 +7294,6 @@ msgstr "" msgid "Name" msgstr "" -#: ../tmp/cache_twig/10/7b/8164a1c1e4ee3ff6ab9801cdfdb8871881d8c31a9c7fb91333dec6ac13cc.php:126 -msgid "reponses:: partager" -msgstr "" - #: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:213 msgid "Create new subdef" msgstr "" @@ -6659,12 +7414,6 @@ msgstr "" msgid "Apply to all selected documents" msgstr "" -#: ../tmp/cache_twig/b4/9c/07c23ab66a045a8e5227f1d772335d8a711fcfe612db32f5ee1317a5f553.php:71 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:129 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:295 -msgid "First/Last Name" -msgstr "" - #: ../tmp/cache_twig/b4/9c/07c23ab66a045a8e5227f1d772335d8a711fcfe612db32f5ee1317a5f553.php:107 msgid "E-Mail" msgstr "" @@ -6733,8 +7482,8 @@ msgstr "" #: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:138 #: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:142 -#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:325 -#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:329 +#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:312 +#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:316 #: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:102 msgid "User can download HD" msgstr "" @@ -6764,11 +7513,11 @@ msgstr "" msgid "Accuse de reception" msgstr "" -#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:274 +#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:261 msgid "Force authentication" msgstr "" -#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:283 +#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:270 msgid "" "The parameter \"force authentication\" forces the recipient(s) of the push " "to possess a Phraseanet account\n" @@ -6975,11 +7724,6 @@ msgstr "" msgid "Read-only" msgstr "" -#: ../tmp/cache_twig/51/0c/18503088e319b8875c981341ba05114f38df1aac9e32d800428337ffffeb.php:312 -#: ../lib/conf.d/_GV_template.inc:380 -msgid "Report" -msgstr "" - #: ../tmp/cache_twig/51/0c/18503088e319b8875c981341ba05114f38df1aac9e32d800428337ffffeb.php:320 msgid "Display thumbnails" msgstr "" @@ -7130,10 +7874,10 @@ msgstr "" #: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:116 #: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:394 -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:480 +#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:483 #: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:116 #: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:394 -#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:480 +#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:483 msgid "admin::utilisateurs: utilisateurs" msgstr "" @@ -7669,94 +8413,6 @@ msgstr "" msgid "Sent" msgstr "" -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:44 -msgid "The user has been created." -msgstr "" - -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:50 -#, php-format -msgid "%user_count% users have been created." -msgstr "" - -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:71 -msgid "admin::user: nouvel utilisateur" -msgstr "" - -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:75 -msgid "admin::user: nouveau template" -msgstr "" - -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:81 -msgid "admin::user: import d'utilisateurs" -msgstr "" - -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:85 -msgid "admin::user: export d'utilisateurs" -msgstr "" - -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:112 -msgid "Filter" -msgstr "" - -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:166 -msgid "Last applied template" -msgstr "" - -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:236 -msgid "boutton::appliquer" -msgstr "" - -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:265 -msgid "admin::compte-utilisateur id utilisateur" -msgstr "" - -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:343 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:310 -msgid "admin::compte-utilisateur pays" -msgstr "" - -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:359 -msgid "admin::compte-utilisateur dernier modele applique" -msgstr "" - -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:375 -msgid "admin::compte-utilisateur date de creation" -msgstr "" - -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:420 -msgid "This is a template" -msgstr "" - -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:429 -msgid "This user has no rights" -msgstr "" - -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:638 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:649 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:660 -msgid "%n_par_page% par page" -msgstr "" - -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:669 -msgid "Supprimer" -msgstr "" - -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:807 -msgid "boutton::exporter" -msgstr "" - -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:831 -msgid "select at least one user" -msgstr "" - -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:843 -msgid "Are you sure you want delete users rights ?" -msgstr "" - -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:867 -msgid "users rights have been reseted" -msgstr "" - #: ../tmp/cache_twig/8c/3d/8799257e40172576b2c4610f3409da0c1fd33e1559a70eb893004c802202.php:77 msgid "No matches found" msgstr "" @@ -7881,121 +8537,146 @@ msgid "boutton::retry" msgstr "" #: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:43 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:43 msgid "forms::operation effectuee OK" msgstr "" #: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:81 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:81 msgid "admin::base: Alias" msgstr "" #: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:99 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:99 msgid "Rename" msgstr "" #: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:112 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:112 msgid "admin::base: nombre d'enregistrements sur la base :" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:129 -msgid "admin::base: subdefs to be created :" -msgstr "" - -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:141 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:133 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:133 msgid "admin::base: nombre de mots uniques sur la base : " msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:150 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:142 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:142 msgid "admin::base: nombre de mots indexes sur la base" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:163 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:155 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:155 msgid "admin::base: nombre de termes de Thesaurus indexes :" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:182 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:174 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:174 msgid "admin::base: document indexes en utilisant la fiche xml" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:193 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:185 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:185 msgid "admin::base: document indexes en utilisant le thesaurus" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:218 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:210 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:210 msgid "admin::base: Cette base est indexable" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:304 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:296 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:296 msgid "admin::base: Confirmer la suppression de tous les logs" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:309 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:301 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:301 msgid "admin::base: supprimer tous les logs" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:320 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:312 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:312 msgid "admin::base: Confirmer vous l'arret de la publication de la base" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:325 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:317 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:317 msgid "admin::base: arreter la publication de la base" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:336 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:328 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:328 msgid "admin::base: Confirmer le vidage complet de la base" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:341 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:333 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:333 msgid "admin::base: vider la base" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:352 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:344 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:344 msgid "admin::base: Confirmer la suppression de la base" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:357 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:349 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:349 msgid "admin::base: supprimer la base" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:369 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:361 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:361 msgid "Confirmez-vous la re-indexation de la base ?" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:373 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:365 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:365 msgid "base:: re-indexer" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:387 -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:444 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:379 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:436 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:379 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:436 msgid "admin::base:collection: Monter une collection" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:405 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:397 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:397 msgid "Monter la collection %name%" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:472 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:464 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:464 msgid "Activer une collection" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:494 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:486 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:486 #: ../tmp/cache_twig/cf/5b/3bf639774f4a6aa64dba02220ef918ec08a83365af21a4c60c81bde44a14.php:50 #: ../tmp/cache_twig/e8/54/dfb697806e2c91b99ffdbd24a1ebc60c6e99761bb866cafc0809cff8252e.php:58 msgid "Activer" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:516 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:508 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:508 msgid "admin::base: logo impression PDF" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:532 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:524 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:524 msgid "admin::base:collection: supprimer le logo" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:552 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:544 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:544 msgid "admin::base: envoyer un logo (jpeg 35px de hauteur max)" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:580 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:567 +#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:567 #: ../lib/Alchemy/Phrasea/Controller/Admin/Databox.php:949 msgid "admin::base: aucun alias" msgstr "" @@ -8060,19 +8741,19 @@ msgstr "" msgid "admin::tasks: etat de progression de la tache" msgstr "" -#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:145 +#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:135 msgid "Start" msgstr "" -#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:151 +#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:141 msgid "Stop" msgstr "" -#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:165 +#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:153 msgid "Logs" msgstr "" -#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:218 +#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:216 msgid "admin::tasks: Nouvelle tache" msgstr "" @@ -8960,22 +9641,22 @@ msgstr "" #: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1803 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1803 -msgid "Display technical data" +msgid "Informations techniques" msgstr "" #: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1814 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1814 -msgid "In the answer grid" +msgid "Afficher" msgstr "" #: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1826 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1826 -msgid "After metadata" +msgid "Afficher dans la notice" msgstr "" #: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1838 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1838 -msgid "Do not display" +msgid "Ne pas afficher" msgstr "" #: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1848 @@ -9047,7 +9728,7 @@ msgstr "" msgid "Apparait aussi dans ces reportages" msgstr "" -#: ../tmp/cache_twig/cc/49/de3b22a0ad2136aa4a2d04ab8029e9576ebc9278899da69e600ed81ac675.php:75 +#: ../tmp/cache_twig/cc/49/de3b22a0ad2136aa4a2d04ab8029e9576ebc9278899da69e600ed81ac675.php:73 msgid "Apparait aussi dans ces paniers" msgstr "" @@ -9087,7 +9768,7 @@ msgstr "" msgid "thesaurus:: Lier la branche de thesaurus au champ %branch%" msgstr "" -#: ../lib/Alchemy/Phrasea/Application.php:606 +#: ../lib/Alchemy/Phrasea/Application.php:627 msgid "Open the URL in a new window" msgstr "" @@ -9404,19 +10085,19 @@ msgstr "" msgid "Validate e-mail address" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Setup.php:119 +#: ../lib/Alchemy/Phrasea/Controller/Setup.php:99 msgid "It is not recommended to install Phraseanet without HTTPS support" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Setup.php:154 +#: ../lib/Alchemy/Phrasea/Controller/Setup.php:134 msgid "Appbox is unreachable" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Setup.php:164 +#: ../lib/Alchemy/Phrasea/Controller/Setup.php:144 msgid "Databox is unreachable" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Setup.php:206 +#: ../lib/Alchemy/Phrasea/Controller/Setup.php:186 #, php-format msgid "an error occured : %s" msgstr "" @@ -9459,47 +10140,47 @@ msgstr "" msgid "Unable to add file to Phraseanet" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:168 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:320 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:167 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:319 #: ../lib/Alchemy/Phrasea/Controller/Admin/Databox.php:927 #: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:187 #: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:213 -#: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:244 -#: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:275 -#: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:312 +#: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:245 +#: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:276 +#: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:313 #: ../lib/Alchemy/Phrasea/Controller/Root/Account.php:211 msgid "Bad request format, only JSON is allowed" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:172 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:171 msgid "Missing tests parameter" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:176 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:175 msgid "Missing path parameter" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:232 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:231 msgid "Missing \"structure\" parameter" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:274 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:273 msgid "You do not enough rights to update status" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:277 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:276 msgid "File is too big : 64k max" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:280 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:279 msgid "Status icon upload failed : upload error" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:283 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:282 msgid "Status icon upload failed : can not write on disk" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:286 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:285 msgid "Something wrong happend" msgstr "" @@ -9680,8 +10361,8 @@ msgstr "" msgid "A task has been created, please run it to complete empty collection" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/TaskManager.php:119 -#: ../lib/Alchemy/Phrasea/Controller/Admin/TaskManager.php:159 +#: ../lib/Alchemy/Phrasea/Controller/Admin/TaskManager.php:111 +#: ../lib/Alchemy/Phrasea/Controller/Admin/TaskManager.php:151 msgid "Clear" msgstr "" @@ -9725,6 +10406,11 @@ msgstr "" msgid "The use of phraseanet Navigator is not allowed" msgstr "" +#: ../lib/Alchemy/Phrasea/Controller/Api/Oauth2.php:82 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1047 +msgid "login::erreur: Erreur d'authentification" +msgstr "" + #: ../lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:431 #, php-format msgid "thesaurus:: fichier genere le %s" @@ -9760,12 +10446,12 @@ msgstr "" msgid "thesaurus:: corbeille" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1590 +#: ../lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1531 #, php-format msgid "prod::thesaurusTab:dlg:%d record(s) updated" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1593 +#: ../lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1534 #, php-format msgid "prod::thesaurusTab:dlg:too many (%1$d) records to update (limit=%2$d)" msgstr "" @@ -9817,40 +10503,40 @@ msgstr "" msgid "Missing mandatory parameter %s" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:456 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:453 #, php-format msgid "%1$d records have been sent for validation to %2$d users" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:520 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:517 msgid "You are not allowed to add users" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:523 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:520 msgid "First name is required" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:526 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:523 msgid "Last name is required" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:529 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:526 msgid "Email is required" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:532 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:529 msgid "Email is invalid" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:546 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:543 msgid "User already exists" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:569 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:566 msgid "User successfully created" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:573 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:570 msgid "Error while creating user" msgstr "" @@ -9859,7 +10545,7 @@ msgid "Story created" msgstr "" #: ../lib/Alchemy/Phrasea/Controller/Prod/Story.php:140 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:421 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:413 #, php-format msgid "%d records added" msgstr "" @@ -9968,35 +10654,35 @@ msgstr "" msgid "Basket has been deleted" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:257 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:249 msgid "Record removed from basket" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:282 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:274 msgid "Basket has been updated" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:284 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:276 msgid "The requested basket does not exist" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:286 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:278 msgid "You do not have access to this basket" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:341 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:333 msgid "Basket updated" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:362 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:354 msgid "Basket has been archived" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:364 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:356 msgid "Basket has been unarchived" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:455 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:447 #, php-format msgid "%d records moved" msgstr "" @@ -10035,18 +10721,18 @@ msgstr "" msgid "publications::votre rss personnel" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:160 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:163 msgid "Document has been successfully substitued" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:162 #: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:165 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:216 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:168 #: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:219 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:222 msgid "file is not valid" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:214 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:217 msgid "Thumbnail has been successfully substitued" msgstr "" @@ -10121,21 +10807,21 @@ msgstr "" msgid "Unable to remove usr from list" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:190 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:189 msgid "There is no one to validate orders, please contact an administrator" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:204 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:203 msgid "There is no record eligible for an order" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:294 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:293 msgid "" "An error occured while sending, please retry or contact an admin if problem " "persists" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:329 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:328 msgid "" "An error occured while denying, please retry or contact an admin if problem " "persists" @@ -10535,110 +11221,105 @@ msgstr "" msgid "Great" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:298 -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:306 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:292 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:300 msgid "You tried to register with an unknown provider" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:333 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:327 msgid "Invalid captcha answer." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:438 -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:509 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:432 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:503 msgid "login::notification: demande de confirmation par mail envoyee" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:441 -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:512 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:435 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:506 msgid "Unable to send your account unlock email." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:502 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:496 msgid "Invalid link." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:551 -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:559 -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:567 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:545 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:553 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:561 msgid "Invalid unlock link." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:573 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:567 msgid "Account is already unlocked, you can login." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:584 -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:595 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:578 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:589 msgid "Account has been unlocked, you can now login." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:600 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:594 msgid "Account has been unlocked, you still have to wait for admin approval." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:634 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:628 #: ../lib/Alchemy/Phrasea/Controller/Root/Account.php:98 msgid "login::notification: Mise a jour du mot de passe avec succes" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:670 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:664 msgid "phraseanet::erreur: Le compte n'a pas ete trouve" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:676 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:670 msgid "Invalid email address" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:692 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:686 msgid "phraseanet:: Un email vient de vous etre envoye" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:740 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:734 msgid "Vous etes maintenant deconnecte. A bientot." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:767 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:761 msgid "login::erreur: No available connection - Please contact sys-admin" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:812 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:806 msgid "Phraseanet guest-access is disabled" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:932 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:926 #, php-format msgid "Unable to authenticate with %s" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:956 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:950 msgid "Unable to retrieve provider identity" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:995 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:989 msgid "Your identity is not recognized." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1027 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1021 msgid "" "An unexpected error occured during authentication process, please contact an " "admin" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1042 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1036 msgid "Please fill the captcha" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1046 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1040 msgid "login::erreur: Vous n'avez pas confirme votre email" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1053 -msgid "login::erreur: Erreur d'authentification" -msgstr "" - -#: ../lib/Alchemy/Phrasea/Controller/Root/Session.php:111 -#: ../lib/Alchemy/Phrasea/Controller/Root/Session.php:196 +#: ../lib/Alchemy/Phrasea/Controller/Root/Session.php:124 msgid "The application is going down for maintenance, please logout." msgstr "" @@ -10692,7 +11373,7 @@ msgstr "" msgid "forms::erreurs lors de l'enregistrement des modifications" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:320 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:321 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:59 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:77 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:298 @@ -10700,21 +11381,21 @@ msgstr "" msgid "phrseanet:: sous definition" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:458 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:459 msgid "report:: plateforme" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:468 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:469 msgid "report:: module" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:568 -#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:744 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:569 +#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:746 msgid "configuration" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:595 -#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:771 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:596 +#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:773 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:155 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:407 #, php-format @@ -10742,15 +11423,15 @@ msgstr "" msgid "report:: nombre de reponses" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:346 +#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:348 msgid "report:: total des telechargements" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:348 +#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:350 msgid "report:: document original" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:656 +#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:658 msgid "Receiver" msgstr "" @@ -10851,7 +11532,7 @@ msgstr "" msgid "New password (confirmation)" msgstr "" -#: ../lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:50 +#: ../lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:41 msgid "Remember me" msgstr "" @@ -10935,10 +11616,6 @@ msgstr "" msgid "test::test" msgstr "" -#: ../lib/Alchemy/Phrasea/Command/Developer/IniReset.php:88 -msgid "Please enter the databox name to reset" -msgstr "" - #: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngineQueryParser.php:133 msgid "qparser::la question est vide" msgstr "" @@ -10985,30 +11662,30 @@ msgstr "" msgid "qparser:: Formulation incorrecte, necessite plus de caractere : " msgstr "" -#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:123 +#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:111 msgid "No sort" msgstr "" -#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:148 +#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:136 #: ../lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:138 msgid "descendant" msgstr "" -#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:149 +#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:137 #: ../lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:139 msgid "ascendant" msgstr "" -#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:428 +#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:416 msgid "Unable to execute query" msgstr "" -#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:508 +#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:496 #, php-format msgid "reponses::propositions pour la base %s" msgstr "" -#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:514 +#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:502 #, php-format msgid "reponses::propositions pour le terme %s" msgstr "" @@ -11040,7 +11717,7 @@ msgid "GOP size" msgstr "" #: ../lib/Alchemy/Phrasea/Media/Subdef/Video.php:36 -#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:34 +#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:33 msgid "Dimension" msgstr "" @@ -11061,23 +11738,19 @@ msgstr "" msgid "Generates a video file" msgstr "" -#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:35 +#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:34 msgid "Resolution" msgstr "" -#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:36 +#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:35 msgid "Remove ICC Profile" msgstr "" -#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:37 -msgid "Flatten layers" -msgstr "" - -#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:38 +#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:36 msgid "Quality" msgstr "" -#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:48 +#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:46 msgid "Generates a Jpeg image" msgstr "" @@ -11153,518 +11826,3 @@ msgstr "" #: ../lib/Doctrine/Repositories/BasketRepository.php:160 msgid "You have not access to this basket" msgstr "" - -#: ../lib/conf.d/_GV_template.inc:38 -msgid "HTTP Server" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:43 -msgid "Default language" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:52 -msgid "Static URL" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:53 -msgid "optional" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:58 -msgid "Maintenance state" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:64 -msgid "Maintenance message" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:70 -msgid "Enable maintenance message broadcast" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:76 -msgid "Log errors" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:81 -msgid "Webservices connectivity" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:86 -msgid "Use Google API" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:93 -msgid "Geonames server address" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:101 -msgid "Use recaptcha API" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:109 -msgid "Recaptcha public key" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:115 -msgid "Recaptcha private key" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:120 -msgid "Youtube connectivity" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:125 -msgid "Use youtube API" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:126 ../lib/conf.d/_GV_template.inc:157 -#: ../lib/conf.d/_GV_template.inc:181 -#, php-format -msgid "Create API account at %s, then use %s as callback URL value" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:133 -msgid "Youtube public key" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:139 -msgid "Youtube secret key" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:145 -msgid "Youtube developer key" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:146 -#, php-format -msgid "See %s" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:151 -msgid "FlickR connectivity" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:156 -msgid "Use Flickr API" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:164 -msgid "Flickr public key" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:170 -msgid "Flickr secret key" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:175 -msgid "Dailymotion connectivity" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:180 -msgid "Use Dailymotion API" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:188 -msgid "Dailymotion public key" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:194 -msgid "Dailymotion secret key" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:199 -msgid "Phraseanet client API" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:204 -msgid "Authorize *Phraseanet Navigator*" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:205 -msgid "" -"*Phraseanet Navigator* is a smartphone application that allow user to " -"connect on this instance" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:212 -msgid "Authorize Microsoft Office Plugin to connect." -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:218 -msgid "Documents storage" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:224 -msgid "Default path for datas" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:230 -msgid "Executables settings" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:235 -msgid "php.ini path" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:236 -msgid "Empty if not used" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:243 -msgid "Imagine driver" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:255 -msgid "Number of threads to use for FFMpeg" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:261 -msgid "Maximum number of pages to be extracted from PDF" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:266 -msgid "Main configuration" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:271 -msgid "Enable Forcing authentication to see push content" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:272 -msgid "" -"Adds an option to the push form submission to restrict push recipient(s) to " -"Phraseanet users only." -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:278 -msgid "Set force authentication option to see push content as mandatory" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:279 -msgid "" -"Disallow the possibility for the end user to disable push authentication" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:285 -msgid "Enable possibility to notify users when publishing a new feed entry" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:291 -msgid "Admin email" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:297 -msgid "Display the name of databases and collections" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:304 -msgid "Choose the title of the document to export" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:311 -msgid "Default export title" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:314 -msgid "Document title" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:315 -msgid "Original name" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:321 -msgid "Enable this setting to share on Facebook and Twitter" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:323 -msgid "Disabled" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:324 -msgid "Publishers" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:325 -msgid "Enabled" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:332 -msgid "Homepage" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:338 -msgid "Homepage slideshow" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:341 -msgid "Single image" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:342 -msgid "Slide show" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:344 -msgid "Carousel" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:345 -msgid "Gallery" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:351 -msgid "Search engine" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:357 -msgid "Minimum number of letters before truncation" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:358 -msgid "Used in search engine" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:364 -msgid "Default query" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:370 -msgid "Default searched type" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:371 -msgid "Used when opening the application" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:373 -msgid "Documents" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:374 -msgid "Stories" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:386 -msgid "Anonymous report" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:387 -msgid "Hide information about users" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:393 -msgid "Additionnal modules" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:399 -msgid "Enable thesaurus" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:404 -msgid "Enable multi-doc mode" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:409 -msgid "Enable HD substitution" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:414 -msgid "Enable thumbnail substitution" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:420 -msgid "Emails" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:425 -msgid "Default mail sender address" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:431 -msgid "Prefix for notification emails" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:437 -msgid "Use a SMTP server" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:443 -msgid "Enable SMTP authentication" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:449 -msgid "SMTP host" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:455 -msgid "SMTP port" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:461 -msgid "SMTP encryption" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:472 -msgid "SMTP user" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:478 -msgid "SMTP password" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:483 -msgid "FTP Export" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:488 -msgid "Enable FTP export" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:489 -msgid "Available in multi-export tab" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:495 -msgid "Enable FTP for users" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:496 -msgid "By default it is available for admins" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:501 -msgid "Client" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:506 -msgid "Maximum megabytes allowed for download" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:507 -msgid "If request is bigger, then mail is still available" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:513 -msgid "Search tab position" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:519 -msgid "Advanced search tab position" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:525 -msgid "Topics tab position" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:531 -msgid "Active tab position" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:537 -msgid "Topics display mode" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:539 -msgid "Trees" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:540 ../lib/conf.d/_GV_template.inc:562 -msgid "Drop-down" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:547 -msgid "Enable roll-over on stories" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:553 -msgid "Enable roll-over on basket elements" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:559 -msgid "Collections display mode" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:563 -msgid "Check-box" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:569 -msgid "Display the total size of the document basket" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:575 -msgid "Display proposals tab" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:581 -msgid "Require authentication to download documents" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:582 -msgid "Used for guest account" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:588 -msgid "Users must accept Terms of Use for each export" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:593 -msgid "Registration" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:598 -msgid "Auto select databases" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:599 -msgid "" -"This option disables the selecting of the databases on which a user can " -"register himself, and registration is made on all granted databases." -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:605 -msgid "Enable auto registration" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:610 -msgid "Push configuration" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:615 -msgid "" -"Number of days before the end of the validation to send a reminder email" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:621 -msgid "Default validation links duration" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:622 -msgid "If set to 0, duration is permanent" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:627 -msgid "Robot indexing" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:632 -msgid "Application title" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:638 -msgid "Keywords used for indexing purposes by search engines robots" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:644 -msgid "Application description" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:650 -msgid "Google Analytics identifier" -msgstr "" - -#: ../lib/conf.d/_GV_template.inc:656 -msgid "Allow the website to be indexed by search engines like Google" -msgstr "" From c416383741b6af43f763b26c57190e83e7ab8f5c Mon Sep 17 00:00:00 2001 From: Nicolas Le Goff Date: Tue, 9 Sep 2014 11:30:04 +0200 Subject: [PATCH 16/16] Update locales --- locale/phraseanet.pot | 4522 ++++++++++++++++++----------------------- 1 file changed, 2027 insertions(+), 2495 deletions(-) diff --git a/locale/phraseanet.pot b/locale/phraseanet.pot index ab86bc2ef6..f80265a905 100644 --- a/locale/phraseanet.pot +++ b/locale/phraseanet.pot @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: Phraseanet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-22 17:13+0100\n" -"PO-Revision-Date: 2014-05-22 17:15+0100\n" -"Last-Translator: Romain Neutron \n" +"POT-Creation-Date: 2014-09-09 11:29+0100\n" +"PO-Revision-Date: 2014-09-09 11:29+0100\n" +"Last-Translator: \n" "Language-Team: \n" "Language: Francais\n" "MIME-Version: 1.0\n" @@ -25,531 +25,16 @@ msgstr "" "X-Poedit-SearchPath-6: ../lib/Doctrine\n" "X-Poedit-SearchPath-7: ../bin\n" -#: ../config/_GV_template.php:38 -msgid "HTTP Server" -msgstr "" - -#: ../config/_GV_template.php:43 -msgid "Default language" -msgstr "" - -#: ../config/_GV_template.php:52 -msgid "Static URL" -msgstr "" - -#: ../config/_GV_template.php:53 -msgid "optional" -msgstr "" - -#: ../config/_GV_template.php:58 -msgid "Maintenance state" -msgstr "" - -#: ../config/_GV_template.php:64 -msgid "Maintenance message" -msgstr "" - -#: ../config/_GV_template.php:70 -msgid "Enable maintenance message broadcast" -msgstr "" - -#: ../config/_GV_template.php:76 -msgid "Log errors" -msgstr "" - -#: ../config/_GV_template.php:81 -msgid "Webservices connectivity" -msgstr "" - -#: ../config/_GV_template.php:86 -msgid "Use Google API" -msgstr "" - -#: ../config/_GV_template.php:93 -msgid "Geonames server address" -msgstr "" - -#: ../config/_GV_template.php:101 -msgid "Use recaptcha API" -msgstr "" - -#: ../config/_GV_template.php:109 -msgid "Recaptcha public key" -msgstr "" - -#: ../config/_GV_template.php:115 -msgid "Recaptcha private key" -msgstr "" - -#: ../config/_GV_template.php:120 -msgid "Youtube connectivity" -msgstr "" - -#: ../config/_GV_template.php:125 -msgid "Use youtube API" -msgstr "" - -#: ../config/_GV_template.php:126 ../config/_GV_template.php:157 -#: ../config/_GV_template.php:181 -#, php-format -msgid "Create API account at %s, then use %s as callback URL value" -msgstr "" - -#: ../config/_GV_template.php:133 -msgid "Youtube public key" -msgstr "" - -#: ../config/_GV_template.php:139 -msgid "Youtube secret key" -msgstr "" - -#: ../config/_GV_template.php:145 -msgid "Youtube developer key" -msgstr "" - -#: ../config/_GV_template.php:146 -#, php-format -msgid "See %s" -msgstr "" - -#: ../config/_GV_template.php:151 -msgid "FlickR connectivity" -msgstr "" - -#: ../config/_GV_template.php:156 -msgid "Use Flickr API" -msgstr "" - -#: ../config/_GV_template.php:164 -msgid "Flickr public key" -msgstr "" - -#: ../config/_GV_template.php:170 -msgid "Flickr secret key" -msgstr "" - -#: ../config/_GV_template.php:175 -msgid "Dailymotion connectivity" -msgstr "" - -#: ../config/_GV_template.php:180 -msgid "Use Dailymotion API" -msgstr "" - -#: ../config/_GV_template.php:188 -msgid "Dailymotion public key" -msgstr "" - -#: ../config/_GV_template.php:194 -msgid "Dailymotion secret key" -msgstr "" - -#: ../config/_GV_template.php:199 -msgid "Phraseanet client API" -msgstr "" - -#: ../config/_GV_template.php:204 -msgid "Authorize *Phraseanet Navigator*" -msgstr "" - -#: ../config/_GV_template.php:205 -msgid "" -"*Phraseanet Navigator* is a smartphone application that allow user to " -"connect on this instance" -msgstr "" - -#: ../config/_GV_template.php:212 -msgid "Authorize Microsoft Office Plugin to connect." -msgstr "" - -#: ../config/_GV_template.php:218 -msgid "Documents storage" -msgstr "" - -#: ../config/_GV_template.php:224 -msgid "Default path for datas" -msgstr "" - -#: ../config/_GV_template.php:230 -msgid "Executables settings" -msgstr "" - -#: ../config/_GV_template.php:235 -msgid "php.ini path" -msgstr "" - -#: ../config/_GV_template.php:236 -msgid "Empty if not used" -msgstr "" - -#: ../config/_GV_template.php:243 -msgid "Imagine driver" -msgstr "" - -#: ../config/_GV_template.php:255 -msgid "Number of threads to use for FFMpeg" -msgstr "" - -#: ../config/_GV_template.php:261 -msgid "Maximum number of pages to be extracted from PDF" -msgstr "" - -#: ../config/_GV_template.php:266 -msgid "Main configuration" -msgstr "" - -#: ../config/_GV_template.php:271 -msgid "Enable Forcing authentication to see push content" -msgstr "" - -#: ../config/_GV_template.php:272 -msgid "" -"Adds an option to the push form submission to restrict push recipient(s) to " -"Phraseanet users only." -msgstr "" - -#: ../config/_GV_template.php:278 -msgid "Admin email" -msgstr "" - -#: ../config/_GV_template.php:284 -msgid "Display the name of databases and collections" -msgstr "" - -#: ../config/_GV_template.php:291 -msgid "Choose the title of the document to export" -msgstr "" - -#: ../config/_GV_template.php:298 -msgid "Default export title" -msgstr "" - -#: ../config/_GV_template.php:301 -msgid "Document title" -msgstr "" - -#: ../config/_GV_template.php:302 -msgid "Original name" -msgstr "" - -#: ../config/_GV_template.php:308 -msgid "Enable this setting to share on Facebook and Twitter" -msgstr "" - -#: ../config/_GV_template.php:310 -msgid "Disabled" -msgstr "" - -#: ../config/_GV_template.php:311 -msgid "Publishers" -msgstr "" - -#: ../config/_GV_template.php:312 -msgid "Enabled" -msgstr "" - -#: ../config/_GV_template.php:319 -msgid "Homepage" -msgstr "" - -#: ../config/_GV_template.php:325 -msgid "Homepage slideshow" -msgstr "" - -#: ../config/_GV_template.php:328 -msgid "Single image" -msgstr "" - -#: ../config/_GV_template.php:329 -msgid "Slide show" -msgstr "" - -#: ../config/_GV_template.php:331 -msgid "Carousel" -msgstr "" - -#: ../config/_GV_template.php:332 -msgid "Gallery" -msgstr "" - -#: ../config/_GV_template.php:338 -msgid "Search engine" -msgstr "" - -#: ../config/_GV_template.php:344 -msgid "Minimum number of letters before truncation" -msgstr "" - -#: ../config/_GV_template.php:345 -msgid "Used in search engine" -msgstr "" - -#: ../config/_GV_template.php:351 -msgid "Default query" -msgstr "" - -#: ../config/_GV_template.php:357 -msgid "Default searched type" -msgstr "" - -#: ../config/_GV_template.php:358 -msgid "Used when opening the application" -msgstr "" - -#: ../config/_GV_template.php:360 -msgid "Documents" -msgstr "" - -#: ../config/_GV_template.php:361 -msgid "Stories" -msgstr "" - -#: ../config/_GV_template.php:367 -#: ../tmp/cache_twig/51/0c/18503088e319b8875c981341ba05114f38df1aac9e32d800428337ffffeb.php:312 -msgid "Report" -msgstr "" - -#: ../config/_GV_template.php:373 -msgid "Anonymous report" -msgstr "" - -#: ../config/_GV_template.php:374 -msgid "Hide information about users" -msgstr "" - -#: ../config/_GV_template.php:380 -msgid "Additionnal modules" -msgstr "" - -#: ../config/_GV_template.php:386 -msgid "Enable thesaurus" -msgstr "" - -#: ../config/_GV_template.php:391 -msgid "Enable multi-doc mode" -msgstr "" - -#: ../config/_GV_template.php:396 -msgid "Enable HD substitution" -msgstr "" - -#: ../config/_GV_template.php:401 -msgid "Enable thumbnail substitution" -msgstr "" - -#: ../config/_GV_template.php:407 -msgid "Emails" -msgstr "" - -#: ../config/_GV_template.php:412 -msgid "Default mail sender address" -msgstr "" - -#: ../config/_GV_template.php:418 -msgid "Prefix for notification emails" -msgstr "" - -#: ../config/_GV_template.php:424 -msgid "Use a SMTP server" -msgstr "" - -#: ../config/_GV_template.php:430 -msgid "Enable SMTP authentication" -msgstr "" - -#: ../config/_GV_template.php:436 -msgid "SMTP host" -msgstr "" - -#: ../config/_GV_template.php:442 -msgid "SMTP port" -msgstr "" - -#: ../config/_GV_template.php:448 -msgid "SMTP encryption" -msgstr "" - -#: ../config/_GV_template.php:451 -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:450 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:171 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:450 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:171 -msgid "None" -msgstr "" - -#: ../config/_GV_template.php:459 -msgid "SMTP user" -msgstr "" - -#: ../config/_GV_template.php:465 -msgid "SMTP password" -msgstr "" - -#: ../config/_GV_template.php:470 -msgid "FTP Export" -msgstr "" - -#: ../config/_GV_template.php:475 -msgid "Enable FTP export" -msgstr "" - -#: ../config/_GV_template.php:476 -msgid "Available in multi-export tab" -msgstr "" - -#: ../config/_GV_template.php:482 -msgid "Enable FTP for users" -msgstr "" - -#: ../config/_GV_template.php:483 -msgid "By default it is available for admins" -msgstr "" - -#: ../config/_GV_template.php:488 -msgid "Client" -msgstr "" - -#: ../config/_GV_template.php:493 -msgid "Maximum megabytes allowed for download" -msgstr "" - -#: ../config/_GV_template.php:494 -msgid "If request is bigger, then mail is still available" -msgstr "" - -#: ../config/_GV_template.php:500 -msgid "Search tab position" -msgstr "" - -#: ../config/_GV_template.php:506 -msgid "Advanced search tab position" -msgstr "" - -#: ../config/_GV_template.php:512 -msgid "Topics tab position" -msgstr "" - -#: ../config/_GV_template.php:518 -msgid "Active tab position" -msgstr "" - -#: ../config/_GV_template.php:524 -msgid "Topics display mode" -msgstr "" - -#: ../config/_GV_template.php:526 -msgid "Trees" -msgstr "" - -#: ../config/_GV_template.php:527 ../config/_GV_template.php:549 -msgid "Drop-down" -msgstr "" - -#: ../config/_GV_template.php:534 -msgid "Enable roll-over on stories" -msgstr "" - -#: ../config/_GV_template.php:540 -msgid "Enable roll-over on basket elements" -msgstr "" - -#: ../config/_GV_template.php:546 -msgid "Collections display mode" -msgstr "" - -#: ../config/_GV_template.php:550 -msgid "Check-box" -msgstr "" - -#: ../config/_GV_template.php:556 -msgid "Display the total size of the document basket" -msgstr "" - -#: ../config/_GV_template.php:562 -msgid "Display proposals tab" -msgstr "" - -#: ../config/_GV_template.php:568 -msgid "Require authentication to download documents" -msgstr "" - -#: ../config/_GV_template.php:569 -msgid "Used for guest account" -msgstr "" - -#: ../config/_GV_template.php:575 -msgid "Users must accept Terms of Use for each export" -msgstr "" - -#: ../config/_GV_template.php:580 -msgid "Registration" -msgstr "" - -#: ../config/_GV_template.php:585 -msgid "Auto select databases" -msgstr "" - -#: ../config/_GV_template.php:586 -msgid "" -"This option disables the selecting of the databases on which a user can " -"register himself, and registration is made on all granted databases." -msgstr "" - -#: ../config/_GV_template.php:592 -msgid "Enable auto registration" -msgstr "" - -#: ../config/_GV_template.php:597 -msgid "Push configuration" -msgstr "" - -#: ../config/_GV_template.php:602 -msgid "" -"Number of days before the end of the validation to send a reminder email" -msgstr "" - -#: ../config/_GV_template.php:608 -msgid "Default validation links duration" -msgstr "" - -#: ../config/_GV_template.php:609 -msgid "If set to 0, duration is permanent" -msgstr "" - -#: ../config/_GV_template.php:614 -msgid "Robot indexing" -msgstr "" - -#: ../config/_GV_template.php:619 -msgid "Application title" -msgstr "" - -#: ../config/_GV_template.php:625 -msgid "Keywords used for indexing purposes by search engines robots" -msgstr "" - -#: ../config/_GV_template.php:631 -msgid "Application description" -msgstr "" - -#: ../config/_GV_template.php:637 -msgid "Google Analytics identifier" -msgstr "" - -#: ../config/_GV_template.php:643 -msgid "Allow the website to be indexed by search engines like Google" -msgstr "" - -#: ../lib/classes/databox.php:1324 +#: ../lib/classes/databox.php:1338 msgid "ERREUR : TOUTES LES BALISES subdefgroup necessitent un attribut name" msgstr "" -#: ../lib/classes/databox.php:1335 +#: ../lib/classes/databox.php:1349 msgid "" "ERREUR : Les name de subdef sont uniques par groupe de subdefs et necessaire" msgstr "" -#: ../lib/classes/databox.php:1339 +#: ../lib/classes/databox.php:1353 msgid "" "ERREUR : La classe de subdef est necessaire et egal a \"thumbnail\",\"preview" "\" ou \"document\"" @@ -557,14 +42,12 @@ msgstr "" #: ../lib/classes/phrasea.php:112 ../lib/classes/record/preview.php:541 #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:30 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:30 #: ../lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:121 msgid "admin::monitor: module production" msgstr "" #: ../lib/classes/phrasea.php:113 ../lib/classes/record/preview.php:543 #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:40 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:40 #: ../lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:122 msgid "admin::monitor: module client" msgstr "" @@ -572,8 +55,6 @@ msgstr "" #: ../lib/classes/phrasea.php:114 #: ../tmp/cache_twig/63/ac/f0b1df9d181803f7d613db17722a90308e78771de5d4dd4d3cd3e097e205.php:143 #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:50 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:50 -#: ../tmp/cache_twig/7f/42/293a8ca36c49038dbb1c6d7dd044bea4fad5b4e69638ca8f699161384ebf.php:143 #: ../lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:123 msgid "admin::monitor: module admin" msgstr "" @@ -581,8 +62,6 @@ msgstr "" #: ../lib/classes/phrasea.php:115 #: ../tmp/cache_twig/63/ac/f0b1df9d181803f7d613db17722a90308e78771de5d4dd4d3cd3e097e205.php:170 #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:60 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:60 -#: ../tmp/cache_twig/7f/42/293a8ca36c49038dbb1c6d7dd044bea4fad5b4e69638ca8f699161384ebf.php:170 #: ../lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:124 msgid "admin::monitor: module report" msgstr "" @@ -590,15 +69,12 @@ msgstr "" #: ../lib/classes/phrasea.php:116 #: ../tmp/cache_twig/63/ac/f0b1df9d181803f7d613db17722a90308e78771de5d4dd4d3cd3e097e205.php:115 #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:70 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:70 -#: ../tmp/cache_twig/7f/42/293a8ca36c49038dbb1c6d7dd044bea4fad5b4e69638ca8f699161384ebf.php:115 #: ../lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:125 msgid "admin::monitor: module thesaurus" msgstr "" #: ../lib/classes/phrasea.php:117 #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:80 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:80 #: ../lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:126 msgid "admin::monitor: module comparateur" msgstr "" @@ -606,8 +82,6 @@ msgstr "" #: ../lib/classes/phrasea.php:118 #: ../tmp/cache_twig/63/ac/f0b1df9d181803f7d613db17722a90308e78771de5d4dd4d3cd3e097e205.php:189 #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:90 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:90 -#: ../tmp/cache_twig/7f/42/293a8ca36c49038dbb1c6d7dd044bea4fad5b4e69638ca8f699161384ebf.php:189 #: ../lib/Alchemy/Phrasea/Controller/Lightbox.php:242 #: ../lib/Alchemy/Phrasea/Controller/Lightbox.php:296 #: ../lib/Alchemy/Phrasea/Controller/Lightbox.php:329 @@ -617,7 +91,6 @@ msgstr "" #: ../lib/classes/phrasea.php:119 #: ../tmp/cache_twig/63/ac/f0b1df9d181803f7d613db17722a90308e78771de5d4dd4d3cd3e097e205.php:229 -#: ../tmp/cache_twig/7f/42/293a8ca36c49038dbb1c6d7dd044bea4fad5b4e69638ca8f699161384ebf.php:229 #: ../lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:128 msgid "admin::monitor: module upload" msgstr "" @@ -716,9 +189,7 @@ msgid "Your install might need to build some sub-definitions" msgstr "" #: ../lib/classes/queries.php:168 ../lib/classes/queries.php:181 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:197 -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1405 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1405 +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1398 #: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:202 #: ../tmp/cache_twig/08/16/03bf13cb1a99a73a5231f0d0f7f0e327ccd12cd3288ac87096407b704187.php:105 #: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:197 @@ -800,21 +271,17 @@ msgstr "" msgid "export::ftp: reglages manuels" msgstr "" -#: ../lib/classes/API/V1/adapter.php:1106 -#: ../lib/classes/API/V1/adapter.php:1152 -#: ../lib/classes/API/V1/adapter.php:1202 -#: ../lib/classes/API/V1/adapter.php:1226 +#: ../lib/classes/API/V1/adapter.php:1117 +#: ../lib/classes/API/V1/adapter.php:1163 +#: ../lib/classes/API/V1/adapter.php:1213 +#: ../lib/classes/API/V1/adapter.php:1237 #: ../tmp/cache_twig/01/76/7202d9b016d6892bf9a0c3d8d47d7c372edd6aa7c646076d04d09c1a198d.php:46 -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:58 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:860 #: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:228 #: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:331 #: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:58 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:65 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:65 #: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:860 #: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:53 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:53 #: ../lib/Alchemy/Phrasea/Controller/Admin/Collection.php:550 #: ../lib/Alchemy/Phrasea/Controller/Admin/Collection.php:585 #: ../lib/Alchemy/Phrasea/Controller/Admin/Collection.php:620 @@ -843,20 +310,20 @@ msgstr "" #: ../lib/Alchemy/Phrasea/Controller/Prod/Lazaret.php:428 #: ../lib/Alchemy/Phrasea/Controller/Prod/Lazaret.php:502 #: ../lib/Alchemy/Phrasea/Controller/Prod/MoveCollection.php:113 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:316 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:324 #: ../lib/Alchemy/Phrasea/Controller/Prod/Feed.php:68 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:118 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:182 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:200 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:206 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:115 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:179 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:201 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:207 msgid "An error occured" msgstr "" -#: ../lib/classes/API/V1/adapter.php:1200 +#: ../lib/classes/API/V1/adapter.php:1211 msgid "Record Not Found" msgstr "" -#: ../lib/classes/API/V1/adapter.php:1224 +#: ../lib/classes/API/V1/adapter.php:1235 msgid "Story Not Found" msgstr "" @@ -1090,8 +557,8 @@ msgstr "" #: ../lib/classes/task/period/archive.php:232 #: ../lib/classes/task/period/RecordMover.php:288 #: ../lib/classes/task/period/ftpPull.php:226 -#: ../lib/classes/task/period/subdef.php:222 -#: ../lib/classes/task/period/writemeta.php:172 +#: ../lib/classes/task/period/subdef.php:269 +#: ../lib/classes/task/period/writemeta.php:180 #: ../lib/classes/task/period/ftp.php:158 msgid "task::_common_:periodicite de la tache" msgstr "" @@ -1100,8 +567,8 @@ msgstr "" #: ../lib/classes/task/period/archive.php:242 #: ../lib/classes/task/period/RecordMover.php:291 #: ../lib/classes/task/period/ftpPull.php:229 -#: ../lib/classes/task/period/subdef.php:225 -#: ../lib/classes/task/period/writemeta.php:175 +#: ../lib/classes/task/period/subdef.php:272 +#: ../lib/classes/task/period/writemeta.php:183 #: ../lib/classes/task/period/ftp.php:161 msgid "task::_common_:secondes (unite temporelle)" msgstr "" @@ -1174,47 +641,100 @@ msgstr "" msgid "task::ftp:utiliser SSL" msgstr "" -#: ../lib/classes/task/period/subdef.php:43 +#: ../lib/classes/task/period/subdef.php:45 msgid "task::subdef:creation des sous definitions des documents d'origine" msgstr "" -#: ../lib/classes/task/period/subdef.php:54 +#: ../lib/classes/task/period/subdef.php:56 msgid "task::subdef:creation des sous definitions" msgstr "" -#: ../lib/classes/task/period/subdef.php:229 +#: ../lib/classes/task/period/subdef.php:276 +#, php-format +msgid "Databox" +msgstr "" + +#: ../lib/classes/task/period/subdef.php:279 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:244 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:269 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:294 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:319 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:344 +#: ../tmp/cache_twig/9d/de/4a3fc48903fedfcf545b274e1584032d25e8b5d0713f2d25c0c3ed18920b.php:42 +msgid "All" +msgstr "" + +#: ../lib/classes/task/period/subdef.php:293 +msgid "recordtype" +msgstr "" + +#: ../lib/classes/task/period/subdef.php:296 +#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:45 +msgid "image" +msgstr "" + +#: ../lib/classes/task/period/subdef.php:299 +#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:63 +msgid "video" +msgstr "" + +#: ../lib/classes/task/period/subdef.php:302 +#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:69 +msgid "audio" +msgstr "" + +#: ../lib/classes/task/period/subdef.php:305 +#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:51 +#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:244 +#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:397 +msgid "document" +msgstr "" + +#: ../lib/classes/task/period/subdef.php:308 +msgid "flash" +msgstr "" + +#: ../lib/classes/task/period/subdef.php:311 +msgid "unknown" +msgstr "" + +#: ../lib/classes/task/period/subdef.php:316 #, php-format msgid "Number of records to process per batch" msgstr "" -#: ../lib/classes/task/period/subdef.php:235 -#: ../lib/classes/task/period/writemeta.php:187 +#: ../lib/classes/task/period/subdef.php:322 +#: ../lib/classes/task/period/writemeta.php:203 msgid "Restart the task every X records" msgstr "" -#: ../lib/classes/task/period/subdef.php:241 +#: ../lib/classes/task/period/subdef.php:328 msgid "Restart the task if memory reaches" msgstr "" -#: ../lib/classes/task/period/subdef.php:248 +#: ../lib/classes/task/period/subdef.php:335 msgid "Try to extract embedded thumbnails" msgstr "" -#: ../lib/classes/task/period/writemeta.php:24 +#: ../lib/classes/task/period/writemeta.php:29 msgid "" "task::writemeta:(re)ecriture des metadatas dans les documents (et subdefs " "concernees)" msgstr "" -#: ../lib/classes/task/period/writemeta.php:35 +#: ../lib/classes/task/period/writemeta.php:41 msgid "task::writemeta:ecriture des metadatas" msgstr "" -#: ../lib/classes/task/period/writemeta.php:182 +#: ../lib/classes/task/period/writemeta.php:190 msgid "task::writemeta:effacer les metadatas non presentes dans la structure" msgstr "" -#: ../lib/classes/task/period/writemeta.php:193 +#: ../lib/classes/task/period/writemeta.php:198 +msgid "task::writemeta:Compatibilité MWG" +msgstr "" + +#: ../lib/classes/task/period/writemeta.php:209 msgid "task::_common_:records, ou si la memoire depasse" msgstr "" @@ -1438,7 +958,6 @@ msgstr "" #: ../lib/classes/eventsmanager/notify/order.php:161 #: ../tmp/cache_twig/63/ac/f0b1df9d181803f7d613db17722a90308e78771de5d4dd4d3cd3e097e205.php:269 -#: ../tmp/cache_twig/7f/42/293a8ca36c49038dbb1c6d7dd044bea4fad5b4e69638ca8f699161384ebf.php:269 msgid "Orders manager" msgstr "" @@ -1465,12 +984,9 @@ msgid "" msgstr "" #: ../lib/classes/eventsmanager/notify/autoregister.php:195 -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:843 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:295 #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:670 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:295 #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:290 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:290 #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:163 #: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:843 #: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:72 @@ -1479,10 +995,8 @@ msgid "admin::compte-utilisateur nom" msgstr "" #: ../lib/classes/eventsmanager/notify/autoregister.php:196 -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:829 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:297 #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:683 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:297 #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:176 #: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:829 #: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:65 @@ -1491,13 +1005,9 @@ msgid "admin::compte-utilisateur prenom" msgstr "" #: ../lib/classes/eventsmanager/notify/autoregister.php:197 -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:857 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:307 #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:696 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:327 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:307 #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:314 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:314 #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:189 #: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:857 #: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:327 @@ -1505,16 +1015,16 @@ msgstr "" msgid "admin::compte-utilisateur email" msgstr "" -#: ../lib/classes/eventsmanager/notify/feed.php:150 +#: ../lib/classes/eventsmanager/notify/feed.php:148 #, php-format msgid "%1$s has published %2$s" msgstr "" -#: ../lib/classes/eventsmanager/notify/feed.php:166 +#: ../lib/classes/eventsmanager/notify/feed.php:164 msgid "Feeds" msgstr "" -#: ../lib/classes/eventsmanager/notify/feed.php:175 +#: ../lib/classes/eventsmanager/notify/feed.php:173 msgid "Receive notification when a publication is available" msgstr "" @@ -1606,7 +1116,7 @@ msgid "Refus d'elements de commande" msgstr "" #: ../lib/classes/module/report.php:661 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:251 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:250 #: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:132 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:467 msgid "report:: utilisateur" @@ -1614,7 +1124,7 @@ msgstr "" #: ../lib/classes/module/report.php:662 #: ../lib/classes/module/report/filter.php:68 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:322 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:321 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:78 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:307 msgid "report:: collections" @@ -1636,7 +1146,7 @@ msgstr "" #: ../lib/classes/module/report.php:664 #: ../lib/classes/module/report/filter.php:69 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:323 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:322 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:79 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:308 msgid "report:: commentaire" @@ -1647,7 +1157,7 @@ msgstr "" #: ../lib/classes/module/report/filter.php:70 #: ../tmp/cache_twig/94/8a/600a8fd8ba7ee3e38728d78a824d0d0eb3e3b979f4478ababab2a8f774a7.php:226 #: ../tmp/cache_twig/94/8a/600a8fd8ba7ee3e38728d78a824d0d0eb3e3b979f4478ababab2a8f774a7.php:238 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:252 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:251 #: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:190 #: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:242 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:82 @@ -1656,9 +1166,9 @@ msgstr "" #: ../lib/classes/module/report.php:666 ../lib/classes/module/report.php:667 #: ../lib/classes/module/report/filter.php:59 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:190 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:253 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:319 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:189 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:252 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:318 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:58 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:71 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:75 @@ -1671,8 +1181,8 @@ msgstr "" #: ../lib/classes/module/report.php:668 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:185 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:289 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:254 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:324 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:253 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:323 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:309 msgid "report:: fonction" msgstr "" @@ -1680,8 +1190,8 @@ msgstr "" #: ../lib/classes/module/report.php:669 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:193 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:297 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:255 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:325 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:254 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:324 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:310 msgid "report:: activite" msgstr "" @@ -1689,8 +1199,8 @@ msgstr "" #: ../lib/classes/module/report.php:670 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:197 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:301 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:256 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:326 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:255 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:325 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:311 msgid "report:: pays" msgstr "" @@ -1698,18 +1208,18 @@ msgstr "" #: ../lib/classes/module/report.php:671 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:189 #: ../tmp/cache_twig/c1/34/36f07763182c27f018a2dd7fcfe342ddf207d0facb87eb79e500855ae96e.php:293 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:257 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:327 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:256 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:326 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:312 msgid "report:: societe" msgstr "" #: ../lib/classes/module/report.php:672 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:449 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:455 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:460 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:465 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:470 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:448 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:454 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:459 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:464 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:469 #: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:191 #: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:243 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:100 @@ -1718,11 +1228,11 @@ msgid "report:: nombre" msgstr "" #: ../lib/classes/module/report.php:673 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:450 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:456 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:461 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:466 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:471 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:449 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:455 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:460 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:465 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:470 msgid "report:: pourcentage" msgstr "" @@ -1732,8 +1242,8 @@ msgstr "" #: ../lib/classes/module/report.php:675 #: ../lib/classes/module/report/filter.php:66 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:320 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:389 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:319 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:388 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:57 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:76 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:296 @@ -1745,17 +1255,17 @@ msgid "report:: type d'action" msgstr "" #: ../lib/classes/module/report.php:678 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:391 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:390 msgid "report:: fichier" msgstr "" #: ../lib/classes/module/report.php:679 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:392 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:391 msgid "report:: type" msgstr "" #: ../lib/classes/module/report.php:680 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:393 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:392 msgid "report:: taille" msgstr "" @@ -1765,7 +1275,7 @@ msgstr "" #: ../lib/classes/module/report.php:682 #: ../lib/classes/module/report/filter.php:67 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:390 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:389 msgid "phraseanet:: sous definition" msgstr "" @@ -1845,7 +1355,7 @@ msgstr "" msgid "decembre" msgstr "" -#: ../lib/classes/module/console/systemUpgrade.php:61 +#: ../lib/classes/module/console/systemUpgrade.php:55 msgid "Continuer ?" msgstr "" @@ -1882,7 +1392,7 @@ msgid "report:: edited documents" msgstr "" #: ../lib/classes/module/report/nav.php:103 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:448 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:447 msgid "report:: navigateur" msgstr "" @@ -1891,18 +1401,18 @@ msgid "report:: Plateforme" msgstr "" #: ../lib/classes/module/report/nav.php:219 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:464 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:463 msgid "report:: resolution" msgstr "" #: ../lib/classes/module/report/nav.php:279 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:454 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:453 msgid "report:: navigateurs et plateforme" msgstr "" #: ../lib/classes/module/report/nav.php:340 #: ../lib/classes/module/report/filter.php:61 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:192 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:191 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:72 msgid "report:: modules" msgstr "" @@ -1945,37 +1455,37 @@ msgstr "" #: ../tmp/cache_twig/94/8a/600a8fd8ba7ee3e38728d78a824d0d0eb3e3b979f4478ababab2a8f774a7.php:208 #: ../tmp/cache_twig/86/96/c50474d682d60204be567efebad9abb32aea7fe04e1aae0a24cd042dd09b.php:48 #: ../tmp/cache_twig/5d/ad/5b91b7a6cfc18481894d2b8c7bbe5d265dc8cfc78a8f648f76a7fd93264c.php:48 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:388 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:387 msgid "report:: telechargements" msgstr "" #: ../lib/classes/module/report/filter.php:58 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:189 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:188 msgid "phraseanet::utilisateurs" msgstr "" #: ../lib/classes/module/report/filter.php:60 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:191 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:190 msgid "report:: IP" msgstr "" #: ../lib/classes/module/report/filter.php:62 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:193 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:192 msgid "report::fonction" msgstr "" #: ../lib/classes/module/report/filter.php:63 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:194 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:193 msgid "report::activite" msgstr "" #: ../lib/classes/module/report/filter.php:64 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:195 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:194 msgid "report::pays" msgstr "" #: ../lib/classes/module/report/filter.php:65 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:196 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:195 msgid "report::societe" msgstr "" @@ -2104,7 +1614,6 @@ msgstr "" #: ../tmp/cache_twig/53/40/2f1183236c852bbb0e14498ba61718265ab5a71a0b9a54337c931a779abf.php:169 #: ../tmp/cache_twig/63/ac/f0b1df9d181803f7d613db17722a90308e78771de5d4dd4d3cd3e097e205.php:422 -#: ../tmp/cache_twig/7f/42/293a8ca36c49038dbb1c6d7dd044bea4fad5b4e69638ca8f699161384ebf.php:422 #: ../tmp/cache_twig/5e/c4/1e793f024e5b3bf2519ff6a8de43a43baa130c27c68101a37439bb8d1362.php:169 msgid "phraseanet:: deconnection" msgstr "" @@ -2131,7 +1640,6 @@ msgstr "" #: ../tmp/cache_twig/7a/72/f20894272ff1593d8f0771e60af00d476051d6843ac928e4937209748a05.php:284 #: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:516 #: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:524 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:2048 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:2048 #: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:56 #: ../lib/Alchemy/Phrasea/Controller/Client/Root.php:276 @@ -2143,10 +1651,8 @@ msgid "boutton::enregistrer" msgstr "" #: ../tmp/cache_twig/01/76/7202d9b016d6892bf9a0c3d8d47d7c372edd6aa7c646076d04d09c1a198d.php:36 -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:48 #: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:48 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:55 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:55 #: ../lib/Alchemy/Phrasea/Controller/Admin/Collection.php:984 #: ../lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1022 #: ../lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1061 @@ -2289,10 +1795,6 @@ msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:567 #: ../tmp/cache_twig/96/a1/7b38f615336af0c84683a91ace70b9aa67c1a43acb498429d6882ac2dfbc.php:132 #: ../tmp/cache_twig/96/a1/7b38f615336af0c84683a91ace70b9aa67c1a43acb498429d6882ac2dfbc.php:252 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:399 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:455 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:511 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:567 #: ../tmp/cache_twig/5f/5b/af90ed6dd30d3a17dd01e65d349b45edf4aad5dadbb00da847719774c6d7.php:416 msgid "Select files..." msgstr "" @@ -2300,7 +1802,6 @@ msgstr "" #: ../tmp/cache_twig/94/90/cc824cded39dcf79a157b837e4df1e45ddc8623271a52ff7f6c1574c666a.php:131 #: ../tmp/cache_twig/3b/ab/b47f963b377299aea801c165a16a39fc97d6a60d7005cd70f666315b2bce.php:82 #: ../tmp/cache_twig/86/95/a766bab60e20263f3a76e303a87aef30aeed628c7887227aac384b9ffdc4.php:78 -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:996 #: ../tmp/cache_twig/6e/bd/f9193590d15ae5f9c4d187bb1e6b891149980ed7702ba39fadf5d6feead3.php:78 #: ../tmp/cache_twig/c2/cd/0edfdf965cae686928b893aecee859cc95eabd7c0f1d0e9529d886303081.php:78 #: ../tmp/cache_twig/2b/16/5fc7947aac4b3242f75df1003a949bea49617571578732ab068bce43637e.php:213 @@ -2324,9 +1825,7 @@ msgstr "" #: ../tmp/cache_twig/94/90/cc824cded39dcf79a157b837e4df1e45ddc8623271a52ff7f6c1574c666a.php:146 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:594 #: ../tmp/cache_twig/96/a1/7b38f615336af0c84683a91ace70b9aa67c1a43acb498429d6882ac2dfbc.php:350 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:594 -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:694 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:694 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:718 msgid "" "Invalid file type, only (%supported_file_types%) file formats are supported" msgstr "" @@ -2365,7 +1864,7 @@ msgstr "" #: ../tmp/cache_twig/94/8a/600a8fd8ba7ee3e38728d78a824d0d0eb3e3b979f4478ababab2a8f774a7.php:151 #: ../tmp/cache_twig/94/8a/600a8fd8ba7ee3e38728d78a824d0d0eb3e3b979f4478ababab2a8f774a7.php:169 #: ../tmp/cache_twig/94/8a/600a8fd8ba7ee3e38728d78a824d0d0eb3e3b979f4478ababab2a8f774a7.php:223 -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:318 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:317 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:305 msgid "report:: utilisateurs" msgstr "" @@ -2403,7 +1902,7 @@ msgid "report:: preview les plus telecharges" msgstr "" #: ../tmp/cache_twig/94/8a/600a8fd8ba7ee3e38728d78a824d0d0eb3e3b979f4478ababab2a8f774a7.php:205 -#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:349 +#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:347 msgid "report:: preview" msgstr "" @@ -2471,22 +1970,17 @@ msgid "phraseanet:: presentation des resultats" msgstr "" #: ../tmp/cache_twig/3b/07/a9a3906b11952256cf2866410a28899d5afd5215ff59479df7cdac37a126.php:397 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:606 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1055 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:606 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1055 msgid "phraseanet::type:: documents" msgstr "" #: ../tmp/cache_twig/3b/07/a9a3906b11952256cf2866410a28899d5afd5215ff59479df7cdac37a126.php:405 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:618 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:618 msgid "phraseanet::type:: reportages" msgstr "" #: ../tmp/cache_twig/3b/07/a9a3906b11952256cf2866410a28899d5afd5215ff59479df7cdac37a126.php:419 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:320 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:588 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:320 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:588 #: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:50 @@ -2504,8 +1998,6 @@ msgid "" msgstr "" #: ../tmp/cache_twig/3b/07/a9a3906b11952256cf2866410a28899d5afd5215ff59479df7cdac37a126.php:452 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:235 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:239 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:235 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:239 msgid "phraseanet:: propositions" @@ -2516,13 +2008,11 @@ msgid "phraseanet:: historique" msgstr "" #: ../tmp/cache_twig/3b/07/a9a3906b11952256cf2866410a28899d5afd5215ff59479df7cdac37a126.php:478 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:668 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:668 msgid "boutton:: selectionner toutes les bases" msgstr "" #: ../tmp/cache_twig/3b/07/a9a3906b11952256cf2866410a28899d5afd5215ff59479df7cdac37a126.php:482 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:673 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:673 msgid "boutton:: selectionner aucune base" msgstr "" @@ -2533,13 +2023,11 @@ msgid "" msgstr "" #: ../tmp/cache_twig/3b/07/a9a3906b11952256cf2866410a28899d5afd5215ff59479df7cdac37a126.php:703 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:950 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:950 msgid "phraseanet::time:: de" msgstr "" #: ../tmp/cache_twig/3b/07/a9a3906b11952256cf2866410a28899d5afd5215ff59479df7cdac37a126.php:709 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:963 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:963 msgid "phraseanet::time:: a" msgstr "" @@ -2565,26 +2053,22 @@ msgid "client::recherche: filtrer par champs : tous les champs" msgstr "" #: ../tmp/cache_twig/3b/07/a9a3906b11952256cf2866410a28899d5afd5215ff59479df7cdac37a126.php:987 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:2006 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:2006 msgid "preview:: Description" msgstr "" #: ../tmp/cache_twig/3b/07/a9a3906b11952256cf2866410a28899d5afd5215ff59479df7cdac37a126.php:991 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:2010 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:2010 msgid "preview:: Historique" msgstr "" #: ../tmp/cache_twig/3b/07/a9a3906b11952256cf2866410a28899d5afd5215ff59479df7cdac37a126.php:995 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:2017 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:2017 msgid "preview:: Popularite" msgstr "" #: ../tmp/cache_twig/3b/07/a9a3906b11952256cf2866410a28899d5afd5215ff59479df7cdac37a126.php:1024 -#: ../tmp/cache_twig/fe/10/44fd599573da2ce552a9f03c8515023a4a847cdadb287e12e2327782eb0e.php:88 -#: ../tmp/cache_twig/77/56/1124cf333071bb255188be0cabe9d749e349e9b29d513f8e948d83f7e2e3.php:488 +#: ../tmp/cache_twig/77/56/1124cf333071bb255188be0cabe9d749e349e9b29d513f8e948d83f7e2e3.php:490 #: ../tmp/cache_twig/39/b4/7f3771406edf35ef9d791fd45a7048688d56c740ced66241b76f382ccd5a.php:144 #: ../tmp/cache_twig/39/b4/7f3771406edf35ef9d791fd45a7048688d56c740ced66241b76f382ccd5a.php:338 #: ../tmp/cache_twig/e9/3e/149ce3009cd2c4aa24e1f29bdab9e7dee50b5d5c1c97f151abfb9e481ae3.php:83 @@ -2595,8 +2079,6 @@ msgstr "" #: ../tmp/cache_twig/a9/19/8f9ba6319a22ee423e3fc74e98bcdbf9814a2ba850ffce3d04de14936907.php:29 #: ../tmp/cache_twig/a9/65/bb886fd354edf20ac34b522a597a9941965457604ab705ca7e84a17eb45c.php:231 #: ../tmp/cache_twig/9c/16/a0e4180a47fa7ae7b8a328953789ff927d94aef0808c0eaf8e4ced094a0e.php:28 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1086 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:2142 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1086 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:2142 msgid "action : exporter" @@ -2611,7 +2093,7 @@ msgstr "" #: ../tmp/cache_twig/a1/71/db604186696f9f739dc9f30bd6fe95f4bf4525b906cd381b89c84f1ac628.php:95 #: ../tmp/cache_twig/c9/db/fc05a687527ffcea5900b8c3639bc1fb1e451abea2f6f32868a11c122bc8.php:67 #: ../tmp/cache_twig/f0/4d/5fa9878e5e837c599426d7949a7560835bd9022aef1c645e6c00eecce499.php:67 -#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:37 +#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:38 #: ../tmp/cache_twig/6a/bd/fb12585e7041a6be70c4636cf1b414aed005587f3d961ab3724217c21ea7.php:119 #: ../tmp/cache_twig/f7/fe/2b6b0647bba4cd3a38bd497eb217e1353439050817ee0a5e815ecb368789.php:133 #: ../tmp/cache_twig/0f/1a/2943a9b8534b0da4f702678616cb595709744afee1183ddee046bccc69f9.php:67 @@ -2639,8 +2121,6 @@ msgstr "" #: ../tmp/cache_twig/3b/ab/b47f963b377299aea801c165a16a39fc97d6a60d7005cd70f666315b2bce.php:78 #: ../tmp/cache_twig/86/95/a766bab60e20263f3a76e303a87aef30aeed628c7887227aac384b9ffdc4.php:74 #: ../tmp/cache_twig/0a/1b/e34e137b60267bb2074a1eebce9913a239a1ae6d2cbeca7d7c7bc8626089.php:77 -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:990 -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:221 #: ../tmp/cache_twig/f5/25/26a9c9c89a4544b638d8cb920b86e4ad4a53a3447eb398985cc99e29a27a.php:196 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:488 #: ../tmp/cache_twig/c9/db/fc05a687527ffcea5900b8c3639bc1fb1e451abea2f6f32868a11c122bc8.php:180 @@ -2649,13 +2129,12 @@ msgstr "" #: ../tmp/cache_twig/c2/cd/0edfdf965cae686928b893aecee859cc95eabd7c0f1d0e9529d886303081.php:74 #: ../tmp/cache_twig/c6/14/eb1b4181802db8b69470965dc865cf6c643b0dfec76fb8bb1a3a491c5ab9.php:160 #: ../tmp/cache_twig/79/dc/66fde540fca94a734960ec1caff0853d35b682f22c085f5deb14749a0d06.php:182 -#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:467 +#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:482 #: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:113 #: ../tmp/cache_twig/f0/4d/5fa9878e5e837c599426d7949a7560835bd9022aef1c645e6c00eecce499.php:180 #: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:152 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:488 #: ../tmp/cache_twig/ef/d4/b0d18671f32d3a0ebea5dcde8c814f610214c29a0e536c22584d6cb3d9b9.php:234 -#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:117 +#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:72 #: ../tmp/cache_twig/4c/bf/5727e2a78ae25e76bf3dd674c0f499bd5300296aaed204214aa455a50987.php:111 #: ../tmp/cache_twig/2b/d7/0f5f275852582b8dea384f3ea54b8d2dfa693d41e0c626b1b4beb2dc26a1.php:120 #: ../tmp/cache_twig/f4/c7/5574405b1ed7d6237c4c894fc093d06961fc01a172d22fe904ec51a41b74.php:129 @@ -2677,7 +2156,6 @@ msgstr "" #: ../tmp/cache_twig/e2/07/010647dc8415a615d5f8cf2093c6fa3721c9a3b8e58e708eb900cc7bdebf.php:67 #: ../tmp/cache_twig/0f/1a/2943a9b8534b0da4f702678616cb595709744afee1183ddee046bccc69f9.php:103 #: ../tmp/cache_twig/96/a1/7b38f615336af0c84683a91ace70b9aa67c1a43acb498429d6882ac2dfbc.php:315 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:171 #: ../tmp/cache_twig/a9/0c/8a8cbfe5d6b1a893662f865ece58bd76a8bd33b7c696dc4ff370eaadd4a9.php:306 #: ../tmp/cache_twig/35/29/71e36a293225ce5372e99db946bf567585c4a65a61433e3c73ad354f9236.php:76 #: ../tmp/cache_twig/35/3c/c8c14efa08266d7255db5f4b30255297ebb9500894c7d9af510fc4550214.php:169 @@ -2690,8 +2168,6 @@ msgstr "" #: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:485 #: ../tmp/cache_twig/bb/68/1551edcbc53574a4b19f29bd9604f86b97c0c81fdad097803bc3f82c51b1.php:74 #: ../tmp/cache_twig/97/fe/c90f86fa3cdc292b5f1e598b398f5eb76d0db3adc514986e60285ccdb92e.php:134 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1975 -#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:113 #: ../tmp/cache_twig/5e/93/f96277b28158c423dfdf2cc2e1699111753fcae4276f0173f3eb0cd67ec4.php:81 #: ../tmp/cache_twig/57/d7/862a6d9ece31ca7a8450dd2dd95202d61a8181dd207a620b9d9b179f08ac.php:115 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1975 @@ -2730,344 +2206,23 @@ msgid "Reorder collections" msgstr "" #: ../tmp/cache_twig/0a/1b/e34e137b60267bb2074a1eebce9913a239a1ae6d2cbeca7d7c7bc8626089.php:55 -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:164 #: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:164 msgid "admin::base:collorder: monter" msgstr "" #: ../tmp/cache_twig/0a/1b/e34e137b60267bb2074a1eebce9913a239a1ae6d2cbeca7d7c7bc8626089.php:59 -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:168 #: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:168 msgid "admin::base:collorder: descendre" msgstr "" #: ../tmp/cache_twig/0a/1b/e34e137b60267bb2074a1eebce9913a239a1ae6d2cbeca7d7c7bc8626089.php:63 -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:176 #: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:176 msgid "admin::base:collorder: reinitialiser en ordre alphabetique" msgstr "" -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:69 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:69 -msgid "Rights" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:79 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:79 -msgid "Infos" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:111 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:89 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:111 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:89 -msgid "Reglages:: reglages d acces guest" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:117 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:97 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:117 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:97 -msgid "Reglages:: reglages d inscitpition automatisee" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:129 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:129 -msgid "Edition des droits de %display_name%" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:141 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:141 -msgid "Edition des droits de %number% utilisateurs" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:150 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:209 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:150 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:209 -msgid "Apply a template" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:155 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:214 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:155 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:214 -msgid "boutton::choisir" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:177 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:249 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:177 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:249 -msgid "Delete all users rights" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:461 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:461 -msgid "Allowed to publish" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:470 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:470 -msgid "Manage Thesaurus" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:479 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:479 -msgid "Manage Database" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:488 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:488 -msgid "Manage DB fields" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:509 -#: ../tmp/cache_twig/ef/aa/32409302817ec4ea0b8377058286e46bd91b8fd5a78e1344868065062e0f.php:113 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:509 -msgid "Access" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:518 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:518 -msgid "Active" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:527 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:527 -msgid "Allowed to add in basket" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:536 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:536 -msgid "Access to preview" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:545 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:545 -msgid "Remove watermark" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:554 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:554 -msgid "Access to HD" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:563 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:563 -msgid "Allowed to order" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:572 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:572 -msgid "Set download quotas" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:599 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:599 -msgid "Set time restrictions" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:626 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:626 -msgid "Set statuses restrictions" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:656 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:656 -msgid "Allowed to add" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:665 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:665 -msgid "Allowed to edit" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:674 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:674 -msgid "Allowed to change statuses" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:683 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:683 -msgid "Allowed to delete" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:692 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:692 -msgid "Access to image tools" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:701 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:701 -msgid "Manage users" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:710 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:710 -msgid "Allowed to access report" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:719 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:719 -msgid "Allowed to push" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:728 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:728 -msgid "Manage collection" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:737 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:737 -msgid "Manage values lists" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:779 -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:287 -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:112 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:1555 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:279 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:287 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:105 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:429 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:779 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:279 -#: ../tmp/cache_twig/98/a5/f945c93304136135a26fa3cce67ff847dd8e2b2c48296b14aa0d643dde2b.php:67 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:46 -msgid "admin::compte-utilisateur identifiant" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:793 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:118 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:793 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:54 -msgid "admin::compte-utilisateur sexe" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:804 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:645 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:131 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:804 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:59 -msgid "admin::compte-utilisateur:sexe: mademoiselle" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:812 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:653 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:142 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:812 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:60 -msgid "admin::compte-utilisateur:sexe: madame" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:820 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:661 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:153 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:820 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:61 -msgid "admin::compte-utilisateur:sexe: monsieur" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:871 -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:347 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:748 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:347 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:220 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:871 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:79 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:307 -msgid "admin::compte-utilisateur adresse" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:885 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:761 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:233 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:885 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:86 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:309 -msgid "admin::compte-utilisateur code postal" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:899 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:774 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:246 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:899 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:93 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:308 -msgid "admin::compte-utilisateur ville" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:913 -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:323 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:735 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:323 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:259 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:913 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:100 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:313 -msgid "admin::compte-utilisateur poste" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:927 -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:315 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:722 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:311 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:315 -#: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:298 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:298 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:272 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:927 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:311 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:107 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:314 -msgid "admin::compte-utilisateur societe" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:941 -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:331 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:331 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:285 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:941 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:114 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:315 -msgid "admin::compte-utilisateur activite" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:956 -#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:339 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:709 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:339 -#: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:306 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:306 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:298 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:956 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:311 -msgid "admin::compte-utilisateur telephone" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:970 -#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:787 -#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:311 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:970 -#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:128 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:312 -msgid "admin::compte-utilisateur fax" -msgstr "" - -#: ../tmp/cache_twig/22/0e/56fa80ba28aba998d3aafa924d9657ae0df411610b24fc7f9c55b14056a4.php:1022 -#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:1022 -msgid "Are you sure you want to reset rights?" -msgstr "" - -#: ../tmp/cache_twig/22/ef/8de4574ba387681254d8ca690ca094d967e06f29de0f54440c080f283b8b.php:23 -#: ../tmp/cache_twig/16/58/89313f4a32aefb4c4fe9c0d844742a9b5419ba1d73841c6efa78e4a35f34.php:23 -msgid "Security" -msgstr "" - #: ../tmp/cache_twig/22/68/5e0be77af6e35c71581a839825c948f0b8f936a6fded555bbdf97d7effd6.php:54 #: ../tmp/cache_twig/c9/f8/7dfad135d6bf4a7f2fbd1dab2796c6c60fce7da03d1230ceed632be013c6.php:54 -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:57 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:61 msgid "Voulez-vous dire %link% ?" msgstr "" @@ -3090,10 +2245,7 @@ msgstr "" #: ../tmp/cache_twig/8d/4f/32bee541d4f7212b6523ba55410f4cedb90bcbc95512ef2e50729bf218db.php:23 #: ../tmp/cache_twig/63/ac/f0b1df9d181803f7d613db17722a90308e78771de5d4dd4d3cd3e097e205.php:251 #: ../tmp/cache_twig/05/2f/fa5fb801e36fe0715e2a3dcc7222b8bc1b79c9a839eafe2334644fd80d97.php:23 -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:153 -#: ../tmp/cache_twig/7f/42/293a8ca36c49038dbb1c6d7dd044bea4fad5b4e69638ca8f699161384ebf.php:251 #: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:153 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1948 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1948 msgid "Publications" msgstr "" @@ -3104,17 +2256,14 @@ msgid "Vous devez remplir les champs requis" msgstr "" #: ../tmp/cache_twig/63/ac/f0b1df9d181803f7d613db17722a90308e78771de5d4dd4d3cd3e097e205.php:51 -#: ../tmp/cache_twig/7f/42/293a8ca36c49038dbb1c6d7dd044bea4fad5b4e69638ca8f699161384ebf.php:51 msgid "admin::monitor: Ancienne version (client)" msgstr "" #: ../tmp/cache_twig/63/ac/f0b1df9d181803f7d613db17722a90308e78771de5d4dd4d3cd3e097e205.php:70 -#: ../tmp/cache_twig/7f/42/293a8ca36c49038dbb1c6d7dd044bea4fad5b4e69638ca8f699161384ebf.php:70 msgid "admin::monitor: Nouvelle version (prod)" msgstr "" #: ../tmp/cache_twig/63/ac/f0b1df9d181803f7d613db17722a90308e78771de5d4dd4d3cd3e097e205.php:83 -#: ../tmp/cache_twig/7f/42/293a8ca36c49038dbb1c6d7dd044bea4fad5b4e69638ca8f699161384ebf.php:83 msgid "admin::monitor: production" msgstr "" @@ -3126,51 +2275,42 @@ msgstr "" #: ../tmp/cache_twig/6a/bd/fb12585e7041a6be70c4636cf1b414aed005587f3d961ab3724217c21ea7.php:37 #: ../tmp/cache_twig/6a/bd/fb12585e7041a6be70c4636cf1b414aed005587f3d961ab3724217c21ea7.php:211 #: ../tmp/cache_twig/5f/5b/af90ed6dd30d3a17dd01e65d349b45edf4aad5dadbb00da847719774c6d7.php:30 -#: ../tmp/cache_twig/7f/42/293a8ca36c49038dbb1c6d7dd044bea4fad5b4e69638ca8f699161384ebf.php:224 #: ../tmp/cache_twig/1b/61/3da38346442ea53414c51c4523d252ef4aefdc156a6c21206e9007cbed2b.php:35 #: ../tmp/cache_twig/1b/61/3da38346442ea53414c51c4523d252ef4aefdc156a6c21206e9007cbed2b.php:233 msgid "Upload" msgstr "" #: ../tmp/cache_twig/63/ac/f0b1df9d181803f7d613db17722a90308e78771de5d4dd4d3cd3e097e205.php:274 -#: ../tmp/cache_twig/7f/42/293a8ca36c49038dbb1c6d7dd044bea4fad5b4e69638ca8f699161384ebf.php:274 msgid "Commandes" msgstr "" #: ../tmp/cache_twig/63/ac/f0b1df9d181803f7d613db17722a90308e78771de5d4dd4d3cd3e097e205.php:301 -#: ../tmp/cache_twig/7f/42/293a8ca36c49038dbb1c6d7dd044bea4fad5b4e69638ca8f699161384ebf.php:301 msgid "Notifications" msgstr "" #: ../tmp/cache_twig/63/ac/f0b1df9d181803f7d613db17722a90308e78771de5d4dd4d3cd3e097e205.php:338 -#: ../tmp/cache_twig/7f/42/293a8ca36c49038dbb1c6d7dd044bea4fad5b4e69638ca8f699161384ebf.php:338 msgid "Guest" msgstr "" #: ../tmp/cache_twig/63/ac/f0b1df9d181803f7d613db17722a90308e78771de5d4dd4d3cd3e097e205.php:347 #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:78 -#: ../tmp/cache_twig/7f/42/293a8ca36c49038dbb1c6d7dd044bea4fad5b4e69638ca8f699161384ebf.php:347 msgid "login:: Mon compte" msgstr "" #: ../tmp/cache_twig/63/ac/f0b1df9d181803f7d613db17722a90308e78771de5d4dd4d3cd3e097e205.php:368 -#: ../tmp/cache_twig/7f/42/293a8ca36c49038dbb1c6d7dd044bea4fad5b4e69638ca8f699161384ebf.php:368 msgid "phraseanet:: aide" msgstr "" #: ../tmp/cache_twig/63/ac/f0b1df9d181803f7d613db17722a90308e78771de5d4dd4d3cd3e097e205.php:386 -#: ../tmp/cache_twig/7f/42/293a8ca36c49038dbb1c6d7dd044bea4fad5b4e69638ca8f699161384ebf.php:386 msgid "phraseanet:: raccourcis clavier" msgstr "" #: ../tmp/cache_twig/63/ac/f0b1df9d181803f7d613db17722a90308e78771de5d4dd4d3cd3e097e205.php:402 -#: ../tmp/cache_twig/7f/42/293a8ca36c49038dbb1c6d7dd044bea4fad5b4e69638ca8f699161384ebf.php:402 msgid "phraseanet:: a propos" msgstr "" #: ../tmp/cache_twig/63/be/6319a6590241f1bba28be561b484a113f4f0a9da138aa3a915209195710f.php:145 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:243 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:243 #: ../tmp/cache_twig/58/2e/35657b1dddc3ea0f5e3d2aeba8419f9f2a24a8c863028accbb2cfc7c6f3b.php:145 #: ../tmp/cache_twig/97/fe/c90f86fa3cdc292b5f1e598b398f5eb76d0db3adc514986e60285ccdb92e.php:359 msgid "Informations" @@ -3196,215 +2336,141 @@ msgstr "" msgid "Developpeur" msgstr "" -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:35 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:35 -msgid "Suggested values" -msgstr "" - -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:72 -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:112 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:72 -#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:311 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:46 -msgid "phraseanet::chargement" -msgstr "" - -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:95 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:95 -msgid "admin::sugval: Valeurs suggerees/Preferences de la collection" -msgstr "" - -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:111 -#: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:104 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:111 -msgid "boutton::vue xml" -msgstr "" - -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:115 -#: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:108 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:115 -msgid "boutton::vue graphique" -msgstr "" - -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:130 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:130 -msgid "admin::sugval: champs" -msgstr "" - -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:172 -#: ../tmp/cache_twig/54/eb/24de8e2b2f2d3e5df15554d09316516b0231f4d1ec0b320ef58117d194b5.php:73 -#: ../tmp/cache_twig/cd/d1/b849e0496d21408721110e0288e2033d07cb96483c0113280dfa0c81b64a.php:53 -#: ../tmp/cache_twig/2e/f3/a84d1ad7a7721d057a5a9682c259fd5b75da040aab8417cd6dbdb4d3789c.php:78 -#: ../tmp/cache_twig/e9/07/be09c70decea00f9953235fed236d74d2f25054c91c724f798530a0bba3e.php:73 -#: ../tmp/cache_twig/c7/20/7ca546f3a781705835b8042a1415de7cfbddcd9422998a3a3e90d55dc826.php:86 -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1538 -#: ../tmp/cache_twig/ba/16/635be613ef6420a0da108eb79d3b94a3094ccba2a606078122e5f4577218.php:73 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1538 -#: ../tmp/cache_twig/f7/fe/2b6b0647bba4cd3a38bd497eb217e1353439050817ee0a5e815ecb368789.php:328 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:172 -#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:344 -#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:378 -#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:434 -#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:490 -#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:546 -#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:314 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:344 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:378 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:434 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:490 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:546 -#: ../tmp/cache_twig/6c/a4/1f01b162e7851408eead3a04d9e6de6374b54a32a55e7d6380cdba0f2f53.php:248 -#: ../tmp/cache_twig/61/ad/a1dab7350e55ecd75fd86474403fae6a65230d9a395ba92f75107bdbb4cd.php:53 -#: ../tmp/cache_twig/97/55/e54b9e19b2763af131c9194c8c964217d1ca86991124a891bfc434b19e99.php:53 -#: ../lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:485 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:42 -msgid "boutton::supprimer" -msgstr "" - -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:196 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:196 -#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:246 -#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:473 -msgid "boutton::ajouter" -msgstr "" - -#: ../tmp/cache_twig/6f/11/53310ed58843fa4a3817af7d1e060657fd7a374856ed857c90eb9f88423e.php:1064 -#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:1064 -msgid "" -"admin::sugval: Attention, passer en mode graphique implique la perte des " -"modifications du xml si vous n'appliquez pas les changements avant.\n" -"Continuer quand meme" -msgstr "" - -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:118 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:96 msgid "regeneration of sub-definitions" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:138 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:116 msgid "video tool" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:161 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:136 msgid "image tool" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:175 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:148 msgid "substitution" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:189 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:162 msgid "meta-datas" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:208 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:181 msgid "Reconstruire les sous definitions" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:217 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:190 msgid "Attention, certain documents ont des sous-definitions substituees" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:224 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:197 msgid "" "Forcer la reconstruction sur les enregistrements ayant des thumbnails " "substituees" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:240 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:213 msgid "recreer aucune sous-definitions" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:246 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:219 msgid "recreer toutes les sous-definitions" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:260 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:429 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:459 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:531 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:610 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:659 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:233 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:402 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:432 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:506 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:582 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:631 msgid "validate" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:264 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:535 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:614 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:663 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:237 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:510 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:586 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:635 msgid "cancel" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:287 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:260 msgid "screenshot video" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:353 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:326 msgid "No preview available" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:364 -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:475 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:337 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:448 msgid "take a screenshot" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:380 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:353 msgid "To take a screenshot click on camera" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:410 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:383 msgid "brightness settings" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:440 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:413 msgid "contrast settings" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:504 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:469 +msgid "" +"Changes for rotation will be applied only on the sub-definitions of \"image" +"\" type." +msgstr "" + +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:479 msgid "image rotation" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:510 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:485 msgid "rotation 90 degres horaire" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:518 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:493 msgid "rotation 90 degres anti-horaires" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:561 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:533 msgid "Substitution is not possible for this kind of record" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:583 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:555 msgid "substitution HD" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:592 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:564 msgid "mettre a jour le nom original de fichier apres substitution" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:641 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:613 msgid "substitution SD" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:988 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:960 msgid "alert" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:999 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:971 msgid "no image selected" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:1055 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:1027 msgid "processing" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:1070 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:246 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:1042 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:243 msgid "an error occured" msgstr "" -#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:1084 +#: ../tmp/cache_twig/f5/5c/d536e1b34a3d41ab681b0b16c10f9a314daa155c29e37987d9ff7cb91857.php:1056 msgid "thumbnail validation" msgstr "" @@ -3445,7 +2511,7 @@ msgstr "" #: ../tmp/cache_twig/f5/25/26a9c9c89a4544b638d8cb920b86e4ad4a53a3447eb398985cc99e29a27a.php:191 #: ../tmp/cache_twig/c9/db/fc05a687527ffcea5900b8c3639bc1fb1e451abea2f6f32868a11c122bc8.php:47 #: ../tmp/cache_twig/c9/db/fc05a687527ffcea5900b8c3639bc1fb1e451abea2f6f32868a11c122bc8.php:184 -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:213 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:218 #: ../tmp/cache_twig/c6/14/eb1b4181802db8b69470965dc865cf6c643b0dfec76fb8bb1a3a491c5ab9.php:155 #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:270 #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:486 @@ -3456,7 +2522,6 @@ msgstr "" #: ../tmp/cache_twig/f0/4d/5fa9878e5e837c599426d7949a7560835bd9022aef1c645e6c00eecce499.php:47 #: ../tmp/cache_twig/f0/4d/5fa9878e5e837c599426d7949a7560835bd9022aef1c645e6c00eecce499.php:184 #: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:148 -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:108 #: ../tmp/cache_twig/ef/d4/b0d18671f32d3a0ebea5dcde8c814f610214c29a0e536c22584d6cb3d9b9.php:229 #: ../tmp/cache_twig/71/3a/d49ad1d50eb2444c0bcb1449c2f6b21bfa95013a375870d95df60e59525c.php:133 #: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:108 @@ -3473,8 +2538,6 @@ msgstr "" #: ../tmp/cache_twig/98/a5/f945c93304136135a26fa3cce67ff847dd8e2b2c48296b14aa0d643dde2b.php:113 #: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:250 #: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:489 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:324 -#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:119 #: ../tmp/cache_twig/ae/ac/607531696dda8fb5b66a7ab9d8901e54012d11edda41f60645d9473f53ed.php:188 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:324 #: ../tmp/cache_twig/46/16/ce4342ba8d6f1ad6ad3ec6d404a050649a3a11d1578ade704aadb9b4b8cf.php:131 @@ -3484,34 +2547,9 @@ msgstr "" msgid "boutton::annuler" msgstr "" -#: ../tmp/cache_twig/fe/10/44fd599573da2ce552a9f03c8515023a4a847cdadb287e12e2327782eb0e.php:68 -#: ../tmp/cache_twig/77/56/1124cf333071bb255188be0cabe9d749e349e9b29d513f8e948d83f7e2e3.php:508 -#: ../tmp/cache_twig/e9/3e/149ce3009cd2c4aa24e1f29bdab9e7dee50b5d5c1c97f151abfb9e481ae3.php:31 -#: ../tmp/cache_twig/10/7b/8164a1c1e4ee3ff6ab9801cdfdb8871881d8c31a9c7fb91333dec6ac13cc.php:68 -msgid "action : ajouter au panier" -msgstr "" - -#: ../tmp/cache_twig/fe/10/44fd599573da2ce552a9f03c8515023a4a847cdadb287e12e2327782eb0e.php:105 -#: ../tmp/cache_twig/77/56/1124cf333071bb255188be0cabe9d749e349e9b29d513f8e948d83f7e2e3.php:498 -#: ../tmp/cache_twig/39/b4/7f3771406edf35ef9d791fd45a7048688d56c740ced66241b76f382ccd5a.php:155 -#: ../tmp/cache_twig/e9/3e/149ce3009cd2c4aa24e1f29bdab9e7dee50b5d5c1c97f151abfb9e481ae3.php:69 -#: ../tmp/cache_twig/10/7b/8164a1c1e4ee3ff6ab9801cdfdb8871881d8c31a9c7fb91333dec6ac13cc.php:105 -#: ../tmp/cache_twig/a9/19/8f9ba6319a22ee423e3fc74e98bcdbf9814a2ba850ffce3d04de14936907.php:35 -#: ../tmp/cache_twig/9c/16/a0e4180a47fa7ae7b8a328953789ff927d94aef0808c0eaf8e4ced094a0e.php:34 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1096 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1096 -msgid "action : print" -msgstr "" - -#: ../tmp/cache_twig/fe/10/44fd599573da2ce552a9f03c8515023a4a847cdadb287e12e2327782eb0e.php:126 -#: ../tmp/cache_twig/10/7b/8164a1c1e4ee3ff6ab9801cdfdb8871881d8c31a9c7fb91333dec6ac13cc.php:126 -msgid "reponses:: partager" -msgstr "" - #: ../tmp/cache_twig/a1/e9/ada267627adbc3fe06e90fda2e200af6c348401bbca1bbb248257672b732.php:34 #: ../tmp/cache_twig/a9/19/8f9ba6319a22ee423e3fc74e98bcdbf9814a2ba850ffce3d04de14936907.php:45 #: ../tmp/cache_twig/9c/16/a0e4180a47fa7ae7b8a328953789ff927d94aef0808c0eaf8e4ced094a0e.php:44 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1115 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1115 msgid "action : editer" msgstr "" @@ -3599,68 +2637,114 @@ msgid "Retour" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:185 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:185 msgid "admin:: demandes en cours" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:197 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:197 msgid "Requests for the application registrations were recorded successfully" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:215 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:389 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:393 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:215 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:389 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:393 msgid "admin:: refuser l'acces" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:221 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:400 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:404 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:221 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:400 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:404 msgid "admin:: donner les droits de telechargement et consultation de previews" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:227 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:411 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:415 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:227 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:411 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:415 msgid "admin:: donner les droits de telechargements de preview et hd" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:233 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:422 #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:426 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:233 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:422 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:426 msgid "admin:: watermarquer les documents" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:247 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:247 msgid "admin::collection" msgstr "" #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:251 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:251 msgid "Models" msgstr "" +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:287 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:114 +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:1555 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:105 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:429 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:779 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:279 +#: ../tmp/cache_twig/98/a5/f945c93304136135a26fa3cce67ff847dd8e2b2c48296b14aa0d643dde2b.php:67 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:46 +msgid "admin::compte-utilisateur identifiant" +msgstr "" + +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:315 +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:722 +#: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:298 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:272 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:927 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:311 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:107 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:314 +msgid "admin::compte-utilisateur societe" +msgstr "" + +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:323 +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:735 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:259 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:913 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:100 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:313 +msgid "admin::compte-utilisateur poste" +msgstr "" + +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:331 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:285 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:941 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:114 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:315 +msgid "admin::compte-utilisateur activite" +msgstr "" + +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:339 +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:709 +#: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:306 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:298 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:956 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:311 +msgid "admin::compte-utilisateur telephone" +msgstr "" + +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:347 +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:748 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:220 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:871 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:79 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:307 +msgid "admin::compte-utilisateur adresse" +msgstr "" + #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:440 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:440 msgid "admin:: appliquer le modele" msgstr "" +#: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:450 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:171 +#: ../lib/conf.d/_GV_template.inc:464 +msgid "None" +msgstr "" + #: ../tmp/cache_twig/44/a7/0cf82fcb594684d385bdd2cf514674dd929f0184d0b7689a72ab78a9d78c.php:496 -#: ../tmp/cache_twig/ef/5b/cc27ca43c8475f88778fcaf64d230b0bd27e5d609ded9bce6451f4b65ae8.php:496 msgid "No application for registration has been recorded" msgstr "" @@ -3732,9 +2816,9 @@ msgstr "" #: ../tmp/cache_twig/0e/94/4782424602bf224d1be7d4d05e825a35299aa13cfccec6953bf307c4c0b3.php:465 #: ../tmp/cache_twig/0e/94/4782424602bf224d1be7d4d05e825a35299aa13cfccec6953bf307c4c0b3.php:469 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:85 +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:88 #: ../tmp/cache_twig/82/ee/7d3619c7a707092a5722fd9cac12de771fd3362df1666b62af348c66380e.php:72 -#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:147 +#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:159 msgid "Delete" msgstr "" @@ -3772,18 +2856,14 @@ msgstr "" #: ../tmp/cache_twig/d4/8b/fe38991c5bbee8da424f61ed8f650ad4af837f54d8bff6db80fcfc6c90c2.php:51 #: ../tmp/cache_twig/d4/8b/fe38991c5bbee8da424f61ed8f650ad4af837f54d8bff6db80fcfc6c90c2.php:178 #: ../tmp/cache_twig/51/72/a2a84c4596c645b645a25306b5814bd362620ab9c177c757a275f96a8f88.php:151 -#: ../tmp/cache_twig/a3/73/04a8099e8e2fe5d981e783193a2490b5cdda551c3e6d8939b25c48b25d60.php:93 -#: ../tmp/cache_twig/a3/73/04a8099e8e2fe5d981e783193a2490b5cdda551c3e6d8939b25c48b25d60.php:204 msgid "Connection" msgstr "" #: ../tmp/cache_twig/62/bc/a48a9739664d8a9b28c991e303d159dcf2c8dcc5914df22276f218fca39e.php:114 -#: ../tmp/cache_twig/a3/73/04a8099e8e2fe5d981e783193a2490b5cdda551c3e6d8939b25c48b25d60.php:114 msgid "Your account is locked, please follow the following link to unlock it" msgstr "" #: ../tmp/cache_twig/62/bc/a48a9739664d8a9b28c991e303d159dcf2c8dcc5914df22276f218fca39e.php:122 -#: ../tmp/cache_twig/a3/73/04a8099e8e2fe5d981e783193a2490b5cdda551c3e6d8939b25c48b25d60.php:122 msgid "login:: Envoyer a nouveau le mail de confirmation" msgstr "" @@ -3791,13 +2871,11 @@ msgstr "" #: ../tmp/cache_twig/ba/0d/93954add45ba4fed370dad3623fce3ea5e10a8f11e35d33f203e02cf37e9.php:125 #: ../tmp/cache_twig/d4/8b/fe38991c5bbee8da424f61ed8f650ad4af837f54d8bff6db80fcfc6c90c2.php:149 #: ../tmp/cache_twig/51/72/a2a84c4596c645b645a25306b5814bd362620ab9c177c757a275f96a8f88.php:121 -#: ../tmp/cache_twig/a3/73/04a8099e8e2fe5d981e783193a2490b5cdda551c3e6d8939b25c48b25d60.php:179 msgid "Forgot password?" msgstr "" #: ../tmp/cache_twig/62/bc/a48a9739664d8a9b28c991e303d159dcf2c8dcc5914df22276f218fca39e.php:234 #: ../tmp/cache_twig/51/72/a2a84c4596c645b645a25306b5814bd362620ab9c177c757a275f96a8f88.php:177 -#: ../tmp/cache_twig/a3/73/04a8099e8e2fe5d981e783193a2490b5cdda551c3e6d8939b25c48b25d60.php:234 #: ../tmp/cache_twig/80/14/0243e87c831fd5c01bb92f110393631aa5184797a34a02fd1313f2f9a197.php:82 msgid "Or login with" msgstr "" @@ -3805,9 +2883,8 @@ msgstr "" #: ../tmp/cache_twig/a4/29/9d4202bef5356fa2348fbc0c8ca67c470bd6d541b1a88626a37a13058220.php:30 #: ../tmp/cache_twig/7e/2b/cc1be9d15ea85dc701c90c500cd986b5da63d38352ea375ab03e15707403.php:46 #: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:30 -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:311 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:319 #: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:267 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:247 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:247 msgid "phraseanet:: thesaurus" msgstr "" @@ -3837,15 +2914,15 @@ msgstr "" msgid "Ajouter ma selection courrante" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:99 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:101 msgid "Erreur de login / mot de passe" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:107 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:109 msgid "Bonjour, veuillez vous identifier sur %home_title% :" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:116 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:118 #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:1571 #: ../tmp/cache_twig/50/69/a4a9283c5e8d05f572a3558b98b463102522cf57228ad562e5f0ba8a8764.php:845 #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:442 @@ -3853,34 +2930,34 @@ msgstr "" msgid "admin::compte-utilisateur mot de passe" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:120 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:122 msgid "Se connecter" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:126 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:128 msgid "Problèmes de connexion ?" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:143 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:145 #: ../tmp/cache_twig/d1/be/831744873b5b165b6af565a7f750e773ed30b1dee6fa45f29e8601e3ed5f.php:95 msgid "Hello %username%" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:157 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:159 msgid "Autorisation d'accès" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:168 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:170 msgid "" "Autorisez-vous l'application \"%application_name%\" à " "accéder à votre contenu sur %home_title% ?" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:198 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:200 msgid "Autoriser" msgstr "" -#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:222 +#: ../tmp/cache_twig/6e/46/aba1a658a1193fa976803ec98ac43daa448a513bf86172a70c305b9dc358.php:224 msgid "Ne pas autoriser" msgstr "" @@ -3894,182 +2971,181 @@ msgstr "" msgid "Etes vous sur de supprimer %number% playlists ?" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:95 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:98 msgid "Notify users about this publication" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:99 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:104 #: ../tmp/cache_twig/ae/ac/607531696dda8fb5b66a7ab9d8901e54012d11edda41f60645d9473f53ed.php:69 msgid "publication : titre" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:107 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:112 #: ../tmp/cache_twig/ae/ac/607531696dda8fb5b66a7ab9d8901e54012d11edda41f60645d9473f53ed.php:77 msgid "publication : sous titre" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:115 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:120 #: ../tmp/cache_twig/ae/ac/607531696dda8fb5b66a7ab9d8901e54012d11edda41f60645d9473f53ed.php:85 msgid "publication : autheur" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:123 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:128 #: ../tmp/cache_twig/ae/ac/607531696dda8fb5b66a7ab9d8901e54012d11edda41f60645d9473f53ed.php:93 msgid "publication : email autheur" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:135 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:140 #: ../tmp/cache_twig/ae/ac/607531696dda8fb5b66a7ab9d8901e54012d11edda41f60645d9473f53ed.php:105 msgid "Fils disponibles" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:174 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:179 #: ../tmp/cache_twig/6c/a4/1f01b162e7851408eead3a04d9e6de6374b54a32a55e7d6380cdba0f2f53.php:232 msgid "This feed is public" msgstr "" -#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:209 +#: ../tmp/cache_twig/e1/56/cb677703e1df4cb70cd5cd3415392380c174d5dfe2eaca4e5e23e67c4720.php:214 msgid "boutton::publier" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:44 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:48 msgid "Votre recherche ne retourne aucun resultat" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:76 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:80 msgid "" "La recherche s'effectue grâce à la boîte de dialogue qui se trouve en haut à " "gauche de l'écran." msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:79 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:83 msgid "" "Sachez que vous pouvez utiliser les opérateurs ou caractères spéciaux " "suivants :" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:83 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:87 msgid "" "* , ? , ET , OU , SAUF , DANS , DERNIERS , TOUT (ou AND , OR , EXCEPT , " "LAST , ALL)" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:88 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:92 msgid "Caractères de troncature" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:95 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:99 msgid "auto*" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:99 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:103 msgid "retourne \"automobile\", \"automate\", \"autoroute\", ..." msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:105 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:109 msgid "dé?it" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:109 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:113 msgid "retourne \"délit\", \"débit\", ..." msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:116 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:120 msgid "Visualiser tous les enregistrements / les derniers enregistrements" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:122 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:126 msgid "TOUT" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:126 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:130 msgid "retourne tous les enregistrements des collections selectionnees" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:132 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:136 msgid "LAST 20" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:136 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:140 msgid "" "retourne les 20 derniers enregistrements archives dans les collections " "selectionnees" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:143 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:147 msgid "Recherche multicritères" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:147 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:151 msgid "" "Vous pouvez affiner votre recherche avec les opérateurs : ET, OU, SAUF ou " "DANS" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:153 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:157 msgid "sport" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:155 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:159 msgid "automobile" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:159 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:163 msgid "retourne les documents comprenant les deux mots." msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:165 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:169 msgid "journal OU jt" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:169 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:173 msgid "retourne les documents comprenant un mot et/ou l'autre." msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:175 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:179 msgid "cannes SAUF festival" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:179 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:183 msgid "retourne les documents comprenant cannes sans le mot festival." msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:185 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:189 msgid "thalassa DANS titre" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:189 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:193 msgid "" "retourne les documents où le terme est au moins présent dans le titre, en " "évitant par exemple celles où le terme est uniquement cité dans la légende." msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:197 -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:120 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:201 #: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:120 #: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:99 msgid "Attention" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:201 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:205 msgid "" "pour chercher une phrase contenant un des mots-clé ci-dessus, utilisez les " "guillemets :" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:205 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:209 msgid "C dans l'air" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:209 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:213 msgid "Et Dieu créa la femme" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:213 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:217 msgid "bijou en or" msgstr "" -#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:217 +#: ../tmp/cache_twig/e1/51/f5dd66ef9bca8aa2ed5f323681670771eb1d998eb8d390deffb5a62f7a6a.php:221 msgid "tout le sport" msgstr "" @@ -4101,6 +3177,29 @@ msgstr "" msgid "Actions" msgstr "" +#: ../tmp/cache_twig/54/eb/24de8e2b2f2d3e5df15554d09316516b0231f4d1ec0b320ef58117d194b5.php:73 +#: ../tmp/cache_twig/cd/d1/b849e0496d21408721110e0288e2033d07cb96483c0113280dfa0c81b64a.php:53 +#: ../tmp/cache_twig/2e/f3/a84d1ad7a7721d057a5a9682c259fd5b75da040aab8417cd6dbdb4d3789c.php:78 +#: ../tmp/cache_twig/e9/07/be09c70decea00f9953235fed236d74d2f25054c91c724f798530a0bba3e.php:73 +#: ../tmp/cache_twig/c7/20/7ca546f3a781705835b8042a1415de7cfbddcd9422998a3a3e90d55dc826.php:86 +#: ../tmp/cache_twig/ba/16/635be613ef6420a0da108eb79d3b94a3094ccba2a606078122e5f4577218.php:73 +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1531 +#: ../tmp/cache_twig/f7/fe/2b6b0647bba4cd3a38bd497eb217e1353439050817ee0a5e815ecb368789.php:328 +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:172 +#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:344 +#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:378 +#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:434 +#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:490 +#: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:546 +#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:314 +#: ../tmp/cache_twig/6c/a4/1f01b162e7851408eead3a04d9e6de6374b54a32a55e7d6380cdba0f2f53.php:248 +#: ../tmp/cache_twig/61/ad/a1dab7350e55ecd75fd86474403fae6a65230d9a395ba92f75107bdbb4cd.php:53 +#: ../tmp/cache_twig/97/55/e54b9e19b2763af131c9194c8c964217d1ca86991124a891bfc434b19e99.php:53 +#: ../lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:486 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:42 +msgid "boutton::supprimer" +msgstr "" + #: ../tmp/cache_twig/c6/86/cee1b197293f5fb731fe5d1cc4230ab451c3b39f7e057098f700012af514.php:61 #: ../tmp/cache_twig/27/3d/79c71db3414feabaed441cd232912dab3f93dae3bfa671db7fd6b7950419.php:55 msgid "%nb_records% records" @@ -4251,6 +3350,51 @@ msgstr "" msgid "Civility" msgstr "" +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:645 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:131 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:804 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:59 +msgid "admin::compte-utilisateur:sexe: mademoiselle" +msgstr "" + +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:653 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:142 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:812 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:60 +msgid "admin::compte-utilisateur:sexe: madame" +msgstr "" + +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:661 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:153 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:820 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:61 +msgid "admin::compte-utilisateur:sexe: monsieur" +msgstr "" + +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:761 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:233 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:885 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:86 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:309 +msgid "admin::compte-utilisateur code postal" +msgstr "" + +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:774 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:246 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:899 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:93 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:308 +msgid "admin::compte-utilisateur ville" +msgstr "" + +#: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:787 +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:311 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:970 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:128 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:312 +msgid "admin::compte-utilisateur fax" +msgstr "" + #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:823 msgid "boutton::commander" msgstr "" @@ -4314,11 +3458,9 @@ msgstr "" #: ../tmp/cache_twig/15/e6/48f7a939abc1d982521039d24da527c3ada5f5d03863f37a898f9ba0e842.php:1525 #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:133 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:133 #: ../tmp/cache_twig/50/69/a4a9283c5e8d05f572a3558b98b463102522cf57228ad562e5f0ba8a8764.php:831 #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:416 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:85 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:85 msgid "phraseanet:: adresse" msgstr "" @@ -4425,16 +3567,20 @@ msgstr "" msgid "client::answers: %available_results% reponses" msgstr "" -#: ../tmp/cache_twig/5a/93/0f252e925966654810d27615faeb5ccc00e27bca12f769e954aac5b5b4ad.php:25 -#: ../tmp/cache_twig/ca/ad/6180b9deacd03924bb5b091226eb2a840bea46b45e7ca1ee5c3ef801be72.php:324 -#: ../tmp/cache_twig/48/68/9ee0a0d02de30c1bc9f99f678edfdb0cf8d29e547c14c07089b718b03059.php:324 -#: ../tmp/cache_twig/b5/52/f39c1776945e313240f92a872789c285591d5c211a5c387715fa1d332cd2.php:25 -msgid "Home" +#: ../tmp/cache_twig/77/56/1124cf333071bb255188be0cabe9d749e349e9b29d513f8e948d83f7e2e3.php:500 +#: ../tmp/cache_twig/39/b4/7f3771406edf35ef9d791fd45a7048688d56c740ced66241b76f382ccd5a.php:155 +#: ../tmp/cache_twig/e9/3e/149ce3009cd2c4aa24e1f29bdab9e7dee50b5d5c1c97f151abfb9e481ae3.php:69 +#: ../tmp/cache_twig/10/7b/8164a1c1e4ee3ff6ab9801cdfdb8871881d8c31a9c7fb91333dec6ac13cc.php:105 +#: ../tmp/cache_twig/a9/19/8f9ba6319a22ee423e3fc74e98bcdbf9814a2ba850ffce3d04de14936907.php:35 +#: ../tmp/cache_twig/9c/16/a0e4180a47fa7ae7b8a328953789ff927d94aef0808c0eaf8e4ced094a0e.php:34 +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1096 +msgid "action : print" msgstr "" -#: ../tmp/cache_twig/5a/93/0f252e925966654810d27615faeb5ccc00e27bca12f769e954aac5b5b4ad.php:62 -#: ../tmp/cache_twig/b5/52/f39c1776945e313240f92a872789c285591d5c211a5c387715fa1d332cd2.php:62 -msgid "language" +#: ../tmp/cache_twig/77/56/1124cf333071bb255188be0cabe9d749e349e9b29d513f8e948d83f7e2e3.php:510 +#: ../tmp/cache_twig/e9/3e/149ce3009cd2c4aa24e1f29bdab9e7dee50b5d5c1c97f151abfb9e481ae3.php:31 +#: ../tmp/cache_twig/10/7b/8164a1c1e4ee3ff6ab9801cdfdb8871881d8c31a9c7fb91333dec6ac13cc.php:68 +msgid "action : ajouter au panier" msgstr "" #: ../tmp/cache_twig/e7/50/53cfecd5ef2d484586fc68c07a475f4ab38cbc11526ed24b5febb581eb93.php:43 @@ -4505,19 +3651,19 @@ msgid "You can not upload files" msgstr "" #: ../tmp/cache_twig/79/a4/677d7a522aafdad241e0a6bf492062a86de45135da075ffb1ffcbe4bdd67.php:36 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:198 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:199 msgid "The records have been properly ordered" msgstr "" #: ../tmp/cache_twig/79/a4/677d7a522aafdad241e0a6bf492062a86de45135da075ffb1ffcbe4bdd67.php:42 #: ../tmp/cache_twig/21/be/ec8f164aa4221e0c07872816865e91bef7e904a4125093e417546b5c6da5.php:51 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:293 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:294 msgid "Order has been sent" msgstr "" #: ../tmp/cache_twig/79/a4/677d7a522aafdad241e0a6bf492062a86de45135da075ffb1ffcbe4bdd67.php:48 #: ../tmp/cache_twig/21/be/ec8f164aa4221e0c07872816865e91bef7e904a4125093e417546b5c6da5.php:57 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:328 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:329 msgid "Order has been denied" msgstr "" @@ -4648,44 +3794,37 @@ msgid "No URL available" msgstr "" #: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:22 -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:63 #: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:63 msgid "Setup" msgstr "" -#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:261 -#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:312 +#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:276 +#: ../tmp/cache_twig/4e/05/fc1e4d1dc689276c8fd898e017a39066d57dd37474a73b49f38007bb80dd.php:327 msgid "erreur avec la valeur %name%" msgstr "" #: ../tmp/cache_twig/4e/bb/8dda57e76aeebf518aba376f448b35caf96a9e3b156c47fc162938fc47e1.php:38 -#: ../tmp/cache_twig/ef/64/5cea90ceef30cbdd896088270a3fea9ef25941881f0b67c3538c4ae9bf41.php:36 #: ../tmp/cache_twig/1a/c7/9f4d35e216d902c13390ce56aec05c0c813b02d8bbf605c5f24701e067e3.php:36 -#: ../tmp/cache_twig/4a/02/65d52ad5a7382b6921c83022933d87bfc55a3e9e9d4c9320a16514a02536.php:38 #: ../tmp/cache_twig/5f/8c/a0fda08bf8166d5402804ace67a7420bf62316429b61364cb217b3b79fc8.php:36 #: ../tmp/cache_twig/80/14/0243e87c831fd5c01bb92f110393631aa5184797a34a02fd1313f2f9a197.php:35 msgid "Register" msgstr "" #: ../tmp/cache_twig/4e/bb/8dda57e76aeebf518aba376f448b35caf96a9e3b156c47fc162938fc47e1.php:51 -#: ../tmp/cache_twig/4a/02/65d52ad5a7382b6921c83022933d87bfc55a3e9e9d4c9320a16514a02536.php:51 #: ../tmp/cache_twig/80/14/0243e87c831fd5c01bb92f110393631aa5184797a34a02fd1313f2f9a197.php:48 msgid "Inscription" msgstr "" #: ../tmp/cache_twig/4e/bb/8dda57e76aeebf518aba376f448b35caf96a9e3b156c47fc162938fc47e1.php:57 -#: ../tmp/cache_twig/4a/02/65d52ad5a7382b6921c83022933d87bfc55a3e9e9d4c9320a16514a02536.php:57 msgid "Complete the fields below to register on %instance_title%!" msgstr "" #: ../tmp/cache_twig/4e/bb/8dda57e76aeebf518aba376f448b35caf96a9e3b156c47fc162938fc47e1.php:157 #: ../tmp/cache_twig/1a/c7/9f4d35e216d902c13390ce56aec05c0c813b02d8bbf605c5f24701e067e3.php:153 -#: ../tmp/cache_twig/4a/02/65d52ad5a7382b6921c83022933d87bfc55a3e9e9d4c9320a16514a02536.php:157 msgid "I have read the terms of use" msgstr "" #: ../tmp/cache_twig/4e/bb/8dda57e76aeebf518aba376f448b35caf96a9e3b156c47fc162938fc47e1.php:217 -#: ../tmp/cache_twig/4a/02/65d52ad5a7382b6921c83022933d87bfc55a3e9e9d4c9320a16514a02536.php:217 msgid "Request access" msgstr "" @@ -4696,43 +3835,33 @@ msgid "Creer" msgstr "" #: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:22 -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:285 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:285 -#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:22 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:293 msgid "admin::base:collection: Creer une collection" msgstr "" #: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:34 -#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:34 msgid "" "admin:: La collection n'a pas ete creee : vous devez donner un nom a votre " "collection" msgstr "" #: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:45 -#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:45 msgid "An error occured, please retry or contact an admin if problem persist" msgstr "" #: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:61 -#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:61 msgid "admin::base:collection: Nom de la nouvelle collection : " msgstr "" #: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:70 -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:404 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:404 -#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:70 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:412 msgid "" "admin::base:collection: Vous pouvez choisir une collection de reference pour " "donenr des acces " msgstr "" #: ../tmp/cache_twig/8e/52/8cc1dc1ebbfc7ca3e6b093222f55dbfb6ece9988955c577f278bf6062449.php:85 -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:409 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:409 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1900 -#: ../tmp/cache_twig/9b/cf/1107f877ec16e60b09152fa9a73376f922d172882e430bce9c2a45ef9bdb.php:85 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:417 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1900 msgid "choisir" msgstr "" @@ -4784,6 +3913,12 @@ msgstr "" msgid "Installer Google Chrome Frame" msgstr "" +#: ../tmp/cache_twig/ca/ad/6180b9deacd03924bb5b091226eb2a840bea46b45e7ca1ee5c3ef801be72.php:324 +#: ../tmp/cache_twig/48/68/9ee0a0d02de30c1bc9f99f678edfdb0cf8d29e547c14c07089b718b03059.php:324 +#: ../tmp/cache_twig/b5/52/f39c1776945e313240f92a872789c285591d5c211a5c387715fa1d332cd2.php:25 +msgid "Home" +msgstr "" + #: ../tmp/cache_twig/ca/ad/6180b9deacd03924bb5b091226eb2a840bea46b45e7ca1ee5c3ef801be72.php:330 #: ../tmp/cache_twig/48/68/9ee0a0d02de30c1bc9f99f678edfdb0cf8d29e547c14c07089b718b03059.php:330 msgid "Help" @@ -4829,19 +3964,14 @@ msgstr "" #: ../tmp/cache_twig/39/b4/7f3771406edf35ef9d791fd45a7048688d56c740ced66241b76f382ccd5a.php:129 #: ../tmp/cache_twig/39/b4/7f3771406edf35ef9d791fd45a7048688d56c740ced66241b76f382ccd5a.php:328 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:370 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:370 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:364 #: ../tmp/cache_twig/a9/19/8f9ba6319a22ee423e3fc74e98bcdbf9814a2ba850ffce3d04de14936907.php:135 #: ../tmp/cache_twig/9c/16/a0e4180a47fa7ae7b8a328953789ff927d94aef0808c0eaf8e4ced094a0e.php:134 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1449 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1449 msgid "action : supprimer" msgstr "" #: ../tmp/cache_twig/39/b4/7f3771406edf35ef9d791fd45a7048688d56c740ced66241b76f382ccd5a.php:135 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:477 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:483 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:487 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:477 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:483 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:487 @@ -4977,7 +4107,7 @@ msgstr "" #: ../tmp/cache_twig/ac/9e/fb01f1028d8846495dbbbe2bf2f1bb39a51f3f5688d02ad5ef34a6df5ee4.php:184 #: ../lib/Alchemy/Phrasea/Controller/Admin/Collection.php:491 #: ../lib/Alchemy/Phrasea/Controller/Admin/Databox.php:876 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:280 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:288 msgid "An error occurred" msgstr "" @@ -5013,171 +4143,6 @@ msgstr "" msgid "preview::statistiques de telechargement" msgstr "" -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:44 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:44 -msgid "The user has been created." -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:50 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:50 -#, php-format -msgid "%user_count% users have been created." -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:63 -#: ../tmp/cache_twig/f4/c7/5574405b1ed7d6237c4c894fc093d06961fc01a172d22fe904ec51a41b74.php:91 -#: ../tmp/cache_twig/ce/f5/3fc6514831a3beba14a6cf8235c50358ef94e24cf34037cff6f24d2c4c47.php:182 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:63 -#: ../lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php:48 -msgid "Users" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:71 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:71 -msgid "admin::user: nouvel utilisateur" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:75 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:75 -msgid "admin::user: nouveau template" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:81 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:81 -msgid "admin::user: import d'utilisateurs" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:85 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:85 -msgid "admin::user: export d'utilisateurs" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:112 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:112 -msgid "Filter" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:121 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:161 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:121 -msgid "Push::filter on login" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:129 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:295 -#: ../tmp/cache_twig/b4/9c/07c23ab66a045a8e5227f1d772335d8a711fcfe612db32f5ee1317a5f553.php:71 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:129 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:295 -msgid "First/Last Name" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:137 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:173 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:137 -msgid "Push::filter on countries" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:145 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:179 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:145 -msgid "Push::filter on companies" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:153 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:185 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:153 -msgid "Push::filter on emails" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:158 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:197 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:158 -msgid "Push::filter starts" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:166 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:166 -msgid "Last applied template" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:236 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:236 -msgid "boutton::appliquer" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:265 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:265 -msgid "admin::compte-utilisateur id utilisateur" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:343 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:343 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:310 -msgid "admin::compte-utilisateur pays" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:359 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:359 -msgid "admin::compte-utilisateur dernier modele applique" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:375 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:375 -msgid "admin::compte-utilisateur date de creation" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:420 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:420 -msgid "This is a template" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:429 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:429 -msgid "This user has no rights" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:638 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:649 -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:660 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:638 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:649 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:660 -msgid "%n_par_page% par page" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:665 -#: ../tmp/cache_twig/c4/88/c141694af2943b78af7cf167f27ce764039ff5705347b19ace268934697f.php:22 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:665 -#: ../tmp/cache_twig/3f/18/7fae8acb3562b67fc49741799c3c4010e3fb3e1c8b9c83d35749f5bc62a3.php:22 -#: ../tmp/cache_twig/1e/70/2d1aa33a2a9ecb61b3c9f9f292b295bdf5c8451ffe9ea674aef0f7363634.php:22 -msgid "boutton::modifier" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:669 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:669 -msgid "Supprimer" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:807 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:807 -msgid "boutton::exporter" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:831 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:831 -msgid "select at least one user" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:843 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:843 -msgid "Are you sure you want delete users rights ?" -msgstr "" - -#: ../tmp/cache_twig/19/15/4c75cf846faba27de1decdbde1c08cc7e77da47095dd2cbd97d73b9d10dc.php:867 -#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:867 -msgid "users rights have been reseted" -msgstr "" - #: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:58 #: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:66 msgid "admin::tasks: nom de la tache" @@ -5195,6 +4160,16 @@ msgstr "" msgid "admin::tasks: reinitialiser el compteur de crashes" msgstr "" +#: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:104 +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:111 +msgid "boutton::vue xml" +msgstr "" + +#: ../tmp/cache_twig/19/82/712821ac44298850ceb75efb4fd76c1d90ec1d53d48c4c3e06442e12833b.php:108 +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:115 +msgid "boutton::vue graphique" +msgstr "" + #: ../tmp/cache_twig/2e/f3/a84d1ad7a7721d057a5a9682c259fd5b75da040aab8417cd6dbdb4d3789c.php:24 msgid "" "Vous etes actuellement deconnecte de votre compte, vous devez vous connecter " @@ -5209,135 +4184,6 @@ msgstr "" msgid "boutton::refresh" msgstr "" -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:80 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:80 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:34 -#: ../lib/Alchemy/Phrasea/Controller/Client/Root.php:271 -msgid "" -"phraseanet::erreur: Une erreur est survenue, si ce probleme persiste, " -"contactez le support technique" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:84 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:84 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:36 -#: ../lib/Alchemy/Phrasea/Controller/Client/Root.php:272 -msgid "" -"phraseanet::erreur: La connection au serveur Phraseanet semble etre " -"indisponible" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:88 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:88 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:37 -#: ../lib/Alchemy/Phrasea/Controller/Client/Root.php:273 -msgid "" -"phraseanet::erreur: Votre session est fermee, veuillez vous re-authentifier" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:92 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:92 -msgid "Cocher toute la colonne" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:96 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:96 -msgid "Decocher toute la colonne" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:100 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:100 -msgid "Creer un model" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:104 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:104 -msgid "Creer un utilisateur" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:112 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:112 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:94 -msgid "This file is too big" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:116 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:116 -msgid "This field is required" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:124 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:124 -msgid "Reset and apply" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:128 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:128 -msgid "Confirm reset users rights before applying template" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:132 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:132 -msgid "Rights will be erased before applying template, do you confirm?" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:136 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:136 -msgid "Reset and apply template" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:140 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:140 -msgid "Apply template" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:144 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:144 -msgid "Reset rights before applying template?" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:148 -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:152 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:148 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:152 -msgid "Would you like to reset rights before applying the template?" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:332 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:332 -msgid "Successful install" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:350 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:350 -msgid "Ajouter un nouvel utilisateur" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:355 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:355 -msgid "Adresse email du nouvel utilisateur" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:362 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:362 -msgid "Send an email to the user to setup his password" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:369 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:369 -msgid "Require email validation to activate the account" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:377 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:377 -msgid "Creer un modele" -msgstr "" - -#: ../tmp/cache_twig/9f/64/63bba563d6287361a5a5dac0d5f0fadbf377f64edde5275220ec9677ccae.php:382 -#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:382 -msgid "Nom du nouveau modele" -msgstr "" - #: ../tmp/cache_twig/ef/d4/b0d18671f32d3a0ebea5dcde8c814f610214c29a0e536c22584d6cb3d9b9.php:28 #: ../tmp/cache_twig/b6/35/094c101262771037c2b305afa21c933be3ff315dddb89406eff2609af687.php:28 msgid "thesaurus:: export en topics" @@ -5360,8 +4206,6 @@ msgid "phraseanet:: tri" msgstr "" #: ../tmp/cache_twig/ef/d4/b0d18671f32d3a0ebea5dcde8c814f610214c29a0e536c22584d6cb3d9b9.php:148 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:533 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:537 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:533 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:537 msgid "phraseanet:: tri par date" @@ -5407,11 +4251,6 @@ msgstr "" msgid "thesaurus:: tout fermer" msgstr "" -#: ../tmp/cache_twig/ef/64/5cea90ceef30cbdd896088270a3fea9ef25941881f0b67c3538c4ae9bf41.php:26 -#: ../tmp/cache_twig/5f/8c/a0fda08bf8166d5402804ace67a7420bf62316429b61364cb217b3b79fc8.php:26 -msgid "No account yet?" -msgstr "" - #: ../tmp/cache_twig/ef/aa/32409302817ec4ea0b8377058286e46bd91b8fd5a78e1344868065062e0f.php:22 #: ../lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:287 #: ../lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:318 @@ -5451,6 +4290,11 @@ msgstr "" msgid "Role" msgstr "" +#: ../tmp/cache_twig/ef/aa/32409302817ec4ea0b8377058286e46bd91b8fd5a78e1344868065062e0f.php:113 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:509 +msgid "Access" +msgstr "" + #: ../tmp/cache_twig/ef/aa/32409302817ec4ea0b8377058286e46bd91b8fd5a78e1344868065062e0f.php:126 msgid "Editor" msgstr "" @@ -5471,39 +4315,34 @@ msgstr "" msgid "Remove from basket" msgstr "" -#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:24 +#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:25 #: ../tmp/cache_twig/64/81/83b73fb5a6159fbb4692452426501112d9f3e3746c6a4da2a126b639e326.php:26 msgid "Reordonner automatiquement" msgstr "" -#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:29 +#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:30 #: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:475 #: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:605 #: ../tmp/cache_twig/64/81/83b73fb5a6159fbb4692452426501112d9f3e3746c6a4da2a126b639e326.php:31 msgid "Choisir" msgstr "" -#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:33 +#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:34 #: ../tmp/cache_twig/64/81/83b73fb5a6159fbb4692452426501112d9f3e3746c6a4da2a126b639e326.php:35 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:687 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:687 msgid "Re-initialiser" msgstr "" -#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:42 +#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:43 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:373 #: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:379 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:385 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:507 #: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:513 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:519 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:379 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:385 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:513 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:519 #: ../tmp/cache_twig/64/81/83b73fb5a6159fbb4692452426501112d9f3e3746c6a4da2a126b639e326.php:44 msgid "Re-ordonner" msgstr "" -#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:46 +#: ../tmp/cache_twig/09/7a/3b6a21611b5028c479dde4eba3354be7b4c59b2e0258047a0121bb273857.php:47 #: ../tmp/cache_twig/64/81/83b73fb5a6159fbb4692452426501112d9f3e3746c6a4da2a126b639e326.php:48 msgid "Inverser" msgstr "" @@ -5590,6 +4429,10 @@ msgstr "" msgid "admin::base: structure" msgstr "" +#: ../tmp/cache_twig/16/58/89313f4a32aefb4c4fe9c0d844742a9b5419ba1d73841c6efa78e4a35f34.php:23 +msgid "Security" +msgstr "" + #: ../tmp/cache_twig/16/27/832767e264016631625c82bea439d891e208ddc96a86f2373157cc2083a6.php:31 msgid "First Name" msgstr "" @@ -5640,6 +4483,13 @@ msgstr "" msgid "Apply a model" msgstr "" +#: ../tmp/cache_twig/f4/c7/5574405b1ed7d6237c4c894fc093d06961fc01a172d22fe904ec51a41b74.php:91 +#: ../tmp/cache_twig/ce/f5/3fc6514831a3beba14a6cf8235c50358ef94e24cf34037cff6f24d2c4c47.php:182 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:63 +#: ../lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php:48 +msgid "Users" +msgstr "" + #: ../tmp/cache_twig/f4/c7/5574405b1ed7d6237c4c894fc093d06961fc01a172d22fe904ec51a41b74.php:146 msgid "You need define a model before importing a list of users" msgstr "" @@ -5648,18 +4498,11 @@ msgstr "" msgid "There is no user to add." msgstr "" -#: ../tmp/cache_twig/f4/50/3e8696c531ec0100df491cfd8b925ea7909510ce910f9712638ad13938fc.php:26 -#: ../tmp/cache_twig/fd/d2/59bea1d752df653426a516d1059248f3fe0caeeb2049f1d3d763ff9c4fae.php:26 -msgid "Caption" -msgstr "" - #: ../tmp/cache_twig/8a/3d/7fc97ed3d56ebbf9be70953f845469b47745f11ed7c44e4cba328bc22467.php:28 -#: ../tmp/cache_twig/c0/5d/74a098a6a082faaf800e3ff2b172eab4641c5ea1cb332b22108bc5576d19.php:28 msgid "Aucune notification" msgstr "" #: ../tmp/cache_twig/8a/3d/7fc97ed3d56ebbf9be70953f845469b47745f11ed7c44e4cba328bc22467.php:37 -#: ../tmp/cache_twig/c0/5d/74a098a6a082faaf800e3ff2b172eab4641c5ea1cb332b22108bc5576d19.php:37 msgid "toutes les notifications" msgstr "" @@ -5680,37 +4523,13 @@ msgid "validation:: editer ma note" msgstr "" #: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:39 -#: ../tmp/cache_twig/c1/5e/cf8db8bc94d42a00aedc9c03659834a436d564629b4ae7f05814d5bfc52d.php:39 msgid "reportage" msgstr "" -#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:45 -#: ../tmp/cache_twig/c1/5e/cf8db8bc94d42a00aedc9c03659834a436d564629b4ae7f05814d5bfc52d.php:45 -msgid "image" -msgstr "" - -#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:51 -#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:244 -#: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:397 -#: ../tmp/cache_twig/c1/5e/cf8db8bc94d42a00aedc9c03659834a436d564629b4ae7f05814d5bfc52d.php:51 -msgid "document" -msgstr "" - #: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:57 -#: ../tmp/cache_twig/c1/5e/cf8db8bc94d42a00aedc9c03659834a436d564629b4ae7f05814d5bfc52d.php:57 msgid "animation flash" msgstr "" -#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:63 -#: ../tmp/cache_twig/c1/5e/cf8db8bc94d42a00aedc9c03659834a436d564629b4ae7f05814d5bfc52d.php:63 -msgid "video" -msgstr "" - -#: ../tmp/cache_twig/d9/63/5879877d0bd8cd050fb1aac6fe3ce9c705173a32e30378356611cfc68d2a.php:69 -#: ../tmp/cache_twig/c1/5e/cf8db8bc94d42a00aedc9c03659834a436d564629b4ae7f05814d5bfc52d.php:69 -msgid "audio" -msgstr "" - #: ../tmp/cache_twig/c7/20/7ca546f3a781705835b8042a1415de7cfbddcd9422998a3a3e90d55dc826.php:63 msgid "Par %author%" msgstr "" @@ -5847,144 +4666,36 @@ msgstr "" msgid "Which photosets you want to put you %number% photos into ?" msgstr "" -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:124 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:124 -msgid "" -"prod::thesaurusTab:dlg:Remplacement du candidat \"%(from)s\" par \"%(to)s\"" -msgstr "" - -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:259 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:259 -msgid "prod::thesaurusTab:dlg:Remplacement en cours." -msgstr "" - -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:322 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:322 -msgid "prod::thesaurusTab:dlg:Acceptation en cours." -msgstr "" - -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:415 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:415 -msgid "prod::thesaurusTab:dlg:Suppression en cours." -msgstr "" - -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:489 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:489 -#, php-format -msgid "prod::thesaurusTab:dlg:accepter le terme candidat \"%s\" ?" -msgstr "" - -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:498 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:498 -#, php-format -msgid "prod::thesaurusTab:dlg:accepter les %d termes candidats ?" -msgstr "" - -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:607 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:607 -#, php-format -msgid "" -"prod::thesaurusTab:wizard:clic-droit / accepter le terme candidat \"%s\"" -msgstr "" - -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:616 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:616 -#, php-format -msgid "prod::thesaurusTab:wizard:clic-droit / accepter les %s termes candidats" -msgstr "" - -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:654 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:654 -#, php-format -msgid "prod::thesaurusTab:dlg:remplacer le terme \"%s\" des fiches par :" -msgstr "" - -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:663 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:663 -#, php-format -msgid "prod::thesaurusTab:dlg:remplacer les %d termes des fiches par :" -msgstr "" - -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:703 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:703 -#, php-format -msgid "prod::thesaurusTab:dlg:supprimer le terme \"%s\" des fiches ?" -msgstr "" - -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:712 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:712 -#, php-format -msgid "prod::thesaurusTab:dlg:supprimer les %d termes des fiches ?" -msgstr "" - -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:776 -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:781 -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1038 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:776 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:781 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1038 -msgid "prod::thesaurusTab:tree:loading" -msgstr "" - -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1415 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1415 -msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" -msgstr "" - -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1425 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1425 -msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" -msgstr "" - -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1507 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1507 -msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" -msgstr "" - -#: ../tmp/cache_twig/41/84/a69baa2cefce6ea90aa80f612824f7260c17cdb37d65b35e6bbce938c72f.php:1527 -#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1527 -msgid "prod::thesaurusTab:cmenu:Remplacer par..." -msgstr "" - #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:22 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:22 -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:95 #: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:95 msgid "admin::utilisateurs: utilisateurs connectes" msgstr "" #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:104 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:104 msgid "admin::monitor: total des utilisateurs uniques : " msgstr "" #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:125 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:125 msgid "admin::monitor: utilisateur" msgstr "" #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:129 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:129 msgid "admin::monitor: modules" msgstr "" #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:137 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:137 msgid "admin::monitor: date de connexion" msgstr "" #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:141 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:141 msgid "admin::monitor: dernier access" msgstr "" #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:322 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:322 msgid "admin::monitor: bases sur lesquelles l'utilisateur est connecte : " msgstr "" #: ../tmp/cache_twig/60/71/9f695554b086be3c52604398a4bad8494e844d52ce08762603e83f180ebc.php:358 -#: ../tmp/cache_twig/33/59/31a65f341632e2bde67213a411fe023cdeb95c366f250d7044ce35ecc1cb.php:358 msgid "Session persistente" msgstr "" @@ -5996,7 +4707,7 @@ msgstr "" #: ../tmp/cache_twig/b4/9c/07c23ab66a045a8e5227f1d772335d8a711fcfe612db32f5ee1317a5f553.php:53 #: ../tmp/cache_twig/d4/8b/fe38991c5bbee8da424f61ed8f650ad4af837f54d8bff6db80fcfc6c90c2.php:38 #: ../tmp/cache_twig/51/72/a2a84c4596c645b645a25306b5814bd362620ab9c177c757a275f96a8f88.php:40 -#: ../lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:23 +#: ../lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:31 msgid "Login" msgstr "" @@ -6010,6 +4721,85 @@ msgstr "" msgid "Which playlist you want to put you %number% elements into ?" msgstr "" +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:124 +msgid "" +"prod::thesaurusTab:dlg:Remplacement du candidat \"%(from)s\" par \"%(to)s\"" +msgstr "" + +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:259 +msgid "prod::thesaurusTab:dlg:Remplacement en cours." +msgstr "" + +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:322 +msgid "prod::thesaurusTab:dlg:Acceptation en cours." +msgstr "" + +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:415 +msgid "prod::thesaurusTab:dlg:Suppression en cours." +msgstr "" + +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:489 +#, php-format +msgid "prod::thesaurusTab:dlg:accepter le terme candidat \"%s\" ?" +msgstr "" + +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:498 +#, php-format +msgid "prod::thesaurusTab:dlg:accepter les %d termes candidats ?" +msgstr "" + +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:607 +#, php-format +msgid "" +"prod::thesaurusTab:wizard:clic-droit / accepter le terme candidat \"%s\"" +msgstr "" + +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:616 +#, php-format +msgid "prod::thesaurusTab:wizard:clic-droit / accepter les %s termes candidats" +msgstr "" + +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:654 +#, php-format +msgid "prod::thesaurusTab:dlg:remplacer le terme \"%s\" des fiches par :" +msgstr "" + +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:663 +#, php-format +msgid "prod::thesaurusTab:dlg:remplacer les %d termes des fiches par :" +msgstr "" + +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:703 +#, php-format +msgid "prod::thesaurusTab:dlg:supprimer le terme \"%s\" des fiches ?" +msgstr "" + +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:712 +#, php-format +msgid "prod::thesaurusTab:dlg:supprimer les %d termes des fiches ?" +msgstr "" + +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:773 +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1031 +msgid "prod::thesaurusTab:tree:loading" +msgstr "" + +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1408 +msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" +msgstr "" + +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1418 +msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" +msgstr "" + +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1500 +msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" +msgstr "" + +#: ../tmp/cache_twig/33/ef/a190816b95eeb625cb3269ebd51c8679e1f98a0060fe89807fdfa03e7519.php:1520 +msgid "prod::thesaurusTab:cmenu:Remplacer par..." +msgstr "" + #: ../tmp/cache_twig/f2/87/6b100ae1c9075a7357e8702579ae166529504e1c6bbbdf2b0a14c26f76f0.php:35 msgid "Suppression de %n_element% photos" msgstr "" @@ -6026,8 +4816,14 @@ msgstr "" msgid "En cours d'envoi" msgstr "" +#: ../tmp/cache_twig/c4/88/c141694af2943b78af7cf167f27ce764039ff5705347b19ace268934697f.php:22 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:665 +#: ../tmp/cache_twig/3f/18/7fae8acb3562b67fc49741799c3c4010e3fb3e1c8b9c83d35749f5bc62a3.php:22 +#: ../tmp/cache_twig/1e/70/2d1aa33a2a9ecb61b3c9f9f292b295bdf5c8451ffe9ea674aef0f7363634.php:22 +msgid "boutton::modifier" +msgstr "" + #: ../tmp/cache_twig/ec/ad/35a6086a385e182c02e25c928b51514f7e1846f5be323b63c35ca93c79dd.php:30 -#: ../tmp/cache_twig/20/f9/502e6bea58def37b27b89f78b7b38a46e6f199feab2babc2aa990f295c85.php:30 msgid "Guest access" msgstr "" @@ -6058,109 +4854,85 @@ msgstr "" #: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:49 #: ../tmp/cache_twig/d3/4a/935ee7f92da2e1661502992f9a8f3e754a644c8a00ebe80cee29914b3054.php:47 #: ../tmp/cache_twig/d3/4a/935ee7f92da2e1661502992f9a8f3e754a644c8a00ebe80cee29914b3054.php:62 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:49 #: ../tmp/cache_twig/a9/19/8f9ba6319a22ee423e3fc74e98bcdbf9814a2ba850ffce3d04de14936907.php:145 #: ../tmp/cache_twig/9c/16/a0e4180a47fa7ae7b8a328953789ff927d94aef0808c0eaf8e4ced094a0e.php:152 msgid "rafraichir" msgstr "" #: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:53 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:53 msgid "Vous avez recu un nouveau panier" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:111 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:111 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:106 msgid "Vous avez recu une demande de validation de document sur ce panier" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:134 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:301 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:480 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:134 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:301 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:480 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:129 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:295 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:468 msgid "action::exporter" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:145 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:491 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:145 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:491 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:144 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:483 msgid "action::editer" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:170 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:341 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:170 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:341 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:172 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:335 msgid "action::Valider" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:253 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:253 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:247 msgid "Vous avez envoye une demande de validation de document sur ce panier" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:274 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:274 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:268 msgid "paniers:: panier recu de %pusher%" msgstr "" +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:311 #: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:317 -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:323 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:317 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:323 msgid "action::renommer" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:358 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:358 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:352 msgid "Archive" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:504 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:504 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:498 msgid "action::detacher" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:720 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:720 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:707 msgid "delete" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:809 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:809 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:796 msgid "panier:: ordre du panier" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:817 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:817 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:804 msgid "panier:: ordre Validation ascendante" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:825 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:825 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:812 msgid "panier:: ordre Validation descendante" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:873 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:873 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:860 msgid "L'utilisateur approuve ce document" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:879 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:879 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:866 msgid "L'utilisateur n'a pas encore donne son avis sur ce document" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:885 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:885 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:872 msgid "L'utilisateur desapprouve ce document" msgstr "" -#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:894 -#: ../tmp/cache_twig/4a/cc/d67776b4510d915aa71f6c1f98078e8c5ba5abb901906654050bb3439e39.php:894 +#: ../tmp/cache_twig/d6/5f/fe7979b57c801a6dfc6e36c230a277e5cf48c8a4438e8a88b9eb394ad063.php:881 msgid "This user does not participate to the validation but is only viewer." msgstr "" @@ -6532,6 +5304,10 @@ msgstr "" msgid "Installation is currenlty processing, please wait..." msgstr "" +#: ../tmp/cache_twig/fd/d2/59bea1d752df653426a516d1059248f3fe0caeeb2049f1d3d763ff9c4fae.php:26 +msgid "Caption" +msgstr "" + #: ../tmp/cache_twig/d3/4a/935ee7f92da2e1661502992f9a8f3e754a644c8a00ebe80cee29914b3054.php:40 msgid "Toutes les publications" msgstr "" @@ -6554,11 +5330,6 @@ msgstr "" msgid "charger d'avantage de publications" msgstr "" -#: ../tmp/cache_twig/d3/cf/2c8e27de15e38a7be2fdc5a9566c4438d53fa32db6bf6d192a3680a7fa71.php:63 -#: ../tmp/cache_twig/49/1b/0e2ac7b81840de06d8a0ad990fac70f9b079ab9b4bc116e5c4f76ee7f1d8.php:63 -msgid "Incorrect please try again" -msgstr "" - #: ../tmp/cache_twig/d3/38/355ca33f58e37d1320f8e94c1a5f108976494f40f91231913ef0f5dd7d13.php:22 #: ../tmp/cache_twig/d3/38/355ca33f58e37d1320f8e94c1a5f108976494f40f91231913ef0f5dd7d13.php:27 #: ../tmp/cache_twig/3e/44/f2e4d44fbc2e9c2427435cc867bea4369f3dd254b09946aba3bde9c7aca4.php:22 @@ -6566,95 +5337,208 @@ msgstr "" msgid "validation::envoyer mon rapport" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:204 -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:244 -msgid "thesaurus::menu: proprietes" +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:80 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:34 +#: ../lib/Alchemy/Phrasea/Controller/Client/Root.php:271 +msgid "" +"phraseanet::erreur: Une erreur est survenue, si ce probleme persiste, " +"contactez le support technique" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:208 -msgid "thesaurus::menu: refuser" +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:84 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:36 +#: ../lib/Alchemy/Phrasea/Controller/Client/Root.php:272 +msgid "" +"phraseanet::erreur: La connection au serveur Phraseanet semble etre " +"indisponible" +msgstr "" + +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:88 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:168 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:37 +#: ../lib/Alchemy/Phrasea/Controller/Client/Root.php:273 +msgid "" +"phraseanet::erreur: Votre session est fermee, veuillez vous re-authentifier" +msgstr "" + +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:92 +msgid "Cocher toute la colonne" +msgstr "" + +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:96 +msgid "Decocher toute la colonne" +msgstr "" + +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:100 +msgid "Creer un model" +msgstr "" + +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:104 +msgid "Creer un utilisateur" +msgstr "" + +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:112 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:94 +msgid "This file is too big" +msgstr "" + +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:116 +msgid "This field is required" +msgstr "" + +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:124 +msgid "Reset and apply" +msgstr "" + +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:128 +msgid "Confirm reset users rights before applying template" +msgstr "" + +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:132 +msgid "Rights will be erased before applying template, do you confirm?" +msgstr "" + +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:136 +msgid "Reset and apply template" +msgstr "" + +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:140 +msgid "Apply template" +msgstr "" + +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:144 +msgid "Reset rights before applying template?" +msgstr "" + +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:148 +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:152 +msgid "Would you like to reset rights before applying the template?" +msgstr "" + +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:335 +msgid "Successful install" +msgstr "" + +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:353 +msgid "Ajouter un nouvel utilisateur" +msgstr "" + +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:358 +msgid "Adresse email du nouvel utilisateur" +msgstr "" + +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:365 +msgid "Send an email to the user to setup his password" +msgstr "" + +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:372 +msgid "Require email validation to activate the account" +msgstr "" + +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:380 +msgid "Creer un modele" +msgstr "" + +#: ../tmp/cache_twig/9a/b6/a7f490b9e28d1254c79b1d6b0720a5557537e01b2a796e13edbbd6b3ac42.php:385 +msgid "Nom du nouveau modele" +msgstr "" + +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:112 +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:72 +#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:311 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:46 +msgid "phraseanet::chargement" msgstr "" #: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:212 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:252 +msgid "thesaurus::menu: proprietes" +msgstr "" + +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:216 +msgid "thesaurus::menu: refuser" +msgstr "" + +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:220 msgid "thesaurus::menu: accepter" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:217 -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:256 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:225 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:264 #: ../tmp/cache_twig/7a/72/f20894272ff1593d8f0771e60af00d476051d6843ac928e4937209748a05.php:112 msgid "thesaurus::menu: supprimer" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:221 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:229 msgid "thesaurus::menu: supprimer les candidats a 0 hits" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:226 -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:261 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:234 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:269 msgid "thesaurus::menu: chercher" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:230 -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:265 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:238 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:273 msgid "thesaurus::menu: exporter" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:237 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:245 msgid "thesaurus::menu: importer" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:248 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:256 msgid "thesaurus::menu: Nouveau terme" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:252 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:260 msgid "thesaurus::menu: Nouveau synonyme" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:269 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:277 msgid "thesaurus::menu: export topics" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:274 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:282 msgid "thesaurus::menu: lier au champ" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:322 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:330 msgid "thesaurus:: onglet stock" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:328 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:336 msgid "thesaurus:: afficher les termes refuses" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:342 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:350 msgid "thesaurus:: onglet thesaurus" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:547 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:555 msgid "" "thesaurus:: Supprimer cette branche ? (les termes concernes remonteront " "en candidats a la prochaine indexation)" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:552 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:560 msgid "" "thesaurus:: Des reponses sont retournees par cette branche. Supprimer " "quand meme ? (les termes concernes remonteront en candidats a la " "prochaine indexation)" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:606 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:614 msgid "thesaurus:: Tous les termes ont des hits" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:615 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:623 msgid "" "thesaurus:: Des termes de cette branche ne renvoient pas de hits. Les " "supprimer ?" msgstr "" -#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:1218 +#: ../tmp/cache_twig/9a/16/7afdc2310853cccb62c2ddeedce28326fa61965a13a39df59d491d9500c5.php:1226 msgid "thesaurus:: deplacer le terme dans la corbeille ?" msgstr "" @@ -6676,6 +5560,10 @@ msgstr "" msgid "Deselect all" msgstr "" +#: ../tmp/cache_twig/49/1b/0e2ac7b81840de06d8a0ad990fac70f9b079ab9b4bc116e5c4f76ee7f1d8.php:63 +msgid "Incorrect please try again" +msgstr "" + #: ../tmp/cache_twig/d1/be/831744873b5b165b6af565a7f750e773ed30b1dee6fa45f29e8601e3ed5f.php:29 msgid "Fail" msgstr "" @@ -6710,13 +5598,19 @@ msgstr "" msgid "Informations personnelles" msgstr "" +#: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:118 +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:793 +#: ../lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:54 +msgid "admin::compte-utilisateur sexe" +msgstr "" + #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:198 msgid "login:: Changer mon adresse email" msgstr "" #: ../tmp/cache_twig/69/b4/0c7b997e3992628918451ead61f2169b878196e58c2b6704c657eb026257.php:206 #: ../lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:53 -#: ../lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:32 +#: ../lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:40 msgid "Password" msgstr "" @@ -6766,7 +5660,7 @@ msgid "%length% peoples" msgstr "" #: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:113 -#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:129 +#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:136 msgid "Edit" msgstr "" @@ -6774,14 +5668,39 @@ msgstr "" msgid "View" msgstr "" +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:161 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:121 +msgid "Push::filter on login" +msgstr "" + #: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:167 msgid "Push::filter on name" msgstr "" +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:173 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:137 +msgid "Push::filter on countries" +msgstr "" + +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:179 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:145 +msgid "Push::filter on companies" +msgstr "" + +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:185 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:153 +msgid "Push::filter on emails" +msgstr "" + #: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:191 msgid "Push::filter on templates" msgstr "" +#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:197 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:158 +msgid "Push::filter starts" +msgstr "" + #: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:211 msgid "Activite" msgstr "" @@ -6799,15 +5718,6 @@ msgstr "" msgid "Position" msgstr "" -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:244 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:269 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:294 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:319 -#: ../tmp/cache_twig/b3/e0/4a4e1ce4ec6d4119b307a8fa5d5d9ae16540ac85c107db26273140e09cf5.php:344 -#: ../tmp/cache_twig/9d/de/4a3fc48903fedfcf545b274e1584032d25e8b5d0713f2d25c0c3ed18920b.php:42 -msgid "All" -msgstr "" - #: ../tmp/cache_twig/1a/e7/c3a81dbf862a5b83cba1eb1bea56137758a339e52aae332db56749a2ea35.php:24 msgid "Nom du nouveau panier" msgstr "" @@ -6850,7 +5760,7 @@ msgstr "" #: ../tmp/cache_twig/88/b3/a68391b09fbc77bacf14181cf9292ad30591784465daaf3f80a24ca136c1.php:98 #: ../tmp/cache_twig/e2/07/010647dc8415a615d5f8cf2093c6fa3721c9a3b8e58e708eb900cc7bdebf.php:98 -#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:347 +#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:345 msgid "report:: jour" msgstr "" @@ -6946,6 +5856,143 @@ msgstr "" msgid "Do you want to send your report ?" msgstr "" +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:69 +msgid "Rights" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:79 +msgid "Infos" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:111 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:89 +msgid "Reglages:: reglages d acces guest" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:117 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:97 +msgid "Reglages:: reglages d inscitpition automatisee" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:129 +msgid "Edition des droits de %display_name%" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:141 +msgid "Edition des droits de %number% utilisateurs" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:150 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:209 +msgid "Apply a template" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:155 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:214 +msgid "boutton::choisir" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:177 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:249 +msgid "Delete all users rights" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:461 +msgid "Allowed to publish" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:470 +msgid "Manage Thesaurus" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:479 +msgid "Manage Database" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:488 +msgid "Manage DB fields" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:518 +msgid "Active" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:527 +msgid "Allowed to add in basket" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:536 +msgid "Access to preview" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:545 +msgid "Remove watermark" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:554 +msgid "Access to HD" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:563 +msgid "Allowed to order" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:572 +msgid "Set download quotas" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:599 +msgid "Set time restrictions" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:626 +msgid "Set statuses restrictions" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:656 +msgid "Allowed to add" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:665 +msgid "Allowed to edit" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:674 +msgid "Allowed to change statuses" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:683 +msgid "Allowed to delete" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:692 +msgid "Access to image tools" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:701 +msgid "Manage users" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:710 +msgid "Allowed to access report" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:719 +msgid "Allowed to push" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:728 +msgid "Manage collection" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:737 +msgid "Manage values lists" +msgstr "" + +#: ../tmp/cache_twig/42/cc/1f4fdbf351eb278d4db2fa68a0aa80ee32b4d7c33ec4150f5a301e9f30b5.php:1022 +msgid "Are you sure you want to reset rights?" +msgstr "" + #: ../tmp/cache_twig/f1/c9/dbf9ae7044827c2101e54f3cf96ca794d3a1fe6570efec13f218513c5008.php:49 msgid "thesaurus:: suppression du lien du champ %field%" msgstr "" @@ -6969,6 +6016,31 @@ msgstr "" msgid "thesaurus:: reindexer tous les enregistrements" msgstr "" +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:35 +msgid "Suggested values" +msgstr "" + +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:95 +msgid "admin::sugval: Valeurs suggerees/Preferences de la collection" +msgstr "" + +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:130 +msgid "admin::sugval: champs" +msgstr "" + +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:196 +#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:246 +#: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:473 +msgid "boutton::ajouter" +msgstr "" + +#: ../tmp/cache_twig/eb/2c/568885d5344d512046d52d66a2d2592712f142a7e25d361c63e14505c297.php:1064 +msgid "" +"admin::sugval: Attention, passer en mode graphique implique la perte des " +"modifications du xml si vous n'appliquez pas les changements avant.\n" +"Continuer quand meme" +msgstr "" + #: ../tmp/cache_twig/08/16/03bf13cb1a99a73a5231f0d0f7f0e327ccd12cd3288ac87096407b704187.php:28 msgid "Chercher" msgstr "" @@ -7081,114 +6153,90 @@ msgid "Mettre a jour" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:40 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:40 msgid "phraseanet:: collection" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:91 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:91 msgid "admin::base:collection: numero de collection distante" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:97 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:97 msgid "admin::base:collection: etat de la collection" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:99 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:312 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:99 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:312 msgid "admin::base:collection: activer la collection" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:99 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:312 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:99 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:312 msgid "admin::base:collection: descativer la collection" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:107 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:107 #: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:122 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:122 msgid "phraseanet:: details" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:118 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:118 msgid "admin::collection:: Gestionnaires des commandes" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:166 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:166 msgid "setup:: ajouter un administrateur des commandes" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:180 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:180 msgid "" "admin::collection:: presentation des elements lors de la diffusion aux " "utilisateurs externes (publications)" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:193 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:193 msgid "admin::colelction::presentation des elements : rien" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:203 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:203 msgid "admin::colelction::presentation des elements : watermark" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:213 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:213 msgid "admin::colelction::presentation des elements : stamp" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:271 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:271 -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:268 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:268 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:276 msgid "Set labels" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:291 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:291 msgid "admin::base:collection: renommer la collection" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:307 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:307 msgid "" "admin::base:collection: etes vous sur darreter la publication de cette " "collection" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:307 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:307 msgid "admin::base:collection: etes vous sur de publier cette collection ?" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:323 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:323 msgid "admin::base:collection: etes vous sur de vider la collection ?" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:328 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:328 msgid "admin::base:collection: vider la collection" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:339 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:339 msgid "admin::collection: Confirmez vous la suppression de cette collection ?" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:358 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:358 msgid "admin::base:collection: minilogo actuel" msgstr "" @@ -7196,32 +6244,23 @@ msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:445 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:501 #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:557 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:389 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:445 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:501 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:557 -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:534 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:534 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:542 msgid "admin::base:collection: aucun fichier (minilogo, watermark ...)" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:414 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:414 msgid "Watermark" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:470 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:470 msgid "Stamp logo" msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:526 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:526 msgid "admin::base:collection: image de presentation : " msgstr "" #: ../tmp/cache_twig/84/5f/a0ebccbc209614f54ddf16cf037355990905cefd3079e576a313f6a11586.php:584 -#: ../tmp/cache_twig/48/98/497cb63f524967a9b60c512e9398973c711787155681f9acda512ca1c400.php:584 #: ../tmp/cache_twig/5f/5b/af90ed6dd30d3a17dd01e65d349b45edf4aad5dadbb00da847719774c6d7.php:484 msgid "Invalid file type" msgstr "" @@ -7294,6 +6333,10 @@ msgstr "" msgid "Name" msgstr "" +#: ../tmp/cache_twig/10/7b/8164a1c1e4ee3ff6ab9801cdfdb8871881d8c31a9c7fb91333dec6ac13cc.php:126 +msgid "reponses:: partager" +msgstr "" + #: ../tmp/cache_twig/dd/b4/2981051829969df987bd8ddb5c6dc5f9d0d10f5393c21080f9cd47633f95.php:213 msgid "Create new subdef" msgstr "" @@ -7414,6 +6457,12 @@ msgstr "" msgid "Apply to all selected documents" msgstr "" +#: ../tmp/cache_twig/b4/9c/07c23ab66a045a8e5227f1d772335d8a711fcfe612db32f5ee1317a5f553.php:71 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:129 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:295 +msgid "First/Last Name" +msgstr "" + #: ../tmp/cache_twig/b4/9c/07c23ab66a045a8e5227f1d772335d8a711fcfe612db32f5ee1317a5f553.php:107 msgid "E-Mail" msgstr "" @@ -7482,8 +6531,8 @@ msgstr "" #: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:138 #: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:142 -#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:312 -#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:316 +#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:325 +#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:329 #: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:102 msgid "User can download HD" msgstr "" @@ -7513,11 +6562,11 @@ msgstr "" msgid "Accuse de reception" msgstr "" -#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:261 +#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:274 msgid "Force authentication" msgstr "" -#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:270 +#: ../tmp/cache_twig/7b/1f/b820e010a22209b63a3314f5462334edd4e1ff7ada6c80fff2be5b79f777.php:283 msgid "" "The parameter \"force authentication\" forces the recipient(s) of the push " "to possess a Phraseanet account\n" @@ -7724,6 +6773,11 @@ msgstr "" msgid "Read-only" msgstr "" +#: ../tmp/cache_twig/51/0c/18503088e319b8875c981341ba05114f38df1aac9e32d800428337ffffeb.php:312 +#: ../lib/conf.d/_GV_template.inc:380 +msgid "Report" +msgstr "" + #: ../tmp/cache_twig/51/0c/18503088e319b8875c981341ba05114f38df1aac9e32d800428337ffffeb.php:320 msgid "Display thumbnails" msgstr "" @@ -7862,93 +6916,20 @@ msgstr "" msgid "Select a list on the left and edit it !" msgstr "" -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:34 -#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:34 -msgid "Tableau de bord" -msgstr "" - -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:74 -#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:74 -msgid "SearchEngine settings" -msgstr "" - -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:116 -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:394 -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:483 -#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:116 -#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:394 -#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:483 -msgid "admin::utilisateurs: utilisateurs" -msgstr "" - -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:133 -#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:133 -msgid "admin::utilisateurs: demandes en cours" -msgstr "" - -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:177 -#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:177 -msgid "admin::utilisateurs: gestionnaire de taches" -msgstr "" - -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:199 -#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:199 -msgid "admin::utilisateurs: bases de donnees" -msgstr "" - -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:288 -#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:288 -msgid "admin::structure: reglage de la structure" -msgstr "" - -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:300 -#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:300 -msgid "CHAMPS" -msgstr "" - -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:312 -#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:312 -msgid "SUBDEFS" -msgstr "" - -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:324 -#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:324 -msgid "admin::status: reglage des status" -msgstr "" - -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:335 -#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:335 -msgid "admin:: CGUs" -msgstr "" - -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:347 -#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:347 -msgid "admin::collection: ordre des collections" -msgstr "" - -#: ../tmp/cache_twig/a9/12/eadbc0dce9b453905fd54ea604cbb71dd91fb4728a8cbcd64bc454abfbaf.php:460 -#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:460 -msgid "admin::base: preferences de collection" -msgstr "" - #: ../tmp/cache_twig/a9/19/8f9ba6319a22ee423e3fc74e98bcdbf9814a2ba850ffce3d04de14936907.php:58 #: ../tmp/cache_twig/9c/16/a0e4180a47fa7ae7b8a328953789ff927d94aef0808c0eaf8e4ced094a0e.php:57 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1133 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1133 msgid "action : status" msgstr "" #: ../tmp/cache_twig/a9/19/8f9ba6319a22ee423e3fc74e98bcdbf9814a2ba850ffce3d04de14936907.php:71 #: ../tmp/cache_twig/9c/16/a0e4180a47fa7ae7b8a328953789ff927d94aef0808c0eaf8e4ced094a0e.php:70 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1151 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1151 msgid "action : collection" msgstr "" #: ../tmp/cache_twig/a9/19/8f9ba6319a22ee423e3fc74e98bcdbf9814a2ba850ffce3d04de14936907.php:84 #: ../tmp/cache_twig/9c/16/a0e4180a47fa7ae7b8a328953789ff927d94aef0808c0eaf8e4ced094a0e.php:83 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1330 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1378 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1330 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1378 msgid "action : push" @@ -7956,8 +6937,6 @@ msgstr "" #: ../tmp/cache_twig/a9/19/8f9ba6319a22ee423e3fc74e98bcdbf9814a2ba850ffce3d04de14936907.php:97 #: ../tmp/cache_twig/9c/16/a0e4180a47fa7ae7b8a328953789ff927d94aef0808c0eaf8e4ced094a0e.php:96 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1340 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1388 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1340 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1388 #: ../lib/Alchemy/Phrasea/Controller/Prod/Language.php:110 @@ -7966,9 +6945,6 @@ msgstr "" #: ../tmp/cache_twig/a9/19/8f9ba6319a22ee423e3fc74e98bcdbf9814a2ba850ffce3d04de14936907.php:108 #: ../tmp/cache_twig/9c/16/a0e4180a47fa7ae7b8a328953789ff927d94aef0808c0eaf8e4ced094a0e.php:107 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1353 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1403 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:2133 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1353 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1403 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:2133 @@ -7977,9 +6953,6 @@ msgstr "" #: ../tmp/cache_twig/a9/19/8f9ba6319a22ee423e3fc74e98bcdbf9814a2ba850ffce3d04de14936907.php:114 #: ../tmp/cache_twig/9c/16/a0e4180a47fa7ae7b8a328953789ff927d94aef0808c0eaf8e4ced094a0e.php:113 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1363 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1413 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:2138 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1363 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1413 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:2138 @@ -7988,7 +6961,6 @@ msgstr "" #: ../tmp/cache_twig/a9/19/8f9ba6319a22ee423e3fc74e98bcdbf9814a2ba850ffce3d04de14936907.php:127 #: ../tmp/cache_twig/9c/16/a0e4180a47fa7ae7b8a328953789ff927d94aef0808c0eaf8e4ced094a0e.php:126 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1433 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1433 msgid "action : outils" msgstr "" @@ -8126,6 +7098,10 @@ msgstr "" msgid "Please select at least one valid file" msgstr "" +#: ../tmp/cache_twig/5f/8c/a0fda08bf8166d5402804ace67a7420bf62316429b61364cb217b3b79fc8.php:26 +msgid "No account yet?" +msgstr "" + #: ../tmp/cache_twig/68/8d/e83c91f65268e1fdebb213e07d3c4b9807c2f5487048997476a9c4ea9848.php:41 msgid "Refresh" msgstr "" @@ -8413,6 +7389,94 @@ msgstr "" msgid "Sent" msgstr "" +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:44 +msgid "The user has been created." +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:50 +#, php-format +msgid "%user_count% users have been created." +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:71 +msgid "admin::user: nouvel utilisateur" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:75 +msgid "admin::user: nouveau template" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:81 +msgid "admin::user: import d'utilisateurs" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:85 +msgid "admin::user: export d'utilisateurs" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:112 +msgid "Filter" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:166 +msgid "Last applied template" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:236 +msgid "boutton::appliquer" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:265 +msgid "admin::compte-utilisateur id utilisateur" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:343 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Users.php:310 +msgid "admin::compte-utilisateur pays" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:359 +msgid "admin::compte-utilisateur dernier modele applique" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:375 +msgid "admin::compte-utilisateur date de creation" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:420 +msgid "This is a template" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:429 +msgid "This user has no rights" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:638 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:649 +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:660 +msgid "%n_par_page% par page" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:669 +msgid "Supprimer" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:807 +msgid "boutton::exporter" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:831 +msgid "select at least one user" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:843 +msgid "Are you sure you want delete users rights ?" +msgstr "" + +#: ../tmp/cache_twig/8c/f4/64c10cb30a56f31b158e58b059d30ce10ee4eb3bbd21a509b43b3702db17.php:867 +msgid "users rights have been reseted" +msgstr "" + #: ../tmp/cache_twig/8c/3d/8799257e40172576b2c4610f3409da0c1fd33e1559a70eb893004c802202.php:77 msgid "No matches found" msgstr "" @@ -8477,7 +7541,6 @@ msgid "ISO sensibility" msgstr "" #: ../tmp/cache_twig/6c/f7/621836377e72e0aedcf913450a25b5341b50103f3d0f90d15dd649b58718.php:319 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:651 #: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:651 msgid "Flash" msgstr "" @@ -8537,146 +7600,121 @@ msgid "boutton::retry" msgstr "" #: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:43 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:43 msgid "forms::operation effectuee OK" msgstr "" #: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:81 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:81 msgid "admin::base: Alias" msgstr "" #: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:99 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:99 msgid "Rename" msgstr "" #: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:112 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:112 msgid "admin::base: nombre d'enregistrements sur la base :" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:133 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:133 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:129 +msgid "admin::base: subdefs to be created :" +msgstr "" + +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:141 msgid "admin::base: nombre de mots uniques sur la base : " msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:142 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:142 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:150 msgid "admin::base: nombre de mots indexes sur la base" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:155 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:155 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:163 msgid "admin::base: nombre de termes de Thesaurus indexes :" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:174 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:174 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:182 msgid "admin::base: document indexes en utilisant la fiche xml" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:185 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:185 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:193 msgid "admin::base: document indexes en utilisant le thesaurus" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:210 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:210 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:218 msgid "admin::base: Cette base est indexable" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:296 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:296 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:304 msgid "admin::base: Confirmer la suppression de tous les logs" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:301 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:301 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:309 msgid "admin::base: supprimer tous les logs" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:312 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:312 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:320 msgid "admin::base: Confirmer vous l'arret de la publication de la base" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:317 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:317 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:325 msgid "admin::base: arreter la publication de la base" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:328 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:328 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:336 msgid "admin::base: Confirmer le vidage complet de la base" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:333 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:333 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:341 msgid "admin::base: vider la base" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:344 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:344 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:352 msgid "admin::base: Confirmer la suppression de la base" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:349 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:349 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:357 msgid "admin::base: supprimer la base" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:361 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:361 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:369 msgid "Confirmez-vous la re-indexation de la base ?" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:365 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:365 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:373 msgid "base:: re-indexer" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:379 -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:436 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:379 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:436 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:387 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:444 msgid "admin::base:collection: Monter une collection" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:397 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:397 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:405 msgid "Monter la collection %name%" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:464 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:464 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:472 msgid "Activer une collection" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:486 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:486 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:494 #: ../tmp/cache_twig/cf/5b/3bf639774f4a6aa64dba02220ef918ec08a83365af21a4c60c81bde44a14.php:50 #: ../tmp/cache_twig/e8/54/dfb697806e2c91b99ffdbd24a1ebc60c6e99761bb866cafc0809cff8252e.php:58 msgid "Activer" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:508 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:508 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:516 msgid "admin::base: logo impression PDF" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:524 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:524 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:532 msgid "admin::base:collection: supprimer le logo" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:544 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:544 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:552 msgid "admin::base: envoyer un logo (jpeg 35px de hauteur max)" msgstr "" -#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:567 -#: ../tmp/cache_twig/0d/51/4d3b41d579f4dfdcf4a6d19883fb12c401aaeed7a5c96113b2fbb1d72aa4.php:567 +#: ../tmp/cache_twig/3f/dd/e8aa84e869c5c7619c3e3880c0b999fd23cb0c0ecacde77d1435f2d0220c.php:580 #: ../lib/Alchemy/Phrasea/Controller/Admin/Databox.php:949 msgid "admin::base: aucun alias" msgstr "" @@ -8741,19 +7779,19 @@ msgstr "" msgid "admin::tasks: etat de progression de la tache" msgstr "" -#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:135 +#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:145 msgid "Start" msgstr "" -#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:141 +#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:151 msgid "Stop" msgstr "" -#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:153 +#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:165 msgid "Logs" msgstr "" -#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:216 +#: ../tmp/cache_twig/0d/6c/ce0550340a3eca68cef9c44bdc597df87922b82bdb050524838afb6e2927.php:218 msgid "admin::tasks: Nouvelle tache" msgstr "" @@ -9096,6 +8134,60 @@ msgstr "" msgid "%value% likes" msgstr "" +#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:34 +msgid "Tableau de bord" +msgstr "" + +#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:74 +msgid "SearchEngine settings" +msgstr "" + +#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:116 +#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:394 +#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:480 +msgid "admin::utilisateurs: utilisateurs" +msgstr "" + +#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:133 +msgid "admin::utilisateurs: demandes en cours" +msgstr "" + +#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:177 +msgid "admin::utilisateurs: gestionnaire de taches" +msgstr "" + +#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:199 +msgid "admin::utilisateurs: bases de donnees" +msgstr "" + +#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:288 +msgid "admin::structure: reglage de la structure" +msgstr "" + +#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:300 +msgid "CHAMPS" +msgstr "" + +#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:312 +msgid "SUBDEFS" +msgstr "" + +#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:324 +msgid "admin::status: reglage des status" +msgstr "" + +#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:335 +msgid "admin:: CGUs" +msgstr "" + +#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:347 +msgid "admin::collection: ordre des collections" +msgstr "" + +#: ../tmp/cache_twig/1e/96/776ebadb740ee36b8f45a95e97994f022db34264ec297d328f8832ec70fb.php:460 +msgid "admin::base: preferences de collection" +msgstr "" + #: ../tmp/cache_twig/1e/bb/4b22948fc6a7e5073b258160c8fae78d85ed2c7342bf01fc11c8aba0ee48.php:158 msgid "Aucun statut editable" msgstr "" @@ -9324,414 +8416,18 @@ msgstr "" msgid "Certaines donnees du reportage ont change" msgstr "" -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:188 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:188 -msgid "Chargement" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:258 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:258 -msgid "Close the WorkZone" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:284 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:284 -msgid "prod::thesaurusTab:thesaurus" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:291 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:291 -msgid "prod::thesaurusTab:candidats" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:306 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:306 -msgid "prod::thesaurusTab:wizard:accepter le terme candidat" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:312 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:312 -msgid "prod::thesaurusTab:wizard:remplacer par le terme" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:368 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:436 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:368 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:436 -msgid "chargement" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:494 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:500 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:494 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:500 -msgid "Browse Baskets" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:511 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:517 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:521 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:511 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:517 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:521 -msgid "action:: nouveau reportage" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:545 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:549 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:545 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:549 -msgid "phraseanet:: tri par nom" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:557 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1486 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1667 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:557 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1486 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1667 -msgid "Preferences" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:583 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:583 -msgid "Advanced Search" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:631 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:631 -msgid "Tout type" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:635 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:635 -msgid "Image" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:639 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:639 -msgid "Video" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:643 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:643 -msgid "Audio" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:647 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:647 -msgid "Document" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:693 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:693 -msgid "Trier par " -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:745 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:745 -msgid "rechercher par stemme" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:755 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:755 -msgid "Les termes apparaissent dans le(s) champs" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:760 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:941 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:760 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:941 -msgid "rechercher dans tous les champs" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:801 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:801 -msgid "Status des documents a rechercher" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:913 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:913 -msgid "Rechercher dans un champ date" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:957 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:970 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:957 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:970 -msgid "YYYY/MM/DD" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1028 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1028 -msgid "reponses:: selectionner tout" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1037 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1037 -msgid "reponses:: selectionner rien" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1046 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1046 -msgid "phraseanet::type:: images" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1064 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1064 -msgid "phraseanet::type:: videos" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1073 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1073 -msgid "phraseanet::type:: audios" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1547 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1547 -msgid "raccourci :: a propos des raccourcis claviers" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1552 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1552 -msgid "Raccourcis claviers en cours de recherche : " -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1557 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1593 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1557 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1593 -msgid "Raccourcis:: ctrl-a : tout selectionner " -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1561 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1597 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1561 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1597 -msgid "Raccourcis:: ctrl-p : imprimer la selection " -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1565 -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1601 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1565 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1601 -msgid "Raccourcis:: ctrl-e : editer la selection " -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1569 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1569 -msgid "Raccourcis::fleche gauche : page precedente " -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1573 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1573 -msgid "Raccourcis::fleche droite : page suivante " -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1577 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1577 -msgid "Raccourcis::fleche haut : scroll vertical " -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1581 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1581 -msgid "Raccourcis::fleche bas : scroll vertical " -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1588 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1588 -msgid "Raccourcis claviers de la zone des paniers : " -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1608 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1608 -msgid "Raccourcis claviers en cours de editing : " -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1613 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1613 -msgid "Raccourcis::tab/shift-tab se ballade dans les champs " -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1620 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1620 -msgid "Raccourcis claviers en cours de preview : " -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1625 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1625 -msgid "Raccourcis::fleche gauche : en avant " -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1629 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1629 -msgid "Raccourcis::fleche gauche : en arriere " -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1633 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1633 -msgid "Raccourcis::espace : arreter/demarrer le diaporama " -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1641 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1641 -msgid "" -"Vous pouvez quitter la plupart des fenetres survolantes via la touche echap " -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1652 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1652 -msgid "raccourcis :: ne plus montrer cette aide" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1673 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1673 -msgid "Affichage" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1677 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1677 -msgid "Configuration" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1696 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1696 -msgid "Use latest search settings on Production loading" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1705 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1705 -msgid "Mode de presentation" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1720 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1720 -msgid "reponses:: mode vignettes" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1732 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1732 -msgid "reponses:: mode liste" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1739 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1739 -msgid "Theme" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1748 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1748 -msgid "Selecteur de theme" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1770 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1770 -msgid "Presentation de vignettes" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1781 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1781 -msgid "Iconographe (description au rollover)" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1793 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1793 -msgid "Graphiste (preview au rollover)" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1803 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1803 -msgid "Informations techniques" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1814 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1814 -msgid "Afficher" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1826 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1826 -msgid "Afficher dans la notice" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1838 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1838 -msgid "Ne pas afficher" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1848 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1848 -msgid "Type de documents" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1859 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1859 -msgid "Afficher une icone" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1868 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1868 -msgid "reponses:: images par pages : " -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1881 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1881 -msgid "reponses:: taille des images : " -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1895 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1895 -msgid "Couleur de selection" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1910 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1910 -msgid "Affichage au demarrage" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1926 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1926 -msgid "Ma derniere question" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1937 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1937 -msgid "Une question personnelle" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:1959 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1959 -msgid "Aide" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:2066 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:2066 -msgid "Presentation de vignettes de panier" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:2084 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:2084 -msgid "Afficher les status" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:2104 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:2104 -msgid "Afficher la fiche descriptive" -msgstr "" - -#: ../tmp/cache_twig/4d/e3/ea3fcb2d3e7975ff578926bd30accf55a102a8ee205fe8a41f5236f64c7a.php:2124 -#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:2124 -msgid "Afficher le titre" -msgstr "" - #: ../tmp/cache_twig/cc/49/de3b22a0ad2136aa4a2d04ab8029e9576ebc9278899da69e600ed81ac675.php:27 msgid "Apparait aussi dans ces reportages" msgstr "" -#: ../tmp/cache_twig/cc/49/de3b22a0ad2136aa4a2d04ab8029e9576ebc9278899da69e600ed81ac675.php:73 +#: ../tmp/cache_twig/cc/49/de3b22a0ad2136aa4a2d04ab8029e9576ebc9278899da69e600ed81ac675.php:75 msgid "Apparait aussi dans ces paniers" msgstr "" +#: ../tmp/cache_twig/b5/52/f39c1776945e313240f92a872789c285591d5c211a5c387715fa1d332cd2.php:62 +msgid "language" +msgstr "" + #: ../tmp/cache_twig/80/14/0243e87c831fd5c01bb92f110393631aa5184797a34a02fd1313f2f9a197.php:62 msgid "Create an account manually" msgstr "" @@ -9748,6 +8444,319 @@ msgstr "" msgid "boutton::mettre a jour" msgstr "" +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:188 +msgid "Chargement" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:258 +msgid "Close the WorkZone" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:284 +msgid "prod::thesaurusTab:thesaurus" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:291 +msgid "prod::thesaurusTab:candidats" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:306 +msgid "prod::thesaurusTab:wizard:accepter le terme candidat" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:312 +msgid "prod::thesaurusTab:wizard:remplacer par le terme" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:368 +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:436 +msgid "chargement" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:494 +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:500 +msgid "Browse Baskets" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:511 +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:517 +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:521 +msgid "action:: nouveau reportage" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:545 +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:549 +msgid "phraseanet:: tri par nom" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:557 +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1486 +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1667 +msgid "Preferences" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:583 +msgid "Advanced Search" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:631 +msgid "Tout type" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:635 +msgid "Image" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:639 +msgid "Video" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:643 +msgid "Audio" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:647 +msgid "Document" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:693 +msgid "Trier par " +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:745 +msgid "rechercher par stemme" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:755 +msgid "Les termes apparaissent dans le(s) champs" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:760 +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:941 +msgid "rechercher dans tous les champs" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:801 +msgid "Status des documents a rechercher" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:913 +msgid "Rechercher dans un champ date" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:957 +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:970 +msgid "YYYY/MM/DD" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1028 +msgid "reponses:: selectionner tout" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1037 +msgid "reponses:: selectionner rien" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1046 +msgid "phraseanet::type:: images" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1064 +msgid "phraseanet::type:: videos" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1073 +msgid "phraseanet::type:: audios" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1547 +msgid "raccourci :: a propos des raccourcis claviers" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1552 +msgid "Raccourcis claviers en cours de recherche : " +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1557 +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1593 +msgid "Raccourcis:: ctrl-a : tout selectionner " +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1561 +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1597 +msgid "Raccourcis:: ctrl-p : imprimer la selection " +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1565 +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1601 +msgid "Raccourcis:: ctrl-e : editer la selection " +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1569 +msgid "Raccourcis::fleche gauche : page precedente " +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1573 +msgid "Raccourcis::fleche droite : page suivante " +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1577 +msgid "Raccourcis::fleche haut : scroll vertical " +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1581 +msgid "Raccourcis::fleche bas : scroll vertical " +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1588 +msgid "Raccourcis claviers de la zone des paniers : " +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1608 +msgid "Raccourcis claviers en cours de editing : " +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1613 +msgid "Raccourcis::tab/shift-tab se ballade dans les champs " +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1620 +msgid "Raccourcis claviers en cours de preview : " +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1625 +msgid "Raccourcis::fleche gauche : en avant " +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1629 +msgid "Raccourcis::fleche gauche : en arriere " +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1633 +msgid "Raccourcis::espace : arreter/demarrer le diaporama " +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1641 +msgid "" +"Vous pouvez quitter la plupart des fenetres survolantes via la touche echap " +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1652 +msgid "raccourcis :: ne plus montrer cette aide" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1673 +msgid "Affichage" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1677 +msgid "Configuration" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1696 +msgid "Use latest search settings on Production loading" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1705 +msgid "Mode de presentation" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1720 +msgid "reponses:: mode vignettes" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1732 +msgid "reponses:: mode liste" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1739 +msgid "Theme" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1748 +msgid "Selecteur de theme" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1770 +msgid "Presentation de vignettes" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1781 +msgid "Iconographe (description au rollover)" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1793 +msgid "Graphiste (preview au rollover)" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1803 +msgid "Display technical data" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1814 +msgid "In the answer grid" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1826 +msgid "After metadata" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1838 +msgid "Do not display" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1848 +msgid "Type de documents" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1859 +msgid "Afficher une icone" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1868 +msgid "reponses:: images par pages : " +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1881 +msgid "reponses:: taille des images : " +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1895 +msgid "Couleur de selection" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1910 +msgid "Affichage au demarrage" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1926 +msgid "Ma derniere question" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1937 +msgid "Une question personnelle" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:1959 +msgid "Aide" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:2066 +msgid "Presentation de vignettes de panier" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:2084 +msgid "Afficher les status" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:2104 +msgid "Afficher la fiche descriptive" +msgstr "" + +#: ../tmp/cache_twig/c3/ab/c3d7cd8dd996eb27a3bbf052d6132d1245cc24cce5ee1f4ba9876300625f.php:2124 +msgid "Afficher le titre" +msgstr "" + #: ../tmp/cache_twig/7d/1d/0e0610f67f01a7610b14ed19d95faa829f3da46d9c1c8e5b43116a1f9d33.php:26 msgid "panier:: nom" msgstr "" @@ -9768,7 +8777,7 @@ msgstr "" msgid "thesaurus:: Lier la branche de thesaurus au champ %branch%" msgstr "" -#: ../lib/Alchemy/Phrasea/Application.php:627 +#: ../lib/Alchemy/Phrasea/Application.php:606 msgid "Open the URL in a new window" msgstr "" @@ -10085,19 +9094,19 @@ msgstr "" msgid "Validate e-mail address" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Setup.php:99 +#: ../lib/Alchemy/Phrasea/Controller/Setup.php:119 msgid "It is not recommended to install Phraseanet without HTTPS support" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Setup.php:134 +#: ../lib/Alchemy/Phrasea/Controller/Setup.php:154 msgid "Appbox is unreachable" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Setup.php:144 +#: ../lib/Alchemy/Phrasea/Controller/Setup.php:164 msgid "Databox is unreachable" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Setup.php:186 +#: ../lib/Alchemy/Phrasea/Controller/Setup.php:206 #, php-format msgid "an error occured : %s" msgstr "" @@ -10140,47 +9149,47 @@ msgstr "" msgid "Unable to add file to Phraseanet" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:167 -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:319 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:168 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:320 #: ../lib/Alchemy/Phrasea/Controller/Admin/Databox.php:927 #: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:187 #: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:213 -#: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:245 -#: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:276 -#: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:313 +#: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:244 +#: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:275 +#: ../lib/Alchemy/Phrasea/Controller/Root/Developers.php:312 #: ../lib/Alchemy/Phrasea/Controller/Root/Account.php:211 msgid "Bad request format, only JSON is allowed" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:171 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:172 msgid "Missing tests parameter" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:175 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:176 msgid "Missing path parameter" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:231 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:232 msgid "Missing \"structure\" parameter" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:273 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:274 msgid "You do not enough rights to update status" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:276 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:277 msgid "File is too big : 64k max" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:279 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:280 msgid "Status icon upload failed : upload error" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:282 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:283 msgid "Status icon upload failed : can not write on disk" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:285 +#: ../lib/Alchemy/Phrasea/Controller/Admin/Root.php:286 msgid "Something wrong happend" msgstr "" @@ -10361,8 +9370,8 @@ msgstr "" msgid "A task has been created, please run it to complete empty collection" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Admin/TaskManager.php:111 -#: ../lib/Alchemy/Phrasea/Controller/Admin/TaskManager.php:151 +#: ../lib/Alchemy/Phrasea/Controller/Admin/TaskManager.php:119 +#: ../lib/Alchemy/Phrasea/Controller/Admin/TaskManager.php:159 msgid "Clear" msgstr "" @@ -10406,11 +9415,6 @@ msgstr "" msgid "The use of phraseanet Navigator is not allowed" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Api/Oauth2.php:82 -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1047 -msgid "login::erreur: Erreur d'authentification" -msgstr "" - #: ../lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:431 #, php-format msgid "thesaurus:: fichier genere le %s" @@ -10446,12 +9450,12 @@ msgstr "" msgid "thesaurus:: corbeille" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1531 +#: ../lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1590 #, php-format msgid "prod::thesaurusTab:dlg:%d record(s) updated" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1534 +#: ../lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1593 #, php-format msgid "prod::thesaurusTab:dlg:too many (%1$d) records to update (limit=%2$d)" msgstr "" @@ -10503,40 +9507,40 @@ msgstr "" msgid "Missing mandatory parameter %s" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:453 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:456 #, php-format msgid "%1$d records have been sent for validation to %2$d users" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:517 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:520 msgid "You are not allowed to add users" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:520 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:523 msgid "First name is required" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:523 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:526 msgid "Last name is required" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:526 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:529 msgid "Email is required" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:529 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:532 msgid "Email is invalid" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:543 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:546 msgid "User already exists" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:566 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:569 msgid "User successfully created" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:570 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Push.php:573 msgid "Error while creating user" msgstr "" @@ -10545,7 +9549,7 @@ msgid "Story created" msgstr "" #: ../lib/Alchemy/Phrasea/Controller/Prod/Story.php:140 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:413 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:421 #, php-format msgid "%d records added" msgstr "" @@ -10654,35 +9658,35 @@ msgstr "" msgid "Basket has been deleted" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:249 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:257 msgid "Record removed from basket" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:274 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:282 msgid "Basket has been updated" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:276 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:284 msgid "The requested basket does not exist" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:278 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:286 msgid "You do not have access to this basket" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:333 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:341 msgid "Basket updated" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:354 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:362 msgid "Basket has been archived" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:356 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:364 msgid "Basket has been unarchived" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:447 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Basket.php:455 #, php-format msgid "%d records moved" msgstr "" @@ -10721,18 +9725,18 @@ msgstr "" msgid "publications::votre rss personnel" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:163 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:160 msgid "Document has been successfully substitued" msgstr "" +#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:162 #: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:165 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:168 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:216 #: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:219 -#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:222 msgid "file is not valid" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:217 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Tools.php:214 msgid "Thumbnail has been successfully substitued" msgstr "" @@ -10807,21 +9811,21 @@ msgstr "" msgid "Unable to remove usr from list" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:189 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:190 msgid "There is no one to validate orders, please contact an administrator" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:203 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:204 msgid "There is no record eligible for an order" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:293 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:294 msgid "" "An error occured while sending, please retry or contact an admin if problem " "persists" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:328 +#: ../lib/Alchemy/Phrasea/Controller/Prod/Order.php:329 msgid "" "An error occured while denying, please retry or contact an admin if problem " "persists" @@ -11221,105 +10225,110 @@ msgstr "" msgid "Great" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:292 -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:300 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:298 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:306 msgid "You tried to register with an unknown provider" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:327 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:333 msgid "Invalid captcha answer." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:432 -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:503 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:438 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:509 msgid "login::notification: demande de confirmation par mail envoyee" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:435 -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:506 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:441 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:512 msgid "Unable to send your account unlock email." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:496 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:502 msgid "Invalid link." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:545 -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:553 -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:561 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:551 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:559 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:567 msgid "Invalid unlock link." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:567 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:573 msgid "Account is already unlocked, you can login." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:578 -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:589 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:584 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:595 msgid "Account has been unlocked, you can now login." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:594 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:600 msgid "Account has been unlocked, you still have to wait for admin approval." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:628 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:634 #: ../lib/Alchemy/Phrasea/Controller/Root/Account.php:98 msgid "login::notification: Mise a jour du mot de passe avec succes" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:664 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:670 msgid "phraseanet::erreur: Le compte n'a pas ete trouve" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:670 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:676 msgid "Invalid email address" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:686 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:692 msgid "phraseanet:: Un email vient de vous etre envoye" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:734 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:740 msgid "Vous etes maintenant deconnecte. A bientot." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:761 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:767 msgid "login::erreur: No available connection - Please contact sys-admin" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:806 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:812 msgid "Phraseanet guest-access is disabled" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:926 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:932 #, php-format msgid "Unable to authenticate with %s" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:950 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:956 msgid "Unable to retrieve provider identity" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:989 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:995 msgid "Your identity is not recognized." msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1021 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1027 msgid "" "An unexpected error occured during authentication process, please contact an " "admin" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1036 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1042 msgid "Please fill the captcha" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1040 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1046 msgid "login::erreur: Vous n'avez pas confirme votre email" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Root/Session.php:124 +#: ../lib/Alchemy/Phrasea/Controller/Root/Login.php:1053 +msgid "login::erreur: Erreur d'authentification" +msgstr "" + +#: ../lib/Alchemy/Phrasea/Controller/Root/Session.php:111 +#: ../lib/Alchemy/Phrasea/Controller/Root/Session.php:196 msgid "The application is going down for maintenance, please logout." msgstr "" @@ -11373,7 +10382,7 @@ msgstr "" msgid "forms::erreurs lors de l'enregistrement des modifications" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:321 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:320 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:59 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:77 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:298 @@ -11381,21 +10390,21 @@ msgstr "" msgid "phrseanet:: sous definition" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:459 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:458 msgid "report:: plateforme" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:469 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:468 msgid "report:: module" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:569 -#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:746 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:568 +#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:744 msgid "configuration" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:596 -#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:773 +#: ../lib/Alchemy/Phrasea/Controller/Report/Root.php:595 +#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:771 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:155 #: ../lib/Alchemy/Phrasea/Controller/Report/Informations.php:407 #, php-format @@ -11423,15 +10432,15 @@ msgstr "" msgid "report:: nombre de reponses" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:348 +#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:346 msgid "report:: total des telechargements" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:350 +#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:348 msgid "report:: document original" msgstr "" -#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:658 +#: ../lib/Alchemy/Phrasea/Controller/Report/Activity.php:656 msgid "Receiver" msgstr "" @@ -11532,7 +10541,7 @@ msgstr "" msgid "New password (confirmation)" msgstr "" -#: ../lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:41 +#: ../lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:50 msgid "Remember me" msgstr "" @@ -11616,6 +10625,10 @@ msgstr "" msgid "test::test" msgstr "" +#: ../lib/Alchemy/Phrasea/Command/Developer/IniReset.php:88 +msgid "Please enter the databox name to reset" +msgstr "" + #: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngineQueryParser.php:133 msgid "qparser::la question est vide" msgstr "" @@ -11662,30 +10675,30 @@ msgstr "" msgid "qparser:: Formulation incorrecte, necessite plus de caractere : " msgstr "" -#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:111 +#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:123 msgid "No sort" msgstr "" -#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:136 +#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:148 #: ../lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:138 msgid "descendant" msgstr "" -#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:137 +#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:149 #: ../lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:139 msgid "ascendant" msgstr "" -#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:416 +#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:428 msgid "Unable to execute query" msgstr "" -#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:496 +#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:508 #, php-format msgid "reponses::propositions pour la base %s" msgstr "" -#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:502 +#: ../lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:514 #, php-format msgid "reponses::propositions pour le terme %s" msgstr "" @@ -11717,7 +10730,7 @@ msgid "GOP size" msgstr "" #: ../lib/Alchemy/Phrasea/Media/Subdef/Video.php:36 -#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:33 +#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:34 msgid "Dimension" msgstr "" @@ -11738,19 +10751,23 @@ msgstr "" msgid "Generates a video file" msgstr "" -#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:34 +#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:35 msgid "Resolution" msgstr "" -#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:35 +#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:36 msgid "Remove ICC Profile" msgstr "" -#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:36 +#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:37 +msgid "Flatten layers" +msgstr "" + +#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:38 msgid "Quality" msgstr "" -#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:46 +#: ../lib/Alchemy/Phrasea/Media/Subdef/Image.php:48 msgid "Generates a Jpeg image" msgstr "" @@ -11826,3 +10843,518 @@ msgstr "" #: ../lib/Doctrine/Repositories/BasketRepository.php:160 msgid "You have not access to this basket" msgstr "" + +#: ../lib/conf.d/_GV_template.inc:38 +msgid "HTTP Server" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:43 +msgid "Default language" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:52 +msgid "Static URL" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:53 +msgid "optional" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:58 +msgid "Maintenance state" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:64 +msgid "Maintenance message" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:70 +msgid "Enable maintenance message broadcast" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:76 +msgid "Log errors" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:81 +msgid "Webservices connectivity" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:86 +msgid "Use Google API" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:93 +msgid "Geonames server address" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:101 +msgid "Use recaptcha API" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:109 +msgid "Recaptcha public key" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:115 +msgid "Recaptcha private key" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:120 +msgid "Youtube connectivity" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:125 +msgid "Use youtube API" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:126 ../lib/conf.d/_GV_template.inc:157 +#: ../lib/conf.d/_GV_template.inc:181 +#, php-format +msgid "Create API account at %s, then use %s as callback URL value" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:133 +msgid "Youtube public key" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:139 +msgid "Youtube secret key" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:145 +msgid "Youtube developer key" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:146 +#, php-format +msgid "See %s" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:151 +msgid "FlickR connectivity" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:156 +msgid "Use Flickr API" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:164 +msgid "Flickr public key" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:170 +msgid "Flickr secret key" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:175 +msgid "Dailymotion connectivity" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:180 +msgid "Use Dailymotion API" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:188 +msgid "Dailymotion public key" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:194 +msgid "Dailymotion secret key" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:199 +msgid "Phraseanet client API" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:204 +msgid "Authorize *Phraseanet Navigator*" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:205 +msgid "" +"*Phraseanet Navigator* is a smartphone application that allow user to " +"connect on this instance" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:212 +msgid "Authorize Microsoft Office Plugin to connect." +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:218 +msgid "Documents storage" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:224 +msgid "Default path for datas" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:230 +msgid "Executables settings" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:235 +msgid "php.ini path" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:236 +msgid "Empty if not used" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:243 +msgid "Imagine driver" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:255 +msgid "Number of threads to use for FFMpeg" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:261 +msgid "Maximum number of pages to be extracted from PDF" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:266 +msgid "Main configuration" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:271 +msgid "Enable Forcing authentication to see push content" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:272 +msgid "" +"Adds an option to the push form submission to restrict push recipient(s) to " +"Phraseanet users only." +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:278 +msgid "Set force authentication option to see push content as mandatory" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:279 +msgid "" +"Disallow the possibility for the end user to disable push authentication" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:285 +msgid "Enable possibility to notify users when publishing a new feed entry" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:291 +msgid "Admin email" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:297 +msgid "Display the name of databases and collections" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:304 +msgid "Choose the title of the document to export" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:311 +msgid "Default export title" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:314 +msgid "Document title" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:315 +msgid "Original name" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:321 +msgid "Enable this setting to share on Facebook and Twitter" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:323 +msgid "Disabled" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:324 +msgid "Publishers" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:325 +msgid "Enabled" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:332 +msgid "Homepage" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:338 +msgid "Homepage slideshow" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:341 +msgid "Single image" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:342 +msgid "Slide show" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:344 +msgid "Carousel" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:345 +msgid "Gallery" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:351 +msgid "Search engine" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:357 +msgid "Minimum number of letters before truncation" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:358 +msgid "Used in search engine" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:364 +msgid "Default query" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:370 +msgid "Default searched type" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:371 +msgid "Used when opening the application" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:373 +msgid "Documents" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:374 +msgid "Stories" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:386 +msgid "Anonymous report" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:387 +msgid "Hide information about users" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:393 +msgid "Additionnal modules" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:399 +msgid "Enable thesaurus" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:404 +msgid "Enable multi-doc mode" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:409 +msgid "Enable HD substitution" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:414 +msgid "Enable thumbnail substitution" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:420 +msgid "Emails" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:425 +msgid "Default mail sender address" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:431 +msgid "Prefix for notification emails" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:437 +msgid "Use a SMTP server" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:443 +msgid "Enable SMTP authentication" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:449 +msgid "SMTP host" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:455 +msgid "SMTP port" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:461 +msgid "SMTP encryption" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:472 +msgid "SMTP user" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:478 +msgid "SMTP password" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:483 +msgid "FTP Export" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:488 +msgid "Enable FTP export" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:489 +msgid "Available in multi-export tab" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:495 +msgid "Enable FTP for users" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:496 +msgid "By default it is available for admins" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:501 +msgid "Client" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:506 +msgid "Maximum megabytes allowed for download" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:507 +msgid "If request is bigger, then mail is still available" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:513 +msgid "Search tab position" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:519 +msgid "Advanced search tab position" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:525 +msgid "Topics tab position" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:531 +msgid "Active tab position" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:537 +msgid "Topics display mode" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:539 +msgid "Trees" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:540 ../lib/conf.d/_GV_template.inc:562 +msgid "Drop-down" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:547 +msgid "Enable roll-over on stories" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:553 +msgid "Enable roll-over on basket elements" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:559 +msgid "Collections display mode" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:563 +msgid "Check-box" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:569 +msgid "Display the total size of the document basket" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:575 +msgid "Display proposals tab" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:581 +msgid "Require authentication to download documents" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:582 +msgid "Used for guest account" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:588 +msgid "Users must accept Terms of Use for each export" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:593 +msgid "Registration" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:598 +msgid "Auto select databases" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:599 +msgid "" +"This option disables the selecting of the databases on which a user can " +"register himself, and registration is made on all granted databases." +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:605 +msgid "Enable auto registration" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:610 +msgid "Push configuration" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:615 +msgid "" +"Number of days before the end of the validation to send a reminder email" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:621 +msgid "Default validation links duration" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:622 +msgid "If set to 0, duration is permanent" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:627 +msgid "Robot indexing" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:632 +msgid "Application title" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:638 +msgid "Keywords used for indexing purposes by search engines robots" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:644 +msgid "Application description" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:650 +msgid "Google Analytics identifier" +msgstr "" + +#: ../lib/conf.d/_GV_template.inc:656 +msgid "Allow the website to be indexed by search engines like Google" +msgstr ""